/* ============================================================
   Mamachi Wadi — modern design system
   Palette: deep forest / warm cream / terracotta
   Type: Fraunces (display) + Manrope (body)
   ============================================================ */

:root {
  --ink: #1c2420;
  --ink-soft: #47534c;
  --forest: #1e4d34;
  --forest-deep: #12331f;
  --cream: #f7f3ea;
  --cream-2: #efe7d6;
  --white: #fffdf8;
  --terra: #c96f43;
  --terra-deep: #a95832;
  --wa: #22c15e;
  --line: rgba(28, 36, 32, 0.14);
  --shadow-sm: 0 2px 10px rgba(18, 30, 24, 0.08);
  --shadow-md: 0 14px 40px rgba(18, 30, 24, 0.16);
  --shadow-lg: 0 30px 80px rgba(18, 30, 24, 0.28);
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--terra); color: #fff; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.9rem, 7.2vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.25; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 58ch; }
em.accent { font-style: italic; color: var(--terra); }
.on-dark em.accent { color: #e9a075; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--terra); border-radius: 2px; }

/* ---------- layout ---------- */
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.wrap-wide { width: min(1380px, calc(100% - 40px)); margin: 0 auto; }
section { padding: clamp(72px, 9vw, 128px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { margin-bottom: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 10px 28px rgba(201, 111, 67, 0.38); }
.btn-primary:hover { background: var(--terra-deep); box-shadow: 0 16px 36px rgba(201, 111, 67, 0.45); }
.btn-forest { background: var(--forest); color: #fff; box-shadow: 0 10px 28px rgba(30, 77, 52, 0.32); }
.btn-forest:hover { background: var(--forest-deep); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 28px rgba(34, 193, 94, 0.38); }
.btn-wa:hover { background: #1aa64f; }
.btn svg { width: 19px; height: 19px; flex: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1380px, calc(100% - 40px)); margin: 0 auto; }
.nav.scrolled, .nav.solid {
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -0.01em; color: #fff; transition: color 0.35s ease; }
.brand img { height: 46px; width: auto; background: var(--white); border-radius: 12px; padding: 4px 7px; box-shadow: var(--shadow-sm); }
.brand small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.75; }
.nav.scrolled .brand, .nav.solid .brand { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.nav-cta) { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.92); position: relative; padding: 6px 0; transition: color 0.35s ease; }
.nav.scrolled .nav-links a:not(.nav-cta), .nav.solid .nav-links a:not(.nav-cta) { color: var(--ink-soft); }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--terra); border-radius: 2px; transition: width 0.25s ease; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active:not(.nav-cta) { color: #fff; }
.nav.scrolled .nav-links a.active:not(.nav-cta), .nav.solid .nav-links a.active:not(.nav-cta) { color: var(--ink); }
.nav-cta { padding: 14px 30px; font-size: 0.95rem; white-space: nowrap; flex: none; }

.nav-burger { display: none; z-index: 130; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.14); backdrop-filter: blur(8px); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav.scrolled .nav-burger, .nav.solid .nav-burger { background: var(--cream-2); }
.nav-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease; }
.nav.scrolled .nav-burger span, .nav.solid .nav-burger span { background: var(--ink); }
body.menu-open .nav-burger span { background: #fff; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: linear-gradient(160deg, var(--forest-deep), var(--forest));
  display: flex; flex-direction: column; justify-content: center; padding: 40px 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3rem); color: #fff; padding: 10px 0; opacity: 0.9; }
.mobile-menu a.active { color: #e9a075; }
.mobile-menu .mm-contact { margin-top: 36px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.mobile-menu .mm-contact a { font-family: var(--font-body); font-size: 1rem; display: inline; padding: 0; color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(56px, 8vh, 96px);
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: -4%; z-index: -2; background-size: cover; background-position: center; filter: saturate(0.95) brightness(0.9); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 22, 16, 0.78) 0%, rgba(8, 22, 16, 0.58) 42%, rgba(8, 22, 16, 0.18) 75%),
    linear-gradient(to top, rgba(12, 26, 18, 0.72) 0%, rgba(12, 26, 18, 0.18) 100%);
}
.hero-inner { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hero .eyebrow { color: #e9a075; }
.hero .eyebrow::before { background: #e9a075; }
.hero h1 { max-width: 14ch; margin-bottom: 22px; text-wrap: balance; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42); }
.hero p { max-width: 52ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255, 255, 255, 0.88); margin-bottom: 34px; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.hero-meta div strong { display: block; font-family: var(--font-display); font-size: 1.35rem; }
.hero-meta div span { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.66); }
.hero-scroll { position: absolute; right: clamp(20px, 4vw, 48px); bottom: 40px; writing-mode: vertical-rl; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 12px; }
.hero-scroll::after { content: ""; width: 1px; height: 54px; background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent); animation: drip 2.2s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (inner pages) */
.page-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; padding-bottom: clamp(44px, 6vh, 72px); color: #fff; isolation: isolate; overflow: hidden; }
.page-hero .hero-bg { animation-duration: 26s; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(12, 26, 18, 0.88), rgba(12, 26, 18, 0.28) 60%, rgba(12, 26, 18, 0.42)); }
.page-hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); max-width: 16ch; }
.page-hero p { max-width: 56ch; color: rgba(255,255,255,0.88); margin-top: 14px; font-size: clamp(1rem, 1.4vw, 1.15rem); }

/* ---------- marquee ---------- */
.marquee { background: var(--forest-deep); color: var(--cream); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 18px; padding: 0 18px; font-family: var(--font-display); font-style: italic; font-size: 1.12rem; white-space: nowrap; opacity: 0.92; }
.marquee span::after { content: "✦"; font-size: 0.7rem; color: #e9a075; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- intro split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split-copy .btn { margin-top: 28px; }
.story-cta {
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  padding: 17px 34px;
  font-size: 1.02rem;
  box-shadow: 0 18px 44px rgba(201, 111, 67, 0.34), 0 0 0 7px rgba(201, 111, 67, 0.08);
}
.story-cta:hover {
  background: linear-gradient(135deg, var(--terra-deep), #8f472a);
  box-shadow: 0 22px 52px rgba(201, 111, 67, 0.42), 0 0 0 8px rgba(201, 111, 67, 0.1);
}
.story-cta svg {
  width: 22px;
  height: 22px;
  transition: transform 0.25s ease;
}
.story-cta:hover svg { transform: translateX(4px); }
.collage { position: relative; }
.collage .main { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4 / 4.6; }
.collage .float-card {
  position: absolute; left: -12%; bottom: 8%; width: 52%;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  border: 5px solid var(--white); object-fit: cover; aspect-ratio: 4 / 3;
}
.collage .badge {
  position: absolute; top: 6%; right: -6%;
  background: var(--white); border-radius: 999px; padding: 14px 22px;
  box-shadow: var(--shadow-md); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 10px; color: var(--forest);
  rotate: 3deg;
}

/* stat chips */
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chip { background: var(--cream-2); color: var(--ink); border: 1px solid var(--line); padding: 9px 18px; border-radius: 999px; font-size: 0.88rem; font-weight: 700; }

/* ---------- activity cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3.9 / 4.7; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover img { transform: scale(1.06); }
.card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 24, 16, 0.86) 0%, rgba(10, 24, 16, 0.05) 55%); }
.card-body { padding: 24px; width: 100%; }
.card-body h3 { color: #fff; margin-bottom: 6px; }
.card-body p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); line-height: 1.55; }
.price-tag {
  position: absolute; top: 18px; right: 18px;
  background: var(--cream); color: var(--forest-deep);
  font-weight: 800; font-size: 0.92rem; padding: 8px 15px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.cards-wide { grid-template-columns: repeat(2, 1fr); }

/* ---------- full-bleed band ---------- */
.band { position: relative; color: #fff; padding: clamp(88px, 12vw, 150px) 0; isolation: isolate; overflow: hidden; }
.band .hero-bg { animation: none; inset: 0; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(10, 26, 17, 0.85) 20%, rgba(10, 26, 17, 0.35)); }
.band h2 { max-width: 16ch; margin-bottom: 16px; }
.band p { max-width: 52ch; color: rgba(255,255,255,0.88); margin-bottom: 30px; }
.band .chip { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #fff; backdrop-filter: blur(6px); }

/* ---------- package cards ---------- */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pkg {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg-img { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg:hover .pkg-img img { transform: scale(1.05); }
.pkg-body { padding: 30px 30px 34px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pkg-body h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pkg-price { font-family: var(--font-display); color: var(--terra); font-size: 1.15rem; white-space: nowrap; }
.pkg-price small { font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-soft); display: block; text-align: right; }
.pkg ul.ticks { display: grid; gap: 8px; }
.pkg ul.ticks li { padding-left: 26px; position: relative; font-size: 0.95rem; color: var(--ink-soft); }
.pkg ul.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 800; }
.pkg .btn { margin-top: auto; align-self: flex-start; }

/* ---------- pricing tables / detail page ---------- */
.detail-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px dashed var(--line); }
.tl-item:last-child { border-bottom: none; }
.tl-time { font-family: var(--font-display); font-style: italic; color: var(--terra); font-size: 1.05rem; line-height: 1.3; }
.tl-item h4 { font-size: 1.06rem; margin-bottom: 6px; }
.tl-item p { color: var(--ink-soft); font-size: 0.95rem; }

.price-card {
  position: sticky; top: calc(var(--nav-h) + 20px);
  background: var(--forest-deep); color: var(--cream); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow-md);
}
.price-card h3 { color: #fff; margin-bottom: 4px; }
.price-card .from { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; }
.price-rows { margin: 22px 0; display: grid; gap: 0; }
.price-rows div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.14); font-size: 0.97rem; }
.price-rows div:last-child { border-bottom: none; }
.price-rows strong { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; white-space: nowrap; }
.price-card .note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.price-card .btn { width: 100%; }
.price-card .btn + .btn { margin-top: 10px; }

/* food-themed section background (day picnic menus) */
.food-bg {
  background-color: var(--cream-2);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520'><g font-size='52' opacity='0.22'><text x='34' y='78' transform='rotate(-12 34 78)'>🍛</text><text x='310' y='96' transform='rotate(10 310 96)'>🫓</text><text x='168' y='190' transform='rotate(-6 168 190)'>🌶️</text><text x='420' y='250' transform='rotate(14 420 250)'>☕</text><text x='64' y='330' transform='rotate(8 64 330)'>🍗</text><text x='262' y='318' transform='rotate(-10 262 318)'>🍦</text><text x='384' y='448' transform='rotate(-14 384 448)'>🥘</text><text x='128' y='470' transform='rotate(12 128 470)'>🍚</text><text x='250' y='452' transform='rotate(6 250 452)'>🧆</text></g></svg>");
  background-size: 520px 520px;
}
.food-bg .menu-card { background: rgba(255, 253, 248, 0.94); backdrop-filter: blur(2px); }

/* course cards — photo-led menu presentation */
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.course-card {
  background: var(--forest-deep); color: var(--cream);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.course-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.course-card:hover .course-img img { transform: scale(1.06); }
.course-img .course-time {
  position: absolute; top: 14px; left: 14px;
  background: rgba(18, 51, 31, 0.82); backdrop-filter: blur(6px);
  color: var(--cream); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.course-body { padding: 22px 24px 26px; }
.course-body h4 { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; color: #fff; margin-bottom: 10px; font-family: var(--font-display); font-weight: 500; }
.course-body p { font-size: 0.94rem; line-height: 1.75; color: rgba(247, 243, 234, 0.85); }
.course-body p + p { margin-top: 8px; }
.course-body p strong { color: #fff; font-weight: 700; }
.course-body .dot { width: 13px; height: 13px; border-radius: 3.5px; border: 2px solid; display: inline-block; position: relative; flex: none; }
.course-body .dot::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: currentColor; }
.course-body .dot.veg { color: #4fc06a; }
.course-body .dot.nonveg { color: #e0654a; }
@media (max-width: 560px) { .course-grid { grid-template-columns: 1fr; } }

/* menu columns */
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.menu-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.menu-card h4 { display: flex; align-items: center; gap: 10px; font-size: 1.02rem; margin-bottom: 12px; }
.menu-card h4 .dot { width: 12px; height: 12px; border-radius: 3px; border: 2px solid; display: inline-block; position: relative; }
.menu-card h4 .dot::after { content: ""; position: absolute; inset: 2px; border-radius: 50%; background: currentColor; }
.menu-card h4 .veg { color: #1e7a33; }
.menu-card h4 .nonveg { color: #a3341f; }
.menu-card li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.menu-card li:last-child { border-bottom: none; }

/* meal section blocks (night stay) */
.meal-block { margin-bottom: 34px; }
.meal-block > h3 { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.meal-block > h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- mosaic gallery ---------- */
.mosaic { columns: 3 300px; column-gap: 18px; }
.mosaic figure { break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-md); overflow: hidden; position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); }
.mosaic img { width: 100%; transition: transform 0.5s ease; }
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figcaption { position: absolute; inset: auto 0 0 0; padding: 34px 16px 12px; font-size: 0.82rem; font-weight: 700; color: #fff; background: linear-gradient(to top, rgba(10,24,16,0.75), transparent); opacity: 0; transition: opacity 0.3s ease; }
.mosaic figure:hover figcaption { opacity: 1; }

/* lightbox */
.lightbox { border: none; padding: 0; background: rgba(10, 18, 13, 0.92); width: 100vw; height: 100vh; max-width: none; max-height: none; display: none; align-items: center; justify-content: center; }
.lightbox[open] { display: flex; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: fixed; top: 22px; right: 26px; color: #fff; font-size: 2rem; line-height: 1; opacity: 0.8; }
.lightbox .lb-close:hover { opacity: 1; }
.lightbox::backdrop { background: transparent; }

/* gallery strip (home) */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(240px, 26vw, 360px); gap: 18px; overflow-x: auto; padding: 6px 6px 22px; scroll-snap-type: x mandatory; }
.strip::-webkit-scrollbar { height: 8px; }
.strip::-webkit-scrollbar-thumb { background: var(--cream-2); border-radius: 8px; }
.strip a { scroll-snap-align: start; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.strip a:hover img { transform: scale(1.05); }

/* ---------- features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px 28px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature .f-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.5rem; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--forest-deep), var(--forest)); color: #fff; border-radius: var(--r-lg); padding: clamp(44px, 6vw, 76px); position: relative; overflow: hidden; }
.cta-band::before { content: "✦"; position: absolute; right: -30px; top: -60px; font-size: 260px; color: rgba(255,255,255,0.05); }
.cta-band h2 { max-width: 18ch; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 52ch; margin-bottom: 30px; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .phones { margin-top: 26px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-band .phones a { color: #fff; font-weight: 700; }

/* ---------- contact / booking ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.info-cards { display: grid; gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start; }
.info-card .f-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex: none; }
.info-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 0.95rem; color: var(--ink-soft); }
.info-card a:hover { color: var(--terra); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-card h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 8px; }
.form-card > p { color: var(--ink-soft); margin-bottom: 26px; font-size: 0.97rem; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--cream);
  font: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 4px rgba(30, 77, 52, 0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 8px; }
.booking-status { margin-top: 16px; font-size: 0.97rem; min-height: 24px; font-weight: 600; }
.booking-status.is-success { color: var(--forest); }
.booking-status.is-error { color: #b3401f; }
.booking-status.is-pending { color: var(--ink-soft); }
.bf-website-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: clamp(48px, 7vw, 80px); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(0.9); }

/* ---------- footer ---------- */
footer { background: var(--forest-deep); color: rgba(255, 255, 255, 0.78); padding: clamp(56px, 7vw, 88px) 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(30px, 5vw, 64px); padding-bottom: 48px; }
.foot-brand { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 14px; }
footer p { font-size: 0.94rem; }
footer h4 { color: #fff; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; }
footer li { padding: 6px 0; }
footer a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 22px 0; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(34, 193, 94, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.09); box-shadow: 0 14px 32px rgba(34, 193, 94, 0.55); }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

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

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .collage { margin-left: 10%; }
  .pkg-grid, .cards-wide, .contact-grid, .menu-cols { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-meta { gap: 20px; }
  .tl-item { grid-template-columns: 1fr; gap: 4px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .card { aspect-ratio: 4 / 4.4; }
  .collage .float-card { left: -6%; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .hero-scroll { display: none; }
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 16px) 0 104px;
    align-items: flex-end;
  }
  .hero-inner { width: min(100% - 48px, 1180px); }
  .hero-bg { background-position: 58% center; }
  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.75rem, 13vw, 4.1rem);
    line-height: 1.02;
    margin-bottom: 20px;
  }
  .hero p {
    max-width: 30ch;
    font-size: clamp(0.95rem, 4.2vw, 1.08rem);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-ctas { gap: 10px; }
  .hero .btn {
    width: min(100%, 288px);
    min-height: 58px;
    padding: 12px 22px;
  }
  .hero-meta { display: none; }
  .marquee {
    position: relative;
    z-index: 2;
    margin-top: -62px;
  }
  .story-cta {
    width: min(100%, 280px);
    padding: 16px 28px;
    justify-content: center;
  }
}

@media (max-width: 380px), (max-height: 700px) {
  .hero {
    padding-bottom: 92px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 0.92rem;
    line-height: 1.58;
    margin-bottom: 18px;
  }
  .hero .btn {
    min-height: 52px;
    padding: 10px 20px;
  }
}
