/* =====================================================================
   NUSA BREWVILLA — Custom front-end
   HTML5 · CSS3 · Bootstrap 5 · jQuery · GSAP · Swiper
   Design system + component + section styles
   ===================================================================== */

/* -------------------------------------------------- 1. Design tokens */
:root {
  /* Brand palette (pulled from the tropical/teal identity) */
  --teal-950: #052e2b;
  --teal-900: #073a37;
  --teal-800: #0a4642;
  --teal-700: #0e5a54;
  --teal-600: #14746f;
  --teal-500: #1c8a80;   /* CTA / accent teal */
  --teal-400: #35a89c;

  --sage-100: #eef3e0;
  --sage-300: #cfe0a6;   /* light green section */
  --sage-400: #bcd189;
  --sage-600: #8ba85c;

  --cream: #f5efe0;
  --cream-dark: #eadfc7;

  --gold-500: #d3a54b;   /* stars / fine accents */
  --gold-400: #e0be74;

  --ink: #0b2b29;
  --muted: #6c8481;
  --text-on-dark: #e7f0e6;
  --text-on-dark-soft: #b4c8c3;

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --section-pad: clamp(4rem, 8vw, 7.5rem);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-soft: 0 18px 50px -20px rgba(5, 46, 43, 0.45);
  --shadow-card: 0 24px 60px -28px rgba(5, 46, 43, 0.55);
  --maxw: 1240px;
}

/* -------------------------------------------------- 2. Base / reset */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Clip horizontal overflow at the root so the off-canvas (position:fixed)
     drawer never adds phantom width / horizontal scroll on any device. */
  overflow-x: hidden;
}
/* JS smooth-scroll takes over; disable native when GSAP handles it */
html.gsap-scroll { scroll-behavior: auto; }

body {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .6em;
  letter-spacing: .3px;
}

p { margin: 0 0 1.1rem; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease-out); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container-x { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }

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

/* Accessible focus */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

/* -------------------------------------------------- 3. Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  color: var(--teal-500);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow { color: var(--gold-400); }

.display-title {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  margin-bottom: 1.2rem;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.on-dark { color: var(--text-on-dark); }
.on-dark .lead, .on-dark p { color: var(--text-on-dark-soft); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.text-gold { color: var(--gold-500); }
.text-italic { font-style: italic; }

/* -------------------------------------------------- 4. Buttons */
.btn-nusa {
  --btn-bg: var(--teal-500);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), color .3s;
  box-shadow: 0 12px 26px -12px rgba(28, 138, 128, .8);
}
.btn-nusa i { transition: transform .4s var(--ease-out); }
.btn-nusa::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--teal-600), var(--teal-400));
  transform: translateY(101%);
  transition: transform .45s var(--ease-out);
}
.btn-nusa:hover { transform: translateY(-3px); color: #fff; box-shadow: 0 20px 40px -14px rgba(28, 138, 128, .9); }
.btn-nusa:hover::before { transform: translateY(0); }
.btn-nusa:hover i { transform: translateX(4px); }

.btn-outline-nusa {
  --btn-fg: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .55);
  color: var(--btn-fg);
  box-shadow: none;
}
.btn-outline-nusa::before { background: #fff; }
.btn-outline-nusa:hover { color: var(--teal-800); border-color: #fff; }

.btn-gold { --btn-bg: var(--gold-500); box-shadow: 0 12px 26px -12px rgba(211,165,75,.8); }
.btn-gold::before { background: linear-gradient(120deg, var(--gold-500), var(--gold-400)); }

.btn-ghost-dark {
  background: transparent;
  border: 1.5px solid rgba(11,43,41,.25);
  color: var(--ink);
  box-shadow: none;
}
.btn-ghost-dark::before { background: var(--teal-800); }
.btn-ghost-dark:hover { color: #fff; border-color: var(--teal-800); }

/* -------------------------------------------------- 5. Header / nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .45s var(--ease-out), padding .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img { height: 50px; width: auto; transition: height .45s var(--ease-out); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.3rem);
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .03em;
  padding: .35rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1.3rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 500; font-size: .92rem; white-space: nowrap;
}
.nav-phone i { color: var(--gold-400); }

/* Scrolled state */
.site-header.scrolled {
  background: rgba(7, 58, 55, .92);
  backdrop-filter: blur(14px);
  padding: .7rem 0;
  box-shadow: 0 10px 40px -18px rgba(0,0,0,.6);
}
.site-header.scrolled .brand img { height: 40px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0; background: rgba(7,58,55,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative; z-index: 1300;
  align-items: center; justify-content: center;
  transition: background .3s var(--ease-out);
}
.nav-toggle:hover { background: var(--teal-500); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto;
  width: min(84vw, 360px);
  background: linear-gradient(160deg, var(--teal-900), var(--teal-800));
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  padding: 6rem 2.2rem 2.2rem;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -20px rgba(0,0,0,.6);
}
body.menu-open .mobile-drawer { transform: translateX(0); }
.mobile-drawer a {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-drawer a:hover { color: var(--gold-400); padding-left: .5rem; }
/* Reserve button inside the drawer keeps proper button styling (not link styling) */
.mobile-drawer .btn-nusa {
  border-bottom: 0;
  font-family: var(--font-body);
  font-size: .95rem;
  color: #fff;
  padding: .95rem 1.6rem;
  width: 100%;
}
.mobile-drawer .btn-nusa:hover { color: #fff; padding-left: 1.6rem; }
.drawer-meta { margin-top: auto; color: var(--text-on-dark-soft); font-size: .9rem; }
.drawer-meta a { font-size: 1rem; border: 0; padding: .2rem 0; display: inline-flex; gap: .5rem; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(5,46,43,.55);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; z-index: 1100;
  transition: opacity .4s, visibility .4s;
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; }

/* -------------------------------------------------- 6. Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--teal-900);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 1.4rem;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader img { height: 62px; opacity: .95; animation: floaty 2.4s ease-in-out infinite; }
.loader-bar { width: 180px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: var(--gold-400); border-radius: 3px; animation: loaderSlide 1.1s ease-in-out infinite; }
@keyframes loaderSlide { 0%{transform:translateX(-110%);} 100%{transform:translateX(360%);} }
@keyframes floaty { 50% { transform: translateY(-10px); } }

/* -------------------------------------------------- 7. Sections base */
section { position: relative; }
.section { padding-block: var(--section-pad); }
.bg-teal { background: var(--teal-800); }
.bg-teal-deep { background: linear-gradient(180deg, var(--teal-900), var(--teal-950)); }
.bg-sage { background: var(--sage-300); }
.bg-cream { background: var(--cream); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Decorative botanical leaves (SVG background) */
.leaf-deco {
  position: absolute; pointer-events: none; opacity: .5; z-index: 0;
  width: clamp(120px, 18vw, 260px);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.15));
}
.leaf-tl { top: -30px; left: -40px; transform: rotate(-15deg); }
.leaf-br { bottom: -40px; right: -50px; transform: rotate(160deg); }
.section > .container-x { position: relative; z-index: 2; }

/* Curved section divider */
.wave-divider { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave-divider svg { width: 100%; height: auto; display: block; }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

/* -------------------------------------------------- 8. Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.hero::before { /* teal wash */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(28,138,128,.35), transparent 55%),
    linear-gradient(180deg, rgba(5,46,43,.7) 0%, rgba(7,58,55,.72) 40%, rgba(5,46,43,.92) 100%);
}
.hero::after { /* subtle grain/vignette */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 120% at 50% 40%, transparent 55%, rgba(5,46,43,.65) 100%);
}
.hero-content { max-width: 820px; padding-top: 4rem; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: .4em; font-size: .8rem;
  color: var(--gold-400); font-weight: 500; margin-bottom: 1.4rem;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.15rem, 6.4vw, 5.4rem);
  line-height: 1.04;
  margin-bottom: 1.2rem;
  text-shadow: 0 20px 40px rgba(0,0,0,.35);
  overflow-wrap: break-word;
}
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.9);
  max-width: 46ch; margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero rotating word */
.rotator { display: inline-grid; }
.rotator > span { grid-area: 1/1; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.8);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-cue .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cue .mouse::before {
  content: ""; width: 4px; height: 8px; background: var(--gold-400); border-radius: 2px;
  animation: mouseWheel 1.6s ease-in-out infinite;
}
@keyframes mouseWheel { 0%{opacity:0;transform:translateY(-4px);} 40%{opacity:1;} 80%{opacity:0;transform:translateY(10px);} }

/* Floating stat pills over hero */
.hero-badges { display: flex; gap: 1.6rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badge { }
.hero-badge .num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-400); line-height: 1; }
.hero-badge .lbl { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* Marquee ribbon */
.marquee {
  background: var(--teal-500);
  color: #fff; overflow: hidden; white-space: nowrap;
  padding: .85rem 0; position: relative; z-index: 5;
}
.marquee-track { display: inline-flex; gap: 3rem; align-items: center; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "✦"; color: var(--gold-400); font-style: normal; }

/* -------------------------------------------------- 9. About */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  position: relative;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; transition: transform 1.1s var(--ease-out); }
.about-media:hover .frame img { transform: scale(1.06); }
.about-media .frame.stack-2 {
  position: absolute; width: 46%; bottom: -34px; right: -26px; aspect-ratio: 1; border: 6px solid var(--cream);
}
.about-media .frame.stack-2 img { aspect-ratio: 1; }
.about-badge {
  position: absolute; top: -26px; left: -26px; z-index: 3;
  background: var(--gold-500); color: var(--teal-950);
  width: 116px; height: 116px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  font-family: var(--font-display); box-shadow: var(--shadow-soft);
  padding: .5rem;
}
.about-badge b { font-size: 1.9rem; display: block; line-height: 1; }
.about-badge small { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }

.feature-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .ic {
  flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-content: center;
  background: rgba(28,138,128,.12); color: var(--teal-600); font-size: 1.05rem;
}
.feature-list b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.feature-list p { margin: 0; font-size: .95rem; color: var(--muted); }

/* -------------------------------------------------- 10. Menu teaser */
.menu-feature {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center;
}
.menu-photos { position: relative; }
.menu-photos .p-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.menu-photos .p-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.menu-photos .p-float {
  position: absolute; bottom: -28px; left: -28px; width: 52%;
  border-radius: var(--radius-md); overflow: hidden; border: 6px solid var(--teal-800);
  box-shadow: var(--shadow-card);
}
.menu-photos .p-float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.menu-highlights { display: grid; gap: 1rem; margin: 1.8rem 0 2rem; }
.menu-hl-row {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px dashed rgba(255,255,255,.18);
}
.menu-hl-row .name { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.menu-hl-row .dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.25); transform: translateY(-4px); }
.menu-hl-row .price { color: var(--gold-400); font-weight: 600; }
.menu-hl-row .tag { font-size: .78rem; color: var(--text-on-dark-soft); }

/* -------------------------------------------------- 11. Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft); cursor: pointer;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,46,43,.75), transparent 55%);
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.g-item .g-cap {
  position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff;
  transform: translateY(12px); opacity: 0; transition: all .45s var(--ease-out);
}
.g-item .g-cap i { color: var(--gold-400); }
.g-item:hover img { transform: scale(1.1); }
.g-item:hover::after { opacity: 1; }
.g-item:hover .g-cap { transform: translateY(0); opacity: 1; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* Gallery filter pills */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-bar button {
  border: 1.5px solid rgba(11,43,41,.18); background: transparent; color: var(--ink);
  padding: .5rem 1.3rem; border-radius: 999px; font-family: var(--font-body); font-weight: 500;
  font-size: .88rem; cursor: pointer; transition: all .3s var(--ease-out);
}
.filter-bar button:hover { border-color: var(--teal-500); color: var(--teal-600); }
.filter-bar button.active { background: var(--teal-800); border-color: var(--teal-800); color: #fff; }

/* -------------------------------------------------- 12. Testimonials */
.testi-wrap { position: relative; }
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.4rem);
  text-align: center;
  backdrop-filter: blur(6px);
}
.testi-quote-mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold-500); line-height: .4; opacity: .5; }
.testi-card p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem); color: #fff; line-height: 1.5; margin: 1rem auto 1.6rem; max-width: 40ch;
}
.testi-stars { color: var(--gold-400); font-size: 1rem; letter-spacing: .2em; margin-bottom: .8rem; }
.testi-author { font-weight: 600; letter-spacing: .05em; color: var(--gold-400); text-transform: uppercase; font-size: .9rem; }
.testi-role { font-size: .82rem; color: var(--text-on-dark-soft); }
.google-badge { display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.4rem; color: var(--text-on-dark-soft); font-size: .9rem; }
.google-badge img { height: 26px; }

.swiper-testi .swiper-slide { height: auto; opacity: .0; transition: opacity .4s; }
.swiper-testi .swiper-slide-active { opacity: 1; }

/* Swiper controls */
.slider-nav { display: flex; gap: .8rem; justify-content: center; margin-top: 2rem; }
.slider-nav button {
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.3); background: transparent; color: #fff;
  display: grid; place-content: center; transition: all .35s var(--ease-out);
}
.slider-nav button:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--teal-950); transform: translateY(-2px); }

/* -------------------------------------------------- 13. Press / spotlight */
.press-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft); height: 100%;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.press-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.press-thumb { position: relative; overflow: hidden; aspect-ratio: 5/4; }
.press-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.press-card:hover .press-thumb img { transform: scale(1.08); }
.press-src {
  position: absolute; top: 12px; left: 12px;
  background: rgba(7,58,55,.9); color: #fff; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 6px; backdrop-filter: blur(4px);
}
.press-body { padding: 1.2rem 1.3rem 1.4rem; }
.press-body h4 { font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.25; }
.press-read { color: var(--teal-500); font-weight: 600; font-size: .85rem; display: inline-flex; gap: .4rem; align-items: center; }
.press-read i { transition: transform .3s; }
.press-card:hover .press-read i { transform: translateX(4px); }

/* -------------------------------------------------- 14. Instagram */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.insta-cell { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 10px; }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.insta-cell::after {
  content: "\f16d"; font-family: "Font Awesome 6 Brands"; font-weight: 400;
  position: absolute; inset: 0; display: grid; place-content: center;
  background: rgba(7,58,55,.72); color: #fff; font-size: 1.6rem;
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.insta-cell:hover img { transform: scale(1.12); }
.insta-cell:hover::after { opacity: 1; }

/* -------------------------------------------------- 15. CTA band */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .container-x { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }

/* -------------------------------------------------- 16. Footer */
.site-footer { background: var(--teal-950); color: var(--text-on-dark-soft); padding-top: 4.5rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 2.5rem; }
.footer-grid h5 { color: #fff; font-size: 1.05rem; letter-spacing: .06em; margin-bottom: 1.3rem; }
.footer-brand img { height: 54px; margin-bottom: 1.2rem; }
.footer-links a { display: inline-flex; align-items: center; gap: .6rem; padding: .35rem 0; color: var(--text-on-dark-soft); }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gold-500); font-size: .8rem; transition: transform .3s; }
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { transform: translateX(3px); }
.footer-contact li { display: flex; gap: .8rem; padding: .45rem 0; align-items: flex-start; }
.footer-contact i { color: var(--gold-500); margin-top: .3rem; }
.footer-social { display: flex; gap: .8rem; margin-top: 1rem; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-content: center;
  background: rgba(255,255,255,.07); color: #fff; transition: all .35s var(--ease-out);
}
.footer-social a:hover { background: var(--gold-500); color: var(--teal-950); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 3.5rem; border-top: 1px solid rgba(255,255,255,.09);
  padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem;
}

/* -------------------------------------------------- 17. Page hero (sub-pages) */
.page-hero {
  position: relative; min-height: 58vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; text-align: center;
}
.page-hero .hero-bg img { height: 115%; }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(5,46,43,.75), rgba(7,58,55,.9));
}
.page-hero .container-x { position: relative; z-index: 2; padding-top: 5rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.breadcrumb-nusa { display: flex; gap: .6rem; justify-content: center; color: rgba(255,255,255,.7); font-size: .9rem; letter-spacing: .04em; }
.breadcrumb-nusa a:hover { color: var(--gold-400); }
.breadcrumb-nusa .sep { color: var(--gold-400); }

/* -------------------------------------------------- 18. Menu page */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 3rem; }
.menu-tabs button {
  background: transparent; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--muted);
  padding: .5rem 1.1rem; position: relative; transition: color .3s;
}
.menu-tabs button.active { color: var(--teal-700); }
.menu-tabs button::after { content:""; position:absolute; left:1.1rem; right:1.1rem; bottom:0; height:2px; background: var(--gold-500); transform: scaleX(0); transition: transform .35s var(--ease-out); }
.menu-tabs button.active::after { transform: scaleX(1); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 3rem; }
.menu-row { display: flex; gap: 1rem; align-items: flex-start; }
.menu-row .m-img { flex: 0 0 84px; width: 84px; height: 84px; border-radius: 14px; object-fit: cover; box-shadow: var(--shadow-soft); }
.menu-row .m-info { flex: 1; }
.menu-row .m-top { display: flex; align-items: baseline; gap: .6rem; }
.menu-row .m-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.menu-row .m-line { flex: 1; border-bottom: 1px dotted rgba(11,43,41,.25); transform: translateY(-5px); }
.menu-row .m-price { color: var(--teal-600); font-weight: 700; }
.menu-row .m-desc { font-size: .9rem; color: var(--muted); margin: .2rem 0 0; }
.menu-tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-500); font-weight: 600; }

/* -------------------------------------------------- 19. Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: stretch; }
.contact-info-card {
  background: linear-gradient(160deg, var(--teal-800), var(--teal-950));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem);
  position: relative; overflow: hidden;
}
.contact-info-card .leaf-deco { opacity: .18; }
.contact-info-list li { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); align-items: flex-start; }
.contact-info-list .ic { flex:0 0 46px; width:46px; height:46px; border-radius:12px; background: rgba(255,255,255,.1); display:grid; place-content:center; color: var(--gold-400); }
.contact-info-list b { display:block; color:#fff; font-family: var(--font-body); }
.contact-info-list span { color: var(--text-on-dark-soft); font-size: .95rem; }

.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3rem); box-shadow: var(--shadow-soft); }
.form-field { margin-bottom: 1.3rem; }
.form-field label { display:block; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .9rem 1.1rem; border: 1.5px solid #e2ddcd; border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fbf8f0;
  transition: border-color .3s, box-shadow .3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(28,138,128,.12); background: #fff;
}
.form-note { font-size: .85rem; color: var(--muted); }
.form-success { display:none; background: rgba(28,138,128,.1); color: var(--teal-700); border-radius: 12px; padding: 1rem 1.2rem; margin-top: 1rem; font-weight: 500; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* -------------------------------------------------- 20. Back to top */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--teal-500); color: #fff; display: grid; place-content: center;
  box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(20px) scale(.8);
  transition: all .4s var(--ease-out);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--gold-500); color: var(--teal-950); }

/* -------------------------------------------------- 21. Reveal states (GSAP fallback via CSS) */
[data-reveal] { opacity: 0; }
.no-js [data-reveal] { opacity: 1; }

/* -------------------------------------------------- 22. Stats strip */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-item .num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-400); line-height: 1; }
.stat-item .num small { font-size: 1.6rem; }
.stat-item .lbl { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--text-on-dark-soft); margin-top: .5rem; }
.stat-item { position: relative; }
.stat-item:not(:last-child)::after { content:""; position:absolute; right: -.75rem; top: 10%; height: 80%; width:1px; background: rgba(255,255,255,.12); }

/* -------------------------------------------------- 23. Responsive */
@media (max-width: 1024px) {
  .about-grid, .menu-feature, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin-inline: auto; }
  .menu-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-media .frame.stack-2 { display: none; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}
/* On small phones drop the inline Reserve button so the hamburger always fits
   (Reserve Now still lives inside the mobile drawer). */
@media (max-width: 520px) {
  .site-header .nav-cta > .btn-nusa { display: none; }
  .site-header { padding: .9rem 0; }
}
@media (max-width: 560px) {
  :root { --section-pad: clamp(3rem, 12vw, 4.5rem); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-nusa { justify-content: center; }
  .g-item.wide { grid-column: span 1; }
  .hero h1 .accent { white-space: normal; }
  .hero-eyebrow { font-size: .68rem; letter-spacing: .28em; }
  .hero-badges { gap: 1.1rem; }
  .hero-badge .num { font-size: 1.6rem; }
}

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