/* =====================================================================
   RESTAURANTE AMARO · ultra-premium cinematic CSS
   ===================================================================== */

:root {
  /* color palette */
  --c-black:      #0E0B08;
  --c-night:      #15110D;
  --c-bark:       #1d1812;
  --c-wood:       #6B4226;
  --c-cream:      #F5EBD7;
  --c-cream-2:    #efe2c8;
  --c-amber:      #E8A752;
  --c-amber-soft: #f4c57b;
  --c-gold:       #C9A24B;
  --c-gold-2:     #b18935;
  --c-terra:      #B8552D;
  --c-jungle:     #1F3D2F;
  --c-emerald:    #0E5944;
  --c-leaf:       #2c6149;

  /* shadows */
  --sh-soft: 0 14px 40px rgba(0,0,0,.35);
  --sh-card: 0 28px 60px -20px rgba(0,0,0,.55), 0 2px 0 rgba(255,255,255,.04) inset;
  --sh-glow: 0 0 60px rgba(232,167,82,.35);

  /* type */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-script:  "Caveat", cursive;
  --f-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --maxw: 1340px;
  --gut:  clamp(20px, 4vw, 56px);
  --radius: 18px;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============ reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--c-night);
  color: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.55;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } .cursor-glow { display: none; } }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--c-amber); color: var(--c-black); }

/* ============ utility ============ */
.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-amber));
}
.eyebrow::after { background: linear-gradient(90deg, var(--c-amber), transparent); }

.h-display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--c-cream);
  margin: 0 0 18px;
}

.lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: rgba(245,235,215,.78);
  line-height: 1.55;
  max-width: 56ch;
  font-style: italic;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  padding: 0 var(--gut);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }

/* ============ buttons ============ */
.btn {
  --bg: transparent;
  --fg: var(--c-cream);
  --bd: rgba(245,235,215,.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.18), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-glow); }
.btn:hover::after { opacity: 1; }
.btn--gold { --bg: linear-gradient(135deg, var(--c-amber) 0%, var(--c-gold) 60%, var(--c-gold-2) 100%); --fg: #1a130a; --bd: transparent; }
.btn--ghost { --bg: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn--full { width: 100%; justify-content: center; padding: 16px; }

/* ============ navbar ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gut);
  transition: background .35s, backdrop-filter .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(14,11,8,.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(245,235,215,.08);
  padding: 10px var(--gut);
}

.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.nav__brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--c-night);
  background: linear-gradient(135deg, var(--c-amber), var(--c-gold));
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(245,235,215,.15), 0 0 26px rgba(232,167,82,.5);
}
.nav__brand-name {
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: .02em;
}
.nav__brand-name small {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245,235,215,.6);
}

.nav__links {
  display: flex; align-items: center; gap: 6px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,235,215,.82);
  transition: color .3s;
}
.nav__links a::after {
  content:""; position:absolute; left:14px; right:14px; bottom:2px; height:1px;
  background: var(--c-amber); transform-origin: left; transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--c-cream); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(245,235,215,.2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .2em;
  transition: border-color .3s;
}
.lang-toggle:hover { border-color: var(--c-amber); }
.lang-toggle__opt { opacity: .55; transition: opacity .3s, color .3s; }
.lang-toggle__opt.is-active { opacity: 1; color: var(--c-amber); }
.lang-toggle__divider { opacity: .35; }

.nav__burger { display: none; width: 36px; height: 36px; position: relative; }
.nav__burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--c-cream);
  transition: transform .35s var(--ease), opacity .25s;
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 17.25px; }
.nav__burger span:nth-child(3) { top: 22.5px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__links {
    position: fixed;
    inset: 70px var(--gut) auto var(--gut);
    background: rgba(14,11,8,.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245,235,215,.08);
    border-radius: 20px;
    flex-direction: column;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    padding: 20px;
    gap: 0;
    left: auto;
    transition: all .35s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links a { width: 100%; padding: 14px 12px; border-bottom: 1px solid rgba(245,235,215,.06); }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__burger { display: block; }
  .nav__brand-name { display: none; }
  .nav__actions .btn { display: none; }
}

/* ============ loader ============ */
.loader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, #1d1812 0%, #0e0b08 70%);
  z-index: 200;
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__candle {
  width: 12px; height: 26px;
  background: linear-gradient(180deg, #f7d68b, #b18935);
  border-radius: 4px;
  position: relative;
  margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(232,167,82,.5);
}
.loader__flame {
  position: absolute; left: 50%; bottom: 100%;
  transform: translateX(-50%);
  width: 14px; height: 22px;
  background: radial-gradient(circle at 50% 65%, #fff5cf 0%, #f4c57b 40%, transparent 70%);
  border-radius: 50% 50% 30% 30%;
  filter: blur(.4px);
  animation: flame 1.6s ease-in-out infinite alternate;
}
@keyframes flame {
  0% { transform: translateX(-50%) scale(1) skewX(-3deg); opacity: .9; }
  100% { transform: translateX(-50%) scale(1.1, 1.05) skewX(3deg); opacity: 1; }
}
.loader__brand { text-align: center; }
.loader__sub {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--c-amber);
  letter-spacing: .02em;
  display: block;
  margin-bottom: -4px;
}
.loader__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: .14em;
  color: var(--c-cream);
  margin: 0;
}
.loader__bar {
  width: 220px; height: 1px;
  background: rgba(245,235,215,.15);
  margin: 16px auto 0;
  overflow: hidden;
  position: relative;
}
.loader__bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, var(--c-amber), transparent);
  animation: loaderBar 1.6s linear infinite;
}
@keyframes loaderBar {
  0% { left: -30%; } 100% { left: 100%; }
}

/* ============ cursor glow & particles ============ */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 360px; height: 360px;
  pointer-events: none;
  z-index: 5;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,167,82,.18) 0%, rgba(232,167,82,.05) 35%, transparent 70%);
  mix-blend-mode: screen;
  transition: opacity .3s;
}
.particles {
  position: fixed; inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px var(--gut) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__layer { position: absolute; inset: -10% -5%; will-change: transform; }
.hero__layer--bg {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184,85,45,.25), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(31,61,47,.4), transparent 65%),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
  filter: brightness(.45) saturate(110%) contrast(1.05);
}
.hero__layer--mid {
  background:
    radial-gradient(circle at 20% 80%, rgba(232,167,82,.35), transparent 30%),
    radial-gradient(circle at 75% 35%, rgba(232,167,82,.22), transparent 25%),
    radial-gradient(circle at 50% 60%, rgba(244,197,123,.18), transparent 22%);
  mix-blend-mode: screen;
}
.hero__layer--leaves {
  background-image:
    radial-gradient(circle at 5% 15%, rgba(31,61,47,.5) 0 8%, transparent 9%),
    radial-gradient(circle at 95% 85%, rgba(14,89,68,.55) 0 9%, transparent 10%);
  mix-blend-mode: multiply;
  filter: blur(40px);
  opacity: .65;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.7) 95%),
    linear-gradient(180deg, rgba(14,11,8,.65) 0%, transparent 30%, transparent 65%, rgba(14,11,8,.95) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.84  0 0 0 .08 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 14px 0 28px;
  color: var(--c-cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero__title-script {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--c-amber-soft);
  font-size: 1.05em;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(.05em) rotate(-2deg);
}
.hero__lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: rgba(245,235,215,.92);
  margin: 0 0 8px;
  max-width: 30ch;
}
.hero__sub {
  font-family: var(--f-body);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,235,215,.72);
  margin: 0 0 36px;
}
.hero__cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  background: rgba(14,11,8,.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245,235,215,.12);
  border-radius: 999px;
}
.hero__stars { color: var(--c-amber); display: inline-flex; gap: 3px; font-size: 14px; }
.hero__rating-num { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: var(--c-cream); }
.hero__rating-meta { font-size: 12px; color: rgba(245,235,215,.7); letter-spacing: .08em; }
.hero__rating-meta strong { color: var(--c-cream); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(245,235,215,.65);
}
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(180deg, transparent, var(--c-amber)); animation: scrollLine 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

/* reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* ============ STORY ============ */
.story {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gut);
  background: linear-gradient(180deg, var(--c-night), #100c08);
}
.story__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__copy p { color: rgba(245,235,215,.78); margin: 0 0 16px; max-width: 56ch; }
.story__art {
  position: relative;
  aspect-ratio: 1/1;
  min-height: 460px;
}
.story__frame {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid rgba(245,235,215,.08);
}
.story__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.story__frame:hover img { transform: scale(1.06); }
.story__frame--1 { left: 0; top: 0; width: 62%; height: 70%; transform: rotate(-2deg); }
.story__frame--2 { right: 0; top: 6%; width: 44%; height: 44%; transform: rotate(3deg); }
.story__frame--3 { right: 4%; bottom: 0; width: 56%; height: 44%; transform: rotate(-1.5deg); }
.story__script {
  position: absolute;
  left: -8px; bottom: -14px;
  font-family: var(--f-script);
  color: var(--c-amber);
  font-size: 56px;
  transform: rotate(-6deg);
  text-shadow: 0 4px 20px rgba(232,167,82,.35);
}

.counters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.counter {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245,235,215,.04), rgba(245,235,215,.015));
  border: 1px solid rgba(245,235,215,.08);
  transition: transform .35s var(--ease), border-color .35s;
}
.counter:hover { transform: translateY(-3px); border-color: rgba(232,167,82,.35); }
.counter__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--c-amber);
  letter-spacing: -.01em;
  line-height: 1;
}
.counter__suffix { color: var(--c-amber); font-family: var(--f-display); font-size: 1.6rem; vertical-align: top; }
.counter__label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,235,215,.65);
}

@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(245,235,215,.08);
  border-bottom: 1px solid rgba(245,235,215,.08);
  padding: 18px 0;
  background: #0c0906;
}
.marquee__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px);
  color: rgba(245,235,215,.65);
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee__track span { padding: 0 6px; }
.marquee__track i { color: var(--c-amber); font-size: 12px; align-self: center; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ DISHES ============ */
.dishes {
  padding: clamp(80px, 12vw, 140px) var(--gut);
  background: #0c0906;
}
.dishes__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.dish {
  position: relative;
  background: linear-gradient(180deg, rgba(245,235,215,.04), rgba(245,235,215,.01));
  border: 1px solid rgba(245,235,215,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .35s, box-shadow .45s;
}
.dish:hover {
  transform: translateY(-6px);
  border-color: rgba(232,167,82,.4);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.7), 0 0 30px rgba(232,167,82,.15);
}
.dish__img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
  transition: transform .8s var(--ease);
}
.dish:hover .dish__img { transform: scale(1.07); }
.dish__img::after {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,9,6,.85));
}
.dish__body { padding: 22px 22px 24px; position: relative; }
.dish__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-amber);
  padding: 4px 10px;
  border: 1px solid rgba(232,167,82,.35);
  border-radius: 999px;
  margin-bottom: 12px;
}
.dish__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 8px;
  color: var(--c-cream);
}
.dish__desc {
  font-size: 14px;
  color: rgba(245,235,215,.72);
  line-height: 1.55;
  margin: 0 0 16px;
  min-height: 64px;
}
.dish__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px dashed rgba(245,235,215,.15);
}
.dish__price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--c-amber);
}
.dish__foot i { color: var(--c-terra); font-size: 18px; }

/* ----- Menu PDF CTA ----- */
.dishes__cta {
  max-width: var(--maxw);
  margin: clamp(56px, 8vw, 96px) auto 0;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,167,82,.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(245,235,215,.04), rgba(245,235,215,.01));
  border: 1px solid rgba(232,167,82,.18);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.dishes__cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, transparent 40%, rgba(232,167,82,.25), transparent 60%);
  z-index: -1;
  opacity: .8;
}
.dishes__cta-script {
  font-family: var(--f-script);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--c-amber);
  margin: 0 0 12px;
  transform: rotate(-1.5deg);
  display: inline-block;
}
.dishes__cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 8px 0 18px;
}
.dishes__cta-note {
  font-size: 12px;
  color: rgba(245,235,215,.55);
  letter-spacing: .04em;
  margin: 0;
  max-width: 52ch;
  margin-inline: auto;
}

/* ----- Availability widget ----- */
.availability {
  margin-top: 28px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(232,167,82,.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20,16,12,.85), rgba(14,11,8,.6));
  border: 1px solid rgba(232,167,82,.22);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.availability__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.availability__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: availPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes availPulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  70% { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.availability__label {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #6ee0a3;
  font-weight: 500;
}
.availability__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 4px 0 6px;
  color: var(--c-cream);
}
.availability__desc {
  font-size: 13px;
  color: rgba(245,235,215,.7);
  margin: 0 0 16px;
  line-height: 1.5;
}
.availability__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.availability__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(14,11,8,.6);
  border: 1px solid rgba(245,235,215,.12);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-cream);
  transition: transform .3s var(--ease), border-color .3s, background .3s, color .3s;
}
.availability__btn > i:first-child { color: var(--c-amber); font-size: 14px; }
.availability__btn span { flex: 1; }
.availability__btn-arrow { font-size: 11px; opacity: .55; transition: transform .3s, opacity .3s; }
.availability__btn:hover {
  transform: translateY(-2px);
  border-color: var(--c-amber);
  background: rgba(232,167,82,.08);
}
.availability__btn:hover .availability__btn-arrow { transform: translate(2px, -2px); opacity: 1; }
.availability__note {
  font-size: 11px;
  color: rgba(245,235,215,.45);
  margin: 6px 0 0;
  letter-spacing: .02em;
}

/* ============ MUSIC ============ */
.music {
  position: relative;
  padding: clamp(100px, 14vw, 180px) var(--gut);
  overflow: hidden;
  isolation: isolate;
}
.music__bg { position: absolute; inset: 0; z-index: -1; }
.music__bg-img {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  filter: brightness(.4) saturate(115%);
  transform: scale(1.05);
  will-change: transform;
}
.music__bg-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,167,82,.25), transparent 50%),
    linear-gradient(180deg, rgba(14,11,8,.75), rgba(12,9,6,.92));
}
.music__inner { max-width: var(--maxw); margin: 0 auto; }
.music__cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.music__card {
  background: rgba(20,16,12,.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245,235,215,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .35s;
}
.music__card:hover { transform: translateY(-6px); border-color: rgba(232,167,82,.4); }
.music__card-img { height: 180px; background-size: cover; background-position: center; }
.music__card-body { padding: 22px; }
.music__when {
  display: inline-block;
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--c-amber);
}
.music__card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.45rem; margin: 4px 0 10px; }
.music__card p { font-size: 14px; color: rgba(245,235,215,.72); margin: 0; }

/* ============ TESTIMONIALS ============ */
.testi {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, #0c0906, var(--c-night));
}
.testi__rail {
  display: flex; gap: 24px;
  padding: 12px var(--gut) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testi__rail::-webkit-scrollbar { display: none; }
.testi__card {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: center;
  background: linear-gradient(165deg, rgba(245,235,215,.06), rgba(245,235,215,.02));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,235,215,.1);
  border-radius: 22px;
  padding: 28px 26px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.testi__card:hover { transform: translateY(-4px); border-color: rgba(232,167,82,.4); }
.testi__quote {
  position: absolute; top: 14px; right: 18px;
  font-family: var(--f-display); font-style: italic;
  font-size: 64px; line-height: 1; color: rgba(232,167,82,.25);
}
.testi__stars { color: var(--c-amber); display: inline-flex; gap: 2px; margin-bottom: 12px; font-size: 13px; }
.testi__text {
  font-family: var(--f-display); font-weight: 400; font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--c-cream);
  margin: 0 0 20px;
}
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-amber), var(--c-terra));
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 600;
  color: var(--c-night);
  font-size: 18px;
}
.testi__author-name { font-weight: 500; color: var(--c-cream); }
.testi__author-meta { font-size: 12px; color: rgba(245,235,215,.6); letter-spacing: .1em; text-transform: uppercase; }

.testi__dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 24px;
}
.testi__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245,235,215,.2);
  transition: width .35s, background .3s;
  cursor: pointer;
}
.testi__dot.is-active { background: var(--c-amber); width: 24px; border-radius: 4px; }

/* ============ COURTYARD ============ */
.courtyard {
  position: relative;
  min-height: 80vh;
  padding: clamp(100px, 16vw, 200px) var(--gut);
  background:
    linear-gradient(120deg, rgba(14,89,68,.55) 0%, rgba(31,61,47,.35) 60%, rgba(14,11,8,.85) 100%),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat fixed;
  overflow: hidden;
  isolation: isolate;
}
@supports not (background-attachment: fixed) { .courtyard { background-attachment: scroll; } }
.courtyard__veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,167,82,.22) 0%, transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.courtyard__leaves { position: absolute; inset: 0; pointer-events: none; }
.leaf {
  position: absolute;
  width: 60px; height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><path d='M32 4C18 12 8 28 8 44c0 8 4 14 12 16-4-8-2-18 4-26 6-8 14-12 22-14-4-6-8-12-14-16z' fill='%231F3D2F' opacity='.85'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  animation: leafFall 14s linear infinite;
  opacity: .7;
}
.leaf--1 { left: 8%; top: -10%; animation-delay: 0s; }
.leaf--2 { left: 30%; top: -15%; animation-delay: 4s; transform: scale(.7); }
.leaf--3 { left: 60%; top: -8%; animation-delay: 7s; transform: scale(1.2); }
.leaf--4 { left: 80%; top: -20%; animation-delay: 2s; transform: scale(.85); }
.leaf--5 { left: 45%; top: -18%; animation-delay: 10s; }
@keyframes leafFall {
  0% { transform: translateY(-20vh) rotate(0deg); opacity: 0; }
  10% { opacity: .8; }
  100% { transform: translateY(120vh) rotate(720deg); opacity: 0; }
}
.courtyard__copy { max-width: 640px; position: relative; z-index: 1; }
.courtyard__copy .lede { color: rgba(245,235,215,.92); }
.courtyard__copy .btn { margin-top: 20px; }

/* ============ GALLERY ============ */
.gallery { padding: clamp(80px, 12vw, 140px) 0; background: var(--c-night); }
.masonry {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  columns: 3 280px;
  column-gap: 14px;
}
.masonry__item {
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #1d1812;
}
.masonry__item img {
  transition: transform .9s var(--ease), filter .9s var(--ease);
  filter: grayscale(.4) brightness(.85);
}
.masonry__item:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.masonry__item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(14,11,8,.7);
  color: var(--c-amber);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.6);
  opacity: 0;
  transition: opacity .35s, transform .35s var(--ease);
}
.masonry__item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============ CONTACT ============ */
.contact {
  padding: clamp(80px, 12vw, 140px) var(--gut);
  background: #0c0906;
}
.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact__info p.lede { margin-bottom: 32px; }
.contact__list { list-style: none; padding: 0; margin: 0 0 28px; }
.contact__list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,235,215,.07);
}
.contact__list li:last-child { border-bottom: 0; }
.contact__list i {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(232,167,82,.08);
  color: var(--c-amber);
  font-size: 14px;
  flex-shrink: 0;
}
.contact__list strong { display: block; font-family: var(--f-display); font-weight: 500; font-size: 1.15rem; color: var(--c-cream); margin-bottom: 2px; }
.contact__list span { display: block; font-size: 13px; color: rgba(245,235,215,.6); }
.contact__list a { color: var(--c-cream); border-bottom: 1px dotted rgba(232,167,82,.4); transition: color .3s; }
.contact__list a:hover { color: var(--c-amber); }
.contact__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__form {
  background: linear-gradient(180deg, rgba(245,235,215,.04), rgba(245,235,215,.015));
  border: 1px solid rgba(245,235,215,.08);
  border-radius: 22px;
  padding: 32px;
  position: sticky; top: 100px;
}
.contact__form-title { font-family: var(--f-display); font-weight: 500; font-size: 1.6rem; margin: 0 0 20px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,235,215,.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(14,11,8,.5);
  border: 1px solid rgba(245,235,215,.1);
  border-radius: 10px;
  color: var(--c-cream);
  font-size: 14px;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-amber);
  background: rgba(14,11,8,.7);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__hint { font-size: 12px; color: rgba(245,235,215,.55); margin: 12px 0 0; text-align: center; }

.contact__map {
  grid-column: 1 / -1;
  margin-top: 40px;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245,235,215,.08);
  height: 380px;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5) contrast(1.05) hue-rotate(-15deg); }
.contact__map-overlay {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(14,11,8,.85);
  backdrop-filter: blur(14px);
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(232,167,82,.25);
  font-size: 13px;
}
.contact__map-overlay i { color: var(--c-amber); margin-right: 8px; }
.contact__map-overlay strong { display: block; font-family: var(--f-display); font-size: 1.1rem; color: var(--c-cream); margin: 4px 0 2px; }
.contact__map-overlay span { color: rgba(245,235,215,.65); }

@media (max-width: 920px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form { position: static; }
}

/* ============ FINAL CTA ============ */
.finalcta {
  position: relative;
  padding: clamp(120px, 18vw, 220px) var(--gut);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(245,235,215,.06);
}
.finalcta__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232,167,82,.25) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-night), #0a0805 70%),
    url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=2400&q=85") center/cover no-repeat;
  filter: brightness(.55);
}
.finalcta__particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.finalcta__particles span {
  position: absolute;
  bottom: -20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-amber-soft), transparent 70%);
  filter: blur(.5px);
  animation: floatUp 10s linear infinite;
  opacity: .8;
}
.finalcta__particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.finalcta__particles span:nth-child(2) { left: 22%; animation-delay: 1.5s; }
.finalcta__particles span:nth-child(3) { left: 34%; animation-delay: 3s; }
.finalcta__particles span:nth-child(4) { left: 46%; animation-delay: 4.5s; }
.finalcta__particles span:nth-child(5) { left: 58%; animation-delay: 6s; }
.finalcta__particles span:nth-child(6) { left: 70%; animation-delay: 7.5s; }
.finalcta__particles span:nth-child(7) { left: 82%; animation-delay: 9s; }
.finalcta__particles span:nth-child(8) { left: 94%; animation-delay: 2.5s; }
.finalcta__particles span:nth-child(9) { left: 6%;  animation-delay: 5.5s; }
.finalcta__particles span:nth-child(10){ left: 50%; animation-delay: 8.5s; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(.6); opacity: 0; }
  20% { opacity: .9; }
  100% { transform: translateY(-120vh) scale(1.4); opacity: 0; }
}

.finalcta__script {
  font-family: var(--f-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--c-amber);
  margin: 0 0 6px;
  display: inline-block;
  transform: rotate(-2deg);
}
.finalcta__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 36px;
  text-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.finalcta__cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============ FOOTER ============ */
.foot {
  background: #050402;
  padding: 56px var(--gut) 28px;
  border-top: 1px solid rgba(245,235,215,.06);
}
.foot__top {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245,235,215,.06);
}
.foot__brand { font-family: var(--f-display); font-weight: 500; font-size: 2rem; margin: 0 0 4px; color: var(--c-amber); letter-spacing: .04em; }
.foot__top p { margin: 0; font-size: 13px; color: rgba(245,235,215,.6); letter-spacing: .1em; text-transform: uppercase; }
.foot__links, .foot__social { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }
.foot__links a { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,235,215,.75); transition: color .3s; }
.foot__links a:hover { color: var(--c-amber); }
.foot__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(245,235,215,.12);
  border-radius: 50%;
  color: var(--c-cream);
  transition: background .3s, color .3s, border-color .3s;
}
.foot__social a:hover { background: var(--c-amber); color: var(--c-night); border-color: var(--c-amber); }
.foot__bot { max-width: var(--maxw); margin: 24px auto 0; text-align: center; color: rgba(245,235,215,.4); font-size: 12px; letter-spacing: .1em; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7,5,3,.95);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(20,16,12,.75);
  color: var(--c-cream);
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
  border: 1px solid rgba(245,235,215,.1);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--c-amber); color: var(--c-night); }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 30px);
  background: linear-gradient(135deg, var(--c-amber), var(--c-gold));
  color: var(--c-night);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(232,167,82,.4);
  transition: opacity .35s, transform .4s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .hero { padding-top: 100px; min-height: 92svh; }
  .hero__rating { padding: 10px 14px; gap: 10px; }
  .hero__rating-num { font-size: 18px; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: 22px; }
}

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