:root {
  --red-950: #35130f;
  --red-900: #641515;
  --red-800: #841717;
  --red-700: #a81718;
  --red-600: #c52222;
  --gold-500: #f2b705;
  --gold-400: #f8ca3a;
  --gold-300: #ffdc70;
  --cream: #fff8e8;
  --cream-deep: #f9edcf;
  --white: #fffdf7;
  --ink: #35130f;
  --muted: #755b50;
  --green: #214f37;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(25, 28, 33, 0.02), 0 0 0 1px rgba(25, 28, 33, 0.08);
  --shadow-md: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 1px -0.5px rgba(0, 0, 0, 0.06), 0 3px 3px -1.5px rgba(0, 0, 0, 0.06), 0 6px 6px -3px rgba(0, 0, 0, 0.06), 0 12px 12px -6px rgba(0, 0, 0, 0.06), 0 24px 24px -12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
svg { display: block; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 200; transform: translateY(-150%); padding: 10px 16px; border-radius: 10px; background: white; box-shadow: var(--shadow-sm); font-weight: 700; transition-property: transform; transition-duration: 180ms; }
.skip-link:focus-visible { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; padding: 14px 0; transition-property: padding, background-color, box-shadow; transition-duration: 220ms; background: rgba(255, 248, 232, 0.88); backdrop-filter: blur(16px); }
.site-header.is-scrolled { padding: 8px 0; background: rgba(255, 253, 247, 0.94); box-shadow: 0 1px 0 rgba(53, 19, 15, 0.08), 0 12px 30px rgba(53, 19, 15, 0.04); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 58px; }
.brand { display: inline-flex; align-items: center; min-height: 48px; gap: 10px; color: var(--red-700); }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--red-700); color: var(--gold-500); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15); }
.brand-mark svg { width: 35px; height: 35px; }
.brand-copy { display: flex; flex-direction: column; gap: 0; line-height: 1; text-transform: uppercase; letter-spacing: 0.03em; }
.brand-copy strong { font-size: 16px; font-weight: 900; }
.brand-copy span { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: 0.28em; color: var(--ink); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { position: relative; min-height: 44px; display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: var(--red-700); transform: scaleX(0); transform-origin: right; transition-property: transform; transition-duration: 200ms; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 15px; background: var(--white); box-shadow: var(--shadow-sm); cursor: pointer; padding: 14px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--red-800); transition-property: transform, opacity; transition-duration: 200ms; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 52px; padding: 0 18px 0 20px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; font-weight: 800; cursor: pointer; transition-property: scale, transform, background-color, color, box-shadow; transition-duration: 180ms; transition-timing-function: ease-out; }
.button svg, .card-action svg, .mobile-contact-bar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button:active, .card-action:active, .mobile-contact-bar a:active { scale: 0.96; }
.button-gold { color: var(--red-950); background: var(--gold-500); box-shadow: 0 0 0 1px rgba(53, 19, 15, 0.08), 0 7px 0 #d99c00, 0 14px 25px rgba(53, 19, 15, 0.18); }
.button-gold:hover { background: var(--gold-400); box-shadow: 0 0 0 1px rgba(53, 19, 15, 0.08), 0 5px 0 #d99c00, 0 12px 22px rgba(53, 19, 15, 0.22); }
.button-ghost { color: var(--white); background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.14); }
.button-small { min-height: 44px; padding-inline: 16px 14px; border-radius: 13px; }

.hero { position: relative; min-height: 880px; padding: 138px 0 0; color: var(--white); background: var(--red-700); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.22; background-image: radial-gradient(rgba(255,255,255,.55) .65px, transparent .65px); background-size: 9px 9px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero::after { content: ""; position: absolute; width: 740px; height: 740px; right: -210px; top: 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.018); }
.hero-flight-line { position: absolute; z-index: 1; left: -90px; top: 140px; width: 340px; height: 440px; border: 2px dashed rgba(255, 220, 112, .3); border-radius: 50%; transform: rotate(-32deg); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 30px; min-height: 610px; }
.hero-copy { min-width: 0; padding-bottom: 55px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px 8px 9px; border-radius: 999px; color: var(--gold-300); background: rgba(91, 10, 10, .4); box-shadow: inset 0 0 0 1px rgba(255,255,255,.13); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow-dot { width: 25px; height: 25px; border-radius: 50%; background: var(--gold-500); box-shadow: inset 0 0 0 6px var(--red-800); }
.hero h1 { margin: 24px 0 24px; max-width: 650px; font-size: clamp(54px, 6.8vw, 93px); line-height: .95; letter-spacing: -.06em; font-weight: 900; text-wrap: balance; }
.hero h1 span { color: var(--gold-500); }
.hero-lead { max-width: 595px; margin: 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 35px; }
.hero-proof p { margin: 0; font-size: 11px; line-height: 1.4; color: rgba(255,255,255,.65); }
.hero-proof strong { color: var(--white); font-size: 12px; }
.proof-avatars { display: flex; }
.proof-avatars span { display: grid; place-items: center; width: 31px; height: 31px; margin-left: -7px; border-radius: 50%; color: var(--red-950); background: var(--gold-400); border: 2px solid var(--red-700); font-size: 8px; font-weight: 900; }
.proof-avatars span:first-child { margin-left: 0; background: var(--white); }
.proof-avatars span:last-child { background: var(--red-950); color: var(--gold-400); }

.hero-visual { position: relative; height: 610px; }
.sun-disc { position: absolute; width: 460px; height: 460px; top: 38px; right: 38px; border-radius: 50%; background: var(--gold-500); box-shadow: inset -25px -20px 0 rgba(217, 156, 0, .18), 0 30px 80px rgba(54, 8, 8, .25); }
.sun-disc::before { content: ""; position: absolute; inset: 25px; border-radius: inherit; border: 1px solid rgba(126, 52, 0, .15); }
.product-stage { position: absolute; inset: 52px 0 0 42px; }
.flight-path { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.flight-path path { fill: none; stroke: rgba(255,255,255,.35); stroke-width: 2; stroke-dasharray: 7 9; stroke-linecap: round; }
.hero-product-photo { position: absolute; z-index: 3; width: 560px; height: 560px; left: -5px; top: -28px; object-fit: contain; filter: drop-shadow(0 18px 14px rgba(53, 19, 15, .2)) drop-shadow(0 40px 34px rgba(53, 19, 15, .22)); transform: rotate(1deg); }
.visual-badge { position: absolute; z-index: 6; min-height: 70px; display: flex; align-items: center; gap: 11px; padding: 10px 14px; border-radius: 22px; color: var(--red-950); background: rgba(255,253,247,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.visual-badge svg { width: 30px; height: 30px; fill: var(--gold-500); stroke: var(--red-700); stroke-width: 1.5; }
.visual-badge span { font-size: 10px; line-height: 1.4; }
.visual-badge strong { display: block; font-size: 12px; }
.badge-top { top: 55px; right: -5px; transform: rotate(4deg); }
.badge-bottom { left: 10px; bottom: 75px; transform: rotate(-4deg); }
.badge-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--red-700); color: var(--gold-400); font-weight: 900; }

.trust-strip { position: relative; z-index: 4; margin-top: 2px; min-height: 125px; padding: 25px 30px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; color: var(--ink); background: var(--white); border-radius: 30px 30px 0 0; box-shadow: var(--shadow-lg); }
.trust-item { min-height: 65px; padding: 0 25px; display: flex; align-items: center; gap: 15px; }
.trust-item + .trust-item { border-left: 1px solid rgba(53,19,15,.1); }
.icon-box { flex: 0 0 auto; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 15px; color: var(--red-700); background: var(--cream-deep); }
.icon-box svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-item > span:last-child { display: flex; flex-direction: column; }
.trust-item strong { font-size: 13px; }
.trust-item small { color: var(--muted); font-size: 10px; }

.products { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 55px; }
.section-heading h2, .process-head h2 { margin: 8px 0 0; font-size: clamp(42px,5vw,68px); line-height: 1.02; letter-spacing: -.055em; }
.section-heading > p { max-width: 435px; margin: 0 0 4px; color: var(--muted); }
.section-kicker { color: var(--red-700); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker.light { color: var(--gold-400); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { position: relative; padding: 12px; border-radius: 34px; background: var(--white); box-shadow: var(--shadow-md); transition-property: transform, box-shadow; transition-duration: 220ms; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-card.featured { background: var(--red-700); color: var(--white); }
.featured-ribbon { position: absolute; z-index: 4; top: 20px; right: 3px; padding: 7px 13px; border-radius: 8px 0 0 8px; color: var(--red-950); background: var(--gold-500); box-shadow: var(--shadow-sm); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.product-art { position: relative; height: 330px; border-radius: 22px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: linear-gradient(145deg,#f8ead0,#edc876); }
.product-art::before { content: ""; position: absolute; z-index: 1; width: 230px; height: 230px; top: 34px; border-radius: 50%; border: 1px solid rgba(111,47,12,.15); box-shadow: 0 0 0 30px rgba(255,255,255,.12), 0 0 0 62px rgba(255,255,255,.08); }
.art-medium { background: linear-gradient(145deg,#f4bf22,#e39b00); }
.art-large { background: linear-gradient(145deg,#eed99f,#e8b95a); }
.size-chip { position: absolute; z-index: 2; top: 17px; left: 17px; padding: 6px 10px; border-radius: 999px; background: rgba(255,253,247,.82); box-shadow: var(--shadow-sm); color: var(--red-950); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; backdrop-filter: blur(8px); }
.product-photo { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; outline: 1px solid oklch(0 0 0 / .1); outline-offset: -1px; transition-property: filter; transition-duration: 220ms; }
.art-small .product-photo { scale: .9; border-radius: 20px; }
.art-large .product-photo { scale: 1.08; }
.product-card:hover .product-photo { filter: saturate(1.06) contrast(1.02); }
.product-info { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 20px 13px 17px; }
.product-info h3 { margin: 0; font-size: 18px; line-height: 1.3; }
.product-info p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.featured .product-info p { color: rgba(255,255,255,.6); }
.product-info > strong { color: var(--red-700); font-size: 22px; letter-spacing: -.04em; }
.featured .product-info > strong { color: var(--gold-400); }
.card-action { min-height: 48px; padding: 0 15px 0 17px; border-radius: 15px; display: flex; align-items: center; justify-content: space-between; color: var(--red-700); background: var(--cream); font-size: 12px; font-weight: 800; transition-property: scale, background-color, color; transition-duration: 180ms; }
.card-action:hover { color: var(--white); background: var(--red-700); }
.featured .card-action { color: var(--red-950); background: var(--gold-500); }
.featured .card-action:hover { background: var(--gold-400); }
.product-note { margin: 30px 0 0; text-align: center; color: var(--muted); font-size: 12px; }
.product-note a { color: var(--red-700); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.story { position: relative; overflow: hidden; color: var(--white); background: var(--red-900); }
.story::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(30deg,transparent 40%,rgba(255,255,255,.16) 41%,transparent 42%); background-size: 50px 50px; }
.story-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 80px; }
.story-visual { position: relative; min-height: 535px; }
.story-word { position: absolute; font-size: clamp(100px,13vw,190px); font-weight: 900; line-height: .75; letter-spacing: -.1em; color: rgba(255,255,255,.06); }
.word-hanh { top: 30px; left: -12px; }.word-phi { right: 15px; bottom: 40px; }
.meaning-card { position: absolute; z-index: 2; width: 240px; min-height: 205px; padding: 28px; border-radius: 28px; display: flex; flex-direction: column; background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.meaning-card small { color: var(--red-700); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.meaning-card strong { margin-top: 18px; font-family: "Lora", serif; font-style: italic; font-size: 58px; line-height: 1; }
.meaning-card span { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(53,19,15,.12); color: var(--muted); font-size: 12px; }
.card-hanh { top: 50px; left: 25px; transform: rotate(-7deg); }.card-phi { right: 30px; bottom: 55px; transform: rotate(8deg); background: var(--gold-500); }
.story-arrow { position: absolute; z-index: 1; inset: 105px 50px 80px 50px; width: calc(100% - 100px); height: calc(100% - 185px); overflow: visible; }
.story-arrow path { fill: none; stroke: rgba(255,220,112,.5); stroke-width: 3; stroke-dasharray: 8 10; stroke-linecap: round; }
.story-copy h2 { margin: 8px 0 30px; font-size: clamp(48px,5.5vw,74px); line-height: .98; letter-spacing: -.06em; }
.story-copy blockquote { margin: 0; padding: 24px 0 24px 27px; border-left: 3px solid var(--gold-500); color: rgba(255,255,255,.82); font-family: "Lora", serif; font-size: 18px; line-height: 1.8; }
.slogan-lockup { margin-top: 35px; display: flex; flex-direction: column; }
.slogan-lockup span { color: rgba(255,255,255,.5); font-size: 11px; }
.slogan-lockup strong { color: var(--gold-400); font-size: 21px; }

.pairings { background: var(--white); }
.section-heading.compact { margin-bottom: 45px; }
.pairing-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2,280px); gap: 20px; }
.pairing-card { position: relative; overflow: hidden; min-height: 280px; padding: 32px; border-radius: 34px; display: flex; flex-direction: column; justify-content: space-between; background: var(--cream-deep); box-shadow: var(--shadow-md); }
.pairing-wide { grid-row: 1 / 3; min-height: 580px; color: var(--white); background: var(--green); }
.pairing-red { color: var(--white); background: var(--red-700); }
.pairing-gold { color: var(--red-950); background: var(--gold-500); }
.pairing-card > div:last-child { position: relative; z-index: 2; }
.pairing-card > div:last-child > span { font-size: 10px; font-weight: 800; opacity: .55; }
.pairing-card h3 { margin: 7px 0 4px; font-size: clamp(28px,3.2vw,45px); line-height: 1; letter-spacing: -.04em; }
.pairing-card p { margin: 0; font-size: 12px; opacity: .72; }
.food-illustration { position: absolute; }
.noodles { width: 380px; height: 380px; top: 0; right: -20px; border-radius: 50%; background: #f5e3b8; box-shadow: inset 0 0 0 25px #e9c878, 0 30px 50px rgba(0,0,0,.25); transform: rotate(10deg); }
.noodles::before { content: ""; position: absolute; inset: 60px; border-radius: 50%; background: repeating-radial-gradient(ellipse at center,#f7d06f 0 9px,#dc8a1e 10px 15px); }
.noodles span { position: absolute; z-index: 2; width: 72px; height: 18px; border: 7px solid #b96818; border-left-color: transparent; border-radius: 50%; left: var(--x); top: var(--y); transform: rotate(var(--r)); }
.noodles span:nth-child(1){--x:110px;--y:120px;--r:20deg}.noodles span:nth-child(2){--x:195px;--y:180px;--r:-32deg}.noodles span:nth-child(3){--x:95px;--y:235px;--r:8deg}.noodles i { position: absolute; z-index: 3; width: 190px; height: 12px; top: 40px; right: -10px; border-radius: 6px; background: #5f1a13; transform: rotate(-32deg); box-shadow: 0 20px #7d271d; }
.rice { width: 250px; height: 170px; right: -25px; top: 15px; border-radius: 50% 50% 45% 45%; background: #fff1bf; box-shadow: inset 0 -30px #ead18b, 0 25px 35px rgba(65,5,5,.25); transform: rotate(-6deg); }
.rice::after { content: ""; position: absolute; width: 120px; height: 70px; left: 45px; top: 15px; border-radius: 50%; background: repeating-radial-gradient(ellipse,#d18218 0 5px,#efb332 7px 10px); }
.rice span { position: absolute; z-index: 2; width: 42px; height: 42px; right: 27px; top: 43px; border-radius: 50%; background: #e98618; box-shadow: inset -8px -5px #c85d0b; }
.salad { width: 250px; height: 160px; right: -30px; top: 12px; border-radius: 50% 50% 45% 45%; background: #fff8dd; box-shadow: inset 0 -28px #e6c372, 0 22px 30px rgba(86,50,0,.18); transform: rotate(6deg); }
.salad::after { content: ""; position: absolute; inset: 15px 35px 55px; border-radius: 50%; background: radial-gradient(circle at 30% 30%,#cf2929 0 12%,transparent 13%),radial-gradient(circle at 70% 55%,#e9f0a5 0 16%,transparent 17%),repeating-radial-gradient(ellipse,#4f853b 0 13px,#7aa64e 14px 25px); }

.process { background: var(--cream); }
.process-head { text-align: center; margin-bottom: 60px; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; counter-reset: steps; }
.process-list li { position: relative; min-height: 330px; padding: 25px; border-radius: 30px; display: flex; flex-direction: column; background: var(--white); box-shadow: var(--shadow-md); }
.step-number { color: var(--red-700); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.step-icon { width: 92px; height: 92px; margin: 42px auto 35px; border-radius: 31px; display: grid; place-items: center; color: var(--red-700); background: var(--cream-deep); transform: rotate(6deg); }
.process-list li:nth-child(2) .step-icon { color: var(--gold-500); background: var(--red-700); transform: rotate(-5deg); }
.step-icon svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin: 0 0 8px; font-size: 21px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; }

.contact { padding-top: 40px; background: var(--cream); }
.contact-panel { position: relative; min-height: 500px; padding: 75px; border-radius: 44px; overflow: hidden; display: flex; align-items: center; color: var(--white); background: linear-gradient(135deg,var(--red-700),var(--red-900)); box-shadow: var(--shadow-lg); }
.contact-panel::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(rgba(255,255,255,.75) .7px,transparent .7px); background-size: 11px 11px; }
.contact-content { position: relative; z-index: 2; width: 62%; }
.contact h2 { margin: 8px 0 20px; font-size: clamp(48px,6vw,78px); line-height: .97; letter-spacing: -.06em; }
.contact h2 em { color: var(--gold-400); font-family: "Lora", serif; font-weight: 600; }
.contact-content > p { max-width: 520px; margin: 0; color: rgba(255,255,255,.68); }
.contact-actions { display: flex; align-items: center; gap: 25px; margin-top: 33px; }
.phone-display { min-height: 54px; display: flex; flex-direction: column; justify-content: center; }
.phone-display small { color: rgba(255,255,255,.5); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.phone-display strong { color: var(--white); font-size: 18px; }
.contact-seal { position: absolute; z-index: 2; right: 80px; top: 50%; width: 210px; height: 210px; margin-top: -105px; border: 1px solid rgba(255,220,112,.35); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gold-400); transform: rotate(9deg); box-shadow: 0 0 0 14px rgba(255,220,112,.04), 0 0 0 30px rgba(255,220,112,.03); }
.contact-seal::before,.contact-seal::after { content: ""; position: absolute; width: 80px; height: 1px; background: rgba(255,220,112,.35); }
.contact-seal::before { left: -70px; top: 30px; transform: rotate(-24deg); }.contact-seal::after { right: -70px; bottom: 30px; transform: rotate(-24deg); }
.contact-seal span { font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.contact-seal strong { font-size: 72px; line-height: 1; }
.contact-decor { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); }
.decor-1 { width: 450px; height: 450px; right: -70px; top: -190px; box-shadow: 0 0 0 70px rgba(255,255,255,.025); }.decor-2 { width: 260px; height: 260px; left: -110px; bottom: -130px; }

.footer { padding: 78px 0 100px; background: var(--cream); }
.footer-grid { padding-bottom: 45px; display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: center; gap: 40px; border-bottom: 1px solid rgba(53,19,15,.1); }
.brand-footer .brand-mark { color: var(--gold-500); }.footer-grid > p { max-width: 420px; margin: 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; justify-content: flex-end; gap: 25px; font-size: 12px; font-weight: 700; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--red-700); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; }
.footer-bottom a:hover { color: var(--red-700); }
.mobile-contact-bar { display: none; }

.reveal { opacity: 0; transform: translateY(20px); filter: blur(4px); transition-property: opacity, transform, filter; transition-duration: 520ms; transition-timing-function: cubic-bezier(.2,0,0,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.product-grid .reveal:nth-child(2), .process-list .reveal:nth-child(2) { transition-delay: 90ms; }
.product-grid .reveal:nth-child(3), .process-list .reveal:nth-child(3) { transition-delay: 180ms; }
.stagger-1,.stagger-2,.stagger-3,.stagger-4,.stagger-5 { opacity: 0; transform: translateY(12px); filter: blur(4px); animation: hero-in 480ms ease-out forwards; }
.stagger-1{animation-delay:80ms}.stagger-2{animation-delay:160ms}.stagger-3{animation-delay:240ms}.stagger-4{animation-delay:320ms}.stagger-5{animation-delay:400ms}
@keyframes hero-in { to { opacity: 1; transform: translateY(0); filter: blur(0); } }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }.nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; }.hero-visual { transform: scale(.88); transform-origin: center; }
  .story-grid { gap: 30px; }.story-visual { transform: scale(.9); transform-origin: center; }
  .contact-seal { right: 45px; width: 180px; height: 180px; margin-top: -90px; }.contact-content { width: 68%; }
}

@media (max-width: 820px) {
  .section { padding: 84px 0; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; z-index: 40; top: 84px; right: 15px; left: 15px; padding: 15px; border-radius: 27px; display: flex; flex-direction: column; align-items: stretch; gap: 2px; color: var(--ink); background: rgba(255,253,247,.98); box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(-12px); pointer-events: none; transition-property: opacity, transform; transition-duration: 200ms; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav > a:not(.button) { padding: 0 15px; border-radius: 12px; }
  .main-nav > a:not(.button):hover { background: var(--cream-deep); }.main-nav > a::after { display: none; }
  .nav-cta { display: inline-flex; margin-top: 8px; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 0; }.hero-copy { padding-bottom: 0; }.hero-visual { height: 570px; width: 620px; justify-self: center; transform: scale(.88); margin-top: -30px; }
  .hero-lead { max-width: 680px; }.trust-strip { margin-top: -35px; grid-template-columns: 1fr; padding-block: 18px; border-radius: 28px 28px 0 0; }
  .trust-item { padding-block: 14px; }.trust-item + .trust-item { border-left: 0; border-top: 1px solid rgba(53,19,15,.1); }
  .section-heading { align-items: flex-start; flex-direction: column; }.section-heading > p { max-width: 600px; }
  .product-grid { grid-template-columns: 1fr 1fr; }.product-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .story-grid { grid-template-columns: 1fr; }.story-visual { order: 2; width: 600px; max-width: 100%; margin: -20px auto -50px; }.story-copy { max-width: 650px; }
  .pairing-grid { grid-template-columns: 1fr; grid-template-rows: 430px 250px 250px; }.pairing-wide { grid-row: auto; min-height: 430px; }.noodles { width: 330px; height: 330px; }
  .process-list { grid-template-columns: 1fr; }.process-list li { min-height: 210px; display: grid; grid-template-columns: 70px 120px 1fr; align-items: center; }.step-icon { margin: 0; }.step-number { align-self: start; }.process-list div { align-self: center; }
  .contact-panel { padding: 60px 45px; }.contact-content { width: 100%; padding-right: 180px; }.contact-seal { right: 30px; width: 150px; height: 150px; margin-top: -75px; }.contact-seal strong { font-size: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > p { grid-row: 2; grid-column: 1 / -1; }.footer-links { justify-content: flex-end; }
}

@media (max-width: 560px) {
  body { padding-bottom: 76px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { padding-block: 8px; }.nav-shell { min-height: 55px; }.brand-mark { width: 42px; height: 42px; }.brand-copy strong { font-size: 14px; }
  .hero { padding-top: 115px; }.hero h1 { font-size: clamp(43px,13vw,58px); }.hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }.button { width: 100%; }.hero-proof { margin-top: 28px; }
  .hero-visual { width: 620px; height: 500px; transform: scale(.72); margin-top: -70px; margin-bottom: -55px; }
  .hero-product-photo { width: 500px; height: 500px; left: 0; top: 0; }
  .badge-top { right: 135px; }
  .badge-bottom { left: 135px; }
  .trust-strip { margin-top: 0; padding-inline: 14px; }.trust-item { padding-inline: 10px; }
  .section { padding: 72px 0; }.section-heading { gap: 22px; margin-bottom: 35px; }.section-heading h2, .process-head h2 { font-size: 43px; }.section-heading > p { font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; gap: 17px; }.product-card:last-child { grid-column: auto; width: 100%; }.product-art { height: 300px; }
  .story { padding-bottom: 45px; }.story-copy h2 { font-size: 49px; }.story-copy blockquote { font-size: 16px; padding-left: 20px; }.slogan-lockup strong { font-size: 18px; }.story-visual { height: 430px; min-height: 430px; width: 430px; left: 50%; margin-left: -215px; transform: scale(.78); }
  .pairing-grid { grid-template-rows: 410px 250px 250px; }.pairing-card { padding: 25px; border-radius: 28px; }.pairing-card h3 { font-size: 31px; }.noodles { right: -90px; top: -5px; }
  .process-head { text-align: left; margin-bottom: 38px; }.process-list li { min-height: 240px; padding: 22px; grid-template-columns: 55px 1fr; grid-template-rows: 120px 1fr; }.step-icon { width: 82px; height: 82px; grid-column: 2; }.step-number { grid-row: 1; }.process-list div { grid-column: 1 / -1; }.process-list p { font-size: 13px; }
  .contact { padding-top: 20px; }.contact-panel { width: calc(100% - 24px); min-height: 600px; padding: 45px 26px 210px; border-radius: 32px; align-items: flex-start; }.contact-content { padding-right: 0; }.contact h2 { font-size: 49px; }.contact-actions { flex-direction: column; align-items: stretch; gap: 18px; }.phone-display { text-align: center; }.contact-seal { top: auto; bottom: 35px; right: 50%; margin: 0 -75px 0 0; }
  .footer { padding: 60px 0 30px; }.footer-grid { grid-template-columns: 1fr; gap: 22px; }.footer-links { justify-content: flex-start; flex-wrap: wrap; }.footer-grid > p { grid-column: auto; grid-row: auto; }.footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-contact-bar { position: fixed; z-index: 45; right: 9px; bottom: 9px; left: 9px; min-height: 60px; padding: 7px; border-radius: 20px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 6px; background: rgba(255,253,247,.95); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
  .mobile-contact-bar a { min-height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; color: var(--red-700); font-size: 12px; font-weight: 800; transition-property: scale, background-color; transition-duration: 160ms; }
  .mobile-contact-bar a:last-child { color: var(--red-950); background: var(--gold-500); }
}

@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, .stagger-1, .stagger-2, .stagger-3, .stagger-4, .stagger-5 { opacity: 1; transform: none; filter: none; }
}
