@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,380;9..144,500;9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* --green-mid and --accent nudged warmer/more saturated to sit closer to
     the logo's actual olive-khaki mark (~#687034, sampled directly from
     logo.png) and read a bit more alive — kept modest on purpose, and
     --green-deep/--accent-deep are untouched since they carry the site's
     text/footer contrast and were already at their safe margin. */
  --green: #46613A;
  --green-deep: #20301A;
  --green-mid: #66792F;
  --green-soft: #8FAD68;
  --accent: #CC7A1F;
  --accent-deep: #A85F24;
  --accent-soft: rgba(210, 130, 47, .13);
  --sand: #E4CD9A;
  --cream: #FBF8F0;
  --cream-deep: #F2EAD5;
  --ink: #1D2016;
  --ink-soft: #565F49;
  --white: #FFFFFF;
  --border: #E3DBC0;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 24px 60px rgba(29, 32, 22, 0.16);
  --shadow-sm: 0 8px 24px rgba(29, 32, 22, 0.09);
  --max-width: 1200px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Exact sticky-header height, built from the same formulas .header-inner
     and .brand-logo use below — so any section can size itself as
     "the rest of the viewport" via calc(100vh - var(--header-h)) and get
     a pixel-exact, gap-free fit on every screen, not an approximation. */
  --header-pad-y: clamp(12px, 1vw + 8px, 16px);
  --header-logo-h: clamp(34px, 2vw + 26px, 46px);
  --header-h: calc(var(--header-pad-y) * 2 + var(--header-logo-h) + 1px);
}

* { box-sizing: border-box; }
/* The native `hidden` attribute is only a UA-stylesheet `display: none`,
   which any author rule that sets `display` on the same element (flex,
   grid, whatever) silently outranks — regardless of that rule's specificity.
   Without this, an element hidden with plain `hidden` can still render if
   anything else in this file gives it a `display`. This one rule guarantees
   `hidden` always wins, everywhere, permanently. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  /* Very faint fractal-noise tile (inline SVG, no HTTP request) — reads as
     a hint of paper grain rather than a flat digital fill. Low alpha (0.02)
     so it never competes with content or photos. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.29 0 0 0 0 0.24 0 0 0 0 0.13 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* min-width: 0 matters specifically for .hero / #why-nakkas / #galeri,
   which are display:flex — that makes this a flex item, and flex items
   default to min-width:auto (refuse to shrink below their content's
   natural width). Without this, fixed-width content deeper inside (e.g.
   the gallery carousel's slides) can force the whole section wider than
   the viewport on narrow screens. */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); min-width: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0 0 .5em; line-height: 1.15; color: var(--green-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 2.2vw + 1.9rem, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 1.3vw + 1.6rem, 2.9rem); }
h3 { font-size: clamp(1.1rem, .3vw + 1.02rem, 1.32rem); font-weight: 600; font-family: var(--sans); color: var(--ink); }
p { margin: 0 0 1.1em; color: var(--ink-soft); font-size: clamp(1rem, .25vw + .95rem, 1.14rem); }
section { padding: clamp(64px, 9vw, 168px) 0; }
.section-alt { background: var(--cream-deep); }
/* Every nav-linked section sits below a sticky header, so anchor-jumping
   to it (nav click, #hash in URL) must offset by the header's height —
   otherwise the header covers the section's top slice (eyebrow/heading)
   and it looks like the page "starts from the wrong line". */
section[id] { scroll-margin-top: var(--header-h); }
.muted { color: var(--ink-soft); }
.text-center { text-align: center; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-deep);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent-deep); display: inline-block; }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head.light .eyebrow { color: var(--sand); }
.section-head.light .eyebrow::before { background: var(--sand); }
.section-head.light h2 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: clamp(13px, .6vw + 11px, 17px) clamp(26px, 1.6vw + 22px, 36px);
  border-radius: 999px;
  font-weight: 600;
  font-size: clamp(.88rem, .2vw + .84rem, 1rem);
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--green-mid); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-block { display: block; width: 100%; text-align: center; }
.nav-cta.btn-primary { background: var(--accent); box-shadow: var(--shadow-sm); }
.nav-cta.btn-primary:hover { background: var(--accent-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: var(--header-pad-y) clamp(20px, 4vw, 32px); gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: auto; height: var(--header-logo-h); object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 16px; }
/* Nav labels + flags sized up 25% from their original clamp/px values. */
.nav-link { font-weight: 500; font-size: clamp(1.06rem, .25vw + 1.01rem, 1.16rem); color: var(--ink-soft); padding: 6px 1px; border-bottom: 1.5px solid transparent; transition: color .15s, border-color .15s; white-space: nowrap; }
.nav-link:hover { color: var(--green-deep); border-color: var(--green-mid); }
.nav-cta { margin-left: 4px; padding: 9px 18px; font-size: clamp(1rem, .19vw + .96rem, 1.1rem); white-space: nowrap; }
/* With 22 languages, showing every flag inline in the nav doesn't fit —
   just the active page's flag shows, and clicking it opens a menu of every
   other language (grid of flag+name, scrollable if the viewport is short).
   Same popup pattern as the date-range picker and country combobox. */
.lang-switch { position: relative; }
.lang-flag { display: inline-flex; line-height: 0; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(29,32,22,.12); }
.lang-flag svg { display: block; width: 27.5px; height: 18.75px; }
.lang-switch-trigger { background: none; border: none; padding: 2px; cursor: pointer; display: flex; border-radius: 2px; }
.lang-switch-trigger:hover, .lang-switch-trigger:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--green-mid); }
.lang-switch-menu {
  position: absolute; top: 100%; right: 0; margin-top: 10px; z-index: 50;
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  box-shadow: var(--shadow); padding: 10px;
  display: grid; grid-template-columns: repeat(2, minmax(148px, 1fr)); gap: 2px;
  max-height: 70vh; overflow-y: auto; width: max-content; max-width: 90vw;
}
.lang-switch-option {
  display: flex; align-items: center; gap: 9px; padding: 8px 10px;
  border-radius: 4px; text-decoration: none; color: var(--ink);
  font-size: .88rem; white-space: nowrap;
}
.lang-switch-option:hover { background: var(--cream-deep); }
.lang-switch-option.is-active { background: var(--cream-deep); font-weight: 700; color: var(--green-deep); }
.lang-switch-option .lang-flag svg { width: 22px; height: 15px; }
@media (max-width: 500px) {
  .lang-switch-menu { grid-template-columns: 1fr; right: -44px; }
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--green-deep); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  /* Exact fit: fills precisely what's left below the sticky header, on
     every screen — no vh-percentage guesswork, no leftover gap, no cap
     that stops filling early on tall screens. */
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,22,12,.35) 0%, rgba(20,22,12,.55) 55%, rgba(20,22,12,.82) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; padding: 0 clamp(20px, 4vw, 32px); margin: 0 auto; }
.hero h1 { color: var(--white); margin-bottom: .28em; }
.hero .eyebrow { color: var(--accent); margin-bottom: 10px; }
.hero .eyebrow::before { background: var(--accent); }
.hero-title-caps {
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.04;
  /* Weighted mostly by vh (viewport HEIGHT), not vw — this is what makes the
     hero reliably fit one screen on any monitor/window/zoom combination.
     Sizing by width alone (the old approach) breaks on wide-but-short
     windows: a wide vw pushes the text large while a short vh gives it no
     room, and it overflows. Scaling by vh keeps text height a constant
     fraction of the available viewport height regardless of width. */
  font-size: clamp(1.4rem, 0.3rem + 3.2vh + 0.5vw, 2.75rem);
}
.hero p.lead { color: rgba(255,255,255,.88); font-size: clamp(.88rem, .64rem + .85vh, 1.08rem); max-width: 600px; margin-bottom: .65em; }
.hero-facts { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 16px; }
.hero-fact { display: flex; align-items: flex-start; gap: 10px; }
.hero-fact-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.hero-fact strong { display: block; color: var(--white); font-size: clamp(.82rem, .68rem + .45vh, .96rem); font-weight: 700; text-transform: uppercase; letter-spacing: .01em; }
.hero-fact span { display: block; color: rgba(255,255,255,.7); font-size: .8rem; margin-top: 2px; }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75); z-index: 1;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Why Nakkaş grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: var(--white); padding: 44px 36px; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.why-card:hover { background: var(--cream); transform: translateY(-4px); box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.why-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-soft); color: var(--green-mid); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: .95rem; margin-bottom: 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* #why-nakkas: fit the whole section within one screen, sized off viewport
   height (not width) so it holds up on wide-but-short browser windows —
   same vh-dominant technique used for .hero. Scoped to #why-nakkas only. */
/* A real camp photo behind a light cream scrim, instead of the flat
   .section-alt fill — the white grid cards (with their own shadow on
   hover) still read clearly, but the section isn't a purely-textual,
   photo-free stretch of the page anymore. The photo itself is set inline
   in whySection() (pages.js), same as .hero / .life-section, so it goes
   through asset()/BASE_PATH correctly for subfolder deploys — this rule
   only supplies the scrim and size/position. */
#why-nakkas { position: relative; background-size: cover; background-position: center; }
#why-nakkas::before { content: ''; position: absolute; inset: 0; background: rgba(242, 234, 213, .93); }
#why-nakkas .container { position: relative; z-index: 1; }

#why-nakkas {
  /* Exact fit, same technique as .hero — fills precisely what's left
     below the sticky header on every screen, no leftover gap, no cap. */
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(24px, 5vh, 72px) 0;
}
#why-nakkas .section-head { margin-bottom: clamp(18px, 3.4vh, 56px); }
#why-nakkas .eyebrow { margin-bottom: clamp(8px, 1.2vh, 16px); }
#why-nakkas h2 { font-size: clamp(1.25rem, .35rem + 2.6vh + .3vw, 2.5rem); }
#why-nakkas .why-icon {
  width: clamp(34px, 4.6vh, 52px);
  height: clamp(34px, 4.6vh, 52px);
  margin-bottom: clamp(8px, 1.6vh, 20px);
}
#why-nakkas .why-card { padding: clamp(16px, 2.8vh, 40px) clamp(16px, 2.6vw, 32px); }
#why-nakkas .why-card h3 { font-size: clamp(.92rem, .74rem + .5vh, 1.15rem); margin-bottom: clamp(4px, .8vh, 8px); }
#why-nakkas .why-card p { font-size: clamp(.8rem, .68rem + .35vh, .93rem); margin-bottom: 0; line-height: 1.45; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.about-art { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-art img { aspect-ratio: 4/5; object-fit: cover; width: 100%; height: 100%; transition: transform .5s ease; }
.about-art:hover img { transform: scale(1.045); }

/* ---------- About (exact fit, same --header-h technique as .hero /
   #why-nakkas / #galeri) ----------
   This section has more text than the others (eyebrow + h2 + 4 paragraphs
   + a closing statement block below), and its two direct children
   (.split and .about-closing) aren't wrapped in one shared container, so
   flex-direction is switched to column here — justify-content does the
   vertical centering instead of align-items.
   The photo's height is pinned via clamp instead of letting its 4:5
   aspect-ratio dictate height from the grid column's width, so a tall
   narrow photo can never push the section past the viewport on its own;
   object-fit:cover just crops it to whatever height is available. */
#hakkimizda {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 4vh, 56px) 0;
}
#hakkimizda .split { gap: clamp(28px, 5vw, 72px); }
#hakkimizda .about-art { height: clamp(200px, 44vh, 460px); }
#hakkimizda .eyebrow { margin-bottom: clamp(8px, 1.4vh, 18px); }
#hakkimizda h2 { font-size: clamp(1.3rem, .5rem + 2.6vh + .3vw, 2.6rem); margin-bottom: clamp(8px, 1.6vh, 16px); }
#hakkimizda .split > div p {
  font-size: clamp(.8rem, .68rem + .4vh, .98rem);
  margin-bottom: clamp(6px, 1.1vh, 14px);
  line-height: 1.5;
}
#hakkimizda .about-closing {
  margin: clamp(20px, 4vh, 56px) auto 0;
  padding-top: clamp(14px, 2.6vh, 32px);
}
#hakkimizda .about-closing p { font-size: clamp(.88rem, .76rem + .4vh, 1.08rem); margin-bottom: .3em; }
#hakkimizda .about-closing .statement { font-size: clamp(1.15rem, .5rem + 2vh + .3vw, 2.2rem); }

/* ---------- Gallery ---------- */
#galeri {
  /* Exact fit, same technique as .hero / #why-nakkas — no vh-percentage
     guesswork, no leftover gap on any screen. */
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vh, 64px) 0;
  /* Faint camp photo instead of flat cream (owner's own suggestion) —
     same heavy-scrim technique as #why-nakkas, kept subtle on purpose so
     it never competes with the sharp active photo in the carousel. */
  position: relative;
  background-size: cover;
  background-position: center;
}
#galeri::before { content: ''; position: absolute; inset: 0; background: rgba(251, 248, 240, .93); }
#galeri .container { position: relative; z-index: 1; }
#galeri .section-head { margin-bottom: clamp(14px, 2.4vh, 40px); }
/* No eyebrow label in this section (removed) — h2 leads directly. */
#galeri h2 { font-size: clamp(1.2rem, .3rem + 2.4vh + .3vw, 2.3rem); }

/* ---------- Gallery carousel ----------
   Single-photo slider: only the active slide is ever visible — neighbors
   sit just outside the viewport's own bounds (not merely faded/blurred),
   so nothing but the current photo shows. Arrows step through. --slide-h
   is vh-dominant like the rest of the fit-to-screen sections, so it scales
   with the section instead of the page width. */
.gallery-carousel {
  /* +25% over the previous clamp, at the owner's request — bigger photo,
     no neighbor peek to make room for. */
  --slide-h: clamp(325px, 75vh, 775px);
  --slide-w: calc(var(--slide-h) * 0.75);
  --slide-gap: clamp(12px, 2.2vw, 28px);
  --arrow-size: 44px;
  --arrow-edge-gap: 8px;
  margin-top: clamp(8px, 2vh, 20px);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.carousel-viewport {
  /* Exactly one slide-width — neighbor slides in the track sit outside
     this box and are clipped entirely by overflow:hidden, not just faded.
     min-width: 0 overrides the flex item's default min-width:auto, which
     would otherwise refuse to shrink below the track's unclipped content
     width and blow out the layout on narrow screens. */
  width: var(--slide-w);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.carousel-track {
  display: flex; align-items: center;
  gap: var(--slide-gap);
  transition: transform .45s cubic-bezier(.22, .9, .32, 1);
  will-change: transform;
}
.carousel-slide {
  position: relative; flex: 0 0 auto;
  height: var(--slide-h);
  width: var(--slide-w);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.carousel-slide.is-active { z-index: 2; }
.carousel-slide[hidden] { display: none; }
.carousel-slide-img { all: unset; display: block; width: 100%; height: 100%; cursor: pointer; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-slide-img picture { width: 100%; height: 100%; display: block; }
.carousel-slide-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.carousel-slide-img:hover img { transform: scale(1.06); }
.carousel-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none; color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, background .18s ease;
}
.carousel-slide.is-active .carousel-zoom { opacity: 1; pointer-events: auto; }
.carousel-zoom:hover { background: var(--white); }
.carousel-arrow {
  /* Anchored to the carousel's own center (not the viewport edges), offset
     by exactly half the active slide's width — so the buttons always sit
     right beside the centered/active photo, not next to the peeking
     neighbor photos on either side. --slide-w is the same var the slides
     size themselves with, so this tracks it at every viewport. */
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: var(--arrow-size); height: var(--arrow-size); border-radius: 50%;
  background: var(--white); border: 1px solid var(--border); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: background .18s ease, border-color .18s ease;
}
.carousel-arrow:hover { background: var(--cream-deep); border-color: var(--green-mid); }
.carousel-prev {
  /* max(4px, ...) keeps the button from sliding past the carousel's own
     left edge on narrow screens, where the active slide nearly fills the
     width — it just settles over the image's edge instead of overflowing
     the page horizontally. */
  left: max(4px, calc(50% - (var(--slide-w) / 2) - var(--arrow-edge-gap) - var(--arrow-size)));
}
.carousel-next {
  right: max(4px, calc(50% - (var(--slide-w) / 2) - var(--arrow-edge-gap) - var(--arrow-size)));
}
.carousel-prev svg { transform: rotate(90deg); }
.carousel-next svg { transform: rotate(-90deg); }

@media (max-width: 640px) {
  .gallery-carousel { --arrow-size: 36px; --arrow-edge-gap: 4px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 16, 10, .94);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: min(90vw, 900px); max-height: 88vh; margin: 0; text-align: center; }
.lightbox-figure img { max-width: 100%; max-height: 76vh; width: auto; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: contain; }
.lightbox-figure figcaption { color: rgba(255,255,255,.85); font-size: .92rem; margin-top: 16px; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: var(--white); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .18s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-close svg { transform: rotate(45deg); }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 16px; }
.lightbox-prev svg { transform: rotate(90deg); }
.lightbox-next { right: 16px; }
.lightbox-next svg { transform: rotate(-90deg); }
@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lightbox-close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

.about-closing {
  max-width: 720px; text-align: center;
  border-top: 1px solid var(--border);
}
.about-closing p { font-size: 1.15rem; margin-bottom: .3em; }
.about-closing .statement { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--green-deep); font-weight: 500; }

/* ---------- Life section ---------- */
.life-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}
.life-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(20,22,12,.75), rgba(20,22,12,.55)); }
.life-section .container { position: relative; z-index: 1; }
.life-list { list-style: none; margin: 0 auto; padding: 0; max-width: 620px; display: flex; flex-direction: column; gap: 0; }
.life-list li {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 380;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); text-align: center;
  color: rgba(255,255,255,.94);
}
.life-list li:last-child { border-bottom: none; font-style: italic; color: var(--sand); }

/* Rhythm break: unlike every other section's centered eyebrow+h2, Yaşam's
   head sits left-aligned — a small, deliberate departure so the page
   doesn't read as one repeating template top to bottom. */
.section-head-left { text-align: left; margin-left: 0; margin-right: auto; max-width: 480px; }
@media (max-width: 640px) { .section-head-left { text-align: center; margin: 0 auto; } }

/* Exact fit, same --header-h technique as .hero / #why-nakkas / #galeri /
   #hakkimizda / #iletisim — a single .container child (section-head + the
   list), so plain align-items:center works like the simpler sections. */
#yasam {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vh, 56px) 0;
}
#yasam .section-head { margin-bottom: clamp(14px, 2.6vh, 40px); }
#yasam .eyebrow { margin-bottom: clamp(6px, 1.2vh, 16px); }
#yasam h2 { font-size: clamp(1.2rem, .3rem + 2.4vh + .3vw, 2.3rem); }
#yasam .life-list li { font-size: clamp(.88rem, .72rem + .85vh, 1.4rem); padding: clamp(6px, 1.6vh, 18px) 0; }

/* ---------- FAQ ----------
   Deliberately NOT exact-fit like the other sections — an open accordion
   item can make this section taller than one screen at any time, so
   pinning it to min-height:calc(100vh - header-h) would fight the
   accordion instead of complementing it. Instead this just tightens the
   section's own vertical padding and heading spacing (down from the
   generous site-wide defaults) so the section sits higher on the page
   and reads less spaced-out, without claiming a fixed one-screen height. */
#sss { padding: clamp(40px, 5vw, 96px) 0; }
#sss .section-head { margin-bottom: clamp(28px, 4vw, 48px); }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 4px; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  font-family: var(--serif); font-size: 1.18rem; color: var(--green-deep); font-weight: 600;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { color: var(--white); background: var(--green-mid); border-radius: 50%; padding: 5px; box-sizing: content-box; width: 14px; height: 14px; transition: transform .2s ease, background .2s ease; flex-shrink: 0; }
.faq-item[open] summary svg { transform: rotate(45deg); background: var(--accent); }
.faq-item[open] summary { margin-bottom: 4px; }
/* The answer reads as a distinct, quoted block (accent rail + indent +
   tinted panel) instead of running straight on from the question — the
   thing that was reported as confusing before this. */
.faq-answer {
  margin-top: 14px;
  padding: 14px 18px;
  border-left: 3px solid var(--sand);
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.faq-answer p { margin: 0; font-size: .98rem; }
.faq-answer p + p { margin-top: 10px; }
.faq-bullets {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-bullets li {
  position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 1.02rem;
}
.faq-bullets li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-mid);
}
.faq-bullets + p { margin-top: 12px; }

/* ---------- Contact ----------
   Three columns — contact info, map, form — instead of the map being
   stacked (small) under the contact info. .contact-split overrides
   .split's 2-column template entirely. align-items:stretch makes all
   three columns match the row's height (set by the tallest one, the
   form), and .contact-info centers its own short content vertically
   within that taller box so it doesn't look top-heavy next to the map
   and form; .contact-map/.map-embed fill their column completely so the
   map reads as a proper full-height panel instead of a thin strip. */
.contact-split { grid-template-columns: .78fr .9fr 1.15fr; gap: 28px; align-items: stretch; }
/* Non-TR pages: no form-card in this section anymore (reservation moved to
   its own #rezervasyon section), so just two columns instead of three. */
.contact-split-2col { grid-template-columns: .85fr 1.15fr; }
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.contact-line { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--green-mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.contact-label { display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 2px; }
.contact-line a, .contact-line span:not(.contact-label) { font-size: 1.02rem; color: var(--ink); }
.contact-line a:hover { color: var(--green-deep); }
.contact-map { min-height: 220px; }
.map-embed { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 0; width: 100%; height: 100%; }
@media (max-width: 860px) { .contact-split { grid-template-columns: 1fr; } .contact-map { min-height: 260px; } }

.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 40px; }
/* Name/phone and email/subject pair up side-by-side — halves the row
   count vs. stacking all 5 fields, which is most of what makes #iletisim's
   exact-fit budget work at short viewports. */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
label { font-weight: 600; font-size: .85rem; color: var(--ink); }
input, select, textarea {
  padding: 13px 15px; border-radius: 4px; border: 1px solid var(--border);
  font-size: .95rem; font-family: inherit; background: var(--cream); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green-mid); background: var(--white); }
textarea { resize: vertical; min-height: 110px; }
.alert { padding: 14px 18px; border-radius: 4px; margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #E4F1DE; color: #34702B; }
.alert-error { background: #F5E1DE; color: #A13A2C; }
.form-card-intro { font-size: .92rem; margin-bottom: 18px; }
.availability-note {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  background: var(--cream-deep); border-radius: var(--radius);
  padding: 10px 14px; margin-bottom: 16px;
  font-size: .86rem; color: var(--ink-soft);
}
.availability-note .availability-label { font-weight: 700; color: var(--green-deep); text-transform: uppercase; letter-spacing: .04em; font-size: .72rem; flex-shrink: 0; }
.availability-note.is-full { background: #F5E1DE; }
.availability-note.is-full .availability-label { color: #A13A2C; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; gap: 0; } .availability-note { flex-direction: column; gap: 2px; } }

/* ---------- Contact (exact fit, same --header-h technique as .hero /
   #why-nakkas / #galeri / #hakkimizda) ----------
   This section's right column (the form) is the tallest content of any
   exact-fit section on the site — a heading, 5 fields and a button — so
   its shrink clamps are the most aggressive on the site. .form-row above
   already halves the field-row count; these clamps handle the rest. */
#iletisim {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(20px, 4vh, 56px) 0;
}
#iletisim .section-head { margin-bottom: clamp(14px, 2.6vh, 40px); }
#iletisim .eyebrow { margin-bottom: clamp(6px, 1.2vh, 16px); }
#iletisim h2 { font-size: clamp(1.2rem, .3rem + 2.4vh + .3vw, 2.3rem); margin-bottom: clamp(4px, 1vh, 12px); }
#iletisim .section-head p { font-size: clamp(.8rem, .68rem + .4vh, .98rem); margin-bottom: 0; }

#iletisim .contact-icon { width: clamp(32px, 5vh, 44px); height: clamp(32px, 5vh, 44px); }
#iletisim .contact-icon svg { width: clamp(15px, 2.4vh, 20px); height: clamp(15px, 2.4vh, 20px); }
#iletisim .contact-line { gap: clamp(10px, 1.8vh, 16px); margin-bottom: clamp(8px, 1.8vh, 22px); }
#iletisim .contact-label { font-size: clamp(.68rem, .6rem + .3vh, .76rem); margin-bottom: 1px; }
#iletisim .contact-line a, #iletisim .contact-line span:not(.contact-label) { font-size: clamp(.86rem, .76rem + .3vh, 1.02rem); }

#iletisim .form-card { padding: clamp(18px, 3.4vh, 40px); }
#iletisim .form-card h3 { font-size: clamp(1rem, .8rem + .5vh, 1.32rem); margin-bottom: clamp(6px, 1.4vh, 16px); }
#iletisim .form-row { gap: clamp(8px, 1.2vw, 14px); }
#iletisim .form-field { gap: clamp(3px, .6vh, 6px); margin-bottom: clamp(8px, 1.4vh, 18px); }
#iletisim label { font-size: clamp(.76rem, .7rem + .2vh, .85rem); }
#iletisim input, #iletisim select, #iletisim textarea {
  padding: clamp(8px, 1.4vh, 13px) clamp(10px, 1vw, 15px);
  font-size: clamp(.86rem, .8rem + .2vh, .95rem);
}
#iletisim textarea { min-height: clamp(30px, 4vh, 70px); }
#iletisim .btn-block { padding-top: clamp(8px, 1.2vh, 13px); padding-bottom: clamp(8px, 1.2vh, 13px); }
/* The reservation form (non-TR pages) has three more rows than the plain
   contact form (dates, guest count, stay type) plus an intro line and an
   this section keeps only its own short 4-field "send a message" form
   (Turkish only — see contactSection() in pages.js); the reservation
   form and its extra fields moved to their own #rezervasyon section. */
#iletisim .form-field { margin-bottom: clamp(4px, 1vh, 14px); }

/* ---------- Reservation (its own section, non-TR pages only) ----------
   Deliberately a different visual register from every other section —
   solid dark background instead of cream, a single centered card — so it
   reads as a distinct destination in the nav, not a variant of Contact. */
.reservation-section {
  position: relative;
  background: var(--green-deep);
  /* Tighter than the site's default section padding — step 1 of the
     wizard (dates + one button) is short on purpose, so the section
     shouldn't force extra scroll before the card is even in view. */
  padding: clamp(40px, 6vw, 100px) 0;
}
.reservation-section .section-head p { color: rgba(255,255,255,.8); }
.reservation-card .alert { margin-bottom: 20px; }
.reservation-card h3 { margin-bottom: 16px; }

/* Form on the left, description on the right — reverse of the site's usual
   split section (which puts text first), because here the form is the
   part people actually need to act on first. */
.reservation-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.reservation-split .reservation-head { padding-top: clamp(4px, 1vw, 16px); }
@media (max-width: 860px) {
  .reservation-split { grid-template-columns: 1fr; }
  .reservation-split .reservation-head { order: -1; }
}
/* Dates, caravan count and the check button live in one row, like a
   familiar booking-site search bar — the date field opens a custom
   range-picker popup (built in app.js) since a single field can't be a
   native <input type=date>, which only ever holds one date. */
.reservation-searchbar { display: flex; align-items: stretch; gap: 10px; margin-bottom: 10px; }
.date-range-field { position: relative; flex: 1 1 auto; min-width: 0; }
.searchbar-trigger {
  display: flex; align-items: center; gap: 10px; width: 100%; height: 100%;
  padding: 9px 14px; border-radius: 4px; border: 1px solid var(--border);
  background: var(--cream); color: var(--ink); font-family: inherit;
  text-align: left; cursor: pointer;
}
.searchbar-trigger:hover, .searchbar-trigger:focus-visible { border-color: var(--green-mid); background: var(--white); outline: none; }
.searchbar-trigger-icon { flex-shrink: 0; color: var(--green-mid); display: flex; }
.searchbar-trigger-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.searchbar-trigger-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--ink-soft); margin: 0;
}
.searchbar-trigger-value { font-size: .92rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Styled as one unified bordered box (same as .searchbar-trigger), not a
   label floating above a separate input box — otherwise only the input's
   own (shorter) border is visible and it reads as a different height from
   its two neighbors, even though the flex row gives all three equal height. */
.caravan-count-field {
  display: flex; flex-direction: column; justify-content: center; gap: 1px;
  flex: 0 0 100px; padding: 9px 14px; border-radius: 4px; border: 1px solid var(--border);
  background: var(--cream);
}
.caravan-count-input {
  border: none; background: none; padding: 0; margin: 0; width: 100%;
  font-size: .92rem; font-weight: 600; color: var(--ink); font-family: inherit;
}
.caravan-count-input:focus { outline: none; }
.caravan-count-field:focus-within { border-color: var(--green-mid); background: var(--white); }
.searchbar-check-btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 640px) {
  .reservation-searchbar { flex-direction: column; }
  .caravan-count-field { flex: 1 1 auto; }
}

/* The popup itself: two months side by side (a stay here can run well past
   a month boundary, so paging back and forth to pick both ends is worth
   avoiding) — same pattern as any familiar booking-site calendar. First
   click sets the arrival date, the next click (on a later day) sets
   departure and closes the popup; clicking an earlier day restarts the
   selection. The prev/next arrows flank both months rather than sitting
   between them, so they read as "shift the whole view" not "change month A". */
.date-range-popup {
  position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  width: 560px; max-width: 94vw;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; box-shadow: var(--shadow); padding: 16px 44px;
}
.date-range-months { display: flex; gap: 28px; }
.date-range-month { flex: 1 1 0; min-width: 0; }
.date-range-month-label { font-weight: 700; font-size: .95rem; color: var(--green-deep); text-transform: capitalize; margin-bottom: 10px; }
.date-nav-btn {
  position: absolute; top: 16px;
  width: 28px; height: 28px; border-radius: 4px; border: 1px solid var(--border);
  background: var(--cream); color: var(--ink); font-size: 1.05rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.date-nav-prev { left: 10px; }
.date-nav-next { right: 10px; }
.date-nav-btn:hover { background: var(--cream-deep); }
.date-range-weekdays, .date-range-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.date-range-weekdays { margin-bottom: 4px; }
.date-range-weekdays span { text-align: center; font-size: .66rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; }
@media (max-width: 640px) {
  .date-range-popup { width: 300px; padding: 16px; }
  .date-range-months { flex-direction: column; gap: 20px; }
  .date-nav-btn { top: 16px; }
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border: none; background: none; border-radius: 4px; cursor: pointer;
  font-size: .84rem; color: var(--ink); font-family: inherit;
}
.cal-day:hover:not(:disabled):not(.is-empty) { background: var(--cream-deep); }
.cal-day.is-empty { visibility: hidden; cursor: default; }
.cal-day:disabled { color: #C9C2AC; cursor: not-allowed; }
.cal-day.is-in-range { background: var(--accent-soft); border-radius: 0; }
.cal-day.is-selected { background: var(--green-mid); color: var(--white); font-weight: 700; }
.cal-day.is-range-start { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.cal-day.is-range-end { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

/* White text on rgba(255,255,255,.08) was correct back when this sat
   directly on the section's dark green background — it now lives inside
   the white .reservation-card, where that combination is white-on-white
   and effectively invisible. Match .availability-note's cream treatment
   instead, since both live in the same white-card context. */
.reservation-price-summary {
  margin: 10px 0 16px;
  padding: 10px 14px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 700;
  color: var(--green-deep);
}
.reservation-recheck-hint {
  margin-top: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
[data-res-size-error] { margin-top: 10px; }
.reservation-dates { margin-bottom: 24px; }

/* The form itself has more fields than Contact's, and can grow further
   still (one more caravan row per caravan) — tighten field spacing and the
   optional-comment textarea so it stays reasonably compact. */
.reservation-card .form-field { margin-bottom: 14px; }
.reservation-card textarea { min-height: 70px; }
/* Country combobox: a text input with a filtered dropdown list beneath it —
   same popup pattern as the date-range picker (position:relative field,
   position:absolute list), so a guest can type to narrow ~200 countries
   instead of scrolling a native <select>. */
.combobox-field { position: relative; }
.combobox-list {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 40;
  max-height: 220px; overflow-y: auto; margin-top: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: var(--shadow);
}
.combobox-option {
  display: block; width: 100%; text-align: left; padding: 9px 14px;
  border: none; background: none; font-family: inherit; font-size: .92rem;
  color: var(--ink); cursor: pointer;
}
.combobox-option:hover, .combobox-option.is-highlighted { background: var(--cream-deep); }
.combobox-error { margin-top: 6px; font-size: .82rem; color: #A13A2C; }

/* ---------- Reservation email verification page ---------- */
.verify-section { padding: clamp(120px, 18vw, 220px) 0; }
.verify-section .btn { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.82); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.15fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-wordmark { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--white); letter-spacing: -0.01em; margin: 0 0 10px; }
.footer-tagline { max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-col h4 { color: var(--white); font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.68); margin-bottom: 10px; font-size: .92rem; }
.footer-col a:hover { color: var(--white); }
/* `.footer-col a.footer-social-btn` (not just `.footer-social-btn`) so this
   beats the generic `.footer-col a` rule above on specificity — otherwise
   that rule's `display:block` wins and the icon inside the circle loses
   its flex centering, ending up squashed in a corner instead of centered. */
.footer-col a.footer-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  margin-bottom: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer-col a.footer-social-btn:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); }
.footer-nav { display: flex; flex-direction: column; }
.footer-address { font-style: normal; }
/* Same specificity fix as .footer-social-btn above, so the icon+text rows
   actually get their flex layout/gap instead of falling back to plain
   block flow. */
.footer-col a.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-line svg { flex-shrink: 0; margin-top: 2px; opacity: .75; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 32px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: .8rem; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.55);
}
.footer-top-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); transition: color .2s ease; margin: 0; }
.footer-top-link:hover { color: var(--white); }
.footer-top-link svg { transition: transform .2s ease; }
.footer-top-link:hover svg { transform: translateY(-2px); }

/* ---------- WhatsApp quick access ----------
   Uses WhatsApp's own brand green rather than the site's forest green —
   on purpose: this icon needs to be instantly recognizable and stand out
   against every section background (light, dark-photo, green footer)
   it floats over, which the site's own dark green can't do consistently. */
.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 40;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(20,22,12,.32), 0 2px 8px rgba(20,22,12,.2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { background: #1EBE59; transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 34px rgba(20,22,12,.36), 0 2px 8px rgba(20,22,12,.22); }
@media (max-width: 640px) { .whatsapp-float { width: 56px; height: 56px; } .whatsapp-float svg { width: 26px; height: 26px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsiveness ---------- */
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 18px 32px 28px;
    display: none; gap: 16px;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { order: -1; }
}

@media (max-width: 860px) {
  .section-head { margin-bottom: 44px; }

  /* Desktop pins these sections to exactly one screen's height (see the
     --header-h comments earlier in this file). Below 860px that same
     precision fights mobile browsers' shifting viewport (address bar
     show/hide) and squeezes content — so on mobile these sections just
     size to their own content instead, like a normal long-scroll page. */
  #why-nakkas, #galeri, #hakkimizda, #yasam, #iletisim {
    min-height: 0;
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .hero-facts { gap: 22px; }
  .form-card { padding: 26px 22px; }
  .footer-bottom { padding: 18px 20px; }
  .why-card { padding: 32px 24px; }
}

