:root {
  --brown-950: #2b120b;
  --brown-900: #3a1a10;
  --brown-800: #4b2416;
  --brown-700: #65311d;
  --brown-600: #7e452d;
  --brown-400: #b17a62;
  --orange-600: #e8870b;
  --orange-500: #f39a18;
  --orange-400: #ffad2f;
  --gold-400: #d6a84c;
  --cream-50: #fffcf8;
  --cream-100: #fff7ed;
  --cream-200: #f8ead8;
  --cream-300: #efd9bf;
  --green-whatsapp: #1fa855;
  --ink: #32170f;
  --muted: #765e52;
  --white: #ffffff;
  --shadow-sm: 0 14px 35px rgba(57, 26, 15, .10);
  --shadow-lg: 0 30px 80px rgba(43, 18, 11, .18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 88px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange-400); color: var(--brown-950); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 82px 0; }
.section-cream { background: var(--cream-100); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--brown-950);
  color: var(--white);
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-600);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light { color: #ffc568; }
h1, h2, h3, blockquote {
  margin-top: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.025em;
}
h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 6vw, 6.5rem); }
h2 { margin-bottom: 24px; font-size: clamp(2.45rem, 4.5vw, 4.75rem); }
h3 { margin-bottom: 14px; font-size: clamp(1.5rem, 2vw, 2rem); }
p { margin-top: 0; }
.section-lead { color: var(--brown-700); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.menu-button:focus-visible,
.menu-close:focus-visible,
.modal-close:focus-visible,
.gallery-item:focus-visible,
.flavor-tab:focus-visible,
.choose-flavor:focus-visible,
.video-toggle:focus-visible,
.whatsapp-float:focus-visible { outline: 3px solid rgba(243, 154, 24, .42); outline-offset: 4px; }
.button-primary { background: var(--orange-500); color: var(--brown-950); box-shadow: 0 12px 28px rgba(232, 135, 11, .25); }
.button-primary:hover { background: var(--orange-400); box-shadow: 0 16px 34px rgba(232, 135, 11, .34); }
.button-secondary { border-color: rgba(75, 36, 22, .28); background: transparent; color: var(--brown-800); }
.button-secondary:hover { border-color: var(--brown-800); background: var(--brown-800); color: var(--white); }
.button-ghost { border-color: rgba(75, 36, 22, .2); background: rgba(255,255,255,.45); }
.button-ghost:hover { border-color: var(--brown-800); background: var(--white); }
.button-light { background: var(--cream-100); color: var(--brown-900); }
.button-light:hover { background: var(--white); box-shadow: 0 18px 38px rgba(0,0,0,.22); }
.button-small { min-height: 45px; padding: 10px 18px; font-size: .9rem; }
.button-large { min-height: 62px; padding-inline: 30px; }
.button-full { width: 100%; }
.text-link, .footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.text-link { color: var(--brown-800); white-space: nowrap; }
.text-link span { margin-left: 8px; transition: margin .2s ease; }
.text-link:hover span { margin-left: 13px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 252, 248, .72);
  backdrop-filter: blur(18px);
  transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(75,36,22,.10);
  background: rgba(255, 252, 248, .94);
  box-shadow: 0 12px 35px rgba(63, 30, 18, .07);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; width: 106px; height: 72px; align-items: center; justify-content: center; flex-shrink: 0; }
.brand img { width: 100%; max-height: 72px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: var(--brown-700); font-size: .93rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange-500); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-button { display: none; width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid rgba(75,36,22,.14); border-radius: 50%; background: var(--cream-50); cursor: pointer; }
.menu-button span { width: 19px; height: 2px; border-radius: 2px; background: var(--brown-900); }
.menu-backdrop, .modal-backdrop { position: fixed; inset: 0; z-index: 1200; background: rgba(31, 12, 6, .58); backdrop-filter: blur(4px); }
.mobile-menu {
  position: fixed;
  z-index: 1201;
  top: 0;
  right: 0;
  width: min(88vw, 390px);
  height: 100dvh;
  padding: 26px;
  background: var(--cream-100);
  box-shadow: -30px 0 80px rgba(43,18,11,.2);
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.22,.78,.29,1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(75,36,22,.12); }
.mobile-menu-top img { width: 112px; }
.menu-close, .modal-close { width: 42px; height: 42px; border: 1px solid rgba(75,36,22,.14); border-radius: 50%; background: var(--white); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.mobile-menu nav { display: grid; padding: 24px 0; }
.mobile-menu nav a { padding: 13px 0; border-bottom: 1px solid rgba(75,36,22,.08); font-family: "Fraunces", Georgia, serif; font-size: 1.45rem; }
.mobile-menu-footer { margin-top: 12px; padding: 22px; border-radius: var(--radius-md); background: var(--brown-900); color: var(--cream-100); }
.mobile-menu-footer p { color: #ead8ca; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 72px) 0 72px;
  background:
    radial-gradient(circle at 12% 22%, rgba(243,154,24,.15), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(214,168,76,.18), transparent 28%),
    linear-gradient(145deg, #fffaf3 0%, #fff4e4 55%, #f6e1c9 100%);
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; left: -8%; bottom: -110px; width: 116%; height: 190px; border-radius: 50% 50% 0 0; background: var(--cream-100); }
.hero-grain { position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E"); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.92fr) minmax(440px,1.08fr); gap: clamp(44px, 7vw, 96px); align-items: center; }
.hero-copy { padding-bottom: 32px; }
.hero-copy h1 { max-width: 720px; color: var(--brown-950); }
.hero-lead { max-width: 620px; margin-bottom: 32px; color: var(--brown-700); font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px; color: var(--brown-700); font-size: .9rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof i { color: var(--orange-600); font-style: normal; }
.hero-media { position: relative; min-width: 0; }
.hero-video-shell { position: relative; aspect-ratio: 4 / 5; max-height: 690px; overflow: hidden; border: 12px solid rgba(255,255,255,.48); border-radius: 46% 46% 28px 28px / 24% 24% 28px 28px; box-shadow: var(--shadow-lg); background: var(--brown-900); }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-video-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(33,13,7,.42), transparent 44%); pointer-events: none; }
.illustrative-label { position: absolute; left: 20px; bottom: 20px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--brown-800); font-size: .7rem; backdrop-filter: blur(8px); }
.video-toggle { position: absolute; right: 18px; bottom: 18px; z-index: 2; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(43,18,11,.58); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); }
.video-toggle .play-icon { display: none; font-size: .8rem; transform: translateX(1px); }
.video-toggle.is-paused .pause-icon { display: none; }
.video-toggle.is-paused .play-icon { display: block; }
.hero-stamp { position: absolute; left: -52px; bottom: 54px; z-index: 3; width: 145px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(75,36,22,.12); border-radius: 50%; background: var(--cream-50); box-shadow: var(--shadow-sm); transform: rotate(-8deg); }
.hero-stamp::before { content: ""; position: absolute; inset: 9px; border: 1px dashed var(--gold-400); border-radius: 50%; }
.hero-stamp strong { position: relative; font-family: "Fraunces", Georgia, serif; font-size: 1.5rem; }
.hero-stamp span { position: relative; color: var(--brown-600); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.order-note { position: relative; z-index: 3; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 70px; padding: 22px 26px; border: 1px solid rgba(75,36,22,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.78); box-shadow: var(--shadow-sm); backdrop-filter: blur(16px); }
.order-note-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); }
.order-note-icon svg { width: 24px; fill: none; stroke: var(--brown-950); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.order-note strong { display: block; margin-bottom: 2px; }
.order-note p { margin: 0; color: var(--muted); font-size: .92rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(62px, 8vw, 118px); align-items: center; }
.about-visual { position: relative; min-height: 650px; }
.about-main-image { width: 76%; height: 560px; margin: 0; overflow: hidden; border-radius: 48% 48% 24px 24px / 22% 22% 24px 24px; box-shadow: var(--shadow-lg); }
.about-main-image img { width: 100%; height: 100%; object-fit: cover; }
.about-small-image { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 1; margin: 0; overflow: hidden; border: 10px solid var(--cream-100); border-radius: 50%; box-shadow: var(--shadow-sm); }
.about-small-image img { width: 100%; height: 100%; object-fit: cover; }
.about-seal { position: absolute; left: -26px; bottom: 58px; width: 160px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--brown-900); color: var(--cream-100); text-align: center; box-shadow: var(--shadow-sm); transform: rotate(-7deg); }
.about-seal::before { content: ""; position: absolute; inset: 9px; border: 1px dashed rgba(255,255,255,.45); border-radius: 50%; }
.about-seal span, .about-seal strong { position: relative; }
.about-seal span { font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.about-seal strong { font-family: "Fraunces", Georgia, serif; font-size: 1.55rem; }
.about-copy > p:not(.eyebrow):not(.section-lead) { color: var(--muted); }
.about-points { display: grid; gap: 8px; margin-top: 30px; }
.about-points article { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(75,36,22,.12); }
.point-number { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-200); color: var(--orange-600); font-weight: 700; }
.about-points strong { display: block; }
.about-points p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; }

/* Section heading */
.section-heading { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-heading > p { max-width: 520px; margin-bottom: 6px; color: var(--muted); }
.section-heading.centered { display: block; max-width: 840px; margin-inline: auto; text-align: center; }

/* Flavors */
.flavors { background: var(--white); }
.flavor-tabs { display: inline-flex; gap: 8px; margin-bottom: 24px; padding: 6px; border-radius: 999px; background: var(--cream-100); }
.flavor-tab { min-width: 120px; border: 0; border-radius: 999px; padding: 12px 22px; background: transparent; color: var(--brown-600); font-weight: 700; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.flavor-tab:hover { transform: translateY(-1px); }
.flavor-tab.is-active { background: var(--brown-900); color: var(--cream-100); box-shadow: 0 8px 20px rgba(43,18,11,.18); }
.flavor-stage { border: 1px solid rgba(75,36,22,.09); border-radius: var(--radius-lg); background: var(--cream-100); box-shadow: var(--shadow-sm); overflow: hidden; }
.flavor-panel { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 550px; }
.flavor-photo { min-height: 100%; overflow: hidden; }
.flavor-photo img { width: 100%; height: 100%; object-fit: cover; }
.flavor-content { padding: clamp(36px,5vw,70px); }
.flavor-kicker { color: var(--orange-600); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.flavor-content h3 { margin-top: 10px; font-size: clamp(2.3rem,4vw,4.1rem); }
.flavor-list { list-style: none; margin: 28px 0 0; padding: 0; }
.flavor-list li { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(75,36,22,.11); }
.flavor-list li:last-child { border-bottom: 1px solid rgba(75,36,22,.11); }
.flavor-list span { font-weight: 600; }
.choose-flavor { flex-shrink: 0; border: 0; border-bottom: 1px solid currentColor; padding: 3px 0; background: transparent; color: var(--orange-600); font-size: .82rem; font-weight: 700; cursor: pointer; }
.flavor-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 18px 0; }
.flavor-footer p { margin: 0; color: var(--muted); }

/* Manifesto */
.manifesto { position: relative; min-height: 540px; display: grid; place-items: center; overflow: hidden; background: var(--brown-950); color: var(--cream-50); }
.manifesto-background { position: absolute; inset: -50px; background-image: linear-gradient(rgba(43,18,11,.78),rgba(43,18,11,.86)), url('../assets/img/fundo-artesanal.webp'); background-size: cover; background-position: center; background-attachment: fixed; filter: saturate(.78); }
.manifesto-inner { position: relative; z-index: 1; max-width: 900px; padding-block: 86px; text-align: center; }
.manifesto-inner > img { width: 155px; margin: 0 auto 20px; padding: 12px; border-radius: 24px; background: rgba(255,247,237,.9); }
.manifesto blockquote { margin: 0 auto 34px; font-size: clamp(2.7rem,5.4vw,5.5rem); }

/* Production */
.production { background: var(--cream-50); }
.production-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px,8vw,110px); align-items: center; }
.process-list { display: grid; margin-top: 36px; }
.process-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 20px 0; border-top: 1px solid rgba(75,36,22,.12); }
.process-list article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); font-weight: 800; }
.process-list strong { display: block; }
.process-list p { margin: 2px 0 0; color: var(--muted); }
.production-gallery { position: relative; min-height: 680px; }
.production-main { width: 78%; height: 600px; margin: 0 0 0 auto; overflow: hidden; border-radius: 26px 46% 26px 26px / 26px 24% 26px 26px; box-shadow: var(--shadow-lg); }
.production-main img { width: 100%; height: 100%; object-fit: cover; }
.production-detail { position: absolute; left: 0; bottom: 34px; width: 44%; aspect-ratio: 1; margin: 0; overflow: hidden; border: 10px solid var(--cream-50); border-radius: 50%; box-shadow: var(--shadow-sm); }
.production-detail img { width: 100%; height: 100%; object-fit: cover; }
.production-caption { position: absolute; right: -10px; bottom: 20px; padding: 12px 18px; border-radius: 999px; background: var(--brown-900); color: var(--cream-50); font-size: .8rem; transform: rotate(-4deg); }

/* Order */
.order-section { background: var(--cream-100); }
.order-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.order-steps article { position: relative; padding: 34px; border: 1px solid rgba(75,36,22,.09); border-radius: var(--radius-md); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.order-steps article:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.step-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 18px; background: var(--cream-200); color: var(--orange-600); }
.step-icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.order-steps article > span { color: var(--orange-600); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.order-steps h3 { margin-top: 8px; }
.order-steps p { margin: 0; color: var(--muted); }
.schedule-card { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 28px; align-items: center; margin-top: 28px; padding: 28px; border-radius: var(--radius-md); background: var(--brown-900); color: var(--cream-50); box-shadow: var(--shadow-sm); }
.schedule-title { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: center; }
.schedule-day { width: 58px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); color: var(--brown-950); font-size: .72rem; font-weight: 800; line-height: 1.1; text-align: center; }
.schedule-day-friday { background: var(--cream-100); }
.schedule-title strong { display: block; }
.schedule-title p { margin: 2px 0 0; color: #dac6ba; font-size: .84rem; }
.schedule-divider { width: 1px; height: 72px; background: rgba(255,255,255,.18); }

/* Gallery */
.gallery-section { background: var(--white); overflow: hidden; }
.instagram-link { display: inline-flex; align-items: center; justify-self: end; gap: 9px; margin-bottom: 10px; color: var(--orange-600); font-weight: 700; }
.instagram-link svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: -8px 0 18px; }
.gallery-toolbar p { margin: 0; color: var(--muted); font-size: .9rem; }
.gallery-controls { display: flex; gap: 10px; flex-shrink: 0; }
.gallery-arrow { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(75,36,22,.18); border-radius: 50%; background: var(--cream-50); color: var(--brown-900); font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.gallery-arrow:hover { transform: translateY(-2px); background: var(--brown-900); color: var(--white); }
.gallery-arrow:focus-visible { outline: 3px solid rgba(243,154,24,.42); outline-offset: 3px; }
.gallery-carousel { position: relative; }
.gallery-track { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x mandatory; scroll-behavior: smooth; overscroll-behavior-inline: contain; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item { position: relative; flex: 0 0 clamp(178px, 20vw, 228px); aspect-ratio: 1 / 1; min-width: 0; overflow: hidden; border: 0; border-radius: 18px; padding: 0; background: var(--cream-200); box-shadow: 0 12px 28px rgba(57,26,15,.10); cursor: zoom-in; scroll-snap-align: start; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent,rgba(35,13,7,.76)); pointer-events: none; }
.gallery-item span { position: absolute; z-index: 2; left: 14px; right: 12px; bottom: 12px; color: var(--white); font-size: .82rem; font-weight: 700; line-height: 1.25; text-align: left; }
.gallery-item:hover img { transform: scale(1.065); filter: saturate(1.05); }
.gallery-progress { height: 4px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: var(--cream-200); }
.gallery-progress span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--orange-500),var(--brown-700)); transform: scaleX(.18); transform-origin: left center; transition: transform .2s ease; }

/* Chocolate transition */
.chocolate-divider { position: relative; z-index: 2; height: 42px; margin-bottom: -1px; overflow: hidden; background: var(--brown-950); }
.chocolate-divider::before { content: ""; position: absolute; inset: 0 0 auto; height: 18px; background: var(--cream-50); border-radius: 0 0 48% 52% / 0 0 100% 100%; }
.chocolate-divider span { position: absolute; top: 7px; width: 22px; border-radius: 0 0 999px 999px; background: var(--cream-50); animation: chocolateDrip 3.8s ease-in-out infinite; transform-origin: top; }
.chocolate-divider span:nth-child(1) { left: 14%; height: 28px; animation-delay: -.4s; }
.chocolate-divider span:nth-child(2) { left: 39%; height: 18px; width: 15px; animation-delay: -1.7s; }
.chocolate-divider span:nth-child(3) { left: 67%; height: 34px; width: 19px; animation-delay: -2.5s; }
.chocolate-divider span:nth-child(4) { left: 86%; height: 22px; width: 13px; animation-delay: -3.1s; }
@keyframes chocolateDrip { 0%,100% { transform: scaleY(.82); } 50% { transform: scaleY(1.12); } }

/* FAQ */
.faq-section { background: var(--cream-100); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,9vw,130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid rgba(75,36,22,.15); }
.faq-list details { border-bottom: 1px solid rgba(75,36,22,.15); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; font-family: "Fraunces", Georgia, serif; font-size: 1.34rem; font-weight: 600; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; display: grid; place-items: center; flex-shrink: 0; border: 1px solid rgba(75,36,22,.16); border-radius: 50%; font-family: "DM Sans", sans-serif; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -4px 50px 24px 0; color: var(--muted); }

/* Contact */
.contact-section { padding: 90px 0; background: var(--orange-500); }
.contact-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; padding: clamp(40px,6vw,78px); border-radius: var(--radius-lg); background: var(--brown-950); color: var(--cream-50); box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-copy h2 { max-width: 720px; }
.contact-copy > p:not(.eyebrow) { max-width: 620px; color: #dac6ba; }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact-links a { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.06); }
.contact-links a > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-500); color: var(--brown-950); font-weight: 800; }
.contact-links small { display: block; color: #cbb4a7; }
.contact-links strong { display: block; }
.contact-action { display: flex; flex-direction: column; align-items: center; padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: rgba(255,255,255,.06); text-align: center; }
.contact-action img { width: 180px; margin-bottom: 20px; padding: 14px; border-radius: 20px; background: var(--cream-100); }
.contact-action small { margin-top: 12px; color: #cbb4a7; }

/* Footer */
.site-footer { padding: 70px 0 20px; background: #241008; color: var(--cream-200); }
.footer-main { display: grid; grid-template-columns: 1.35fr .7fr .9fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo-card { display: inline-flex; padding: 10px; border-radius: 18px; background: var(--cream-100); }
.footer-logo-card img { width: 140px; }
.footer-brand p { max-width: 300px; margin-top: 18px; color: #bfa99c; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column > strong { margin-bottom: 8px; color: var(--white); }
.footer-column a, .footer-column p, .footer-button { color: #bfa99c; font-size: .9rem; text-align: left; }
.footer-column a:hover, .footer-button:hover { color: var(--orange-400); }
.footer-hours p { margin: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #9e887c; font-size: .82rem; }
.footer-bottom p { margin: 0; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: inline-flex; align-items: center; gap: 9px; min-height: 54px; padding: 12px 18px; border-radius: 999px; background: var(--green-whatsapp); color: var(--white); box-shadow: 0 14px 34px rgba(19,101,51,.32); font-size: .9rem; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(19,101,51,.4); }
.whatsapp-float svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* Modal */
.order-modal { position: fixed; z-index: 1300; left: 50%; top: 50%; width: min(calc(100% - 32px), 760px); max-height: min(92dvh, 900px); padding: 34px; border-radius: 28px; background: var(--cream-50); box-shadow: 0 35px 100px rgba(31,12,6,.32); transform: translate(-50%, -46%) scale(.97); opacity: 0; overflow-y: auto; transition: transform .24s ease, opacity .24s ease; }
.order-modal.is-open { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.modal-header h2 { margin: 0; font-size: clamp(2.1rem,5vw,3.4rem); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: var(--brown-700); font-size: .82rem; font-weight: 700; }
.form-full { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(75,36,22,.17); border-radius: 13px; padding: 13px 14px; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--orange-500); box-shadow: 0 0 0 4px rgba(243,154,24,.14); }
textarea { resize: vertical; }
.form-notice { margin: 20px 0; padding: 14px 16px; border-left: 4px solid var(--orange-500); border-radius: 8px; background: var(--cream-100); color: var(--muted); font-size: .84rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 70px 30px 30px; background: rgba(21,8,4,.94); opacity: 0; transition: opacity .2s ease; }
.lightbox.is-open { opacity: 1; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 82vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.45); object-fit: contain; }
.lightbox-close { position: absolute; right: 24px; top: 18px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); font-size: 2rem; cursor: pointer; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.72,.27,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  :root { --header-height: 80px; }
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .header-actions .button { display: none; }
  .brand { width: 98px; height: 66px; }
  .brand img { max-height: 66px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-stamp { left: -34px; width: 126px; }
  .about-grid, .production-grid { gap: 58px; }
  .about-visual { min-height: 570px; }
  .about-main-image { height: 500px; }
  .flavor-panel { grid-template-columns: .8fr 1.2fr; }
  .schedule-card { grid-template-columns: 1fr 1fr; }
  .schedule-divider { display: none; }
  .schedule-card .button { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-hours { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 46px); }
  .hero::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-media { max-width: 620px; }
  .hero-video-shell { aspect-ratio: 4 / 3; max-height: none; border-radius: 30px; }
  .hero-video { object-position: center; }
  .hero-stamp { left: auto; right: -16px; bottom: -32px; }
  .order-note { grid-template-columns: auto 1fr; margin-top: 62px; }
  .order-note .text-link { grid-column: 2; justify-self: start; }
  .about-grid, .production-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .about-copy { order: -1; }
  .about-visual { max-width: 650px; min-height: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .flavor-panel { grid-template-columns: 1fr; }
  .flavor-photo { height: 360px; }
  .manifesto-background { background-attachment: scroll; }
  .chocolate-divider span { animation: none; }
  .production-copy { order: -1; }
  .production-gallery { max-width: 650px; min-height: 630px; }
  .order-steps { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .contact-card { gap: 34px; }
  .contact-action { align-items: flex-start; text-align: left; }
  .contact-action img { align-self: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-hours { grid-column: auto; }
}

@media (max-width: 600px) {
  :root { --header-height: 72px; --radius-lg: 28px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header.is-scrolled { height: 68px; }
  .brand { width: 90px; height: 62px; }
  .brand img { max-height: 62px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .hero { padding-bottom: 48px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; }
  .hero-video-shell { aspect-ratio: 4 / 5; }
  .hero-stamp { width: 112px; right: -6px; }
  .order-note { grid-template-columns: 1fr; padding: 20px; }
  .order-note-icon { display: none; }
  .order-note .text-link { grid-column: 1; }
  .about-visual { min-height: 510px; }
  .about-main-image { width: 82%; height: 430px; }
  .about-small-image { width: 48%; border-width: 7px; }
  .about-seal { left: -8px; bottom: 25px; width: 128px; }
  .about-seal strong { font-size: 1.25rem; }
  .flavor-tabs { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); }
  .flavor-tab { min-width: 0; padding-inline: 8px; font-size: .84rem; }
  .flavor-photo { height: 300px; }
  .flavor-content { padding: 28px 22px; }
  .flavor-list li { align-items: flex-start; }
  .flavor-list span { max-width: 72%; }
  .flavor-footer { align-items: stretch; flex-direction: column; }
  .manifesto { min-height: 560px; }
  .manifesto-inner { padding-block: 82px; }
  .manifesto blockquote { font-size: clamp(2.5rem,12vw,4rem); }
  .production-gallery { min-height: 515px; }
  .production-main { width: 84%; height: 460px; }
  .production-detail { width: 47%; border-width: 7px; }
  .production-caption { right: 0; bottom: -2px; }
  .schedule-card { grid-template-columns: 1fr; padding: 22px; }
  .schedule-card .button { grid-column: 1; }
  .section { padding: 52px 0; }
  .gallery-toolbar { align-items: flex-start; margin-top: 0; }
  .gallery-toolbar p { max-width: 220px; font-size: .8rem; }
  .gallery-arrow { width: 40px; height: 40px; }
  .gallery-item { flex-basis: 176px; border-radius: 16px; }
  .gallery-item span { left: 12px; bottom: 10px; font-size: .76rem; }
  .contact-section { padding: 56px 0; }
  .contact-card { padding: 30px 22px; }
  .contact-links { display: grid; }
  .contact-links a { min-width: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand, .footer-hours { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .order-modal { width: calc(100% - 18px); padding: 24px 18px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
}

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