/* ==========================================================================
   Peony Thai Massage & Spa — design system
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Varsayılan tema: krem zemin · lacivert · altın.
     Açık ve sıcak bir kâğıt zemin, lacivert metin, altın vurgu. */
  --green:        #1B2A4A;   /* lacivert — ana renk: butonlar, başlıklar */
  --green-deep:   #101A30;   /* en koyu: footer ve ara şerit */
  --green-soft:   #A8862F;   /* altın — üst etiketler ve ikincil vurgu */
  --green-tint:   #F3ECDE;   /* koyu krem: bölüm zemini */
  --white:        #FFFFFF;   /* kart yüzeyi */
  --paper:        #FBF7EF;   /* krem: gövde zemini */
  --ink:          #16203A;   /* ana metin: lacivert */
  --muted:        #6B7385;   /* ikincil metin */
  --line:         #E7DCC8;   /* krem çizgi */

  /* Altın, lacivertten ayrı bir vurgu olarak da gerekiyor */
  --gold:         #C9A961;

  /* Ana renk üstündeki yazı ve cam yüzeylerin zemini */
  --on-accent:    #FFFFFF;   /* lacivert zemin üstündeki yazı */
  --surface-rgb:  255, 255, 255;

  /* rgba() içinde kullanılan bileşenler — tema ile birlikte değişir */
  --accent-rgb:   27, 42, 74;
  --shadow-rgb:   32, 28, 20;
  --deep-rgb:     16, 26, 48;
  --deep2-rgb:    24, 38, 66;

  --font: "Onest", "Noto Sans Thai", "Noto Sans SC", "Noto Sans Devanagari",
          system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
  --gutter: clamp(20px, 5vw, 48px);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --nav-h: 72px;
}


/* --------------------------------------------------------------------------
   Alternatif renk temaları
   Yalnızca token'lar değişir; hiçbir bileşen kuralı tekrarlanmaz.
   -------------------------------------------------------------------------- */



/* Gece mavisi · Altın — koyu alternatif */
:root[data-theme="navy"] {
  --green:        #C9A961;
  --green-deep:   #060B16;
  --green-soft:   #B08D4F;
  --green-tint:   #16223C;
  --white:        #0E1729;
  --paper:        #0E1729;
  --ink:          #ECE4D2;
  --muted:        #9BA6BF;
  --line:         #253253;
  --gold:         #C9A961;

  --on-accent:    #0E1729;
  --surface-rgb:  14, 23, 41;
  --accent-rgb:   201, 169, 97;
  --shadow-rgb:   3, 7, 15;
  --deep-rgb:     6, 11, 22;
  --deep2-rgb:    12, 20, 38;
}

/* Koyu temada vurgulu paket kartı altın zeminli olur: yazılar koyu */
:root[data-theme="navy"] .plan--feature { color: var(--on-accent); }
:root[data-theme="navy"] .plan--feature .plan__note,
:root[data-theme="navy"] .plan--feature li { color: rgba(14, 23, 41, .78); }
:root[data-theme="navy"] .plan--feature li svg { color: var(--on-accent); }
:root[data-theme="navy"] .plan--feature .plan__badge {
  background: rgba(14, 23, 41, .14);
  color: var(--on-accent);
}
:root[data-theme="navy"] .plan--feature .plan__price { border-color: rgba(14, 23, 41, .22); }
:root[data-theme="navy"] .plan--feature .plan__price .amt { color: var(--on-accent); }
:root[data-theme="navy"] .plan--feature .plan__price .per { color: rgba(14, 23, 41, .65); }
:root[data-theme="navy"] .nav.is-stuck .nav__logo img,
:root[data-theme="navy"] .nav--light .nav__logo img { filter: brightness(0) invert(1); }
:root[data-theme="navy"] .map { filter: invert(.9) hue-rotate(180deg) grayscale(.35); }
:root[data-theme="navy"] .map:hover { filter: invert(.86) hue-rotate(180deg) grayscale(.15); }
:root[data-theme="navy"] .tbd { color: rgba(236, 228, 210, .5); }

/* Lila · Pembemsi krem — açık tema */
:root[data-theme="lilac"] {
  --green:        #6E5A8A;
  --green-deep:   #4B3B66;
  --green-soft:   #8F76A8;
  --green-tint:   #F8F2F6;
  --white:        #FFFFFF;
  --paper:        #FDFAFC;
  --ink:          #2A2233;
  --muted:        #7A7185;
  --line:         #EEE3EC;

  --on-accent:    #FFFFFF;
  --surface-rgb:  255, 255, 255;
  --accent-rgb:   110, 90, 138;
  --shadow-rgb:   42, 34, 51;
  --deep-rgb:     48, 38, 62;
  --deep2-rgb:    75, 59, 102;
}

/* Açık tema olduğu için varsayılan koyu zemin düzeltmeleri geri alınır */


/* Tema geçişi yumuşak olsun */
body, .nav__inner, .svc, .plan, .info-card, .foot, .section--tint, .section--paper {
  transition: background-color .5s var(--ease-soft), color .5s var(--ease-soft),
              border-color .5s var(--ease-soft);
}

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

html {
  /* body'de vardı ama html'de yoktu: içerikten doğan tek bir taşma
     tüm sayfayı yatayda kaydırılabilir yapıyor, sabit navbar da o geniş
     belgeye yayılıp sağa uzuyordu. */
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 32px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--green); color: var(--on-accent); }

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 880px; }

.section { padding-block: clamp(80px, 11vw, 140px); }
.section--tint { background: var(--green-tint); }
.section--paper { background: var(--paper); }

/* Everything is centred — the core layout rule for this site */
.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(44px, 6vw, 72px);
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.display {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h2 {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(27px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.2;
}

.h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
  margin-inline: auto;
}

.lede--tight { margin-top: 20px; }

/* Inline oval image tucked inside a heading line */
.inline-media {
  display: inline-block;
  vertical-align: middle;
  width: clamp(88px, 12vw, 150px);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-pill);
  object-fit: cover;
  margin: 0 .18em;
  transform: translateY(-.06em);
  background: var(--green-tint);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: var(--on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .25s var(--ease-soft),
              box-shadow .25s var(--ease-soft),
              background-color .25s var(--ease-soft),
              color .25s var(--ease-soft),
              border-color .25s var(--ease-soft);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), .26);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  --btn-bg: var(--green);
  --btn-fg: var(--on-accent);
  border-color: var(--green);
}

.btn--light {
  --btn-bg: rgba(255,255,255,.12);
  --btn-fg: #fff;
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--light:hover {
  --btn-bg: #fff;
  --btn-fg: var(--green-deep);
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

/* Hero ve footer'daki ana çağrı: referanstaki altın buton */
.btn--solid-light {
  --btn-bg: var(--gold);
  --btn-fg: #1B2A4A;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13.5px;
}
.btn--solid-light:hover { box-shadow: 0 12px 28px rgba(0,0,0,.28); }

.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}

/* Text link with sliding underline */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  position: relative;
  padding-bottom: 2px;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink .arw { transition: transform .3s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }

/* ==========================================================================
   Navbar — floating glass pill
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  max-width: 100vw;
  z-index: 100;
  padding: 18px var(--gutter);
  transition: padding .5s var(--ease);
}
.nav.is-stuck { padding-top: 10px; }

.nav__inner {
  max-width: var(--shell);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 12px 0 24px;
  border-radius: var(--r-pill);
  background: rgba(var(--shadow-rgb), .28);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  color: #fff;
  transition: max-width .6s var(--ease),
              background-color .5s var(--ease-soft),
              border-color .5s var(--ease-soft),
              box-shadow .5s var(--ease-soft),
              color .5s var(--ease-soft);
}

.nav.is-stuck .nav__inner {
  max-width: 1080px;
  background: rgba(var(--surface-rgb), .82);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(var(--shadow-rgb), .10);
  color: var(--ink);
}

/* Menü açıkken arkasındaki panel beyaz olur — navbar da açık temaya geçmeli,
   yoksa beyaz logo beyaz zeminde kaybolur. */
.nav.is-open .nav__inner {
  background: rgba(var(--surface-rgb), .9);
  border-color: var(--line);
  color: var(--ink);
}
.nav.is-open .nav__logo img { filter: none; }
.nav.is-open .nav__cta { --btn-bg: var(--green); --btn-fg: var(--on-accent); }

/* On light pages the navbar starts in its light state */
.nav--light .nav__inner {
  background: rgba(var(--surface-rgb), .82);
  border-color: var(--line);
  color: var(--ink);
}
.nav--light.is-stuck .nav__inner { box-shadow: 0 10px 40px rgba(var(--shadow-rgb), .10); }

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img {
  height: 46px;
  width: 46px;
  /* Logo renkli olduğu için koyu hero üstünde beyaza indirgeniyor;
     navbar açık temaya geçince kendi renklerine dönüyor. */
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(var(--deep-rgb), .45));
  transition: filter .5s var(--ease-soft);
}
.nav.is-stuck .nav__logo img,
.nav--light .nav__logo img,
.nav.is-open .nav__logo img { filter: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 400;
  opacity: .88;
  border-radius: var(--r-pill);
  transition: opacity .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { opacity: 1; font-weight: 500; }

.nav__side { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.nav .btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}
.nav__cta {
  --btn-bg: var(--gold);
  --btn-fg: #1B2A4A;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12.5px;
}
.nav.is-stuck .nav__cta,
.nav--light .nav__cta {
  --btn-bg: var(--gold);
  --btn-fg: #1B2A4A;
}

/* ---------- Language switcher ---------- */
.lang { position: relative; }

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .82;
  transition: opacity .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.lang__btn:hover { opacity: 1; background: rgba(128,128,128,.12); }
.lang__btn .chev { transition: transform .35s var(--ease); }
.lang.is-open .lang__btn .chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border-radius: var(--r-md);
  background: rgba(var(--surface-rgb), .96);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(var(--shadow-rgb), .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  text-align: left;
  transition: background-color .2s var(--ease-soft);
}
.lang__menu button:hover { background: var(--green-tint); }
.lang__menu button[aria-current="true"] { color: var(--green); font-weight: 500; }
.lang__menu .code {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}


/* ---------- Tema seçici ---------- */
.theme { position: relative; }

.theme__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  border: 1px solid currentColor;
  opacity: .82;
  transition: opacity .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.theme__btn:hover { opacity: 1; background: rgba(128, 128, 128, .12); }
.theme__btn .chev { transition: transform .35s var(--ease); }
.theme.is-open .theme__btn .chev { transform: rotate(180deg); }

/* Butondaki nokta, yürürlükteki temanın ana rengini gösterir */
.theme__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
  transition: background-color .4s var(--ease-soft);
}
/* Koyu hero üstünde nokta kendi rengiyle görünsün diye halka veriliyor */
.nav:not(.is-stuck):not(.nav--light):not(.is-open) .theme__dot {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8), 0 0 0 1px rgba(255, 255, 255, .35);
}

.theme__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 8px;
  border-radius: var(--r-md);
  background: rgba(var(--surface-rgb), .96);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(var(--shadow-rgb), .16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.theme.is-open .theme__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.theme__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  text-align: left;
  transition: background-color .2s var(--ease-soft);
}
.theme__menu button:hover { background: var(--green-tint); }
.theme__menu button[aria-current="true"] { color: var(--green); font-weight: 500; }

/* Her seçenekte paletin üç rengi küçük birer nokta olarak gösterilir */
.swatch { display: inline-flex; gap: 3px; flex-shrink: 0; }
.swatch i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .10);
}

@media (max-width: 520px) {
  .theme__btn { padding: 0 10px; gap: 5px; }
  .theme__menu { min-width: 190px; }
}

/* ---------- Mobile menu ---------- */
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease-soft);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: calc(var(--nav-h) + 48px) var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.nav.is-open ~ .drawer,
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drawer a {
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 300;
  letter-spacing: -0.03em;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s var(--ease-soft);
}
.drawer.is-open a { opacity: 1; transform: translateY(0); }
.drawer a:hover { color: var(--green); }

/* Buton da bir <a> — yukarıdaki büyük menü puntosu ona uymaz */
.drawer .btn {
  margin-top: 28px;
  padding: 0 34px;
  min-height: 54px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.drawer .btn:hover { color: #fff; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Last-resort still: shows even if both the video and its poster fail. */
  background: var(--green-deep) url("../media/hero-poster.jpg?v=1") center / cover no-repeat;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--green-deep);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(var(--deep-rgb), .52) 0%,
      rgba(var(--deep-rgb), .34) 30%,
      rgba(var(--deep-rgb), .50) 68%,
      rgba(var(--deep-rgb), .80) 100%),
    radial-gradient(120% 80% at 50% 50%, rgba(var(--deep-rgb), .12) 0%, rgba(var(--deep-rgb), .58) 100%);
}

.hero__inner {
  position: relative;
  padding: calc(var(--nav-h) + 72px) var(--gutter) 140px;
  max-width: 980px;
}


/* Hero'daki logo madalyonu — ölçülü, başlığın önüne geçmeyecek boyutta */
.hero__logo {
  display: block;
  width: clamp(78px, 9.5vw, 112px);
  height: auto;
  margin: 0 auto clamp(18px, 2.4vw, 28px);
  opacity: .96;
  /* Videonun açık renkli kareleri üstünde kaybolmasın */
  filter: drop-shadow(0 2px 14px rgba(var(--deep-rgb), .55));
}

.hero .eyebrow { color: rgba(255,255,255,.82); }

.hero__title {
  text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 58px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .05em;
  text-wrap: balance;
}

.hero__text {
  margin: 26px auto 0;
  max-width: 56ch;
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero__scroll .rail {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll .rail::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 40%;
  background: #fff;
  animation: railDrop 2.4s var(--ease) infinite;
}
@keyframes railDrop {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 76px);
}
.about__strip figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-tint);
}
.about__strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about__strip figure:nth-child(2) img { aspect-ratio: 3 / 4.6; }
.about__strip figure:hover img { transform: scale(1.05); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: clamp(48px, 6vw, 72px) auto 0;
  text-align: center;
}
.stats div { padding: 0 12px; }
.stats .n {
  display: block;
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1.1;
}
.stats .l {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.svc {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  transition: transform .45s var(--ease),
              border-color .45s var(--ease-soft),
              box-shadow .45s var(--ease-soft);
}
.svc:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 22px 48px rgba(var(--shadow-rgb), .10);
}

.svc__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--green-tint);
}
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.07); }


/* Hizmet kartı çizimleri maske olarak basılır; rengi tema token'ından gelir,
   böylece her temada tam uyumlu olur. Panelden gerçek fotoğraf yüklenirse
   .svc__media img yolu kullanılır ve maske devreye girmez. */
.svc__art {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--green);
  -webkit-mask: var(--art) center / cover no-repeat;
  mask: var(--art) center / cover no-repeat;
  transition: transform .8s var(--ease), background-color .5s var(--ease-soft);
}
.svc:hover .svc__art { transform: scale(1.07); }

.svc__body {
  padding: 24px 22px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc__body h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.02em; }
.svc__body p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.svc__meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5px;
  font-size: 13.5px;
  color: var(--green);
}
/* Her satır: solda süre, sağda fiyat */
.svc__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.svc__row b { font-weight: 500; white-space: nowrap; }
.svc__meta > span + span { position: relative; }
.svc__meta span + span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: currentColor;
  opacity: .45;
}


/* ---------- Ek hizmetler (kart değil, sade fiyat listesi) ---------- */
.extras {
  max-width: 760px;
  margin: clamp(44px, 6vw, 70px) auto 0;
  padding: clamp(26px, 3.5vw, 38px) clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  text-align: center;
}
.extras__title {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.extras__text {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.extras__list {
  display: grid;
  gap: 2px;
  margin-top: clamp(20px, 2.5vw, 28px);
  text-align: left;
}
.extras__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 2px;
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.extras__list li:last-child { border-bottom: 0; }
.extras__list b { font-weight: 500; color: var(--green); white-space: nowrap; }

/* ==========================================================================
   Ambience band
   ========================================================================== */
.band {
  position: relative;
  background: var(--green-deep);
  min-height: clamp(420px, 56vw, 620px);
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.band__bg {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  will-change: transform;
}
.band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(var(--deep-rgb), .58), rgba(var(--deep-rgb), .72));
}
.band__inner { padding: 80px var(--gutter); max-width: 900px; }
.band__inner .eyebrow { color: rgba(255,255,255,.8); }
.band__quote {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 36px 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease-soft);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(var(--shadow-rgb), .10); }

.plan__badge {
  align-self: center;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--green-tint);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.plan h3 { font-size: 24px; font-weight: 400; letter-spacing: -0.02em; }
.plan__note { margin-top: 10px; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

.plan__price {
  margin: 26px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan__price .amt {
  display: block;
  font-size: clamp(30px, 3.4vw, 38px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--green);
}
.plan__price .per {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan ul { display: grid; gap: 12px; text-align: left; margin-bottom: 28px; }
.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.plan li svg { flex-shrink: 0; margin-top: 4px; color: var(--green); }
.plan .btn { margin-top: auto; width: 100%; }

/* Featured plan */
.plan--feature {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 26px 60px rgba(var(--accent-rgb), .24);
}
.plan--feature .plan__badge { background: rgba(255,255,255,.16); color: #fff; }
.plan--feature .plan__note { color: rgba(255,255,255,.78); }
.plan--feature .plan__price { border-color: rgba(255,255,255,.22); }
.plan--feature .plan__price .amt { color: #fff; }
.plan--feature .plan__price .per { color: rgba(255,255,255,.7); }
.plan--feature li { color: rgba(255,255,255,.86); }
.plan--feature li svg { color: #fff; }
.plan--feature .btn { --btn-bg: var(--on-accent); --btn-fg: var(--green); }
.plan--feature .btn:hover { box-shadow: 0 12px 28px rgba(0,0,0,.28); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quotes { max-width: 860px; margin-inline: auto; text-align: center; }

.quotes__view { position: relative; overflow: hidden; }
.quotes__track {
  display: flex;
  transition: transform .7s var(--ease);
}
.quotes__slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

.stars { display: flex; justify-content: center; gap: 5px; color: var(--green); margin-bottom: 24px; }

.quotes blockquote {
  font-size: clamp(18px, 2.2vw, 25px);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.quotes cite {
  display: block;
  margin-top: 26px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
.quotes cite small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 40px; }
.dots button {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: transform .35s var(--ease), background-color .35s var(--ease-soft), width .35s var(--ease);
}
/* Invisible 44px target around the 8px dot */
.dots button::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 44px; height: 44px;
  transform: translate(-50%, -50%);
}
.dots button[aria-current="true"] {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--green);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin-inline: auto; }

.faq__item {
  border-bottom: 1px solid var(--line);
  transition: border-color .35s var(--ease-soft);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item.is-open { border-color: var(--green-soft); }

.faq__q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 26px 4px;
  text-align: left;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 400;
  letter-spacing: -0.015em;
  transition: color .3s var(--ease-soft);
}
.faq__q:hover { color: var(--green); }

.faq__sign {
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  width: 18px; height: 18px;
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: transform .45s var(--ease), opacity .3s var(--ease-soft);
}
.faq__sign::before { width: 16px; height: 1.5px; transform: translate(-50%,-50%); }
.faq__sign::after  { width: 1.5px; height: 16px; transform: translate(-50%,-50%); }
.faq__item.is-open .faq__sign::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

/* True smooth accordion — animates grid rows, not max-height */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 60px 28px 4px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}
.faq__item.is-open .faq__a p { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.mosaic figure,
.gal-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-tint);
  cursor: zoom-in;
}
.mosaic img,
.gal-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.mosaic figure { aspect-ratio: 4 / 3; }
.mosaic figure:hover img,
.gal-grid figure:hover img { transform: scale(1.06); }

.mosaic figure::after,
.gal-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--deep-rgb), 0), rgba(var(--deep-rgb), .3));
  opacity: 0;
  transition: opacity .45s var(--ease-soft);
}
.mosaic figure:hover::after,
.gal-grid figure:hover::after { opacity: 1; }

/* Gallery page grid */
.gal-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.gal-filter button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: background-color .3s var(--ease-soft), color .3s var(--ease-soft),
              border-color .3s var(--ease-soft), transform .3s var(--ease-soft);
}
.gal-filter button:hover { transform: translateY(-2px); color: var(--ink); }
.gal-filter button[aria-current="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
}
.gal-grid figure { aspect-ratio: 4 / 5; }
.gal-grid figure.wide { aspect-ratio: 4 / 3; grid-column: span 2; }
.gal-grid figure.hide {
  opacity: 0;
  transform: scale(.94);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 56px);
  background: rgba(var(--deep-rgb), .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: var(--r-md);
  transform: scale(.96);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); opacity: 1; }

.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  transition: background-color .3s var(--ease-soft), transform .3s var(--ease-soft);
}
.lightbox__btn:hover { background: rgba(255,255,255,.14); transform: scale(1.06); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; margin-top: -26px; }
.lightbox__next { right: 24px; top: 50%; margin-top: -26px; }
.lightbox__count {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}

/* ==========================================================================
   Page header (sub pages)
   ========================================================================== */
.pagehead {
  padding: calc(var(--nav-h) + clamp(90px, 12vw, 150px)) 0 clamp(48px, 7vw, 84px);
  text-align: center;
  background: var(--green-tint);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1000px;
  margin-inline: auto;
}
.info-card {
  padding: 34px 26px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: transform .45s var(--ease), border-color .45s var(--ease-soft),
              box-shadow .45s var(--ease-soft);
}
.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: 0 20px 44px rgba(var(--shadow-rgb), .09);
}
.info-card .ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
}
.info-card h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.info-card p { font-size: 16.5px; line-height: 1.6; }
.info-card p + p { margin-top: 4px; }

/* Adres: kopyalanacak metin değil, doğrudan Google kaydına giden bağlantı */
.addr {
  display: block;
  transition: color .25s var(--ease-soft);
}
.addr span { display: block; }
.addr .addr__cta {
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green);
}
.addr:hover { color: var(--green); }
.addr:hover .addr__cta { text-decoration: underline; }

/* İletişim kartındaki WhatsApp / LINE bağlantıları */
.contact-apps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px !important;
}
.contact-apps a {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--green);
  transition: background-color .25s var(--ease-soft), border-color .25s var(--ease-soft),
              color .25s var(--ease-soft);
}
.contact-apps a:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--on-accent);
}

.form {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; text-align: left; }
.field label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 16px;
  transition: border-color .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236E7268' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .12);
}
.form .btn { justify-self: center; margin-top: 8px; min-width: 220px; }
.form__note {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.map {
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  border: 0;
  display: block;
  filter: grayscale(1) contrast(.92) opacity(.92);
  transition: filter .6s var(--ease-soft);
}
.map:hover { filter: grayscale(0) contrast(1) opacity(1); }

.map-placeholder {
  height: clamp(320px, 42vw, 480px);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background: var(--green-tint);
  color: var(--green-soft);
  font-size: 14px;
  letter-spacing: .06em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.foot {
  position: relative;
  background: var(--green-deep);
  color: rgba(255,255,255,.78);
  overflow: hidden;
  isolation: isolate;
}
.foot__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
}
.foot__bg img { width: 100%; height: 100%; object-fit: cover; }
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(var(--deep2-rgb), .86), rgba(var(--deep-rgb), .96));
}

.foot__cta {
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 7vw, 84px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot__cta .eyebrow { color: rgba(255,255,255,.66); }
.foot__cta h2 { color: #fff; }
.foot__cta p { color: rgba(255,255,255,.72); }

.foot__main {
  padding: clamp(56px, 7vw, 80px) 0 0;
  text-align: center;
}
.foot__logo { display: inline-block; margin-bottom: 30px; }
.foot__logo img {
  width: clamp(96px, 11vw, 124px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  max-width: 940px;
  margin: clamp(40px, 5vw, 60px) auto 0;
  text-align: center;
}
.foot__cols h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 16px;
}
.foot__cols li + li { margin-top: 8px; }
.foot__cols a, .foot__cols li { font-size: 15px; line-height: 1.6; }
.foot__cols a { transition: color .25s var(--ease-soft); }
.foot__cols a:hover { color: #fff; }

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  transition: transform .3s var(--ease-soft), background-color .3s var(--ease-soft),
              color .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.socials a:hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: #fff;
  color: var(--green-deep);
}

.foot__bar {
  margin-top: clamp(48px, 6vw, 68px);
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

/* Placeholder marker for values the client still has to provide */
.tbd {
  color: rgba(140,140,140,.9);
  font-style: italic;
}
.foot .tbd, .band .tbd, .hero .tbd { color: rgba(255,255,255,.45); }

/* ---------- Ornament divider ---------- */
.ornament {
  display: block;
  width: min(300px, 60%);
  height: auto;
  margin: clamp(28px, 4vw, 40px) auto 0;
}
.ornament--light { filter: brightness(0) invert(1); opacity: .55; }

/* Illustrated service cards sit on their own tinted ground */
.svc__media { background: var(--green-tint); }
.svc__media img { object-fit: cover; }


/* ==========================================================================
   Yüzen WhatsApp butonu
   ========================================================================== */
.wa {
  position: fixed;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* Tanınırlık için tema renginden bağımsız, WhatsApp'ın kendi yeşili */
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .45s var(--ease), transform .45s var(--ease),
              visibility .45s, box-shadow .3s var(--ease-soft);
}
/* Hero'da görünmez, sayfa kaydırılınca süzülerek gelir */
.wa.is-in { opacity: 1; visibility: visible; transform: none; }
.wa:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 16px 40px rgba(var(--shadow-rgb), .34); }
.wa:active { transform: translateY(0) scale(1); }

@media (max-width: 520px) { .wa { width: 52px; height: 52px; } }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav .btn--cta-desktop { display: none; }
  /* Ortalayıcı .nav__links gizlenince sağ grubu kenara iten şey kalmıyor */
  .nav__side { margin-left: auto; }
  .nav__logo img { height: 40px; width: 40px; }
  .nav__inner { padding: 0 12px 0 20px; }

  .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan--feature { order: -1; }
  .info-grid { grid-template-columns: 1fr; max-width: 480px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid figure.wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .about__strip { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .about__strip figure:nth-child(2) img { aspect-ratio: 3 / 4; }
  .stats { grid-template-columns: 1fr; gap: 32px; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .foot__cols { grid-template-columns: 1fr; gap: 36px; }
  .form__row { grid-template-columns: 1fr; }
  .faq__a p { padding-right: 20px; }
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
  .lightbox__close { top: 14px; right: 14px; }
}

@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-grid figure.wide { grid-column: span 1; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .band__bg { transform: none !important; }
}
