/* =========================================================
   ERIGERON HIMALAYAN HOTEL — Design System
   Brand: Netra Media  |  Build: kafal.studio demo
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --teal:        #305368;
  --teal-dark:   #25404f;
  --teal-700:    #2b4a5d;
  --cream:       #fffbf8;
  --cream-200:   #f5efe7;
  --terracotta:  #a56447;
  --sage:        #6f8466;
  --amber:       #e49e48;

  /* Functional */
  --ink:         #1f2d35;
  --muted:       #5c6b73;
  --line:        rgba(48, 83, 104, 0.14);
  --surface:     #ffffff;

  /* Type */
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body:    "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 8rem);
  --radius: 4px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 14px rgba(31, 45, 53, 0.07);
  --shadow-md: 0 18px 50px rgba(31, 45, 53, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; color: var(--teal); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p  { color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-block;
}
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); }
.script-accent { font-style: italic; color: var(--amber); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream-200); }
.section--teal { background: var(--teal); }
.section--teal h1, .section--teal h2, .section--teal h3 { color: var(--cream); }
.section--teal p { color: rgba(255, 251, 248, 0.78); }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal); color: var(--cream); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--amber { background: var(--amber); color: var(--teal-dark); }
.btn--amber:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); filter: brightness(1.03); }
.btn--ghost { border: 1.5px solid currentColor; color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: var(--cream); transform: translateY(-2px); }
.btn--on-dark { border: 1.5px solid rgba(255,251,248,0.45); color: var(--cream); }
.btn--on-dark:hover { background: var(--cream); color: var(--teal); }

/* WhatsApp green accent on hover for the WA button */
.btn--whatsapp:hover { background: #1faf54; color: #fff; border-color: transparent; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.1rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s, padding 0.4s;
}
.site-header.is-scrolled {
  background: rgba(255, 251, 248, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
/* Logo is the real illustrated asset (img). White over the hero via filter,
   navy on cream once the header scrolls. */
.logo-mark { height: 48px; width: auto; flex: 0 0 auto; display: block; }
.nav__brand .logo-mark { transition: transform 0.45s var(--ease), filter 0.4s var(--ease); filter: brightness(0) invert(1); }
.nav__brand:hover .logo-mark { transform: scale(1.05); }
.site-header.is-scrolled .nav__brand .logo-mark { filter: none; }
body.nav-open .nav__brand .logo-mark { filter: brightness(0) invert(1); }
.site-footer .logo-full { height: 104px; width: auto; }
.leaf-divider .logo-mark { height: 64px; width: auto; }
.nav__wordmark { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.06em; color: var(--cream); line-height: 1; }
.nav__wordmark span { display: block; font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.34em; color: rgba(255,251,248,0.75); margin-top: 2px; }
.site-header.is-scrolled .nav__wordmark { color: var(--teal); }
.site-header.is-scrolled .nav__wordmark span { color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-weight: 500; font-size: 0.92rem; color: var(--cream);
  position: relative; padding-block: 0.25rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--amber); transition: width 0.35s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.site-header.is-scrolled .nav__links a { color: var(--teal); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
/* Header CTA contrast: light over the hero, teal once the header turns cream */
.site-header .nav__cta .btn--ghost { color: var(--cream); border-color: rgba(255, 251, 248, 0.55); }
.site-header .nav__cta .btn--ghost:hover { background: var(--cream); color: var(--teal); border-color: var(--cream); }
.site-header.is-scrolled .nav__cta .btn--ghost { color: var(--teal); border-color: rgba(48, 83, 104, 0.45); }
.site-header.is-scrolled .nav__cta .btn--ghost:hover { background: var(--teal); color: var(--cream); border-color: var(--teal); }

.nav__toggle { display: none; width: 44px; height: 44px; z-index: 2; flex-direction: column; justify-content: center; gap: 5px; }
.nav__toggle span { display: block; height: 2px; width: 26px; background: var(--cream); margin-inline: auto; transition: transform 0.35s var(--ease), opacity 0.3s; }
.site-header.is-scrolled .nav__toggle span { background: var(--teal); }

@media (max-width: 920px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.75rem;
    background: var(--teal); transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav__links a { color: var(--cream) !important; font-family: var(--font-display); font-size: 1.8rem; }
  body.nav-open .nav__links { display: flex; transform: translateX(0); }
  body.nav-open .nav__toggle span { background: var(--cream); }
  body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(115% 80% at 72% 12%, rgba(111, 132, 102, 0.28) 0%, transparent 55%),
    radial-gradient(90% 70% at 18% 88%, rgba(165, 100, 71, 0.16) 0%, transparent 60%),
    linear-gradient(158deg, #35607690 0%, var(--teal) 35%, var(--teal-dark) 70%, #182b34 100%);
}
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(37,64,79,0.35) 0%, rgba(37,64,79,0.15) 40%, rgba(37,64,79,0.85) 100%);
}
.hero__inner { padding-bottom: clamp(3.5rem, 8vw, 7rem); padding-top: 8rem; max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,251,248,0.9); margin-bottom: 2rem; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.8; }
.hero__scroll::after { content: ""; display: block; width: 1px; height: 36px; margin: 0.6rem auto 0; background: var(--cream); animation: scrollLine 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100%{ transform: scaleY(0.3); opacity:0.4;} 50%{ transform: scaleY(1); opacity:1;} }

.page-hero { position: relative; min-height: 60svh; display: flex; align-items: center; color: var(--cream); overflow: hidden; padding-top: 6rem; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 70%); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(37,64,79,0.55), rgba(37,64,79,0.7)); }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(255,251,248,0.88); max-width: 560px; margin-top: 1rem; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,251,248,0.7); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--amber); }

/* ---------- Media placeholder (until real photos land) ---------- */
.ph {
  position: relative; background: var(--teal); overflow: hidden;
  display: grid; place-items: center; color: rgba(255,251,248,0.9);
}
.ph[data-tone="sage"] { background: var(--sage); }
.ph[data-tone="terracotta"] { background: var(--terracotta); }
.ph[data-tone="amber"] { background: var(--amber); }
.ph[data-tone="cream"] { background: var(--cream-200); color: var(--teal); }
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../img/pattern-leaf.svg");
  background-size: 280px; background-position: center; opacity: 0.16;
}
.ph__label { position: relative; z-index: 1; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.4rem 0.9rem; border: 1px solid currentColor; border-radius: 999px; opacity: 0.85; }
img.ph-img { background: var(--cream-200); }

/* ---------- Highlights grid (home) ---------- */
.highlight { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: var(--cream); }
.highlight .media, .highlight .ph { position: absolute; inset: 0; }
.highlight .media img { width: 100%; height: 100%; object-fit: cover; }
.highlight::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 35%, rgba(37,64,79,0.85)); }
.highlight__body { position: relative; z-index: 1; padding: 1.6rem; }
.highlight__body h3 { color: var(--cream); margin-bottom: 0.35rem; }
.highlight__body p { color: rgba(255,251,248,0.85); font-size: 0.95rem; }
.highlight.is-tall { min-height: 100%; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.split__media img, .split__media .ph { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: 1.1rem; }
.split__body p + p { margin-top: 1rem; }
.feature-list { margin-top: 1.75rem; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.feature-list li::before { content:""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: var(--sage) url("../img/check.svg") center/12px no-repeat; }

/* ---------- Cards (rooms / experiences) ---------- */
.card { background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 3/2; overflow: hidden; }
.card__media img, .card__media .ph { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag { font-size: 0.72rem; letter-spacing: 0.05em; padding: 0.3rem 0.7rem; border-radius: 999px; background: var(--cream-200); color: var(--teal-700); font-weight: 600; }
.card__body p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal); }
.price small { font-family: var(--font-body); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Stats / band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--amber); line-height: 1; }
.stat__label { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,251,248,0.8); margin-top: 0.5rem; }

/* ---------- Gallery ---------- */
/* Sticky jump-nav (Airbnb-style photo-tour navigation) */
.gallery-jump {
  position: sticky; top: 62px; z-index: 50;
  display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center;
  padding: 0.85rem 0; margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.filter-chip {
  display: inline-flex; align-items: center;
  padding: 0.55rem 1.2rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--teal-700); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.01em; cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--teal); transform: translateY(-2px); }
.filter-chip.is-active { background: var(--teal); color: var(--cream); border-color: var(--teal); }

.gallery-section { scroll-margin-top: 130px; }
.gallery-section + .gallery-section { margin-top: clamp(2.5rem, 5vw, 4rem); }
.g-title { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.4rem;
  font-family: var(--font-display); color: var(--teal); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.g-title::before { content: ""; flex: 0 0 auto; width: 28px; height: 2px; background: var(--amber); }
.g-title .g-count { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius-lg); overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-grid .g-item img, .gallery-grid .g-item .ph { width: 100%; transition: transform 0.6s var(--ease), filter 0.4s; }
.gallery-grid .g-item:hover img { transform: scale(1.04); filter: brightness(0.92); }
.g-item .ph { min-height: 240px; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(31,45,53,0.94); display: none; place-items: center; padding: 4vw; }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; box-shadow: var(--shadow-md); }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.75rem; color: var(--cream); font-size: 2rem; line-height: 1; }

/* ---------- Testimonials ---------- */
.quote { max-width: 760px; margin-inline: auto; text-align: center; }
.quote p { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--cream); line-height: 1.4; }
.quote cite { display: block; margin-top: 1.5rem; font-family: var(--font-body); font-style: normal; font-weight: 600; letter-spacing: 0.05em; color: var(--amber); font-size: 0.9rem; }

/* ---------- Reviews / testimonials ---------- */
.reviews-meta { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }
.reviews-meta .stars { display: inline-flex; gap: 2px; }
.reviews-meta .stars svg { width: 20px; height: 20px; color: var(--amber); }
.reviews-meta .score { font-family: var(--font-display); font-size: 1.3rem; color: var(--teal); }
.reviews-meta .count { color: var(--muted); font-size: 0.92rem; }

.review-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 1.9rem 1.75rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid var(--line); transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card .stars { display: inline-flex; gap: 2px; }
.review-card .stars svg { width: 17px; height: 17px; color: var(--amber); }
.review-card blockquote { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.review-card .author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.review-card .avatar {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); background: var(--teal);
}
.review-card .avatar[data-tone="terracotta"] { background: var(--terracotta); }
.review-card .avatar[data-tone="sage"] { background: var(--sage); }
.review-card .avatar[data-tone="amber"] { background: var(--amber); color: var(--teal-dark); }
.review-card .author-name { font-weight: 700; color: var(--teal); line-height: 1.2; }
.review-card .author-loc { font-size: 0.85rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.info-row { display: flex; gap: 1rem; padding-block: 1.25rem; border-bottom: 1px solid var(--line); align-items: flex-start; }
.info-row svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--terracotta); margin-top: 3px; }
.info-row h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.2rem; }
.info-row p, .info-row a { color: var(--muted); }
.info-row a:hover { color: var(--terracotta); }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.85rem 1rem; font: inherit; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(48,83,104,0.12); }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.5rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--teal); }
.faq__q .plus { flex: 0 0 auto; width: 24px; height: 24px; position: relative; transition: transform 0.4s var(--ease); }
.faq__q .plus::before, .faq__q .plus::after { content:""; position: absolute; inset: 0; margin: auto; background: var(--terracotta); }
.faq__q .plus::before { width: 16px; height: 2px; }
.faq__q .plus::after { width: 2px; height: 16px; transition: transform 0.4s var(--ease); }
.faq__item.is-open .plus::after { transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a p { padding-bottom: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-dark); color: rgba(255,251,248,0.7); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,251,248,0.14); }
.footer-brand .nav__wordmark { color: var(--cream); }
.footer-brand p { margin-top: 1rem; max-width: 280px; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); color: var(--cream); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding-block: 0.35rem; font-size: 0.95rem; transition: color 0.3s, transform 0.3s; }
.footer-col a:hover { color: var(--amber); transform: translateX(3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.75rem; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--amber); }
.social { display: flex; gap: 0.75rem; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,251,248,0.22); border-radius: 50%; transition: background 0.3s, border-color 0.3s, transform 0.3s; }
.social a:hover { background: var(--amber); border-color: var(--amber); color: var(--teal-dark); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }

/* ---------- Floating contact ---------- */
.fab { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; display: flex; flex-direction: column; gap: 0.7rem; }
.fab a { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform 0.35s var(--ease); }
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25d366; }
.fab .call { background: var(--teal); }
.fab svg { width: 24px; height: 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Decorative divider ---------- */
.leaf-divider { display: flex; align-items: center; gap: 1rem; justify-content: center; color: var(--terracotta); opacity: 0.8; }
.leaf-divider::before, .leaf-divider::after { content:""; height: 1px; width: min(120px, 20vw); background: currentColor; opacity: 0.4; }
.leaf-divider svg { width: 26px; height: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .hero__scroll { display: none; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
