/* =========================================================================
   Afife Sea & Mountain Retreat
   Design: framed rounded cards floating on cream · forest green · sand gold
   ========================================================================= */

/* ----------------------------- Design tokens ---------------------------- */
:root {
  --green-900: #14301f;
  --green-800: #1b3d2a;
  --green-700: #235038;   /* primary */
  --green-600: #2f6446;
  --green-500: #3f7a58;
  --green-300: #8fb09c;

  --gold:      #e3a857;
  --gold-600:  #d2974a;
  --gold-700:  #b97d31;
  --terra:     #bf6c4c;

  --paper:   #efe9da;     /* page background (warm cream) */
  --paper-2: #e7e0cf;
  --card:    #fdfcf8;     /* white cards */
  --card-2:  #f6f2e8;     /* inset light surface */

  --ink:     #20261c;
  --ink-2:   #3c4336;
  --muted:   #6c7263;
  --cream:   #f3eee2;
  --cream-2: #c9d3c4;

  --line:        rgba(33, 39, 29, 0.12);
  --line-strong: rgba(33, 39, 29, 0.22);
  --line-cream:  rgba(243, 238, 226, 0.20);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --r-hero: 36px;
  --r-xl: 30px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --pill: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 48, 31, 0.05);
  --shadow-md: 0 16px 40px rgba(20, 48, 31, 0.09);
  --shadow-lg: 0 34px 80px rgba(20, 48, 31, 0.16);
  --shadow-green: 0 24px 60px rgba(20, 48, 31, 0.26);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(48px, 7vw, 96px);
  --gap: clamp(14px, 1.6vw, 22px);

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

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: clamp(15.5px, 1.02vw, 17px);
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--green-700); color: var(--cream); }

/* ------------------------------ Typography ------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
.display {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  font-weight: 450;
  line-height: 1.0;
  letter-spacing: -0.022em;
}
.h-section { font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -0.02em; }
.h-sub { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.kicker::before { content: ""; width: 24px; height: 1.5px; background: var(--gold); display: inline-block; }
.kicker--center::after { content: ""; width: 24px; height: 1.5px; background: var(--gold); display: inline-block; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--muted); line-height: 1.6; }
em.script { font-style: italic; font-weight: 400; color: var(--green-600); }

/* ------------------------------ Utilities ------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
section[id] { scroll-margin-top: 96px; }
.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-top: 0.5rem; }
.section-head .lead { margin-top: 1rem; }
[hidden] { display: none !important; }

/* Framed card */
.panel {
  background: var(--card);
  border-radius: var(--r-hero);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3.4vw, 3.4rem);
}

/* -------------------------------- Buttons ------------------------------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 0.93rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--gold  { --btn-bg: var(--gold); --btn-fg: #3a2a10; }
.btn--gold:hover { --btn-bg: var(--gold-600); }
.btn--green { --btn-bg: var(--green-700); --btn-fg: var(--cream); }
.btn--green:hover { --btn-bg: var(--green-800); }
.btn--dark  { --btn-bg: var(--green-900); --btn-fg: var(--cream); }
.btn--dark:hover { --btn-bg: #0e2417; }
.btn--light { --btn-bg: var(--card); --btn-fg: var(--green-800); box-shadow: inset 0 0 0 1px var(--line); }
.btn--light:hover { --btn-bg: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--cream); box-shadow: inset 0 0 0 1.5px var(--line-cream); }
.btn--ghost:hover { --btn-bg: rgba(243, 238, 226, 0.10); }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--green-800); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn--ghost-dark:hover { --btn-bg: rgba(33, 39, 29, 0.05); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.08em 1.9em; font-size: 0.98rem; }
.btn--wa { width: 100%; padding-block: 1.12em; font-size: 1rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; box-shadow: none; }
.btn[disabled] { pointer-events: none; }

/* --------------------------------- Chips -------------------------------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 0.9em; border-radius: var(--pill);
  font-size: 0.82rem; font-weight: 600;
  background: rgba(243, 238, 226, 0.12); color: var(--cream);
  box-shadow: inset 0 0 0 1px var(--line-cream);
}
.chip svg { width: 1.05em; height: 1.05em; opacity: 0.85; }

/* ============================== NAV (floating pill) ===================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 14px var(--gutter); }
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(253, 252, 248, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(33, 39, 29, 0.07);
  border-radius: var(--pill);
  padding: 0.5rem 0.55rem 0.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
}
.nav.is-scrolled .nav__inner { box-shadow: var(--shadow-md); background: rgba(253, 252, 248, 0.9); }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--green-800); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__mark .ring { stroke: currentColor; }
.brand__text { display: flex; flex-direction: column; line-height: 1.04; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; }
.brand__sub  { font-size: 0.56rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; opacity: 0.65; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__links a {
  padding: 0.55em 0.95em; border-radius: var(--pill);
  font-weight: 600; font-size: 0.9rem; color: var(--ink-2);
  transition: background-color 0.25s, color 0.25s;
}
.nav__links a:hover { background: rgba(33, 39, 29, 0.06); color: var(--green-700); }

.nav__actions { display: flex; align-items: center; gap: 0.55rem; }
.lang { display: inline-flex; align-items: center; border-radius: var(--pill); padding: 3px; background: rgba(33, 39, 29, 0.06); }
.lang button {
  padding: 0.34em 0.66em; border-radius: var(--pill);
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--ink-2); opacity: 0.7; transition: all 0.25s var(--ease);
}
.lang button[aria-pressed="true"] { background: var(--green-700); color: var(--cream); opacity: 1; }
.nav__cta { display: inline-flex; }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: var(--pill); align-items: center; justify-content: center; color: var(--green-800); }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__burger span { position: relative; }
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after  { position: absolute; top: 6px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__burger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green-800); color: var(--cream);
  padding: 6rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line-cream); }
.mobile-menu .btn { margin-top: 1.4rem; }

/* =============================== HERO ================================== */
.hero { padding: clamp(96px, 13vh, 124px) var(--gutter) clamp(1rem, 3vw, 2rem); }
.hero__grid {
  max-width: var(--container); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr); gap: var(--gap);
  min-height: min(80vh, 720px);
}
/* prevent image/content grid children from forcing horizontal overflow */
.hero__grid > *,
.about__grid > *,
.booking__grid > *,
.activities__grid > *,
.gallery-grid > * { min-width: 0; }
.hero__panel {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 90% 5%, rgba(63, 122, 88, 0.55), transparent 60%),
    var(--green-700);
  border-radius: var(--r-hero);
  padding: clamp(1.8rem, 3.4vw, 3.3rem);
  display: flex; flex-direction: column; justify-content: center;
  color: var(--cream);
  box-shadow: var(--shadow-green);
}
.hero__panel::after {
  content: ""; position: absolute; right: -60px; bottom: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid var(--line-cream); opacity: 0.5;
}
.hero__panel > * { position: relative; z-index: 1; }
.hero__kicker { color: #f1d4a0; }
.hero__kicker::before { background: var(--gold); }
.hero .display { color: #fff; margin-top: 1.1rem; }
.hero__sub { margin-top: 1.3rem; max-width: 42ch; color: rgba(243, 238, 226, 0.9); font-size: clamp(1rem, 1.3vw, 1.12rem); }
.hero__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__meta { margin-top: 2rem; }

.hero__photo {
  position: relative; width: 100%; border-radius: var(--r-hero); overflow: hidden;
  box-shadow: var(--shadow-md); min-height: 320px;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1rem; border-radius: var(--pill);
  background: rgba(253, 252, 248, 0.92);
  backdrop-filter: blur(6px); box-shadow: var(--shadow-sm);
}
.hero__badge b { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--green-800); }
.hero__badge .stars { color: var(--gold); font-size: 0.74rem; letter-spacing: 1px; display: block; }
.hero__badge small { font-size: 0.7rem; color: var(--muted); }

/* ============================ ABOUT ==================================== */
.about__card { display: grid; gap: clamp(1.6rem, 3vw, 2.6rem); }
.about__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.about__top .h-section { margin-top: 0.5rem; max-width: 16ch; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 3rem); align-items: center; }

.about__media { position: relative; }
.about__media .stack { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.4; }
.about__media .stack img { width: 100%; height: 100%; object-fit: cover; }
.about__media .float {
  position: absolute; left: -1.2rem; bottom: -1.4rem; width: 44%;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--card); aspect-ratio: 1 / 1;
}
.about__media .float img { width: 100%; height: 100%; object-fit: cover; }

.about__body .feature-list { display: grid; gap: 0.9rem; margin-top: 0.4rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 27px; height: 27px; border-radius: 50%;
  background: rgba(35, 80, 56, 0.10); color: var(--green-600);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list b { color: var(--ink); font-weight: 700; }
.feature-list p { color: var(--muted); font-size: 0.94rem; margin-top: 0.1rem; }
.about__body .lead { margin-bottom: 1.3rem; }

.stat-row { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.stat b { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--green-700); line-height: 1; }
.stat span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; }

/* ============================ AMENITIES ================================ */
.amenity-grid { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--gap); }
.amenity {
  background: var(--card); border-radius: var(--r-lg); padding: 1.6rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.amenity:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.amenity .ic { width: 46px; height: 46px; border-radius: 14px; background: rgba(35, 80, 56, 0.09); color: var(--green-600); display: grid; place-items: center; margin-bottom: 1rem; }
.amenity .ic svg { width: 24px; height: 24px; }
.amenity b { display: block; color: var(--ink); font-weight: 700; font-size: 0.98rem; }
.amenity span { font-size: 0.84rem; color: var(--muted); }
.amenity--feature { background: var(--green-700); color: var(--cream); box-shadow: var(--shadow-md); }
.amenity--feature .ic { background: rgba(243, 238, 226, 0.16); color: #fff; }
.amenity--feature b { color: #fff; }
.amenity--feature span { color: var(--cream-2); }

/* ============================== GALLERY =============================== */
.gallery__card { }
.gallery-grid { margin-top: 2.2rem; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: var(--gap); }
.g-item { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-sm); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13, 30, 20, 0.45)); opacity: 0; transition: opacity 0.4s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-item .cap { position: absolute; left: 1rem; bottom: 0.85rem; color: #fff; font-weight: 600; font-size: 0.9rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.g-item:hover .cap { opacity: 1; transform: translateY(0); }
.g-item .zoom { position: absolute; top: 0.85rem; right: 0.85rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(253, 252, 248, 0.92); color: var(--green-800); display: grid; place-items: center; opacity: 0; transform: scale(0.8); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); z-index: 2; }
.g-item:hover .zoom { opacity: 1; transform: scale(1); }
.g-item--big { grid-column: span 2; grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.gallery-more { margin-top: 1.6rem; text-align: center; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(11, 24, 16, 0.92); backdrop-filter: blur(8px); display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(243, 238, 226, 0.12); color: #fff; display: grid; place-items: center; transition: background-color 0.25s, transform 0.25s var(--ease); box-shadow: inset 0 0 0 1px var(--line-cream); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(243, 238, 226, 0.24); }
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav.prev { left: 1.4rem; }
.lightbox__nav.next { right: 1.4rem; }
.lightbox__counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--cream-2); font-size: 0.85rem; letter-spacing: 0.1em; }

/* ============================== ACTIVITIES ============================ */
.activities__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.activities__intro { position: sticky; top: 110px; }
.activities__intro .lead { margin-top: 1rem; }
.activities__intro .btn { margin-top: 1.6rem; }
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.act { background: var(--card); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.act:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.act .ic { width: 48px; height: 48px; border-radius: 14px; background: rgba(35, 80, 56, 0.09); color: var(--green-600); display: grid; place-items: center; margin-bottom: 1rem; }
.act .ic svg { width: 25px; height: 25px; }
.act b { display: block; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; color: var(--ink); }
.act p { color: var(--muted); font-size: 0.9rem; margin-top: 0.35rem; }
.act--cta { background: var(--green-700); box-shadow: var(--shadow-md); display: flex; flex-direction: column; justify-content: center; }
.act--cta .ic { background: rgba(243, 238, 226, 0.16); color: #fff; }
.act--cta b { color: #fff; }
.act--cta p { color: var(--cream-2); }
.act--cta:hover { background: var(--green-800); }

/* ============================== MARQUEE =============================== */
.marquee { background: var(--green-700); color: var(--cream); padding-block: 1.4rem; overflow: hidden; display: flex; user-select: none; }
.marquee__track { display: flex; flex: none; gap: 2.4rem; padding-right: 2.4rem; animation: marquee 40s linear infinite; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-style: italic; font-weight: 400; white-space: nowrap; opacity: 0.96; }
.marquee__track .sep { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================== CONTACT + BOOKING ======================== */
.booking__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }

/* Left — contact column on cream */
.contact-col .h-section { margin-top: 0.5rem; }
.contact-col > .lead { margin-top: 1rem; max-width: 42ch; }
.contact-list { margin-top: 1.8rem; display: grid; gap: 0.4rem; }
.contact-list a, .contact-list .row {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.75rem 0.5rem; border-radius: var(--r-sm);
  transition: background-color 0.2s;
}
.contact-list a:hover { background: rgba(33, 39, 29, 0.04); }
.contact-list .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(35, 80, 56, 0.09); color: var(--green-600); display: grid; place-items: center; }
.contact-list .ic svg { width: 19px; height: 19px; }
.contact-list small { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-list b { font-weight: 700; color: var(--ink); font-size: 1rem; }

.goodtoknow { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: grid; gap: 0.7rem; }
.goodtoknow h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 800; margin-bottom: 0.3rem; }
.goodtoknow li { display: flex; gap: 0.65rem; align-items: center; font-size: 0.92rem; color: var(--ink-2); }
.goodtoknow li svg { width: 17px; height: 17px; color: var(--green-600); flex: none; }

.socials { margin-top: 1.8rem; display: flex; gap: 0.7rem; }
.social-square {
  width: 92px; padding: 0.9rem 0.5rem; border-radius: var(--r-md);
  background: var(--card); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  transition: transform 0.3s var(--ease), background-color 0.3s, color 0.3s;
}
.social-square:hover { transform: translateY(-4px); background: var(--green-700); color: var(--cream); }
.social-square svg { width: 22px; height: 22px; }
.social-square span { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }

/* Right — green booking card */
.booking__card {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(63, 122, 88, 0.45), transparent 55%),
    var(--green-700);
  border-radius: var(--r-hero);
  padding: clamp(1.4rem, 2.8vw, 2.4rem);
  box-shadow: var(--shadow-green);
  color: var(--cream);
}
.bk-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bk-head__title { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.bk-head h3 { color: #fff; font-size: 1.5rem; }
.bk-tag {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.34em 0.72em; border-radius: var(--pill);
  background: var(--gold); color: #3a2a10;
  font-size: 0.64rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
}
.bk-price { text-align: right; }
.bk-price__was { display: block; font-size: 0.78rem; color: var(--cream-2); }
.bk-price__was s { color: #f1d4a0; text-decoration-thickness: 1.5px; opacity: 0.92; }
.bk-price b { font-family: var(--serif); font-size: 1.9rem; color: #fff; font-weight: 600; line-height: 1.05; }
.bk-price > span { display: block; font-size: 0.76rem; color: var(--cream-2); }

.bk-direct {
  margin-top: 1.1rem;
  display: flex; align-items: center; gap: 0.65rem;
  background: rgba(227, 168, 87, 0.14);
  border: 1px solid rgba(227, 168, 87, 0.38);
  border-radius: var(--r-sm);
  padding: 0.72rem 0.9rem;
  font-size: 0.83rem; font-weight: 600; line-height: 1.4; color: #f1d4a0;
}
.bk-direct svg { width: 18px; height: 18px; flex: none; color: var(--gold); }

.bk-step { margin-top: 1.5rem; }
.bk-step__label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 0.8rem; }
.bk-step__label .n { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: #3a2a10; display: grid; place-items: center; font-size: 0.72rem; letter-spacing: 0; font-weight: 800; }

.date-display { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.55rem; align-items: stretch; }
.date-field { background: var(--card); border: 1px solid transparent; border-radius: var(--r-sm); padding: 0.65rem 0.95rem; transition: box-shadow 0.3s; }
.date-field.is-active { box-shadow: 0 0 0 2.5px var(--gold); }
.date-field small { display: block; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.date-field b { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.date-field b.placeholder { color: var(--green-300); font-style: italic; font-weight: 400; }
.date-arrow { display: grid; place-items: center; color: var(--cream-2); }

.calendar { margin-top: 0.9rem; background: var(--card); border-radius: var(--r-md); padding: 1rem 1.05rem 1.1rem; }
.cal-head { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 0.2rem; }
.cal-title { display: none; }
.cal-nav { display: flex; gap: 0.4rem; }
.cal-nav button { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--green-700); box-shadow: inset 0 0 0 1px var(--line); transition: background-color 0.25s; }
.cal-nav button:hover { background: rgba(35, 80, 56, 0.08); }
.cal-nav button[disabled] { opacity: 0.3; pointer-events: none; }
.cal-months { display: grid; grid-template-columns: 1fr; gap: 1.4rem 1.8rem; }
.cal-month__name { display: block; text-align: center; font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: 0.5rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { text-align: center; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); padding-bottom: 0.45rem; }
.cal-cell { aspect-ratio: 1 / 1; position: relative; }
.cal-day { position: relative; width: 100%; height: 100%; display: grid; place-items: center; font-size: 0.88rem; font-weight: 600; color: var(--ink-2); border-radius: 50%; transition: background-color 0.2s, color 0.2s; z-index: 1; }
.cal-day:hover:not([disabled]) { background: rgba(35, 80, 56, 0.10); }
.cal-day[disabled] { color: var(--line-strong); pointer-events: none; text-decoration: line-through; text-decoration-color: var(--line); }
.cal-cell.in-range::before { content: ""; position: absolute; inset: 0; background: rgba(63, 122, 88, 0.14); z-index: 0; }
.cal-cell.range-start::before { left: 50%; }
.cal-cell.range-end::before { right: 50%; }
.cal-day.is-selected { background: var(--green-700); color: #fff; }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--green-300); }
.cal-day.is-selected.is-today { box-shadow: none; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: 0.76rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.cal-legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.cal-legend .sw-sel { background: var(--green-700); }
.cal-legend .sw-range { background: rgba(63, 122, 88, 0.24); }
.cal-legend .sw-off { background: var(--card-2); box-shadow: inset 0 0 0 1px var(--line); }

.guests { display: flex; align-items: center; justify-content: space-between; background: var(--card); border-radius: var(--r-sm); padding: 0.7rem 1rem; }
.guests__info b { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.guests__info span { display: block; font-size: 0.78rem; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 0.85rem; }
.stepper button { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--card-2); color: var(--green-700); box-shadow: inset 0 0 0 1.5px var(--line-strong); font-size: 1.25rem; line-height: 1; transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s; }
.stepper button:hover:not([disabled]) { background: var(--green-700); color: #fff; box-shadow: none; }
.stepper button:active { transform: scale(0.92); }
.stepper button[disabled] { opacity: 0.35; pointer-events: none; }
.stepper output { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; min-width: 1.5ch; text-align: center; color: var(--ink); }

.bk-summary { margin-top: 1.4rem; background: rgba(243, 238, 226, 0.1); border: 1px solid var(--line-cream); border-radius: var(--r-md); padding: 1rem 1.2rem; display: grid; gap: 0.45rem; }
.bk-summary .row { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; color: var(--cream-2); }
.bk-summary .row b { color: #fff; font-weight: 700; }
.bk-summary .row--total { border-top: 1px dashed var(--line-cream); padding-top: 0.55rem; margin-top: 0.15rem; }
.bk-summary .row--total span { font-weight: 700; color: var(--cream); }
.bk-summary .row--total b { font-family: var(--serif); font-size: 1.3rem; color: #f1d4a0; font-weight: 600; }
.bk-cta { margin-top: 1.2rem; }
.bk-hint { margin-top: 0.8rem; font-size: 0.82rem; color: #f1d4a0; text-align: center; font-weight: 600; min-height: 1.2em; }
.bk-note { margin-top: 0.85rem; font-size: 0.78rem; color: var(--cream-2); text-align: center; line-height: 1.5; }

/* ================================ FOOTER ============================== */
.footer { padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; text-align: center; }
.footer__inner { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.footer .brand { color: var(--green-800); flex-direction: column; gap: 0.5rem; }
.footer .brand__mark { width: 56px; height: 56px; }
.footer .brand__text { align-items: center; }
.footer .brand__name { font-size: 1.5rem; }
.footer__tag { margin-top: 1rem; color: var(--muted); max-width: 40ch; }
.footer__nav { margin-top: 1.8rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.4rem; }
.footer__nav a { font-weight: 600; font-size: 0.92rem; color: var(--ink-2); }
.footer__nav a:hover { color: var(--green-700); }
.footer__social { margin-top: 1.5rem; display: flex; gap: 0.6rem; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--card); box-shadow: var(--shadow-sm); color: var(--green-800); transition: background-color 0.25s, color 0.25s, transform 0.25s var(--ease); }
.footer__social a:hover { background: var(--green-700); color: var(--cream); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); width: 100%; display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: center; align-items: center; font-size: 0.82rem; color: var(--muted); }
.footer__bottom .links { display: flex; gap: 1.2rem; }
.footer__bottom a:hover { color: var(--green-700); }

/* ============================ Reveal anim ============================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* =============================== Responsive ========================== */
@media (min-width: 921px) { .cal-months.two { grid-template-columns: 1fr 1fr; } }

@media (max-width: 1080px) {
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .nav__links, .nav__cta--desk { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero__photo { aspect-ratio: 16 / 11; }
  .about__grid { grid-template-columns: 1fr; gap: 3.4rem; }
  .about__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .about__top { flex-direction: column; align-items: flex-start; }
  .activities__grid { grid-template-columns: 1fr; }
  .activities__intro { position: static; }
  .booking__grid { grid-template-columns: 1fr; }
  .cal-month:nth-child(2) { display: none; }
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-item--big { grid-column: span 2; grid-row: span 1; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .act-grid { grid-template-columns: 1fr; }
  .date-display { grid-template-columns: 1fr; }
  .date-arrow { transform: rotate(90deg); }
  .stat-row { gap: 1.4rem; }
  .socials { flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; }
}

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