:root {
  --plum: #4b102a;
  --plum-deep: #300918;
  --copper: #c56b50;
  --copper-light: #dc9476;
  --cream: #fff6e7;
  --paper: #fbf8f2;
  --rose: #f0b6aa;
  --ink: #25171d;
  --muted: #74646a;
  --line: rgba(75, 16, 42, .14);
  --shadow: 0 24px 70px rgba(48, 9, 24, .13);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 200; background: var(--cream); color: var(--plum); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 92px; background: rgba(251, 248, 242, .86); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: .3s ease; }
.site-header.scrolled { height: 76px; border-color: var(--line); box-shadow: 0 8px 30px rgba(48, 9, 24, .06); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--plum); }
.brand img { width: 68px; height: 68px; object-fit: contain; transition: .3s ease; }
.scrolled .brand img { width: 56px; height: 56px; }
.brand span { display: grid; line-height: 1.2; }
.brand strong { font-family: var(--serif); font-size: 1.22rem; }
.brand small { color: var(--copper); font-size: .74rem; margin-top: 4px; letter-spacing: .06em; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: .92rem; font-weight: 700; color: var(--plum); }
.main-nav > a:not(.nav-order) { position: relative; }
.main-nav > a:not(.nav-order)::after { content: ''; position: absolute; height: 2px; background: var(--copper); inset: auto 100% -6px 0; transition: .25s ease; }
.main-nav > a:not(.nav-order):hover::after { right: 0; }
.nav-order { padding: 12px 20px; border-radius: 999px; color: var(--cream); background: var(--plum); transition: .25s ease; }
.nav-order:hover { transform: translateY(-2px); background: var(--copper); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--plum); padding: 12px 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--cream); transition: .25s; }

.hero { min-height: 100vh; padding: 138px 0 88px; background: radial-gradient(circle at 80% 18%, rgba(240, 182, 170, .45), transparent 28%), linear-gradient(135deg, var(--cream), var(--paper) 58%); position: relative; isolation: isolate; display: grid; align-items: center; }
.hero::before { content: ''; position: absolute; z-index: -1; width: 720px; height: 720px; border: 1px solid rgba(197,107,80,.22); border-radius: 50%; right: -220px; top: -250px; box-shadow: 0 0 0 36px rgba(197,107,80,.035), 0 0 0 72px rgba(197,107,80,.025); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--copper); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; }
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .story-copy h2, .order-panel h2 { font-family: var(--serif); color: var(--plum); font-weight: 700; line-height: .98; letter-spacing: -.045em; margin: 22px 0 26px; }
.hero h1 { font-size: clamp(3.7rem, 7vw, 6.8rem); }
.hero h1 em { color: var(--copper); font-weight: inherit; }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: .92rem; transition: transform .25s, box-shadow .25s, background .25s; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--plum); color: var(--cream); box-shadow: 0 13px 25px rgba(75,16,42,.22); }
.button-primary:hover { background: var(--copper); }
.button-ghost { border: 1px solid rgba(75,16,42,.25); color: var(--plum); }
.button-ghost:hover { background: white; box-shadow: var(--shadow); }
.hero-notes { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 35px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.hero-notes span { display: flex; align-items: center; gap: 8px; }
.hero-notes span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }
.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.hero-image-wrap { width: min(100%, 570px); aspect-ratio: 1; padding: 18px; border-radius: 50% 50% 18% 50%; background: var(--plum); box-shadow: var(--shadow); overflow: hidden; transform: rotate(2deg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transform: rotate(-2deg) scale(1.04); }
.hero-stamp { position: absolute; top: 0; left: 0; width: 142px; height: 142px; border-radius: 50%; background: var(--cream); box-shadow: 0 16px 35px rgba(48,9,24,.16); display: grid; place-items: center; animation: float 5s ease-in-out infinite; }
.hero-stamp img { width: 118px; }
.hero-caption { position: absolute; right: -14px; bottom: 30px; min-width: 220px; padding: 19px 24px; border-radius: 16px; background: var(--cream); box-shadow: var(--shadow); color: var(--plum); display: grid; }
.hero-caption strong { font-family: var(--serif); font-size: 1.2rem; }
.hero-caption span { color: var(--muted); font-size: .83rem; }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; display: grid; place-items: center; gap: 6px; }
.scroll-cue span { width: 1px; height: 25px; background: var(--copper); }
@keyframes float { 50% { transform: translateY(-12px) rotate(-3deg); } }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; margin-bottom: 55px; }
.section-heading h2, .story-copy h2, .order-panel h2 { font-size: clamp(2.7rem, 5vw, 4.7rem); }
.section-heading p { color: var(--muted); max-width: 440px; margin: 0 0 12px; }
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.food-card { background: white; border: 1px solid rgba(75,16,42,.08); border-radius: 22px; overflow: hidden; box-shadow: 0 18px 50px rgba(48,9,24,.075); transition: transform .35s, box-shadow .35s; }
.food-card:hover { transform: translateY(-9px); box-shadow: var(--shadow); }
.food-image { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #ead7c2; }
.food-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.food-card:hover .food-image img { transform: scale(1.045); }
.food-number { position: absolute; right: 15px; top: 15px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,246,231,.93); color: var(--plum); font-weight: 800; }
.food-content { padding: 28px; }
.food-content h3 { margin: 0 0 12px; color: var(--plum); font-family: var(--serif); font-size: 1.62rem; }
.food-content p { color: var(--muted); font-size: .94rem; line-height: 1.7; min-height: 78px; }
.food-content a { display: inline-flex; align-items: center; gap: 12px; color: var(--copper); font-weight: 800; margin-top: 8px; }
.food-content a span { transition: transform .25s; }
.food-content a:hover span { transform: translateX(5px); }

.story-section { background: var(--cream); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: center; }
.story-mark { min-height: 560px; position: relative; display: grid; place-items: center; }
.story-mark::before { content: ''; width: 430px; height: 430px; position: absolute; border-radius: 50%; background: var(--plum); box-shadow: 0 30px 80px rgba(75,16,42,.2); }
.story-mark::after { content: ''; position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,246,231,.28); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,246,231,.04), 0 0 0 70px rgba(255,246,231,.03); }
.story-mark img { position: relative; z-index: 2; width: 310px; filter: drop-shadow(0 18px 30px rgba(48,9,24,.18)); }
.story-mark span { position: absolute; z-index: 3; bottom: 42px; background: var(--copper); color: var(--cream); border-radius: 999px; padding: 10px 23px; font-family: var(--serif); font-weight: 700; }
.story-copy p { color: var(--muted); margin: 0 0 18px; }
.story-copy strong { color: var(--plum); }
.story-copy blockquote { margin: 30px 0; padding: 3px 0 3px 24px; border-left: 3px solid var(--copper); color: var(--plum); font-family: var(--serif); font-size: 1.35rem; line-height: 1.55; font-weight: 700; }

.order-section { background: var(--paper); }
.order-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; padding: 75px; color: var(--cream); background: radial-gradient(circle at 80% 20%, rgba(197,107,80,.35), transparent 30%), var(--plum); border-radius: 34px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.order-panel::after { content: ''; position: absolute; width: 350px; height: 350px; right: -170px; bottom: -240px; border: 1px solid rgba(255,246,231,.3); border-radius: 50%; box-shadow: 0 0 0 32px rgba(255,246,231,.04), 0 0 0 64px rgba(255,246,231,.03); }
.eyebrow.light { color: var(--copper-light); }
.order-panel h2 { color: var(--cream); margin-bottom: 22px; }
.order-panel p { color: rgba(255,246,231,.72); max-width: 570px; }
.order-contact { position: relative; z-index: 2; display: grid; justify-items: start; }
.order-contact > span { color: var(--copper-light); font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.order-contact .phone { font-family: var(--serif); font-size: clamp(1.85rem, 3vw, 2.65rem); margin: 8px 0 25px; font-weight: 700; }
.button-light { background: var(--cream); color: var(--plum); }
.button-light:hover { background: var(--copper-light); }
.order-contact small { margin-top: 16px; color: rgba(255,246,231,.58); max-width: 320px; line-height: 1.5; }

.site-footer { padding: 70px 0 25px; background: var(--plum-deep); color: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 40px; align-items: center; padding-bottom: 45px; }
.footer-brand { color: var(--cream); }
.footer-brand img { width: 80px; height: 80px; }
.footer-brand small { color: var(--copper-light); }
.footer-links { display: grid; gap: 9px; color: rgba(255,246,231,.72); }
.footer-links a:hover, .footer-social a:hover { color: var(--copper-light); }
.footer-social { display: grid; gap: 6px; }
.footer-social span { color: rgba(255,246,231,.5); font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-social a { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; }
.footer-bottom { border-top: 1px solid rgba(255,246,231,.12); padding-top: 20px; display: flex; justify-content: space-between; color: rgba(255,246,231,.5); font-size: .77rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; background: #1fa855; color: white; min-height: 52px; padding: 10px 17px; border-radius: 999px; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.18); transition: .25s; }
.whatsapp-float:hover { transform: translateY(-4px); }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid, .story-grid, .order-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 125px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-notes { justify-content: center; }
  .hero-visual { min-height: 520px; width: min(650px, 100%); margin: auto; }
  .hero-stamp { left: 4%; }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .food-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); margin: auto; }
  .story-grid { gap: 40px; }
  .story-copy { max-width: 760px; margin: auto; }
  .order-panel { gap: 35px; padding: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 78px; }
  .brand img, .scrolled .brand img { width: 54px; height: 54px; }
  .brand strong { font-size: 1rem; }
  .brand small { font-size: .65rem; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 14px; right: 14px; top: 72px; padding: 25px; border-radius: 18px; background: var(--cream); box-shadow: var(--shadow); display: grid; gap: 18px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav-order { text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-grid { gap: 35px; }
  .hero-visual { min-height: 390px; }
  .hero-image-wrap { width: 350px; max-width: 92%; }
  .hero-stamp { width: 94px; height: 94px; top: 10px; }
  .hero-stamp img { width: 78px; }
  .hero-caption { right: 3%; bottom: 5px; min-width: 185px; padding: 14px 18px; }
  .scroll-cue { display: none; }
  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 35px; }
  .section-heading h2, .story-copy h2, .order-panel h2 { font-size: 2.65rem; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card:last-child { grid-column: auto; width: 100%; }
  .food-content p { min-height: 0; }
  .story-mark { min-height: 390px; }
  .story-mark::before { width: 310px; height: 310px; }
  .story-mark::after { width: 235px; height: 235px; }
  .story-mark img { width: 225px; }
  .story-mark span { bottom: 8px; }
  .order-panel { padding: 42px 26px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
}

@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; }
}
