/* =====================================================================
   PONDOK MAKAN BANGAU PUTIH — STYLESHEET
   Luxury seafood · tropical coastal · premium
   ===================================================================== */

:root {
  --green:      #0F3D2E;
  --green-700:  #0c3326;
  --green-900:  #082019;
  --gold:       #C89B3C;
  --gold-soft:  #d8b463;
  --cream:      #F4E8D0;
  --bg:         #FFFDF8;
  --ink:        #1E1E1E;
  --muted:      #6b6760;
  --white:      #ffffff;

  --shadow-sm: 0 4px 16px rgba(15, 61, 46, .08);
  --shadow:    0 18px 48px rgba(15, 61, 46, .14);
  --shadow-lg: 0 32px 80px rgba(8, 32, 25, .28);

  --r:    18px;
  --r-lg: 28px;

  --serif:   "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------------- RESET ---------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ---------------- TYPOGRAPHY HELPERS ---------------- */
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow--light { color: var(--gold-soft); }

.section__title {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  color: var(--green);
  letter-spacing: -.01em;
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__lead { color: var(--muted); margin-top: 1rem; font-size: 1.06rem; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #2a1f06;
  box-shadow: 0 12px 28px rgba(200, 155, 60, .38);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(200, 155, 60, .5); }
.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 1.08rem; }

/* ============================ NAVBAR ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav.scrolled {
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--shadow-sm);
  padding: .65rem 0;
}

.nav__brand { display: flex; align-items: center; gap: .7rem; }
.nav__logo { display: grid; place-items: center; color: var(--gold); }
.nav__name { display: flex; flex-direction: column; line-height: 1; }
.nav__name strong { font-family: var(--serif); font-size: 1.18rem; color: var(--white); transition: color .4s; }
.nav__name em { font-style: normal; font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft); margin-top: 3px; }
.nav.scrolled .nav__name strong { color: var(--green); }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { font-size: .94rem; font-weight: 500; color: rgba(255, 255, 255, .9); transition: color .25s; position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--green); }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #2a1f06 !important; padding: .6rem 1.3rem; border-radius: 999px; font-weight: 600;
  box-shadow: 0 8px 20px rgba(200, 155, 60, .35);
}
.nav__cta:hover { transform: translateY(-2px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__burger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--green); }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================ HERO ============================ */
.hero { min-height: 100svh; display: grid; align-items: center; position: relative; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(200,155,60,.25), transparent 55%),
    linear-gradient(160deg, #0c3326 0%, #0F3D2E 45%, #082019 100%);
  background-size: cover; background-position: center;
}
/* Jika ada foto, taruh assets/hero.jpg — otomatis dipakai di atas gradient.
   Bila file tidak ada, ::after transparan dan gradient di .hero__bg tetap tampil. */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../assets/hero.jpg");
  background-size: cover; background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,32,25,.55) 0%, rgba(8,32,25,.35) 40%, rgba(8,32,25,.78) 100%);
}
.hero__content { max-width: 880px; padding-top: 5rem; }
.hero__eyebrow {
  display: inline-block; color: var(--gold-soft); font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; font-size: .82rem; margin-bottom: 1.3rem;
}
.hero__title {
  font-family: var(--serif); color: var(--white);
  font-size: clamp(2.5rem, 7vw, 5.2rem); font-weight: 700; line-height: 1.05;
  letter-spacing: -.02em; text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero__sub {
  color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 560px; margin: 1.5rem 0 2.4rem; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
}
.hero__mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.hero__mouse span { width: 4px; height: 8px; background: var(--gold-soft); border-radius: 4px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(10px); } }

/* ============================ ABOUT ============================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about__media { position: relative; aspect-ratio: 1 / 1; }
.about__img { position: absolute; border-radius: var(--r-lg); background-size: cover; background-position: center; box-shadow: var(--shadow); }
.about__img--1 {
  inset: 0 28% 22% 0;
  background:
    linear-gradient(135deg, rgba(15,61,46,.15), rgba(200,155,60,.18)),
    var(--cream) url("../assets/about-1.jpg") center/cover;
}
.about__img--2 {
  inset: 30% 0 0 30%;
  background:
    linear-gradient(135deg, rgba(15,61,46,.15), rgba(200,155,60,.18)),
    #e7dcc4 url("../assets/about-2.jpg") center/cover;
  border: 6px solid var(--bg);
}
.about__badge {
  position: absolute; right: 4%; bottom: 8%; z-index: 3;
  background: var(--green); color: var(--white); border-radius: 50%;
  width: 118px; height: 118px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); border: 3px solid var(--gold-soft);
}
.about__badge strong { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.about__badge span { font-family: var(--serif); font-size: 1.02rem; line-height: 1.1; margin-top: 4px; }

.about__text p { color: var(--muted); margin-top: 1rem; max-width: 52ch; }
.stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid rgba(15,61,46,.12); }
.stat__num { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat__label { font-size: .86rem; color: var(--muted); margin-top: .35rem; }

/* ============================ WHY ============================ */
.why { background: linear-gradient(180deg, var(--bg), #fbf5ea); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature {
  background: var(--white); border-radius: var(--r-lg); padding: 2.4rem 1.8rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(15,61,46,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.feature__icon {
  display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 1.3rem;
  font-size: 2rem; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cream), #efe3c8);
  box-shadow: inset 0 0 0 1px rgba(200,155,60,.35);
  transition: transform .4s var(--ease);
}
.feature:hover .feature__icon { transform: scale(1.08) rotate(-4deg); }
.feature h3 { font-family: var(--serif); color: var(--green); font-size: 1.3rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ============================ FEATURED MENU ============================ */
.featured { background: var(--green); }
.featured .eyebrow { color: var(--gold-soft); }
.featured .section__title { color: var(--white); }
.featured .section__lead { color: rgba(255,255,255,.75); }

.featured__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.7rem; }
.dish {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .45s var(--ease);
}
.dish:hover { transform: translateY(-8px); }
.dish__media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(200,155,60,.95); color: #2a1f06; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px;
}
.dish__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.dish__name { font-family: var(--serif); font-size: 1.25rem; color: var(--green); line-height: 1.2; }
.dish__desc { color: var(--muted); font-size: .9rem; margin: .5rem 0 1.1rem; flex: 1; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.dish__price { font-family: var(--serif); font-weight: 700; font-size: 1.22rem; color: var(--gold); }
.dish__price small { font-size: .68rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.dish__order {
  background: var(--green); color: #fff; padding: .6rem 1.1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600; transition: background .3s, transform .3s;
}
.dish__order:hover { background: var(--gold); color: #2a1f06; transform: translateY(-2px); }

/* ============================ FULL MENU ============================ */
.fullmenu { background: #fbf5ea; }
.fullmenu__tabs {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-bottom: 3rem;
}
.tab {
  padding: .6rem 1.25rem; border-radius: 999px; font-size: .9rem; font-weight: 600;
  color: var(--green); background: var(--white); border: 1px solid rgba(15,61,46,.14);
  transition: all .3s var(--ease);
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.active { background: var(--green); color: #fff; border-color: var(--green); box-shadow: var(--shadow-sm); }

.fullmenu__list {
  columns: 2; column-gap: 4rem; max-width: 920px; margin: 0 auto;
}
.menu-row {
  break-inside: avoid; display: flex; align-items: baseline; gap: .5rem;
  padding: .95rem 0; border-bottom: 1px dashed rgba(15,61,46,.18);
}
.menu-row__name { font-weight: 600; color: var(--ink); white-space: nowrap; }
.menu-row__dots { flex: 1; border-bottom: 1px dotted rgba(15,61,46,.3); transform: translateY(-4px); }
.menu-row__price { font-family: var(--serif); font-weight: 700; color: var(--gold); white-space: nowrap; }
.menu-row__price small { font-size: .66rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }

/* ---- Search + count controls ---- */
.menu-controls {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; max-width: 900px; margin: 0 auto 1.6rem;
}
.menu-search {
  display: flex; align-items: center; gap: .6rem; flex: 1; min-width: 240px;
  background: var(--white); border: 1px solid rgba(15,61,46,.16); border-radius: 999px;
  padding: .7rem 1.2rem; color: var(--muted); box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s;
}
.menu-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,60,.18); }
.menu-search svg { flex: 0 0 auto; color: var(--gold); }
.menu-search input {
  border: none; outline: none; background: none; width: 100%;
  font-family: var(--sans); font-size: .98rem; color: var(--ink);
}
.menu-count { font-size: .92rem; color: var(--muted); white-space: nowrap; }
.menu-count b { font-family: var(--serif); font-size: 1.25rem; color: var(--green); margin-right: .15rem; }

.menu-empty { text-align: center; color: var(--muted); margin-top: 2rem; font-size: 1.02rem; }

/* ---- Menu card grid ---- */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.3rem;
}
.mcard {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,61,46,.06); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.mcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.mcard__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.mcard:hover .mcard__img { transform: scale(1.07); }
.mcard__badges { position: absolute; top: 8px; left: 8px; z-index: 2; display: flex; flex-wrap: wrap; gap: 4px; }
.badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .55rem; border-radius: 999px; color: #fff; backdrop-filter: blur(2px);
}
.badge--fav    { background: rgba(200,155,60,.96); color: #2a1f06; }
.badge--sea    { background: rgba(38,134,201,.94); }
.badge--minang { background: rgba(176,60,52,.94); }
.mcard__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.mcard__name { font-family: var(--serif); font-size: 1.1rem; color: var(--green); line-height: 1.2; }
.mcard__desc { color: var(--muted); font-size: .84rem; margin: .4rem 0 .9rem; flex: 1; }
.mcard__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: auto; }
.mcard__price { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; color: var(--gold); }
.mcard__price small { font-size: .62rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.mcard__size { font-family: var(--sans); font-weight: 600; font-size: .8rem; color: var(--muted); }
.mcard__order {
  background: var(--green); color: #fff; padding: .5rem .95rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600; white-space: nowrap; transition: background .3s, transform .3s;
}
.mcard__order:hover { background: var(--gold); color: #2a1f06; transform: translateY(-2px); }

/* ============================ GALLERY ============================ */
.gallery__grid { columns: 3; column-gap: 1rem; }
.gallery__item {
  break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r); overflow: hidden;
  position: relative; cursor: pointer; box-shadow: var(--shadow-sm);
  background: var(--cream);
}
.gallery__item img { width: 100%; transition: transform .7s var(--ease); }
.gallery__item::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.6rem; background: rgba(15,61,46,.45); opacity: 0; transition: opacity .35s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 2rem;
  background: rgba(8,32,25,.92); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox__figure { max-width: 90vw; max-height: 85vh; }
.lightbox__figure img { max-width: 100%; max-height: 85vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.6rem; color: #fff; font-size: 2.6rem; line-height: 1; }
.lightbox__nav { color: #fff; font-size: 2rem; padding: 1rem; opacity: .8; transition: opacity .25s; }
.lightbox__nav:hover { opacity: 1; }
.lightbox__prev { position: absolute; left: 1rem; }
.lightbox__next { position: absolute; right: 1rem; }

/* ============================ TESTIMONIALS ============================ */
.testi { background: linear-gradient(180deg, #fbf5ea, var(--bg)); }
.testi__slider { overflow: hidden; max-width: 760px; margin: 0 auto; }
.testi__track { display: flex; transition: transform .6s var(--ease); }
.testi__card {
  min-width: 100%; padding: 0 1rem; text-align: center;
}
.testi__stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .1em; margin-bottom: 1.2rem; }
.testi__card blockquote {
  font-family: var(--display); font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.5;
  color: var(--green); font-style: italic; font-weight: 500;
}
.testi__card figcaption { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.6rem; }
.testi__ava {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: var(--gold-soft); font-family: var(--serif); font-size: 1.2rem; font-weight: 700;
}
.testi__card figcaption span:last-child { display: flex; flex-direction: column; text-align: left; }
.testi__card figcaption strong { color: var(--ink); }
.testi__card figcaption em { font-style: normal; font-size: .8rem; color: var(--muted); }

.testi__controls { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 2.4rem; }
.testi__controls button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(15,61,46,.2);
  color: var(--green); font-size: 1rem; transition: all .3s;
}
.testi__controls button:hover { background: var(--green); color: #fff; }
.testi__dots { display: flex; gap: .5rem; }
.testi__dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; background: rgba(15,61,46,.2); border: none; transition: all .3s; }
.testi__dots button.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* ============================ LOCATION ============================ */
.location__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.location__list { margin: 1.8rem 0 2rem; display: grid; gap: 1.3rem; }
.location__list li { display: flex; gap: 1rem; align-items: flex-start; }
.location__ic {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--cream); font-size: 1.2rem; box-shadow: inset 0 0 0 1px rgba(200,155,60,.3);
}
.location__list strong { color: var(--green); font-family: var(--serif); font-size: 1.05rem; }
.location__list p { color: var(--muted); font-size: .95rem; }
.location__list a:hover { color: var(--gold); }
.location__map {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; min-height: 340px; border: 6px solid #fff;
}
.location__map iframe { height: 100%; }

/* ============================ CTA ============================ */
.cta { padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; isolation: isolate; overflow: hidden; }
.cta__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(200,155,60,.22), transparent 60%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
}
.cta__inner { max-width: 680px; margin: 0 auto; }
.cta__title { font-family: var(--serif); color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; }
.cta__sub { color: rgba(255,255,255,.82); margin: 1.1rem 0 2.2rem; font-size: 1.08rem; }

/* ============================ FOOTER ============================ */
.footer { background: var(--green-900); color: rgba(255,255,255,.72); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand .nav__logo { color: var(--gold); margin-bottom: 1rem; }
.footer__brand strong { display: block; font-family: var(--serif); color: #fff; font-size: 1.3rem; margin-bottom: .6rem; }
.footer__brand p { font-size: .92rem; max-width: 38ch; }
.footer__col h4 { color: var(--gold-soft); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; margin-bottom: .6rem; transition: color .25s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; text-align: center; font-size: .85rem; }

/* ============================ WHATSAPP FLOAT ============================ */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 28px rgba(37,211,102,.5);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1;
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .6; } 70% { transform: scale(1.7); opacity: 0; } 100% { opacity: 0; } }

/* ============================ SCROLL REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 105;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--green); padding: 2.5rem; transform: translateX(100%);
    transition: transform .45s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav__links.open { transform: none; }
  .nav__links a { color: #fff !important; font-size: 1.1rem; }
  .nav.scrolled .nav__links a { color: #fff; }
  .about__grid, .location__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
  .fullmenu__list { columns: 1; }
  .gallery__grid { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { gap: 1.6rem; }
  .stat__num { font-size: 2.1rem; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

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