/* =============================================================
   SERENE — Spa & Wellness Retreat Template
   Author: Premium Template
   Tech: Plain HTML5 + CSS3 + Vanilla JS (no frameworks)
   -------------------------------------------------------------
   REBRAND HERE: edit the :root variables below to recolour and
   re-font the entire site in one place. Everything inherits
   from these tokens.
   ============================================================= */

:root {
  /* --- Brand palette (REBRAND) --- */
  --sage: #7c9473;          /* primary calming sage green */
  --sage-dark: #5f7559;     /* darker sage for hovers / text */
  --sage-deep: #44543f;     /* deep sage for headings on light */
  --cream: #f3efe7;         /* page background cream */
  --cream-soft: #faf8f3;    /* lighter cream for cards */
  --gold: #c9a96a;          /* soft gold accent */
  --gold-dark: #b08f50;     /* gold hover */
  --ink: #2f342c;           /* main body text */
  --muted: #6c7268;         /* muted secondary text */
  --white: #ffffff;
  --line: #e3ddd0;          /* hairline borders */

  /* --- Typography (REBRAND) --- */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Layout tokens --- */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 18px rgba(68, 84, 63, 0.07);
  --shadow-md: 0 14px 40px rgba(68, 84, 63, 0.12);
  --shadow-lg: 0 28px 70px rgba(68, 84, 63, 0.16);
  --t-fast: .2s ease;
  --t: .35s cubic-bezier(.22,.61,.36,1);
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ----------------------------- Typography ------------------------ */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; color: var(--sage-deep); line-height: 1.18; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

/* ----------------------------- Layout ---------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; }
.center { text-align: center; }

/* ----------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: 14px 30px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; transition: var(--t-fast); white-space: nowrap;
}
.btn-primary { background: var(--sage); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #3a2e15; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--sage-deep); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: var(--white); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--sage-deep); }

/* ============================================================
   HEADER (shared across all pages — keep IDs identical)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(243, 239, 231, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: var(--t-fast);
}
.site-header.scrolled { background: rgba(243, 239, 231, .96); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--sage-deep); }
.brand .leaf { width: 34px; height: 34px; color: var(--sage); }
.brand span { color: var(--gold-dark); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  position: relative; font-weight: 500; font-size: .96rem; color: var(--ink); padding: 6px 0;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 110;
}
.hamburger span { width: 26px; height: 2px; background: var(--sage-deep); border-radius: 2px; transition: var(--t-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative; padding: clamp(90px, 14vw, 170px) 0 clamp(80px, 12vw, 150px);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,169,106,.20), transparent 60%),
    radial-gradient(900px 700px at -10% 110%, rgba(124,148,115,.30), transparent 55%),
    linear-gradient(160deg, #eef0e6 0%, var(--cream) 55%, #e9e3d6 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(124,148,115,.10) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6; pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero .lead { font-size: 1.18rem; max-width: 560px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--cream-soft);
  border: 1px solid var(--line); border-radius: 50px; padding: 8px 18px; font-size: .85rem;
  font-weight: 600; color: var(--sage-dark); margin-bottom: 1.6rem; box-shadow: var(--shadow-sm);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55;
  background: radial-gradient(circle at 30% 30%, #fff, var(--sage));
}
.hero-orb.o1 { width: 220px; height: 220px; right: -40px; top: 60px; opacity: .35; }
.hero-orb.o2 { width: 120px; height: 120px; right: 220px; bottom: 40px; background: radial-gradient(circle at 30% 30%, #fff, var(--gold)); opacity: .4; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.banner {
  position: relative; text-align: center; color: #fff;
  padding: clamp(90px, 13vw, 150px) 0 clamp(70px, 10vw, 120px);
  background:
    linear-gradient(180deg, rgba(68,84,63,.55), rgba(68,84,63,.78)),
    radial-gradient(1000px 500px at 70% 0%, rgba(201,169,106,.5), transparent 60%),
    linear-gradient(135deg, var(--sage-dark), var(--sage-deep));
  overflow: hidden;
}
.banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.banner h1 { color: #fff; position: relative; }
.banner .eyebrow { color: var(--gold); }
.banner p { color: rgba(255,255,255,.85); max-width: 600px; margin: 14px auto 0; position: relative; }
.breadcrumb { position: relative; margin-top: 1.2rem; font-size: .85rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   Reusable grids & cards
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); transition: var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #d8cfbb; }
.card .ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 1.1rem;
  background: linear-gradient(140deg, rgba(124,148,115,.18), rgba(201,169,106,.18));
}
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .96rem; }

/* Split (image-block + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media {
  border-radius: var(--radius); min-height: 380px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-dark) 60%, var(--sage-deep) 100%);
}
.split-media.gold { background: linear-gradient(150deg, #e6d2a6, var(--gold) 55%, var(--gold-dark)); }
.split-media .glyph {
  position: absolute; inset: 0; display: grid; place-items: center; font-size: 5.5rem; opacity: .9;
}
.split-media .tag {
  position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.92);
  color: var(--sage-deep); padding: 10px 18px; border-radius: 12px; font-weight: 600;
  font-size: .9rem; box-shadow: var(--shadow-sm);
}
.split-text h2 { margin-bottom: 1rem; }
.split-text p + p { margin-top: 1rem; }
.tick-list { margin-top: 1.6rem; display: grid; gap: .85rem; }
.tick-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-size: .98rem; }
.tick-list .tk {
  flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage); color: #fff; font-size: .75rem; margin-top: 2px;
}

/* ============================================================
   Treatment cards (services / featured)
   ============================================================ */
.treatment { display: flex; flex-direction: column; }
.treatment .thumb {
  height: 170px; border-radius: var(--radius-sm); margin-bottom: 1.2rem; position: relative;
  display: grid; place-items: center; font-size: 3rem; color: #fff;
}
.t-massage  { background: linear-gradient(140deg,#8aa57f,#5f7559); }
.t-facial   { background: linear-gradient(140deg,#d9c08a,#b08f50); }
.t-body     { background: linear-gradient(140deg,#9bb08e,#6c8a63); }
.t-aroma    { background: linear-gradient(140deg,#c2a9c9,#8a6e92); }
.t-sauna    { background: linear-gradient(140deg,#d59b86,#b06b52); }
.t-couples  { background: linear-gradient(140deg,#7c9473,#c9a96a); }
.treatment .meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; }
.treatment .dur { font-size: .82rem; color: var(--muted); display: inline-flex; align-items: center; gap: .35rem; }
.treatment .price { font-family: var(--font-head); font-size: 1.3rem; color: var(--sage-deep); font-weight: 600; }

/* ============================================================
   Why-us / features (alt bg)
   ============================================================ */
.alt-bg { background: linear-gradient(180deg, var(--cream-soft), #efe9dd); }

/* Stats */
.stats { background: var(--sage-deep); color: #fff; }
.stats .grid { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--gold); line-height: 1; }
.stat .lbl { margin-top: .5rem; font-size: .9rem; color: rgba(255,255,255,.8); letter-spacing: .04em; }

/* Testimonial */
.quote {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.quote .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .15em; margin-bottom: 1.2rem; }
.quote blockquote { font-family: var(--font-head); font-size: clamp(1.4rem,2.8vw,2rem); color: var(--sage-deep); line-height: 1.45; font-style: italic; }
.quote .who { margin-top: 1.6rem; font-weight: 600; color: var(--ink); }
.quote .who span { display: block; font-weight: 400; color: var(--muted); font-size: .9rem; }

/* Testimonial grid (multiple) */
.t-grid blockquote { font-family: var(--font-head); font-style: italic; font-size: 1.1rem; color: var(--sage-deep); line-height: 1.5; }
.t-grid .stars { color: var(--gold); margin-bottom: .8rem; letter-spacing: .12em; }
.t-grid .who { margin-top: 1.2rem; font-weight: 600; font-size: .92rem; }
.t-grid .who span { display:block; font-weight: 400; color: var(--muted); font-size: .82rem; }

/* ============================================================
   Team / therapists
   ============================================================ */
.team-card { text-align: center; }
.avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1.1rem; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 2.2rem; color: #fff; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.a1 { background: linear-gradient(140deg,#8aa57f,#5f7559); }
.a2 { background: linear-gradient(140deg,#d9c08a,#b08f50); }
.a3 { background: linear-gradient(140deg,#c2a9c9,#8a6e92); }
.a4 { background: linear-gradient(140deg,#d59b86,#b06b52); }
.team-card h3 { margin-bottom: .2rem; }
.team-card .role { color: var(--gold-dark); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.team-card p { margin-top: .7rem; font-size: .93rem; }

/* ============================================================
   Pricing
   ============================================================ */
.price-table { background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 18px 28px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row .name { font-weight: 600; color: var(--ink); }
.price-row .desc { color: var(--muted); font-size: .85rem; font-weight: 400; display: block; }
.price-row .amt { font-family: var(--font-head); font-size: 1.25rem; color: var(--sage-deep); white-space: nowrap; }
.price-cat { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-dark); margin: 0 0 .4rem; padding: 0 28px; }

/* Package cards */
.pkg { position: relative; display: flex; flex-direction: column; text-align: center; }
.pkg.feat { border: 2px solid var(--gold); transform: scale(1.03); }
.pkg .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #3a2e15; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px;
}
.pkg .p-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--sage-deep); }
.pkg .p-price { font-family: var(--font-head); font-size: 2.8rem; color: var(--sage-deep); margin: .4rem 0; }
.pkg .p-price small { font-size: .9rem; color: var(--muted); font-family: var(--font-body); }
.pkg .p-feat { margin: 1.4rem 0; display: grid; gap: .7rem; text-align: left; }
.pkg .p-feat li { display: flex; gap: .6rem; font-size: .93rem; color: var(--ink); }
.pkg .p-feat .tk { flex:none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--sage); color: #fff; font-size: .65rem; margin-top: 3px; }
.pkg .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 1.12rem; color: var(--sage-deep);
  padding: 22px 44px 22px 0; position: relative; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-q .pm { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold-dark); transition: var(--t-fast); }
.faq-item.open .faq-q .pm { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 22px; font-size: .96rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .96rem; background: #fff; color: var(--ink); transition: var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,148,115,.18); }
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: #b5564b; font-size: .8rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c97a6f; }
.field.invalid .err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(124,148,115,.14); color: var(--sage-deep); font-weight: 600; font-size: .92rem; display: none; }
.form-note.show { display: block; }

.info-block { display: flex; gap: 1rem; margin-bottom: 1.6rem; align-items: flex-start; }
.info-block .ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; background: linear-gradient(140deg, rgba(124,148,115,.18), rgba(201,169,106,.18)); }
.info-block h4 { font-family: var(--font-body); font-weight: 700; font-size: .95rem; color: var(--ink); margin-bottom: 2px; }
.info-block p { font-size: .92rem; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.hours-row span:first-child { color: var(--ink); font-weight: 600; }
.hours-row span:last-child { color: var(--muted); }

.map-placeholder {
  margin-top: 48px; height: 340px; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  background:
    linear-gradient(135deg, rgba(124,148,115,.12), rgba(201,169,106,.10)),
    repeating-linear-gradient(0deg, #e8e2d4 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, #e8e2d4 0 1px, transparent 1px 42px),
    var(--cream-soft);
  display: grid; place-items: center; text-align: center;
}
.map-placeholder .pin { font-size: 2.6rem; }
.map-placeholder p { color: var(--sage-deep); font-weight: 600; margin-top: .4rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative; text-align: center; color: #fff; border-radius: var(--radius); overflow: hidden;
  padding: clamp(54px, 7vw, 84px) 24px;
  background:
    radial-gradient(800px 400px at 80% -20%, rgba(201,169,106,.45), transparent 60%),
    linear-gradient(135deg, var(--sage), var(--sage-deep));
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================
   FOOTER (shared)
   ============================================================ */
.site-footer { background: #3a4136; color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand .leaf { color: var(--sage); }
.site-footer p { font-size: .92rem; max-width: 280px; }
.footer-col h4 { font-family: var(--font-body); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: 6px 0; font-size: .93rem; color: rgba(255,255,255,.7); transition: var(--t-fast); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; font-size: 1rem; transition: var(--t-fast); }
.socials a:hover { background: var(--sage); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; }

/* ============================================================
   Scroll reveal (IntersectionObserver)
   Fallback: if JS disabled, .no-js shows everything.
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream-soft); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; transform: translateY(-130%); transition: transform var(--t);
    box-shadow: var(--shadow-md); align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { display: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .pkg.feat { transform: none; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
