:root {
  --red: #ef3038;
  --red-dark: #bd1d27;
  --blue: #2cb9df;
  --green: #08a565;
  --yellow: #f0df45;
  --orange: #ec9850;
  --ink: #171614;
  --ink-2: #292622;
  --muted: #665f56;
  --cream: #f7f1e8;
  --cream-2: #eee3d4;
  --paper: #fffdf9;
  --line: rgba(23, 22, 20, .13);
  --white: #fff;
  --shadow-sm: 0 12px 36px rgba(34, 22, 12, .09);
  --shadow: 0 28px 90px rgba(34, 22, 12, .16);
  --radius-sm: 18px;
  --radius: 30px;
  --radius-lg: 46px;
  --shell: min(1220px, calc(100% - 44px));
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
::selection { color: var(--ink); background: var(--yellow); }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 5000;
  padding: 11px 15px; border-radius: 10px; color: #fff; background: var(--ink);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(86px, 10vw, 150px); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--red-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--red-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}
h2 { font-size: clamp(3rem, 6.5vw, 6.8rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.9rem); }
p { font-size: clamp(1rem, 1.25vw, 1.14rem); }

.button {
  min-height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: .9rem; font-weight: 900; letter-spacing: .01em; cursor: pointer;
  transition: transform .28s var(--ease), background .28s, color .28s, border-color .28s, box-shadow .28s;
}
.button:hover { transform: translateY(-3px); }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 14px 30px rgba(239,48,56,.24); }
.button--primary:hover { background: #ff3b44; box-shadow: 0 18px 38px rgba(239,48,56,.32); }
.button--secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.62); }
.button--secondary:hover { border-color: var(--ink); background: #fff; }
.button--dark { color: #fff; background: var(--ink); }
.button--dark:hover { background: var(--red); }
.button--light { color: var(--ink); background: #fff; }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--outline:hover { color: #fff; background: var(--ink); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  padding: 12px 0;
  transition: padding .3s var(--ease), background .3s, box-shadow .3s, border-color .3s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(247,241,232,.72); border-bottom: 1px solid rgba(23,22,20,.06);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
.site-header.is-scrolled { padding-block: 7px; box-shadow: 0 10px 35px rgba(34,22,12,.09); }
.site-header.is-scrolled::before { background: rgba(255,253,249,.92); border-color: var(--line); }
.site-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 67px; height: 56px; object-fit: contain; flex: 0 0 auto; }
.brand__text { display: grid; line-height: .82; letter-spacing: -.04em; }
.brand__text strong { color: var(--red); font-size: 1.2rem; font-weight: 950; }
.brand__text b { color: var(--ink); font-size: 1.55rem; font-weight: 950; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: .85rem; font-weight: 800; }
.main-nav a { position: relative; cursor: pointer; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .25s; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--red); box-shadow: 0 10px 22px rgba(239,48,56,.2); }
.nav-install { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; border: 0; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.72); cursor: pointer; font-size: .82rem; font-weight: 850; }
.nav-install svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 50%; background: rgba(255,255,255,.7); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; border-radius: 2px; background: currentColor; transition: transform .25s; }

/* Hero */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: center;
  padding: 128px 0 72px; overflow: hidden;
  background: linear-gradient(135deg, #fffdf9 0%, #f6eee3 58%, #efe2d0 100%);
}
.hero__decor { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero__decor--red { width: 340px; height: 340px; left: -180px; top: 22%; background: radial-gradient(circle, rgba(239,48,56,.16), transparent 68%); }
.hero__decor--blue { width: 420px; height: 420px; right: -200px; bottom: -130px; background: radial-gradient(circle, rgba(44,185,223,.18), transparent 68%); }
.hero__layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr); gap: clamp(45px,6vw,88px); align-items: center; }
.hero__copy { padding-block: 30px; }
.hero__title { max-width: 690px; margin-bottom: 26px; font-size: clamp(4.4rem, 8vw, 8rem); }
.hero__title span, .hero__title em { display: block; }
.hero__title em { color: var(--red); font-weight: 400; }
.hero__lead { max-width: 590px; margin-bottom: 0; color: var(--muted); font-size: clamp(1.08rem,1.7vw,1.34rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 40px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero__proof li { min-width: 0; }
.hero__proof strong, .hero__proof span { display: block; }
.hero__proof strong { font-size: .82rem; font-weight: 900; }
.hero__proof span { margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.hero__media { position: relative; }
.hero__video-frame { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; border: 10px solid rgba(255,255,255,.82); border-radius: var(--radius-lg); background: #3b1b10; box-shadow: var(--shadow); }
.hero__video-frame video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__video-control { position: absolute; right: 18px; bottom: 18px; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(0,0,0,.52); backdrop-filter: blur(10px); cursor: pointer; }
.hero__video-control svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero__video-control .icon-play { display: none; fill: currentColor; stroke: none; }
.hero__video-control.is-paused .icon-pause { display: none; }
.hero__video-control.is-paused .icon-play { display: block; }
.hero__media-note { position: absolute; left: -28px; bottom: -30px; display: flex; align-items: center; gap: 13px; padding: 16px 19px; border: 1px solid rgba(23,22,20,.08); border-radius: 20px; background: rgba(255,253,249,.94); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.hero__media-note p { margin: 0; font-size: .84rem; line-height: 1.3; }
.hero__media-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--yellow); }

.ticker { position: relative; z-index: 3; overflow: hidden; padding: 17px 0; color: #fff; background: var(--red); }
.ticker__track { display: flex; gap: 28px; width: max-content; font-size: .82rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; animation: ticker 27s linear infinite; }
.ticker__track i { color: var(--yellow); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Reusable headings */
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: clamp(48px,7vw,82px); }
.section-heading h2 { margin-bottom: 0; }
.section-heading h2 span { color: var(--red); }
.section-heading > p { max-width: 440px; margin: 0; color: var(--muted); }

/* Signature */
.signature { background: var(--paper); }
.signature__grid { display: grid; grid-template-columns: minmax(0,1.42fr) minmax(280px,.58fr); gap: 24px; align-items: end; }
.signature-card { margin: 0; }
.photo-frame { position: relative; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg,#5b2815,#2d120a); box-shadow: var(--shadow-sm); }
.photo-frame--landscape { aspect-ratio: 16/9; }
.photo-frame--portrait { aspect-ratio: 9/16; max-height: 690px; }
.photo-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s var(--ease); }
.signature-card:hover .photo-frame img { transform: scale(1.025); }
.signature-card figcaption { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding-top: 20px; }
.signature-card figcaption > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: .76rem; font-weight: 900; }
.signature-card h3 { margin: 0 0 6px; font-size: clamp(1.9rem,3vw,3.1rem); }
.signature-card p { margin: 0; color: var(--muted); }

/* Scroll journey */
.journey { color: #fff; background: var(--ink); }
.journey__layout { display: grid; grid-template-columns: minmax(420px,1.05fr) minmax(0,.95fr); gap: clamp(54px,8vw,110px); align-items: start; }
.journey__visual { position: sticky; top: 112px; }
.journey__image-frame { position: relative; aspect-ratio: 4/5; max-height: calc(100svh - 150px); overflow: hidden; border-radius: var(--radius-lg); background: #28130c; box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.journey__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: 0; transform: scale(1.035); transition: opacity .65s, transform .9s var(--ease); }
.journey__image.is-active { opacity: 1; transform: none; }
.journey__counter { position: absolute; right: 20px; bottom: 18px; display: flex; align-items: baseline; gap: 4px; padding: 10px 14px; border-radius: 999px; color: #fff; background: rgba(0,0,0,.58); backdrop-filter: blur(10px); }
.journey__counter span { font: 500 1.5rem/1 Georgia,serif; }
.journey__counter small { color: rgba(255,255,255,.65); }
.journey__content { padding-bottom: 22vh; }
.journey__intro { min-height: 48vh; display: grid; align-content: end; padding-bottom: 72px; }
.journey__intro .eyebrow { color: var(--yellow); }
.journey__intro h2 { max-width: 680px; margin-bottom: 0; font-size: clamp(3.4rem,6vw,6.6rem); }
.journey-step { min-height: 64vh; display: grid; align-content: center; padding: 50px 0; border-top: 1px solid rgba(255,255,255,.15); opacity: .34; transition: opacity .35s; }
.journey-step.is-active { opacity: 1; }
.journey-step > span { color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .15em; }
.journey-step h3 { max-width: 620px; margin: 15px 0 18px; font-size: clamp(3rem,5.2vw,5.7rem); }
.journey-step p { max-width: 520px; margin: 0; color: rgba(255,255,255,.67); }

/* Menu */
.menu-showcase { background: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.menu-card { overflow: hidden; border: 1px solid rgba(23,22,20,.08); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow-sm); transition: transform .32s var(--ease), box-shadow .32s; }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card--wide { grid-column: span 2; }
.menu-card__image { display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#5c2916,#28120b); }
.menu-card__image--landscape { aspect-ratio: 16/9; }
.menu-card__image--portrait { aspect-ratio: 4/5; }
.menu-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s var(--ease); }
.menu-card:hover img { transform: scale(1.025); }
.menu-card__body { padding: 23px 24px 26px; }
.menu-card small { color: var(--red-dark); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.menu-card h3 { margin: 9px 0 8px; font-size: clamp(1.9rem,2.9vw,3rem); }
.menu-card p { margin: 0; color: var(--muted); }
.center-action { margin-top: 44px; text-align: center; }

/* Drinks */
.drinks { position: relative; overflow: hidden; color: #fff; background: #091a22; }
.drinks::before { content: ""; position: absolute; width: 520px; height: 520px; left: -180px; bottom: -220px; border-radius: 50%; background: radial-gradient(circle,rgba(44,185,223,.27),transparent 65%); }
.drinks__layout { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px,8vw,100px); align-items: center; }
.drinks__copy .eyebrow { color: var(--yellow); }
.drinks__copy h2 { font-size: clamp(3.3rem,6vw,6.5rem); }
.drinks__copy > p:not(.eyebrow) { max-width: 560px; color: rgba(255,255,255,.68); }
.drinks__stage { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.025)); backdrop-filter: blur(16px); }
.drinks__rings { position: absolute; width: 390px; aspect-ratio: 1; border: 1px solid rgba(240,223,69,.18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(240,223,69,.04),0 0 0 110px rgba(44,185,223,.035); }
.drink-placeholder { position: relative; z-index: 2; display: grid; justify-items: center; gap: 10px; padding: 30px; text-align: center; }
.drink-placeholder svg { width: 112px; fill: none; stroke: var(--yellow); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.drink-placeholder strong { font: 500 2.2rem/1 Georgia,serif; }
.drink-placeholder span { max-width: 310px; color: rgba(255,255,255,.62); font-size: .9rem; }
.drink-real-grid { position: absolute; inset: 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.drink-real-grid img { width: 100%; height: 100%; min-height: 0; object-fit: contain; border-radius: 20px; background: rgba(0,0,0,.22); }

/* Gallery */
.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 16px; align-items: start; }
.gallery-item { width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 24px; background: linear-gradient(145deg,#5b2815,#2b120a); box-shadow: var(--shadow-sm); cursor: zoom-in; }
.gallery-item--landscape { grid-row: span 2; aspect-ratio: 16/9; align-self: center; }
.gallery-item--portrait { aspect-ratio: 9/16; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }

/* History */
.history { background: var(--cream-2); }
.history__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(55px,8vw,110px); align-items: center; }
.history__visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.history__visual > img { width: min(100%,520px); max-height: 470px; object-fit: contain; filter: drop-shadow(0 28px 44px rgba(23,22,20,.14)); }
.history__seal { position: absolute; right: 4%; bottom: 4%; width: 155px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border-radius: 50%; color: #fff; background: var(--red); transform: rotate(7deg); box-shadow: 0 18px 44px rgba(239,48,56,.24); }
.history__seal strong { font: 500 3.2rem/.9 Georgia,serif; }
.history__seal span { max-width: 90px; margin: 7px auto 0; font-size: .68rem; font-weight: 900; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.history__copy h2 { font-size: clamp(3.2rem,5.8vw,6.2rem); }
.history__copy > p { max-width: 750px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-weight: 900; }
.text-link span { color: var(--red); }

/* Install */
.install-app { position: relative; overflow: hidden; color: #fff; background: #0d0d0e; }
.install-app::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 30%,rgba(44,185,223,.18),transparent 28%),radial-gradient(circle at 86% 70%,rgba(239,48,56,.18),transparent 30%); }
.install-app__panel { position: relative; display: grid; grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr); gap: clamp(45px,8vw,105px); align-items: center; padding: clamp(35px,5vw,72px); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.02)); box-shadow: 0 35px 100px rgba(0,0,0,.34); backdrop-filter: blur(18px); }
.install-app__visual { position: relative; display: grid; place-items: center; }
.install-app__visual img { position: relative; z-index: 2; width: min(100%,420px); aspect-ratio: 1; object-fit: contain; border-radius: 26%; box-shadow: 0 34px 75px rgba(0,0,0,.5); transform: rotate(-3deg); }
.install-app__halo { position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 30deg,var(--blue),var(--green),var(--yellow),var(--orange),var(--red),var(--blue)); filter: blur(60px); opacity: .3; }
.install-app__badge { position: absolute; z-index: 3; right: 2%; bottom: 7%; width: 68px; height: 68px; display: grid; place-items: center; border: 6px solid #0d0d0e; border-radius: 50%; color: var(--ink); background: var(--yellow); font-weight: 950; }
.install-app__content .eyebrow { color: var(--yellow); }
.install-app__content h2 { font-size: clamp(3.4rem,6.2vw,6.8rem); }
.install-app__content > p:not(.eyebrow):not(.install-app__note):not(.install-app__installed) { max-width: 690px; color: rgba(255,255,255,.68); }
.install-app__benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 32px 0 25px; }
.install-app__benefits span { padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.04); }
.install-app__benefits strong,.install-app__benefits small { display: block; }
.install-app__benefits strong { color: var(--yellow); font-size: .88rem; }
.install-app__benefits small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: .73rem; line-height: 1.35; }
.install-app__button { width: min(100%,430px); min-height: 78px; display: flex; align-items: center; gap: 16px; padding: 12px 22px; border: 0; border-radius: 20px; color: #fff; background: linear-gradient(135deg,var(--red),#b91621); box-shadow: 0 20px 45px rgba(239,48,56,.3); cursor: pointer; text-align: left; transition: transform .28s var(--ease),box-shadow .28s; }
.install-app__button:hover { transform: translateY(-4px); box-shadow: 0 25px 55px rgba(239,48,56,.42); }
.install-app__button svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.install-app__button span { display: grid; }
.install-app__button small { color: rgba(255,255,255,.72); font-size: .72rem; }
.install-app__button strong { font-size: 1.08rem; }
.install-app__note { margin: 14px 0 0; color: rgba(255,255,255,.46); font-size: .78rem; }
.install-app__installed { display: inline-flex; margin: 0; padding: 13px 18px; border-radius: 999px; color: #07170f; background: #69d49d; font-weight: 900; }

/* CTA */
.cta { background: var(--paper); }
.cta__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px,8vw,100px); align-items: center; }
.cta__copy h2 { font-size: clamp(3.7rem,7vw,7.4rem); }
.cta__copy h2 em { color: var(--red); font-weight: 400; }
.cta__copy > p { max-width: 580px; color: var(--muted); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta__media { overflow: hidden; aspect-ratio: 16/10; border-radius: var(--radius-lg); background: linear-gradient(145deg,#5b2815,#2b120a); box-shadow: var(--shadow); }
.cta__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* Contact */
.contact { background: #fff; }
.contact__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px,7vw,85px); align-items: center; }
.contact__info h2 { font-size: clamp(3.4rem,6vw,6.4rem); }
.contact-list { margin: 42px 0; }
.contact-list > div { display: grid; grid-template-columns: 135px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list > div:last-child { border-bottom: 1px solid var(--line); }
.contact-list dt { color: #777; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-list dd { margin: 0; font-weight: 750; }
.contact-list small { display: block; margin-top: 4px; color: #777; font-weight: 500; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact__map { min-height: 610px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact__map iframe { width: 100%; height: 610px; border: 0; filter: saturate(.82) contrast(1.03); }

/* Footer */
.site-footer { padding: 80px 0 calc(28px + env(safe-area-inset-bottom)); color: #fff; background: #0a0a0a; }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr .75fr .75fr; gap: 60px; }
.brand--footer .brand__text b { color: #fff; }
.brand--footer img { width: 78px; height: 68px; }
.site-footer__brand p { max-width: 350px; color: rgba(255,255,255,.55); }
.site-footer__grid > div > strong { display: block; margin-bottom: 18px; color: var(--yellow); }
.site-footer__grid a { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.68); }
.site-footer__grid a:hover { color: #fff; }
.footer-install { display: block; width: fit-content; margin-top: 12px; padding: 0; border: 0; color: var(--yellow); background: transparent; cursor: pointer; font-weight: 850; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .82rem; }

/* Floating actions */
.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 890; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #20bf67; box-shadow: 0 16px 36px rgba(0,0,0,.26); transition: transform .25s; }
.whatsapp-float:hover { transform: translateY(-4px); }
.whatsapp-float svg { width: 31px; fill: #fff; }
.pwa-install-float { position: fixed; left: 20px; bottom: 20px; z-index: 885; max-width: min(330px,calc(100vw - 110px)); min-height: 66px; display: flex; align-items: center; gap: 12px; padding: 9px 14px 9px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; color: #fff; background: rgba(14,14,14,.94); box-shadow: 0 18px 44px rgba(0,0,0,.3); backdrop-filter: blur(16px); cursor: pointer; text-align: left; }
.pwa-install-float img { width: 48px; height: 48px; border-radius: 13px; }
.pwa-install-float span { display: grid; min-width: 0; flex: 1; }
.pwa-install-float small { color: rgba(255,255,255,.62); font-size: .68rem; }
.pwa-install-float strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: .88rem; }
.pwa-install-float > svg { width: 20px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-action-bar { display: none; }

/* Dialogs */
.lightbox { width: min(1100px,calc(100% - 28px)); max-height: calc(100svh - 28px); padding: 0; overflow: hidden; border: 0; border-radius: 22px; background: #0b0b0b; }
.lightbox::backdrop,.pwa-install-dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 90svh; object-fit: contain; }
.lightbox button,.pwa-dialog-close { position: absolute; top: 14px; right: 14px; z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer; font-size: 1.7rem; }
.pwa-install-dialog { width: min(760px,calc(100% - 24px)); max-height: calc(100svh - 24px); padding: clamp(24px,5vw,48px); overflow: auto; border: 0; border-radius: 30px; color: var(--ink); background: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.36); }
.pwa-dialog-head { display: grid; grid-template-columns: 96px 1fr; gap: 22px; align-items: center; margin-bottom: 28px; }
.pwa-dialog-head img { border-radius: 24px; box-shadow: 0 12px 34px rgba(0,0,0,.16); }
.pwa-dialog-head h2 { margin: 0 0 8px; font-size: clamp(2.2rem,6vw,4rem); }
.pwa-dialog-head p { margin-bottom: 0; }
.pwa-platform { margin-top: 12px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.52); }
.pwa-platform.is-primary { border-color: var(--red); box-shadow: inset 4px 0 0 var(--red); }
.pwa-platform h3 { margin-bottom: 12px; font: 800 1.12rem/1.25 Inter,sans-serif; letter-spacing: 0; }
.pwa-platform ol { margin: 0; padding-left: 22px; }
.pwa-platform li + li { margin-top: 7px; }
.connection-status,.pwa-update-toast { position: fixed; left: 50%; z-index: 1200; transform: translateX(-50%); border-radius: 999px; box-shadow: 0 12px 35px rgba(0,0,0,.23); font-size: .84rem; font-weight: 800; }
.connection-status { top: max(12px,env(safe-area-inset-top)); padding: 11px 17px; color: #fff; background: #7d351e; }
.pwa-update-toast { bottom: 24px; display: flex; align-items: center; gap: 14px; padding: 10px 11px 10px 18px; color: #fff; background: #111; }
.pwa-update-toast button { padding: 9px 14px; border: 0; border-radius: 999px; color: #fff; background: var(--red); cursor: pointer; font-weight: 850; }
.noscript-warning { position: fixed; inset: auto 0 0; z-index: 5000; padding: 14px; color: #fff; background: #9b1d24; text-align: center; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease),transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.is-standalone .pwa-install-float,.is-standalone .nav-install,.is-standalone .footer-install,.is-standalone .install-app__button,.is-standalone .mobile-action-bar .pwa-install-trigger { display: none !important; }
[hidden] { display: none !important; }

@media (max-width: 1080px) {
  :root { --shell: min(920px,calc(100% - 34px)); }
  .main-nav { gap: 18px; }
  .main-nav > a:nth-child(4) { display: none; }
  .hero { min-height: auto; }
  .hero__layout { grid-template-columns: 1fr; gap: 52px; }
  .hero__copy { max-width: 820px; }
  .hero__media { max-width: 920px; }
  .hero__media-note { left: 22px; }
  .journey__layout { grid-template-columns: .9fr 1.1fr; gap: 52px; }
  .signature__grid { grid-template-columns: 1.25fr .75fr; }
  .drinks__layout,.contact__grid { grid-template-columns: 1fr; }
  .drinks__copy { max-width: 760px; }
  .contact__map,.contact__map iframe { min-height: 500px; height: 500px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .site-header { padding-block: 6px; }
  .site-header__inner { min-height: 60px; }
  .brand img { width: 58px; height: 50px; }
  .brand__text strong { font-size: 1.05rem; }
  .brand__text b { font-size: 1.35rem; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .main-nav {
    position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 17px; padding: max(90px,12vh) 9vw 100px; color: var(--ink); background: var(--cream);
    font: 500 clamp(2.1rem,9vw,4.2rem)/1.08 Georgia,serif;
    transform: translateX(100%); transition: transform .42s var(--ease);
  }
  .main-nav.is-open { transform: none; }
  .main-nav > a:nth-child(4) { display: block; }
  .main-nav .nav-cta,.main-nav .nav-install { margin-top: 8px; font: 850 .95rem/1 Inter,sans-serif; }
  .main-nav .nav-cta { padding: 15px 20px; }
  .site-header.menu-is-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-is-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding-top: 105px; }
  .hero__proof { grid-template-columns: 1fr 1fr; }
  .hero__proof li:last-child { grid-column: span 2; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 650px; }
  .signature__grid { grid-template-columns: 1fr; }
  .signature-card--baiao { max-width: 580px; margin-left: auto; }
  .journey__layout { grid-template-columns: 1fr; }
  .journey__visual { position: relative; top: auto; max-width: 640px; margin-inline: auto; }
  .journey__image-frame { aspect-ratio: 4/5; max-height: none; }
  .journey__content { padding-bottom: 0; }
  .journey__intro { min-height: 0; padding: 70px 0 45px; }
  .journey-step { min-height: 0; padding: 42px 0; opacity: 1; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card--wide { grid-column: span 2; }
  .gallery-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gallery-item--portrait:last-child { display: none; }
  .history__layout,.install-app__panel,.cta__layout { grid-template-columns: 1fr; }
  .history__visual { min-height: 410px; }
  .history__visual > img { max-height: 390px; }
  .install-app__visual img { width: min(72vw,390px); }
  .install-app__badge { right: 15%; }
  .cta__media { order: -1; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: span 2; }

  .mobile-action-bar {
    position: fixed; inset: auto 0 0; z-index: 950; display: grid; grid-template-columns: repeat(4,1fr);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); border-top: 1px solid rgba(23,22,20,.1);
    background: rgba(255,253,249,.96); box-shadow: 0 -10px 35px rgba(23,22,20,.12); backdrop-filter: blur(16px);
  }
  .mobile-action-bar a,.mobile-action-bar button { min-height: 55px; display: grid; justify-items: center; align-content: center; gap: 3px; padding: 2px; border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: .67rem; font-weight: 850; }
  .mobile-action-bar svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-action-bar a:first-child { color: var(--red-dark); }
  .mobile-action-bar a:nth-child(2) { color: #128b49; }
  .pwa-install-float,.whatsapp-float { display: none !important; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); --radius: 24px; --radius-lg: 30px; }
  .section { padding-block: 84px; }
  .button { width: 100%; }
  .hero { padding: 98px 0 58px; }
  .hero__title { font-size: clamp(3.75rem,18vw,5.6rem); }
  .hero__lead { font-size: 1.04rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__proof { margin-top: 30px; padding-top: 18px; gap: 12px; }
  .hero__video-frame { aspect-ratio: 9/16; max-height: 68svh; border-width: 7px; border-radius: 28px; }
  .hero__video-frame video { object-fit: cover; }
  .hero__media-note { left: 12px; right: 12px; bottom: -24px; justify-content: center; }
  .ticker { padding: 14px 0; }
  .signature__grid { gap: 54px; }
  .signature-card figcaption { grid-template-columns: 38px 1fr; }
  .signature-card figcaption > span { width: 36px; height: 36px; }
  .photo-frame--portrait { max-height: none; }
  .journey__image-frame { aspect-ratio: 9/13; }
  .journey__intro h2 { font-size: clamp(3.1rem,15vw,4.8rem); }
  .journey-step h3 { font-size: clamp(2.8rem,13vw,4.3rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--wide { grid-column: auto; }
  .menu-card__image--landscape { aspect-ratio: 16/10; }
  .menu-card__image--portrait { aspect-ratio: 9/14; max-height: 590px; }
  .drinks__stage { min-height: 390px; }
  .drink-real-grid { grid-template-columns: 1fr; overflow: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item--landscape { grid-column: span 2; }
  .gallery-item--portrait:last-child { display: block; }
  .history__visual { min-height: 330px; }
  .history__visual > img { max-height: 320px; }
  .history__seal { width: 125px; right: 0; }
  .history__seal strong { font-size: 2.6rem; }
  .install-app__panel { padding: 24px 16px 30px; }
  .install-app__content h2 { font-size: clamp(3.1rem,15vw,4.9rem); }
  .install-app__benefits { grid-template-columns: 1fr; }
  .install-app__benefits span { padding: 14px 16px; }
  .install-app__button { width: 100%; }
  .install-app__badge { width: 58px; height: 58px; right: 7%; border-width: 5px; font-size: .8rem; }
  .cta__copy h2 { font-size: clamp(3.3rem,15vw,5.2rem); }
  .cta__actions,.contact__actions { display: grid; grid-template-columns: 1fr; }
  .contact-list > div { grid-template-columns: 1fr; gap: 5px; }
  .contact__map,.contact__map iframe { min-height: 420px; height: 420px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .pwa-dialog-head { grid-template-columns: 72px 1fr; gap: 15px; }
  .pwa-dialog-head img { width: 72px; height: 72px; border-radius: 18px; }
  .pwa-install-dialog { padding: 28px 18px 22px; border-radius: 22px; }
  .pwa-platform { padding: 17px; }
  .pwa-update-toast { width: calc(100% - 24px); justify-content: space-between; border-radius: 18px; }
}

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