/* =============================================================
   SARAH LYN RELAXATION & WELLNESS — style.css
   Luxury spa design system · Al Satwa, Dubai
   Palette: forest green / sage / luxury gold / warm ivory
   Fonts: Cormorant Garamond (display) · Poppins (body)
   ============================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  --green:      #234B38;
  --green-dark: #173B2B;
  --sage:       #829765;
  --sage-soft:  #A5B38A;
  --gold:       #C99A3A;
  --gold-light: #E0BD68;
  --ivory:      #FAF8F2;
  --white:      #FFFFFF;
  --ink:        #252B27;
  --muted:      #5A665E;
  --line:       rgba(35, 75, 56, .10);
  --gold-line:  rgba(201, 154, 58, .45);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;

  --shadow-sm: 0 6px 18px rgba(23, 59, 43, .07);
  --shadow-md: 0 18px 40px rgba(23, 59, 43, .12);
  --shadow-lg: 0 30px 60px rgba(23, 59, 43, .18);

  --radius: 22px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 124px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::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);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: .005em;
}

::selection { background: rgba(201, 154, 58, .3); }

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 26px;
}

.section { padding: 108px 0; position: relative; }
.section--white { background: var(--white); }
.section--tint { background: linear-gradient(180deg, #F2F4EA 0%, var(--ivory) 100%); }
.section--dark {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cpath d='M70 30c11 9 17 20 17 31a17 17 0 0 1-34 0c0-11 6-22 17-31z' fill='none' stroke='%23C99A3A' stroke-opacity='.14'/%3E%3C/svg%3E"),
    var(--green-dark);
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--green-dark); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  transition: top .3s;
}
.skip-link:focus { top: 12px; }

/* ---------- 3. TYPE HELPERS ---------- */
.eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; height: 1px; width: 34px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow--left { justify-content: flex-start; }
.eyebrow--left::before { display: none; }

.section-head { max-width: 680px; margin: 0 auto 58px; text-align: center; }
.section-head--left { margin: 0 0 44px; text-align: left; }
.section-head h2 { font-size: clamp(1.95rem, 3.6vw, 2.85rem); }
.section-head p { color: var(--muted); margin-top: 16px; }

.h-serif em, .h2 em, h1 em, h2 em {
  font-style: italic; font-weight: 500; color: var(--gold);
}
.section--dark h2, .section--dark h3 { color: var(--ivory); }

.lead { font-size: 1.06rem; color: var(--muted); }
.text-center { text-align: center; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 11px;
  min-height: 54px; padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .92rem; font-weight: 500; letter-spacing: .05em;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(.98); }

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(23, 59, 43, .25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--green-dark);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 154, 58, .35); }

.btn-outline {
  background: transparent; color: var(--green);
  border-color: rgba(35, 75, 56, .35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-gold { background: transparent; color: var(--gold-light); border-color: var(--gold); }
.btn-outline-gold:hover { background: rgba(201, 154, 58, .14); transform: translateY(-2px); }

.btn-sm { min-height: 44px; padding: 10px 22px; font-size: .84rem; }
.btn-block { width: 100%; }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.link-more svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-more:hover svg { transform: translateX(5px); }
.link-more:hover { color: var(--green); }

.icon-btn {
  width: 44px; height: 44px; flex: none;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--green);
  transition: all .3s var(--ease);
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px); }

/* ---------- 5. TOP BAR ---------- */
.topbar {
  background: var(--green-dark);
  color: rgba(250, 248, 242, .82);
  font-size: .76rem; letter-spacing: .05em;
  padding: 9px 0;
  position: relative; z-index: 60;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-loc { display: inline-flex; align-items: center; gap: 8px; }
.topbar-loc svg { width: 14px; height: 14px; color: var(--gold-light); flex: none; }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-link {
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s;
}
.topbar-link svg { width: 13px; height: 13px; color: var(--gold-light); }
.topbar-link:hover { color: var(--gold-light); }
.topbar-social { display: flex; gap: 6px; }
.topbar-ico {
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(250, 248, 242, .75);
  transition: all .3s;
}
.topbar-ico svg { width: 13px; height: 13px; }
.topbar-ico:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); transform: translateY(-2px); }

/* ---------- 6. NAVBAR ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250, 248, 242, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(23, 59, 43, .1); }

.navbar { height: var(--nav-h); transition: height .35s var(--ease); }
.site-header.is-scrolled .navbar { height: 96px; }
.navbar-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* Brand / logo — the supplied full logo is kept large and un-cropped */
.brand { display: inline-flex; align-items: center; gap: 14px; flex: none; }
.brand-logo {
  width: 150px; height: auto;
  object-fit: contain;
  transition: width .35s var(--ease), height .35s var(--ease), transform .5s var(--ease);
  filter: drop-shadow(0 6px 14px rgba(23, 59, 43, .18));
}
.site-header.is-scrolled .brand-logo { width: 122px; height: auto; }
.brand:hover .brand-logo { transform: scale(1.025); }
.navbar-inner > .brand .brand-text { display: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.62rem; font-weight: 600;
  color: var(--green-dark);
  letter-spacing: .02em;
}
.brand-tag {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 2px;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  transition: color .3s;
}
.nav-links > li > a svg { width: 12px; height: 12px; transition: transform .3s; color: var(--gold); }
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--green); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { transform: scaleX(1); }
.has-drop:hover > a svg, .has-drop.open > a svg { transform: rotate(180deg); }
.has-drop.active > a { color: var(--green); }

/* Dropdown */
.drop {
  position: absolute; top: calc(100% + 6px); left: 50%;
  z-index: 1000;
  transform: translate(-50%, 10px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all .35s var(--ease);
}
.has-drop::after {
  content: "";
  position: absolute;
  left: -18px; right: -18px; top: 100%; height: 12px;
}
.has-drop:hover > .drop, .has-drop.open > .drop, .has-drop:focus-within > .drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  font-size: .85rem; font-weight: 400; color: var(--ink);
  transition: all .25s;
}
.drop a::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage-soft); flex: none;
  transition: background .25s;
}
.drop a:hover { background: var(--ivory); color: var(--green); padding-left: 20px; }
.drop a:hover::before { background: var(--gold); }

.btn-nav { min-height: 48px; padding: 12px 26px; font-size: .8rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 50px; height: 50px;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--gold-line);
  background: var(--white);
}
.nt-line {
  display: block; position: relative;
  width: 22px; height: 2px; margin: 5.5px 0;
  background: var(--green-dark); border-radius: 2px;
  transition: all .4s var(--ease);
}
.nav-toggle.is-open .nt-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav-toggle.is-open .nt-line:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.nav-toggle.is-open .nt-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ---------- 7. MOBILE MENU ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(23, 59, 43, .5);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: all .4s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 950;
  width: min(360px, 90vw);
  background: var(--ivory);
  box-shadow: -24px 0 60px rgba(23, 59, 43, .25);
  transform: translateX(102%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }

.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 136px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.mm-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.mm-brand img { width: 170px; height: auto; object-fit: contain; }
.mm-brand > span { display: none; }
.mm-brand span {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--green-dark); line-height: 1.1;
}
.mm-brand small {
  display: block;
  font-family: var(--font-body); font-size: .55rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.mm-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line);
  color: var(--green);
  transition: all .3s;
}
.mm-close svg { width: 18px; height: 18px; }
.mm-close:hover { background: var(--green); color: #fff; transform: rotate(90deg); }

.mm-nav { padding: 18px 22px 8px; flex: 1; }
.mm-nav > a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 13px 6px;
  font-family: var(--font-display);
  font-size: 1.42rem; font-weight: 600; color: var(--green-dark);
  border-bottom: 1px solid rgba(35, 75, 56, .07);
  transition: all .3s var(--ease);
}
.mm-nav > a .mm-num {
  font-family: var(--font-body);
  font-size: .62rem; font-weight: 500; letter-spacing: .2em;
  color: var(--gold);
}
.mm-nav > a:hover, .mm-nav > a.active { color: var(--gold); padding-left: 14px; }
.mm-group {
  margin: 16px 6px 4px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .66rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage);
  cursor: pointer;
}
.mm-group::after {
  content: "+";
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.mm-group[aria-expanded="true"]::after { content: "−"; }
.mm-group.collapsed ~ .mm-sub { display: none; }
.mm-nav a.mm-sub {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 6px 9px 24px;
  font-size: .92rem; font-weight: 400; color: var(--muted);
  transition: all .3s;
}
.mm-nav a.mm-sub::before { content: ""; width: 14px; height: 1px; background: var(--gold); flex: none; }
.mm-nav a.mm-sub:hover, .mm-nav a.mm-sub.active { color: var(--gold); padding-left: 32px; }

.mm-cta { padding: 20px 22px; display: grid; gap: 12px; border-top: 1px solid var(--line); }
.mm-foot {
  padding: 18px 22px 26px;
  border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--muted);
  display: grid; gap: 6px;
}
.mm-foot a { color: var(--green); font-weight: 400; }
.mm-foot a:hover { color: var(--gold); }

/* ---------- 8. HERO (home) ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 136px);
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img {
  object-fit: cover;
  object-position: center 32%;
  animation: kenburns 22s var(--ease) infinite alternate;
  will-change: transform;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(23, 59, 43, .82) 0%, rgba(23, 59, 43, .52) 46%, rgba(23, 59, 43, .18) 100%),
    linear-gradient(to top, rgba(23, 59, 43, .55), transparent 40%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; max-width: 760px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .74rem; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-label::before { content: ""; width: 44px; height: 1px; background: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.2vw, 4.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .005em;
}
.hero h1 em { color: var(--gold-light); }
.hero-sub {
  margin-top: 26px;
  max-width: 600px;
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  color: rgba(250, 248, 242, .85);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 48px;
  font-size: .74rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(250, 248, 242, .66);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 10px; }
.hero-trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* load-in choreography */
.hero .fade-item { opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease) forwards; }
.hero .fade-item:nth-child(1) { animation-delay: .15s; }
.hero .fade-item:nth-child(2) { animation-delay: .32s; }
.hero .fade-item:nth-child(3) { animation-delay: .5s; }
.hero .fade-item:nth-child(4) { animation-delay: .68s; }
.hero .fade-item:nth-child(5) { animation-delay: .86s; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  transform: translateX(-50%);
  display: grid; justify-items: center; gap: 8px;
  font-size: .62rem; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(250, 248, 242, .6);
}
.scroll-cue i {
  width: 1px; height: 44px; overflow: hidden;
  background: rgba(250, 248, 242, .25); position: relative; display: block;
}
.scroll-cue i::after {
  content: ""; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--gold-light);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0% { top: -50%; } 100% { top: 110%; } }

/* ---------- 9. PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(380px, 58vh, 540px);
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-hero .ph-bg { position: absolute; inset: 0; }
.page-hero .ph-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 26s var(--ease) infinite alternate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(23, 59, 43, .85) 0%, rgba(23, 59, 43, .55) 55%, rgba(23, 59, 43, .35) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin-top: 18px;
}
.page-hero h1 em { color: var(--gold-light); }
.page-hero .ph-sub {
  margin-top: 18px; max-width: 560px;
  color: rgba(250, 248, 242, .85);
}
.page-hero .fade-item { opacity: 0; transform: translateY(26px); animation: fadeUp .9s var(--ease) forwards; }
.page-hero .fade-item:nth-child(1) { animation-delay: .1s; }
.page-hero .fade-item:nth-child(2) { animation-delay: .28s; }
.page-hero .fade-item:nth-child(3) { animation-delay: .46s; }

/* ---------- 10. SPLIT LAYOUTS ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }

.split-media { position: relative; }
.img-main {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.img-frame {
  position: absolute; top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.img-float {
  position: absolute; right: -6%; bottom: -9%;
  width: 46%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: 20px;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-lg);
}
.section--white .img-float { border-color: var(--white); }
.leaf-mark {
  position: absolute; left: -34px; bottom: 18%;
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-sm);
  color: var(--sage);
}
.leaf-mark svg { width: 34px; height: 34px; }

.split-copy h2 { font-size: clamp(1.95rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.split-copy p { color: var(--muted); margin-bottom: 16px; }
.split-copy .eyebrow { justify-content: flex-start; }
.split-copy .eyebrow::before { display: none; }

.check-list { margin: 22px 0 30px; display: grid; gap: 12px; }
.check-list li {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: .95rem; color: var(--ink);
}
.check-list li svg {
  width: 21px; height: 21px; flex: none; margin-top: 3px;
  color: var(--gold);
}

.signature {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--sage);
}

/* ---------- 11. SERVICE CARDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 2;
}
.card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 154, 58, .4);
}
.card:hover::before { transform: scaleX(1); }

.card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E8ECDF;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-img img { transform: scale(1.07); }
.card-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(250, 248, 242, .94);
  color: var(--green);
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--gold-line);
}
.card-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 26px 26px 24px;
}
.card-body h3 { font-size: 1.42rem; margin-bottom: 10px; transition: color .3s; }
.card:hover .card-body h3 { color: var(--gold); }
.card-body p { font-size: .9rem; color: var(--muted); flex: 1; }
.card-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.card-actions .link-more { font-size: .74rem; }

/* ---------- 12. NUMBERED TREATMENT LIST ---------- */
.num-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 54px; }
.num-list a {
  display: grid;
  grid-template-columns: 58px 1fr 34px;
  align-items: center; gap: 18px;
  padding: 21px 14px;
  border-bottom: 1px solid var(--line);
  transition: background .35s, padding .35s var(--ease);
}
.num-list a:hover { background: rgba(165, 179, 138, .14); padding-left: 24px; }
.nl-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem; color: var(--gold);
  line-height: 1;
}
.nl-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 600;
  color: var(--green-dark);
  transition: color .3s;
}
.num-list a:hover .nl-body strong { color: var(--gold); }
.nl-body small { font-size: .8rem; color: var(--muted); }
.nl-arrow {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--gold-line);
  color: var(--gold);
  transition: all .35s var(--ease);
}
.nl-arrow svg { width: 14px; height: 14px; }
.num-list a:hover .nl-arrow { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------- 13. BANNER (full-bleed image) ---------- */
.banner {
  position: relative;
  min-height: 540px;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.banner-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
@media (min-width: 1024px) { .banner-bg { background-attachment: fixed; } }
.banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(23, 59, 43, .85) 0%, rgba(23, 59, 43, .55) 60%, rgba(23, 59, 43, .4) 100%);
}
.banner .container { padding-block: 96px; }
.banner h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 700px;
}
.banner h2 em { color: var(--gold-light); }
.banner p { max-width: 560px; margin-top: 18px; color: rgba(250, 248, 242, .85); }
.banner .btn { margin-top: 34px; }
.banner .eyebrow { justify-content: flex-start; }
.banner .eyebrow::before { display: none; }

/* ---------- 14. FEATURES ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: all .45s var(--ease);
  overflow: hidden;
}
.feature::after {
  content: ""; position: absolute; right: -46px; bottom: -46px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 179, 138, .22), transparent 70%);
  transition: transform .5s var(--ease);
}
.feature:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.feature:hover::after { transform: scale(1.7); }
.feature-ico {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(130, 151, 101, .14);
  border: 1px solid var(--gold-line);
  color: var(--green);
  margin-bottom: 22px;
  transition: all .45s var(--ease);
}
.feature-ico svg { width: 28px; height: 28px; }
.feature:hover .feature-ico { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(-8deg) scale(1.05); }
.feature h3 { font-size: 1.32rem; margin-bottom: 10px; }
.feature p { font-size: .9rem; color: var(--muted); }

/* ---------- 15. STATS ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 34px 56px; margin-top: 40px; }
.stat { display: flex; flex-direction: column; }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat span {
  margin-top: 8px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage);
}

/* ---------- 16. TESTIMONIAL SLIDER ---------- */
.slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 60px;
}
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform .75s var(--ease);
}
.slider-slide { flex: 0 0 100%; padding: 6px; }
.t-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 58px 56px 46px;
  text-align: center;
}
.t-quote {
  position: absolute; top: 22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: rgba(201, 154, 58, .28);
  pointer-events: none;
}
.t-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 20px; }
.t-stars svg { width: 17px; height: 17px; fill: var(--gold); }
.t-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.34rem);
  line-height: 1.65;
  color: var(--green-dark);
  max-width: 640px;
  margin: 0 auto 28px;
}
.t-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--green);
}
.t-meta { text-align: left; }
.t-meta b { display: block; font-weight: 500; font-size: .95rem; color: var(--ink); }
.t-meta small { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold-line);
  color: var(--green);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.slider-arrow svg { width: 19px; height: 19px; }
.slider-arrow:hover { background: var(--green); color: #fff; border-color: var(--green); }
.slider-prev { left: 0; }
.slider-next { right: 0; }
.slider-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.slider-dots .dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(35, 75, 56, .22);
  transition: all .4s var(--ease);
}
.slider-dots .dot.active { width: 30px; background: var(--gold); }

/* static testimonial cards (page) */
.t-static { text-align: left; }
.t-static .t-quote { left: 30px; transform: none; font-size: 4rem; }
.t-static .t-stars { justify-content: flex-start; }
.t-static .t-text { margin: 0 0 22px; }
.t-static .t-person { justify-content: flex-start; }
.sample-note {
  margin-top: 30px;
  text-align: center;
  font-size: .78rem; font-style: italic;
  color: var(--sage);
}

/* ---------- 17. ACCORDION ---------- */
.acc { max-width: 860px; }
.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.acc-item.open { border-color: var(--gold-line); box-shadow: var(--shadow-sm); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  text-align: left;
  font-size: 1.02rem; font-weight: 500;
  color: var(--green-dark);
  transition: color .3s;
}
.acc-trigger:hover { color: var(--gold); }
.acc-icon {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  transition: all .4s var(--ease);
}
.acc-icon svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.acc-item.open .acc-icon { background: var(--gold); border-color: var(--gold); color: #fff; }
.acc-item.open .acc-icon svg { transform: rotate(45deg); }
.acc-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease);
}
.acc-panel p {
  padding: 0 26px 24px;
  font-size: .93rem; color: var(--muted);
}

/* ---------- 18. GALLERY / MASONRY / LIGHTBOX ---------- */
.masonry { columns: 3 270px; column-gap: 18px; }
.m-item {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  background: #E8ECDF;
}
.m-item img {
  width: 100%; height: auto;
  transition: transform .9s var(--ease);
}
.m-item:hover img, .m-item:focus-visible img { transform: scale(1.06); }
.m-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 46px 18px 16px;
  background: linear-gradient(to top, rgba(23, 59, 43, .85), transparent);
  color: var(--ivory);
  font-size: .74rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  opacity: 0; transform: translateY(10px);
  transition: all .45s var(--ease);
  pointer-events: none;
}
.m-item:hover .m-cap, .m-item:focus-visible .m-cap { opacity: 1; transform: translateY(0); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(14, 28, 21, .94);
  opacity: 0; visibility: hidden;
  transition: all .35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  max-width: min(1080px, 92vw);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox.open .lb-stage { transform: scale(1); }
.lb-img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  transition: opacity .3s;
}
.lb-caption {
  color: rgba(250, 248, 242, .85);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.lb-count {
  color: rgba(201, 154, 58, .9);
  font-size: .74rem; letter-spacing: .3em;
}
.lb-btn {
  position: absolute; z-index: 2;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  transition: all .3s;
}
.lb-btn svg { width: 20px; height: 20px; }
.lb-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---------- 19. CTA ---------- */
.cta { text-align: center; }
.cta .eyebrow { margin-bottom: 22px; }
.cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 720px; margin: 0 auto; }
.cta h2 em { color: var(--gold-light); }
.cta p {
  max-width: 540px; margin: 18px auto 0;
  color: rgba(250, 248, 242, .78);
}
.cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin-top: 38px;
}

/* ---------- 20. CONTACT ---------- */
.c-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.c-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  transition: all .4s var(--ease);
}
.c-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-line); }
.c-ico {
  width: 58px; height: 58px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(130, 151, 101, .14);
  border: 1px solid var(--gold-line);
  color: var(--green);
  transition: all .4s;
}
.c-ico svg { width: 24px; height: 24px; }
.c-card:hover .c-ico { background: var(--green); border-color: var(--green); color: #fff; }
.c-card h3 {
  font-size: .78rem; font-family: var(--font-body);
  font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.c-card p, .c-card a.c-val {
  font-size: .92rem; color: var(--ink);
  word-break: break-word;
}
a.c-val { display: inline-block; transition: color .3s; }
a.c-val:hover { color: var(--gold); }

/* form */
.contact-layout {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 4vw, 46px);
}
.form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.form .form-note-top { font-size: .88rem; color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .74rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid rgba(35, 75, 56, .18);
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 300;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 154, 58, .16);
}
.form-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.form-note {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(130, 151, 101, .14);
  border: 1px solid var(--sage-soft);
  font-size: .88rem;
  color: var(--green);
}
.form-note.show { display: block; animation: fadeUp .5s var(--ease); }

.info-panel {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  color: rgba(250, 248, 242, .82);
  padding: clamp(28px, 3.4vw, 42px);
  position: sticky; top: 110px;
}
.info-panel h3 { color: #fff; font-size: 1.6rem; margin-bottom: 14px; }
.info-panel > p { font-size: .92rem; margin-bottom: 24px; }
.info-list { display: grid; gap: 18px; margin-bottom: 28px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .92rem; }
.info-list li svg { width: 19px; height: 19px; flex: none; margin-top: 4px; color: var(--gold-light); }
.info-list a { color: var(--ivory); border-bottom: 1px solid rgba(201, 154, 58, .4); transition: color .3s; }
.info-list a:hover { color: var(--gold-light); }
.info-panel .btn { width: 100%; }
.info-panel .btn + .btn { margin-top: 12px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 64px;
}
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; filter: saturate(.85) contrast(.98); }

/* Contact page polish */
.contact-page .page-hero { min-height: clamp(430px, 62vh, 580px); }
.contact-page .page-hero::after {
  content: "";
  position: absolute; z-index: 1;
  right: clamp(24px, 7vw, 110px); bottom: -110px;
  width: 280px; height: 280px;
  border: 1px solid rgba(224, 189, 104, .35);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(224, 189, 104, .06), 0 0 0 70px rgba(224, 189, 104, .035);
}
.contact-page .contact-details {
  z-index: 4;
  margin-top: -58px;
  padding: 0 0 96px;
}
.contact-page .c-card {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(201, 154, 58, .2);
  box-shadow: 0 18px 44px rgba(23, 59, 43, .11);
}
.contact-page .c-card:nth-child(even) .c-ico { background: rgba(201, 154, 58, .12); }
.contact-booking {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(130, 151, 101, .13), transparent 28%),
    radial-gradient(circle at 94% 88%, rgba(201, 154, 58, .12), transparent 30%),
    var(--white);
}
.contact-booking .form {
  border-top: 4px solid var(--gold);
  box-shadow: 0 26px 64px rgba(23, 59, 43, .12);
}
.contact-booking .field input,
.contact-booking .field select,
.contact-booking .field textarea {
  background: #F7F6F0;
  border-color: rgba(35, 75, 56, .14);
}
.contact-booking .info-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(224, 189, 104, .22), transparent 34%),
    var(--green-dark);
  box-shadow: 0 26px 64px rgba(23, 59, 43, .2);
}
.contact-booking .info-panel::after {
  content: "";
  position: absolute;
  width: 150px; height: 150px;
  right: -74px; bottom: -74px;
  border: 1px solid rgba(224, 189, 104, .28);
  border-radius: 50%;
}

/* ---------- 21. FOOTER ---------- */
.footer {
  position: relative;
  background: var(--green-dark);
  color: rgba(250, 248, 242, .72);
  padding-top: 84px;
  margin-top: 0;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 4%, var(--gold) 50%, transparent 96%);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
}
.brand--footer .brand-name { color: #fff; }
.foot-brand p { margin-top: 20px; font-size: .9rem; max-width: 320px; }
.foot-social { display: flex; gap: 10px; margin-top: 24px; }
.foot-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(250, 248, 242, .8);
  transition: all .35s var(--ease);
}
.foot-social a svg { width: 17px; height: 17px; }
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); transform: translateY(-4px); }

.foot-title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.foot-title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 1px; background: var(--gold);
}
.foot-col ul { display: grid; gap: 11px; }
.foot-col ul a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem;
  transition: all .3s;
}
.foot-col ul a::before {
  content: ""; width: 5px; height: 5px;
  border-radius: 50%; background: var(--sage-soft);
  opacity: 0; transform: translateX(-6px);
  transition: all .3s;
}
.foot-col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.foot-col ul a:hover::before { opacity: 1; transform: none; }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; }
.foot-contact svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--gold-light); }
.foot-contact a:hover { color: var(--gold-light); }

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(250, 248, 242, .5);
}
.foot-bottom b { color: rgba(224, 189, 104, .85); font-weight: 500; }

/* ---------- 22. FLOATING ACTION BUTTONS ---------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: grid; gap: 14px; justify-items: center; }
.fab {
  position: relative;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(23, 59, 43, .35);
  transition: transform .3s var(--ease), background .3s;
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.1); }
.fab-wa { background: var(--green); color: #fff; }
.fab-wa:hover { background: var(--green-dark); }
.fab-wa::after {
  content: ""; position: absolute; inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(35, 75, 56, .55);
  animation: pulse 2.6s ease-out infinite;
}
.fab-phone {
  width: 47px; height: 47px;
  background: var(--white); color: var(--green);
  border: 1px solid var(--gold-line);
}
.fab-phone svg { width: 21px; height: 21px; }
.fab-phone:hover { color: var(--gold); }
@keyframes pulse {
  0% { transform: scale(.86); opacity: .9; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* ---------- 23. CURSOR (desktop) ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 1500;
  border-radius: 50%;
}
.cursor-dot { width: 8px; height: 8px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(201, 154, 58, .55);
  transition: opacity .3s;
}

/* ---------- 24. ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1180px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: grid; }
  .nav-toggle .nt-line { display: block; }

  .split { grid-template-columns: 1fr; gap: 66px; }
  .split--reverse .split-media { order: 0; }
  .split-media { max-width: 560px; }
  .img-float { right: 2%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .c-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
  .num-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .slider { padding: 0; }
  .slider-arrow { display: none; }
  .banner { min-height: 480px; }
}

@media (max-width: 700px) {
  .topbar-loc span { display: none; }
  .topbar .topbar-link.topbar-mail { display: none; }
  .brand-logo { width: 140px; height: auto; }
  .site-header.is-scrolled .brand-logo { width: 120px; height: auto; }
  .brand-name { font-size: 1.32rem; }
  .brand-tag { font-size: .52rem; letter-spacing: .26em; }
  .brand { gap: 10px; }
  :root { --nav-h: 112px; }
}

@media (max-width: 640px) {
  .container { padding-inline: 20px; }
  .section { padding: 72px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .c-grid { grid-template-columns: 1fr; gap: 16px; }
  .features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 70px 0 90px; }
  .hero-actions .btn { width: 100%; }
  .t-card { padding: 52px 26px 40px; }
  .img-float { width: 52%; bottom: -6%; right: 0; }
  .img-frame { inset: -12px; }
  .leaf-mark { width: 62px; height: 62px; left: -12px; }
  .leaf-mark svg { width: 28px; height: 28px; }
  .cta-actions .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { justify-content: center; text-align: center; }
  .float-actions { right: 16px; bottom: 16px; }
  .fab { width: 54px; height: 54px; }
  .fab-phone { width: 44px; height: 44px; }
  .scroll-cue { display: none; }
  .map-wrap iframe { height: 300px; }
  .stats { gap: 24px 34px; }
  .contact-page .page-hero { min-height: 440px; }
  .contact-page .contact-details { margin-top: -30px; padding-bottom: 72px; }
  .contact-page .c-card { padding: 28px 20px; }
  .contact-booking .form-submit .btn { width: 100%; }
  .contact-booking .form-submit span { width: 100%; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .topbar-ico { width: 26px; height: 26px; }
  .brand-logo { width: 126px; height: auto; }
  .site-header.is-scrolled .brand-logo { width: 116px; height: auto; }
  .nav-toggle { width: 46px; height: 46px; }
  .mm-brand img { width: 150px; height: auto; }
  .brand-name { font-size: 1.2rem; }
  .hero h1 { font-size: 2.35rem; }
  .num-list a { grid-template-columns: 44px 1fr 30px; gap: 12px; }
  .nl-num { font-size: 1.4rem; }
  .nl-body strong { font-size: 1.1rem; }
  .card-actions { flex-wrap: wrap; }
}

/* ---------- 26. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero .fade-item, .page-hero .fade-item { opacity: 1; transform: none; animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-bg img, .page-hero .ph-bg img { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
