/* =========================================================
   Indo Lanka — styles
   Brand: saffron lotus (#E55002) + forest green wordmark (#033103)
   ========================================================= */

:root {
  --saffron: #e55002;
  --saffron-600: #c94500;
  --saffron-50: #fdeee4;
  --forest: #0b3a17;
  --forest-900: #062a0f;
  --forest-950: #041c0a;
  --cream: #fbf6ee;
  --sand: #f4eadb;
  --sand-2: #eadcc4;
  --brass: #c9a25b;
  --ink: #1f1b15;
  --muted: #6b6257;
  --line: rgba(31, 27, 21, 0.12);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -22px rgba(40, 25, 10, 0.45);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 100;
  background: var(--forest); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 6px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--saffron-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow--light { color: #ffb27d; }

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-title { font-size: clamp(2rem, 4.2vw, 3.1rem); color: var(--forest); }
.section-sub { color: var(--muted); max-width: 46ch; margin: 1rem 0 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head--row { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }
.section-head--row .section-sub { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent; --fg: inherit; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.35rem;
  border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: .95rem; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--primary { --bg: var(--saffron); --fg: #fff; --bd: var(--saffron); box-shadow: 0 10px 24px -12px rgba(229, 80, 2, .8); }
.btn--primary:hover { --bg: var(--saffron-600); --bd: var(--saffron-600); }
.btn--ghost { --fg: #fff; --bd: rgba(255, 255, 255, .55); backdrop-filter: blur(6px); background: rgba(255, 255, 255, .06); }
.btn--ghost:hover { --bd: #fff; background: rgba(255, 255, 255, .14); }
.btn--dark { --bg: var(--forest); --fg: #fff; --bd: var(--forest); }
.btn--dark:hover { --bg: var(--forest-900); }
.btn--outline { --fg: var(--forest); --bd: var(--forest); }
.btn--outline:hover { --bg: var(--forest); --fg: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  transition: background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-lotus { width: 44px; }
.brand-word { width: 150px; }
.brand-word--dark { display: none; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) {
  position: relative; color: #fff; text-decoration: none; font-weight: 600; font-size: .95rem;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.site-header.is-solid {
  background: rgba(251, 246, 238, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(0, 0, 0, .4);
}
.site-header.is-solid .brand-word--light { display: none; }
.site-header.is-solid .brand-word--dark { display: block; }
.site-header.is-solid .nav a:not(.btn) { color: var(--ink); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s, background-color .3s; }
.site-header.is-solid .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(100svh, 920px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  color: #fff; overflow: hidden;
}
.hero-bg, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { z-index: -2; }
.hero-bg img { object-fit: cover; object-position: center; transform: scale(1.04); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 28, 10, .92) 0%, rgba(4, 28, 10, .78) 38%, rgba(4, 28, 10, .25) 75%, rgba(4, 28, 10, .15) 100%),
    linear-gradient(0deg, rgba(4, 28, 10, .7) 0%, transparent 35%),
    linear-gradient(180deg, rgba(4, 28, 10, .55) 0%, transparent 25%);
}
.hero-content { max-width: var(--container); }
.hero-title {
  font-size: clamp(2.8rem, 7.2vw, 5.6rem);
  font-weight: 600; line-height: 1.02; max-width: 12ch; letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; font-weight: 400; color: #ffa566; }
.hero-lead { max-width: 44ch; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255, 255, 255, .86); margin: 1.5rem 0 2.25rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 3rem; }
.rating-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem 1rem .55rem .9rem; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px); text-decoration: none; font-size: .92rem;
}
.rating-pill strong { font-size: 1.05rem; }
.rating-pill span:last-child { color: rgba(255, 255, 255, .8); }
.stars { color: #ffb400; letter-spacing: .08em; }
.service-list { display: flex; gap: 1.25rem; font-size: .92rem; color: rgba(255, 255, 255, .85); font-weight: 600; }
.service-list li { display: flex; align-items: center; gap: .45rem; }
.service-list li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: var(--saffron) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2 4.8-4.8' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}

/* ---------- Weekend special ---------- */
.special { background: var(--saffron); color: #fff; }
.special-inner { display: flex; align-items: center; gap: 1rem 1.5rem; padding-block: 1rem; flex-wrap: wrap; }
.special-inner p { margin: 0; flex: 1 1 380px; font-size: 1rem; }
.special-sep { margin: 0 .5rem; opacity: .7; }
.special-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  background: var(--forest-950); color: #ffd3b3; padding: .4rem .75rem; border-radius: 999px;
}
.special-link {
  background: none; border: 0; color: inherit; cursor: pointer; padding: 0 0 2px;
  font-weight: 800; border-bottom: 2px solid rgba(255, 255, 255, .6);
}
.special-link:hover { border-color: #fff; }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about-media { position: relative; padding: 0 12% 14% 0; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.about-img--main { width: 100%; aspect-ratio: 4 / 5; }
.about-img--float {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1;
  border: 8px solid var(--cream);
}
.about-lotus { position: absolute; left: -28px; top: -26px; width: 92px; opacity: .95; filter: drop-shadow(0 6px 12px rgba(229, 80, 2, .25)); }
.about-copy p { color: #3d372f; }
.about-copy .section-title { margin-bottom: 1.4rem; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 2.25rem 0 0; padding-top: 2rem; border-top: 1px solid var(--line);
}
.stats dt { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; color: var(--forest); line-height: 1; }
.stats dt span { color: #ffb400; font-size: .7em; margin-left: .1em; }
.stats dd { margin: .45rem 0 0; font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ---------- Menu ---------- */
.menu {
  background:
    radial-gradient(1200px 500px at 100% 0%, rgba(229, 80, 2, .07), transparent 60%),
    var(--sand);
}
.menu .section-head { text-align: center; }
.menu .section-head .eyebrow { justify-content: center; }
.menu .section-sub { margin-inline: auto; }

.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter {
  border: 1.5px solid var(--sand-2); background: var(--cream); color: var(--ink);
  padding: .55rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: .9rem; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter:hover { border-color: var(--forest); }
.filter.is-active { background: var(--forest); color: #fff; border-color: var(--forest); }

.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.dish {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 1px 0 var(--line); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish[hidden] { display: none; }
.dish-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-2); }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish-img img { transform: scale(1.06); }
.badge {
  position: absolute; left: .85rem; top: .85rem;
  background: var(--saffron); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .65rem; border-radius: 999px;
}
.dish-body { padding: 1.25rem 1.35rem 1.5rem; }
.dish-origin { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron-600); }
.dish h3 { font-size: 1.35rem; color: var(--forest); margin: .35rem 0 .5rem; }
.dish h3 small { font-family: var(--font-body); font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .02em; margin-left: .25rem; }
.dish p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.55; }

.menu-cta { text-align: center; margin-top: 3rem; }
.menu-cta p { color: var(--muted); margin: 0 auto 1.25rem; max-width: 60ch; }
.menu-cta strong { color: var(--forest); }

/* ---------- Gallery (masonry) ---------- */
.gallery { background: var(--cream); }
.gallery-grid { columns: 4 260px; column-gap: 1rem; }
.g-item {
  display: block; width: 100%; margin: 0 0 1rem; padding: 0; border: 0;
  border-radius: var(--radius); overflow: hidden; break-inside: avoid;
  cursor: zoom-in; background: var(--sand-2);
}
.g-item img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .4s; }
.g-item:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* ---------- Reviews ---------- */
.reviews {
  position: relative; overflow: hidden;
  background: var(--forest-950); color: #fff;
}
.reviews::before {
  content: ""; position: absolute; right: -120px; top: -80px; width: 520px; height: 345px;
  background: url("../assets/brand/lotus.png") center / contain no-repeat; opacity: .07; pointer-events: none;
}
.reviews-top {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.score { display: flex; align-items: center; gap: 1.25rem; }
.score-num { font-family: var(--font-display); font-size: clamp(4rem, 9vw, 6.5rem); font-weight: 600; line-height: .9; }
.stars--lg { font-size: 1.5rem; }
.score p { margin: .25rem 0 0; color: rgba(255, 255, 255, .7); font-weight: 600; }
.reviews .eyebrow { margin-bottom: .8rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tags li {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; padding: .4rem .5rem .4rem .9rem; font-weight: 600; font-size: .9rem;
}
.tags span { background: rgba(255, 255, 255, .12); border-radius: 999px; padding: .05rem .5rem; font-size: .8rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review {
  margin: 0; padding: 2rem; border-radius: var(--radius);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.75rem;
}
.review--accent { background: var(--saffron); border-color: var(--saffron); }
.review blockquote { margin: 0; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45; font-weight: 400; }
.review figcaption { display: flex; align-items: center; gap: .8rem; }
.review figcaption strong { display: block; }
.review figcaption small { color: rgba(255, 255, 255, .7); font-size: .82rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(255, 255, 255, .15); font-weight: 800;
}
.review--accent .avatar { background: rgba(0, 0, 0, .2); }
.review--accent figcaption small { color: rgba(255, 255, 255, .85); }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Visit ---------- */
.visit { background: var(--sand); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: stretch; }
.visit-card { background: var(--cream); border-radius: var(--radius); padding: clamp(2rem, 4vw, 3rem); box-shadow: 0 1px 0 var(--line); }
.visit-card .section-title { margin-bottom: 2rem; }
.info { display: grid; gap: 1.35rem; }
.info li { display: flex; gap: 1rem; align-items: flex-start; line-height: 1.5; color: var(--muted); font-size: .98rem; }
.info strong { color: var(--ink); }
.info a { text-decoration: none; }
.info a:hover strong { color: var(--saffron-600); }
.info svg {
  width: 22px; height: 22px; flex: none; margin-top: 2px;
  fill: none; stroke: var(--saffron); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.visit-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.map { border-radius: var(--radius); overflow: hidden; min-height: 420px; background: var(--sand-2); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: rgba(255, 255, 255, .75); padding-top: 4.5rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { width: 150px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 30ch; margin: 0; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffb27d; margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: .5rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover, .footer-link:hover { color: #fff; }
.footer-link { background: none; border: 0; padding: 0; color: inherit; cursor: pointer; text-align: left; }
.footer-base {
  display: flex; justify-content: space-between; align-items: center; gap: .75rem 1.5rem; flex-wrap: wrap;
  padding-block: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem;
}
.footer-base p { margin: 0; }
.credits { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .75rem; }
.credits a { color: #fff; font-weight: 700; letter-spacing: .02em; border-bottom: 1px solid rgba(255, 178, 125, .6); }
.credits a:hover { color: #ffb27d; border-color: #ffb27d; }
.credits-sep { opacity: .5; }

/* ---------- Floating order button (mobile) ---------- */
.fab-order { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  border: 0; padding: 0; background: transparent; max-width: min(94vw, 1200px); max-height: 90vh; overflow: visible;
}
.lightbox::backdrop { background: rgba(4, 18, 8, .9); backdrop-filter: blur(4px); }
.lightbox img { max-height: 86vh; width: auto; border-radius: var(--radius-sm); margin: auto; }
.lightbox-close, .lightbox-nav {
  position: absolute; z-index: 1; width: 44px; height: 44px; border-radius: 50%;
  border: 0; background: #fff; color: var(--ink); line-height: 1; cursor: pointer;
  box-shadow: var(--shadow); display: grid; place-items: center;
}
.lightbox-close { top: -18px; right: -18px; font-size: 1.6rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 2rem; padding-bottom: 4px; }
.lightbox-nav--prev { left: -22px; }
.lightbox-nav--next { right: -22px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; transform: none; }
  * { transition-duration: 0s !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-grid .review:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, .35);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav a:not(.btn) { color: var(--ink); padding: .9rem .25rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 1rem; }
  .site-header.menu-open { background: var(--cream); }
  .site-header.menu-open .brand-word--light { display: none; }
  .site-header.menu-open .brand-word--dark { display: block; }
  .site-header.menu-open .nav-toggle span { background: var(--ink); }

  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }

  .fab-order {
    display: grid; place-items: center;
    position: fixed; right: 1.1rem; bottom: calc(1.1rem + env(safe-area-inset-bottom)); z-index: 45;
    width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
    background: var(--saffron); color: #fff;
    box-shadow: 0 14px 28px -10px rgba(229, 80, 2, .75), 0 0 0 4px rgba(255, 255, 255, .85);
    transition: transform .25s var(--ease), background-color .25s;
  }
  .fab-order:hover, .fab-order:active { background: var(--saffron-600); transform: scale(1.06); }
  .fab-order svg {
    width: 26px; height: 26px;
    fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand-lotus { width: 38px; }
  .brand-word { width: 124px; }

  .hero { min-height: 92svh; align-items: flex-end; padding-bottom: 3rem; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 28, 10, .95) 0%, rgba(4, 28, 10, .82) 50%, rgba(4, 28, 10, .45) 100%);
  }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-meta { margin-top: 2rem; }

  .special-sep { display: none; }
  .special-inner p strong { display: block; }

  .stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid .review:last-child { grid-column: auto; }
  .review { padding: 1.5rem; }
  .gallery-grid { columns: 2; column-gap: .6rem; }
  .g-item { margin-bottom: .6rem; border-radius: var(--radius-sm); }
  .map, .map iframe { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-base { flex-direction: column; align-items: flex-start; padding-bottom: 6rem; }

  .lightbox-nav { top: auto; bottom: -60px; transform: none; }
  .lightbox-nav--prev { left: calc(50% - 54px); }
  .lightbox-nav--next { right: calc(50% - 54px); }
  .lightbox-close { right: 0; }
}
