/* Infumia Pet Clinic — açık zemin, sıcak nötr, niş tipografi */
:root {
  --page: #f4f1eb;
  --page-2: #ebe6dc;
  --ink: #1a1614;
  --ink-soft: #4a433c;
  --ink-muted: #6b6258;
  --line: rgba(26, 22, 20, 0.09);
  --line-strong: rgba(26, 22, 20, 0.14);
  --coral: #e85d4c;
  --amber: #e8942d;
  --mint: #5c9a7e;
  --violet: #7c6cf0;
  --accent-2: var(--mint);
  --glass: rgba(255, 252, 248, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 50px rgba(26, 22, 20, 0.08);
  --shadow-hover: 0 22px 60px rgba(26, 22, 20, 0.12);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --space-xs: 0.45rem;
  --space-sm: 0.75rem;
  --space-md: 1.1rem;
  --space-lg: 1.75rem;
  --space-xl: 2.75rem;
  --space-2xl: 4rem;
  --maxw: 1140px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  /* admin inline stiller için alias */
  --text: var(--ink);
  --text-soft: var(--ink-muted);
  --text-muted: var(--ink-muted);
  --glass-border: var(--line);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .about__frame {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--page);
}

.page-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 8% -8%, rgba(232, 93, 76, 0.09), transparent 55%),
    radial-gradient(700px 480px at 92% 0%, rgba(232, 148, 45, 0.08), transparent 50%),
    radial-gradient(600px 400px at 50% 100%, rgba(92, 154, 126, 0.06), transparent 45%),
    linear-gradient(180deg, var(--page) 0%, #faf8f4 40%, var(--page-2) 100%);
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: #b45309;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--coral);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 200;
}
.skip-link:focus {
  left: 0.5rem;
}

.float-dock {
  position: fixed;
  bottom: 1.15rem;
  right: 1.15rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
}
.float-dock__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
  transition: transform 0.12s ease, filter 0.15s;
}
.float-dock__btn--call,
.float-dock__btn--wa,
.float-dock__btn--lang {
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, filter 0.15s;
}
.float-dock.has-top .float-dock__btn--call,
.float-dock.has-top .float-dock__btn--wa,
.float-dock.has-top .float-dock__btn--lang {
  transform: translateY(-3.35rem);
}
.float-dock__btn:active {
  transform: scale(0.96);
}
.float-dock__btn--call {
  background: linear-gradient(145deg, #fff, #f4f1eb);
  color: var(--ink);
}
.float-dock__btn--call:hover {
  filter: brightness(1.03);
}
.float-dock__btn--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  border-color: rgba(18, 140, 126, 0.45);
}
.float-dock__btn--wa:hover {
  filter: brightness(1.05);
}
.float-dock__btn--lang {
  background: #fff;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  border-radius: 10px;
}
.float-dock__btn--lang:hover {
  filter: brightness(1.03);
}
.float-dock__btn--lang .flag-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  transform: scale(1.03);
}
.float-dock__btn--top {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(145deg, #fff, #efe8dd);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.float-dock__btn--top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: var(--space-sm) var(--space-lg);
}
/* Admin üst şerit (site-header__rail olmadan) */
.site-header > .admin-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.site-header__rail {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.45rem 0.82rem 0.45rem 0.82rem;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 236, 0.92));
  border: 1px solid rgba(26, 22, 20, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 14px 40px rgba(26, 22, 20, 0.07);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.site-header__navwrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}
.brand__mark {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(232, 93, 76, 0.25));
}
.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.brand__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.brand--logo-only {
  gap: 0;
  align-items: center;
}
.brand--logo-only .brand__mark {
  filter: drop-shadow(0 2px 14px rgba(232, 93, 76, 0.22));
  line-height: 0;
}
.brand__logo-full {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  width: 100%;
}
.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.1rem;
  padding: 0.2rem;
  border-radius: 8px;
  background: rgba(26, 22, 20, 0.035);
  border: 1px solid rgba(26, 22, 20, 0.06);
}
.nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.62rem;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.nav__links a:hover {
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}
.nav__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #1a1614, #3a322c);
  color: #fff !important;
  border: 1px solid rgba(26, 22, 20, 0.35);
  box-shadow: 0 8px 24px rgba(26, 22, 20, 0.18);
}
.nav__cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--page) 90%, #fff);
  cursor: pointer;
}
.nav-toggle__bars {
  width: 1.1rem;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -1px;
  border-top: 2px solid var(--ink);
}

@media (max-width: 860px) {
  .site-header__rail {
    padding-right: 0.72rem;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    right: -0.1rem;
    z-index: 95;
  }
  .site-header__navwrap {
    width: 100%;
  }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 252, 248, 0.96);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease;
    z-index: 70;
  }
  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav__links {
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 0.25rem;
  }
  .nav__links a {
    font-size: 1.05rem;
    padding: 0.55rem 0.75rem;
  }
  .nav__cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.85rem;
  }
}

@media (hover: none) {
  .btn--primary:hover {
    filter: none;
  }
  .btn--line:hover {
    border-color: var(--line-strong);
    color: var(--ink);
  }
  .btn--ghost:hover {
    background: transparent;
    color: var(--ink-soft);
    border-color: var(--line-strong);
  }
}

main {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(var(--maxw), calc(100% - 2 * var(--space-lg)));
  margin-inline: auto;
}

.section {
  padding: var(--space-2xl) 0;
}
.section__head {
  max-width: 40rem;
  margin-bottom: var(--space-xl);
}
.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 var(--space-sm);
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 650;
  line-height: 1.18;
  margin: 0 0 var(--space-sm);
  color: var(--ink);
}
.section__lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}
.prose {
  color: var(--ink-soft);
  margin: 0 0 var(--space-md);
  max-width: 56ch;
}

.glass-soft {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ——— Hero ——— */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
}
.hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 960px) {
  .hero__shell {
    grid-template-columns: 1fr;
  }
}
.hero__urgent {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  margin-bottom: var(--space-md);
}
.hero__urgent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.92);
  }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 650;
  line-height: 1.08;
  margin: 0 0 var(--space-md);
  color: var(--ink);
}
.hero__title-accent {
  background: linear-gradient(120deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin: 0 0 var(--space-lg);
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 44ch;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}
.hero__metrics > div {
  margin: 0;
}
.hero__metrics dt {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.hero__metrics dd {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__cards {
  position: relative;
  align-self: center;
  justify-self: end;
  max-width: 460px;
  width: 100%;
}
.hero__cards-collage {
  position: relative;
  height: min(470px, 64vw);
  max-height: 500px;
}
.hero__tile {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 22px 54px rgba(26, 22, 20, 0.16);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.22s ease;
}
.hero__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 65px rgba(26, 22, 20, 0.2);
}
.hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__tile--main {
  left: 0;
  top: 6%;
  width: 62%;
  height: 88%;
  z-index: 2;
}
.hero__tile--top {
  right: 0;
  top: 0;
  width: 47%;
  height: 43%;
  z-index: 3;
}
.hero__tile--bottom {
  right: 0;
  bottom: 3%;
  width: 52%;
  height: 50%;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero__cards {
    justify-self: start;
    max-width: 100%;
  }
  .hero__cards-collage {
    height: min(420px, 72vw);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-btn);
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s, filter 0.2s;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(125deg, var(--coral), var(--amber));
  color: #fff;
  box-shadow: 0 10px 32px rgba(232, 93, 76, 0.28);
}
.btn--primary:hover {
  filter: brightness(1.04);
}
.btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.3);
}
.btn--line {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--line:hover {
  border-color: var(--coral);
  color: var(--coral);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink-soft);
}
.btn--ghost:hover {
  background: rgba(26, 22, 20, 0.04);
  color: var(--ink);
  border-color: var(--ink-muted);
}

/* ——— About ——— */
.section--about {
  padding-top: var(--space-xl);
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.about__visual {
  position: relative;
  min-height: 280px;
}
.about__frame {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  background: #ece6de;
}
.about__frame--photo {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.about__photo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
}
.about__frame--placeholder {
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: linear-gradient(145deg, #f7f3ec, #e8e0d4);
}
.about__ph-text {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.about__ph-path {
  margin: 0;
  font-size: 0.82rem;
  word-break: break-all;
}
.about__ph-sub {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--ink-muted);
}
.about__chips {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.about__chips li {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ——— Services grid ——— */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-card {
  position: relative;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  box-shadow: var(--shadow);
  min-height: 16.5rem;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.svc-card:hover {
  border-color: rgba(232, 93, 76, 0.35);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.svc-card.is-collapsed {
  display: none;
}
.svc-grid.is-expanded .svc-card.is-collapsed {
  display: grid;
}
.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto var(--space-sm);
  align-self: center;
  border-radius: var(--radius-btn);
  background: rgba(232, 93, 76, 0.08);
  border: 1px solid rgba(232, 93, 76, 0.18);
}
.svc-card__icon img {
  width: 1.95rem;
  height: 1.95rem;
  display: block;
  object-fit: contain;
}
.svc-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.28;
  color: var(--ink);
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.28em * 2);
}
.svc-card__desc {
  margin: 0;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.56;
  width: 100%;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.56em * 4);
  max-height: calc(1.56em * 4);
  text-align: left;
}
.svc-grid__more-wrap {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ——— Gallery ——— */
.section--gallery {
  padding-bottom: var(--space-2xl);
  /* Aşağı kaydırılmadan boyama maliyetini düşürür (destekleyen tarayıcılar). */
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.gallery-mosaic {
  display: grid;
  gap: 10px;
}
.gallery-mosaic--eq {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(128px, 13vw, 162px);
  grid-auto-flow: dense;
}
.gallery-mosaic--eq .gallery-mosaic__cell {
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-mosaic--eq .gallery-mosaic__cell:nth-child(6n + 1),
.gallery-mosaic--eq .gallery-mosaic__cell:nth-child(6n + 5) {
  grid-column: span 2;
}
.gallery-mosaic--eq .gallery-mosaic__cell:nth-child(7n + 3),
.gallery-mosaic--eq .gallery-mosaic__cell:nth-child(7n + 7) {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .gallery-mosaic--eq {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(126px, 20vw, 165px);
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(6n + 1),
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(6n + 5) {
    grid-column: span 1;
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(4n + 1) {
    grid-column: span 2;
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(7n + 3),
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(7n + 7) {
    grid-row: span 1;
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(5n + 3) {
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .gallery-mosaic--eq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(128px, 35vw, 180px);
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(4n + 1) {
    grid-column: span 1;
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(5n + 3) {
    grid-row: span 1;
  }
  .gallery-mosaic--eq .gallery-mosaic__cell:nth-child(4n + 2) {
    grid-row: span 2;
  }
}
.gallery-mosaic__cell {
  position: relative;
  display: block;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-mosaic__cell--extra {
  display: none;
}
.gallery-mosaic.is-expanded .gallery-mosaic__cell--extra {
  display: block;
}
.gallery-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-mosaic__cell:hover img {
  transform: scale(1.04);
}
.gallery-mosaic__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem 0.65rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(26, 22, 20, 0.72));
}
.gallery-mosaic__actions {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ——— Team ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  width: 100%;
  padding-bottom: 0;
}
.team-tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.team-tile.is-collapsed {
  display: none;
}
.team-grid.is-expanded .team-tile.is-collapsed {
  display: flex;
}
.team-grid__more-wrap {
  text-align: center;
  margin-top: var(--space-lg);
}
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-tile__photo {
  aspect-ratio: 16 / 10;
}
.team-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-tile__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}
.team-tile h3 {
  font-family: var(--font-display);
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
}
.team-tile__role {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
}
.team-tile__bio {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ——— Booking ——— */
.section--book {
  padding-bottom: var(--space-2xl);
}
.book__layout {
  padding: var(--space-xl);
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.book-wizard__rail {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.book-wizard__pane.is-entering {
  animation: bookPaneFadeIn 0.2s ease;
}
@keyframes bookPaneFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.book-wizard__step {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #faf8f4;
  min-width: 0;
  flex: 1 1 8rem;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
  text-align: center;
}
.book-wizard__step.is-on {
  color: var(--ink);
  border-color: rgba(232, 93, 76, 0.45);
  background: rgba(232, 93, 76, 0.08);
}
.book-cal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbf8f3);
  margin-bottom: var(--space-md);
}
.book-cal__btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #faf8f4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}
.book-cal__btn:hover:not(:disabled) {
  border-color: var(--coral);
  background: #fff;
}
.book-cal__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.book-cal__mid {
  text-align: center;
  flex: 1;
  min-width: 0;
}
.book-cal__wk {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.3;
}
.book-cal__date {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 650;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.book-cal__slots-wrap {
  margin-bottom: var(--space-md);
  max-height: none;
  overflow: visible;
  padding: 0;
}
.book-day-pane {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.4rem, 1fr));
  gap: 0.5rem;
}
.book-day-pane[hidden] {
  display: none !important;
}
@media (min-width: 640px) {
  .book-day-pane {
    grid-template-columns: repeat(auto-fill, minmax(4.8rem, 1fr));
  }
}
.book-wizard__actions {
  margin: 0;
}
.book-wizard__summary {
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border-radius: 10px;
  background: rgba(92, 154, 126, 0.08);
  border: 1px solid rgba(92, 154, 126, 0.25);
}
.book-wizard__back {
  margin-bottom: var(--space-md);
}
.book__legend {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  padding: 0 0 var(--space-sm);
  margin: 0 0 var(--space-md);
  color: var(--ink);
}
.book__slots {
  border: 0;
  margin: 0 0 var(--space-xl);
  padding: 0;
}
.book__empty {
  color: var(--ink-muted);
  margin: 0;
}
.book-day {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.book-day__sum {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-weight: 650;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(232, 93, 76, 0.06), transparent);
}
.book-day__sum::-webkit-details-marker {
  display: none;
}
.book-day__slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem 0.85rem;
}
.slot-pill {
  position: relative;
  cursor: pointer;
}
.slot-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.slot-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
  background: #faf8f4;
  font-size: 0.8rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.slot-pill:hover span {
  border-color: rgba(232, 93, 76, 0.45);
}
.slot-pill input:focus-visible + span {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
.slot-pill input:checked + span {
  border-color: var(--coral);
  background: rgba(232, 93, 76, 0.1);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(232, 93, 76, 0.2);
}
.slot-pill.is-full span {
  opacity: 0.45;
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot-pill.is-full input:disabled + span {
  pointer-events: none;
}
.contact__submit {
  margin: 0.55rem 0 0;
}
.book__fields {
  border: 0;
  margin: 0;
  padding: 0;
}
.book__submit {
  margin: var(--space-lg) 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(232, 93, 76, 0.35);
  outline-offset: 1px;
  border-color: rgba(232, 93, 76, 0.35);
}
.field--full {
  grid-column: 1 / -1;
}
.field-error {
  font-size: 0.78rem;
  color: #b91c1c;
}
.field__hint {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  opacity: 0.92;
  margin: 0.2rem 0 0;
}
.book-cal__hint {
  margin: 0.35rem 0 0.55rem;
}
.checkbox {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.12rem 0 0;
  accent-color: var(--coral);
}
.checkbox--inline {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
}
.checkbox--inline input[type="checkbox"] {
  margin: 0;
}
.checkbox--inline span {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  font-size: 0.82rem;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 0.92rem;
}
.alert--success {
  background: rgba(92, 154, 126, 0.12);
  border: 1px solid rgba(92, 154, 126, 0.35);
  color: #166534;
}
.alert--error {
  background: rgba(232, 93, 76, 0.1);
  border: 1px solid rgba(232, 93, 76, 0.35);
  color: #991b1b;
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--space-2xl);
  padding: 0 0 var(--space-xl);
  background: linear-gradient(180deg, #242019 0%, #161311 50%, #100f0d 100%);
  color: rgba(255, 250, 245, 0.88);
  overflow: visible;
}
.site-footer__wave {
  position: relative;
  height: 76px;
  position: absolute;
  left: 0;
  right: 0;
  top: -75px;
  overflow: hidden;
  z-index: 3;
}
.site-footer__wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 76' preserveAspectRatio='none'%3E%3Cpath fill='%23242019' d='M0 76V36c84-22 170-35 262-28 122 9 202 54 316 66 113 11 192-20 289-42 168-39 307-16 573 47v33H0z'/%3E%3C/svg%3E")
    center top / 100% 100% no-repeat;
}
.site-footer__inner {
  position: relative;
  z-index: 2;
  padding-top: var(--space-sm);
}
.footer-brand-block {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-xl);
  max-width: 36rem;
}
.footer__mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--coral), var(--amber));
  flex-shrink: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  color: #fff;
}
.footer__brand-stack {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__pitch {
  margin: 0.15rem 0 0;
  font-size: 0.74rem;
  color: rgba(255, 250, 245, 0.7);
  line-height: 1.2;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (max-width: 900px) {
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
.footer__col h4 {
  margin: 0 0 var(--space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 245, 0.45);
}
.footer__meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 250, 245, 0.72);
  white-space: normal;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li + li {
  margin-top: 0.35rem;
}
.footer__link {
  color: rgba(255, 250, 245, 0.85);
  text-decoration: none;
  font-weight: 550;
}
.footer__link:hover {
  color: #fff;
}
.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer__pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 250, 245, 0.2);
  color: rgba(255, 250, 245, 0.9);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.footer__pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 250, 245, 0.35);
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 250, 245, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 250, 245, 0.5);
}
.footer__fine a {
  color: rgba(255, 250, 245, 0.65);
}
.footer__fine a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

dialog.service-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(520px, calc(100% - 2rem));
  background: transparent;
}
dialog.service-modal::backdrop {
  background: rgba(26, 22, 20, 0.45);
  backdrop-filter: blur(4px);
}
.service-modal__inner {
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}
.service-modal__close {
  margin-top: var(--space-md);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Admin (aynı CSS) */
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.admin-card {
  width: min(420px, 100%);
  padding: 2rem;
  background: var(--glass-strong);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.admin-card h1 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1.45rem;
  color: var(--ink);
}
.admin-card label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}
.admin-card input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.admin-err {
  color: #b91c1c;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.admin-ok {
  color: #166534;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

/* ——— Hayvan oteli ——— */
.section--hotel {
  padding-bottom: var(--space-2xl);
}
.hotel__shell {
  padding: var(--space-lg) var(--space-xl);
  max-width: var(--maxw);
  margin-inline: auto;
}
.hotel__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
}
.hotel__status.is-open {
  background: rgba(92, 154, 126, 0.1);
  border-color: rgba(92, 154, 126, 0.35);
  color: #166534;
}
.hotel__status.is-closed {
  background: rgba(232, 93, 76, 0.08);
  border-color: rgba(232, 93, 76, 0.3);
  color: #991b1b;
}
.hotel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.hotel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 900px) {
  .hotel__grid {
    grid-template-columns: 1fr;
  }
}
.hotel__main .form-grid--hotel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hotel__form #h_message {
  resize: none;
  min-height: 2.8rem;
  max-height: 8rem;
}
@media (max-width: 560px) {
  .hotel__main .form-grid--hotel {
    grid-template-columns: 1fr;
  }
}
.hotel__aside {
  position: sticky;
  top: 5.5rem;
}
.hotel__aside-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-btn);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hotel__aside-collage > a:first-child {
  grid-column: span 2;
}
.hotel__aside-collage > a {
  display: block;
}
.hotel__aside-collage > a img {
  transition: transform 0.25s ease;
}
.hotel__aside-collage > a:hover img {
  transform: scale(1.03);
}
.hotel__aside-collage > a:first-child img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.hotel__aside-collage > a:not(:first-child) img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.hotel__closed-note {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}
.hotel__submit {
  margin-top: var(--space-md);
}

/* ——— Acil şerit ——— */
.emergency-strip {
  padding-bottom: var(--space-xl);
}
.section--regions + .emergency-strip {
  margin-top: var(--space-xl);
}
.emergency-strip + .section--contact {
  margin-top: var(--space-md);
}
.emergency-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-btn);
  border: 1px solid rgba(232, 93, 76, 0.35);
  background: linear-gradient(120deg, rgba(232, 93, 76, 0.1), rgba(232, 148, 45, 0.08));
}
.emergency-strip__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}
.emergency-strip__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 650;
  color: var(--ink);
}
.emergency-strip__text {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.emergency-strip__btn {
  flex-shrink: 0;
}

/* ——— İletişim split ——— */
.section--contact {
  padding-bottom: var(--space-2xl);
}
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}
.contact-split__form,
.contact-split__map {
  padding: var(--space-lg);
  border-radius: 14px;
}
.contact-split__map {
  display: flex;
}
.contact-form .field + .field {
  margin-top: var(--space-sm);
}
.contact-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 10px;
  display: block;
}
.contact-map--placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: linear-gradient(160deg, #fff, #f4f1eb);
  color: var(--ink-soft);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .contact-map {
    min-height: 320px;
  }
}
.contact-map--placeholder code {
  font-size: 0.78rem;
}

/* ——— Service regions ——— */
.section--regions {
  padding-bottom: var(--space-xl);
}
.regions-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-lg);
  padding: clamp(1rem, 2.1vw, 1.35rem);
  border-radius: 20px;
  background:
    radial-gradient(120% 130% at 0% 0%, rgba(232, 93, 76, 0.16), transparent 58%),
    radial-gradient(105% 120% at 100% 100%, rgba(92, 154, 126, 0.12), transparent 56%),
    linear-gradient(155deg, #fff, #f7f2e9);
  border: 1px solid rgba(26, 22, 20, 0.13);
  box-shadow:
    0 22px 56px rgba(26, 22, 20, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.75) inset;
}
.regions-showcase::before {
  content: "";
  position: absolute;
  inset: auto -60px -95px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 76, 0.24) 0%, rgba(232, 93, 76, 0.04) 45%, transparent 70%);
  pointer-events: none;
}
.regions-showcase::after {
  content: "";
  position: absolute;
  inset: -130px auto auto -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 154, 126, 0.17) 0%, rgba(92, 154, 126, 0.04) 48%, transparent 72%);
  pointer-events: none;
}
.regions-showcase__left {
  position: relative;
  z-index: 1;
  padding: clamp(0.9rem, 1.9vw, 1.15rem);
  border-radius: 16px;
  background:
    radial-gradient(100% 120% at 0% 0%, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(155deg, #1f1a17, #2c241f 46%, #362b24 100%);
  border: 1px solid rgba(255, 250, 245, 0.16);
  box-shadow: 0 14px 34px rgba(10, 8, 7, 0.3);
}
.regions-showcase__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 210, 184, 0.9);
}
.regions-showcase__city {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 650;
  color: #fff8f2;
  line-height: 1.1;
}
.regions-showcase__text {
  margin: 0;
  color: rgba(255, 242, 232, 0.82);
  line-height: 1.58;
  font-size: 0.92rem;
  max-width: 40ch;
}
.regions-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: var(--space-md);
}
.regions-stats__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.62rem 0.68rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 250, 245, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}
.regions-stats__v {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
}
.regions-stats__k {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 238, 225, 0.72);
}
.regions-showcase__note {
  margin: 0.78rem 0 0;
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 250, 245, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 245, 236, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
}
.regions-showcase__right {
  position: relative;
  z-index: 1;
  border-left: 1px dashed rgba(26, 22, 20, 0.18);
  padding-left: var(--space-md);
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.regions-card {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.45rem;
  padding: 0.52rem 0.68rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 22, 20, 0.12);
  background: linear-gradient(180deg, #fff, #f9f5ef);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.regions-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, #fff, #f4fbf7);
}
.regions-card:nth-child(3n + 3) {
  background: linear-gradient(180deg, #fff, #fff6f1);
}
.regions-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(232, 93, 76, 0.28);
  box-shadow: 0 10px 24px rgba(26, 22, 20, 0.08);
}
.regions-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  flex: 0 0 auto;
}
.regions-card__name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.regions-showcase__empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .regions-showcase {
    grid-template-columns: 1fr;
  }
  .regions-showcase__right {
    border-left: 0;
    border-top: 1px dashed rgba(26, 22, 20, 0.16);
    padding-left: 0;
    padding-top: var(--space-sm);
  }
  .regions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .regions-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Footer (v2) ——— */
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-xl);
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) 0 var(--space-lg);
  border-bottom: 1px solid rgba(255, 250, 245, 0.1);
}
.footer__identity {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  max-width: min(32rem, 100%);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  padding: 0.35rem;
  border-radius: var(--radius-btn);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 250, 245, 0.08);
}
.footer__nav a {
  color: rgba(255, 250, 245, 0.78);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.footer__nav a:hover {
  color: #fff;
  background: rgba(255, 250, 245, 0.06);
  border-color: rgba(255, 250, 245, 0.12);
}
.footer__mid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: stretch;
}
.footer__block {
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  background: rgba(255, 250, 245, 0.03);
  border: 1px solid rgba(255, 250, 245, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .footer__mid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer__mid {
    grid-template-columns: 1fr;
  }
}
.footer__h {
  margin: 0 0 var(--space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 245, 0.45);
}
.footer__meta {
  margin: 0;
  white-space: normal;
}
.footer__inline-link {
  color: rgba(255, 250, 245, 0.88);
  text-decoration: none;
  font-weight: 600;
}
.footer__inline-link:hover {
  color: #fff;
}
.footer__signature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.1);
  border: 1px solid rgba(255, 250, 245, 0.22);
  color: rgba(255, 250, 245, 0.88);
  font-weight: 600;
}

/* Blog */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.blog-teaser {
  padding: var(--space-xl) 0;
  margin-top: var(--space-md);
}
.blog-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (max-width: 960px) {
  .blog-teaser__grid {
    grid-template-columns: 1fr;
  }
}
.blog-teaser__card {
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 11rem;
}
.blog-teaser__media {
  display: block;
  margin: -1.1rem -1.15rem 0.65rem;
  border-radius: 0;
  overflow: hidden;
  line-height: 0;
}
.blog-teaser__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: transparent;
}
.blog-teaser__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.blog-teaser__cat {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2, #e85d4c);
}
.blog-teaser__date {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  min-width: 0;
}
.blog-teaser__card-title {
  margin: 0.2rem 0 0;
  font-size: 1.05rem;
  font-family: var(--font-display, "Fraunces", serif);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-teaser__excerpt {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-teaser__card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 0.35rem;
}
.blog-teaser__more {
  flex-shrink: 0;
}
.blog-teaser__actions {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
}
.blog-teaser__empty {
  margin: var(--space-lg) 0 0;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.blog-page {
  padding: var(--space-xl) 0 var(--space-2xl);
}
.blog-page__back-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(22, 15, 10, 0.08);
}
.blog-page__back-bar-link {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text-soft);
  border: 1px solid rgba(22, 15, 10, 0.12);
  background: rgba(255, 255, 255, 0.55);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.blog-page__back-bar-link:hover {
  color: var(--accent-2, #e85d4c);
  border-color: rgba(232, 93, 76, 0.35);
  background: rgba(255, 255, 255, 0.85);
}
.blog-single--body-only {
  padding: 1.25rem 1.35rem;
  border-radius: 18px;
  max-width: 44rem;
  margin: 0 auto;
}
.blog-single--body-only .blog-single__banner {
  margin: -0.35rem -0.45rem 1rem;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}
.blog-single--body-only .blog-single__banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(48vh, 400px);
  object-fit: cover;
}
.blog-single--body-only .blog-single__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-family: var(--font-display, "Fraunces", serif);
  line-height: 1.2;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.blog-single__body--rich img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.blog-single__body--rich,
.blog-single__body--rich * {
  max-width: 100%;
  box-sizing: border-box;
}
.blog-single__body--rich,
.blog-single__body--rich p,
.blog-single__body--rich li,
.blog-single__body--rich h1,
.blog-single__body--rich h2,
.blog-single__body--rich h3,
.blog-single__body--rich h4,
.blog-single__body--rich h5,
.blog-single__body--rich h6,
.blog-single__body--rich blockquote {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.blog-single__body--rich a {
  overflow-wrap: anywhere;
  word-break: break-all;
}
.blog-single__body--rich pre,
.blog-single__body--rich code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.blog-single__body--rich div,
.blog-single__body--rich span {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.blog-single__body--rich p:first-child {
  margin-top: 0;
}
.blog-single__body--rich table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: fixed;
  display: block;
  overflow-x: auto;
}
.blog-single__body--rich th,
.blog-single__body--rich td {
  border: 1px solid rgba(22, 15, 10, 0.12);
  padding: 0.35rem 0.5rem;
}
.blog-single__like-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 15, 10, 0.08);
}
.blog-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 15, 10, 0.12);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.blog-like-btn:hover:not(:disabled) {
  background: rgba(232, 93, 76, 0.1);
  border-color: rgba(232, 93, 76, 0.35);
}
.blog-like-btn:disabled {
  opacity: 0.55;
  cursor: default;
}
.blog-like-btn__icon {
  font-size: 1rem;
  line-height: 1;
  color: var(--accent-2, #e85d4c);
}
.blog-like-count {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-soft);
}

.blog-page__layout--list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}
@media (max-width: 900px) {
  .blog-page__layout--list {
    grid-template-columns: 1fr;
  }
  .blog-page__layout--list .blog-page__aside {
    order: -1;
  }
}
.blog-page__main--with-aside {
  min-width: 0;
}
.blog-page__empty {
  padding: 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(22, 15, 10, 0.08);
  color: var(--text-soft);
}
.blog-list.blog-list--grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}
@media (max-width: 720px) {
  .blog-list.blog-list--grid {
    grid-template-columns: 1fr;
  }
}
.blog-list__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}
.blog-list__card-thumb {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.blog-list__card-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: transparent;
}
.blog-list__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.1rem 1.05rem;
  gap: 0.5rem;
}
.blog-list__card-text {
  flex: 1;
  min-width: 0;
}
.blog-list__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.blog-list__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2, #e85d4c);
  margin-right: 0;
  flex-shrink: 0;
}
.blog-list__date {
  font-size: 0.8rem;
  color: var(--text-soft);
  min-width: 0;
}
.blog-list__title {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.1rem;
  font-family: var(--font-display, "Fraunces", serif);
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-list__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-list__card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
  padding-top: 0.25rem;
}
.blog-list__link {
  flex-shrink: 0;
}

.blog-page__aside {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  position: sticky;
  top: 5.5rem;
}
.blog-page__aside-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.blog-filter {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-filter__link {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.blog-filter__link:hover {
  background: rgba(232, 93, 76, 0.08);
  border-color: rgba(232, 93, 76, 0.15);
}
.blog-filter__link.is-active {
  background: rgba(232, 93, 76, 0.14);
  border-color: rgba(232, 93, 76, 0.28);
  color: var(--ink);
}

.blog-single__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

/* GLightbox görsel */
.gslide-media img,
.gslide-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
