:root {
  --ink: #3b202d;
  --cream: #fff8f8;
  --paper: #fdebef;
  --amber: #f0a06c;
  --amber-dark: #b83462;
  --green: #8f3155;
  --white: #fff;
  --line: rgba(59, 32, 45, .15);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Heebo", Arial, sans-serif; font-size: 16px; line-height: 1.65; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 clamp(22px, 5vw, 72px); position: absolute; inset: 0 0 auto; z-index: 10; color: white; border-bottom: 1px solid rgba(255,255,255,.22); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: "Rubik", sans-serif; font-size: 1.1rem; font-weight: 700; direction: ltr; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 36px); }
.main-nav a { text-decoration: none; font-weight: 600; }
.main-nav a:not(.nav-cta) { opacity: .82; }
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.nav-cta { padding: 9px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; }
.menu-toggle { display: none; }
.hero { min-height: 710px; position: relative; display: grid; align-items: center; overflow: hidden; color: white; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(49,18,31,.05) 0%, rgba(64,23,42,.26) 44%, rgba(58,20,37,.90) 100%); }
.hero-copy { width: min(600px, 86vw); margin-right: clamp(24px, 8vw, 128px); position: relative; z-index: 1; padding-top: 70px; }
.eyebrow { margin: 0 0 12px; letter-spacing: .06em; font-size: .9rem; font-weight: 700; color: #ffd59e; }
.eyebrow.dark { color: var(--amber-dark); }
h1, h2, h3 { font-family: "Rubik", "Heebo", sans-serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(3rem, 6.4vw, 6.2rem); letter-spacing: -.045em; margin-bottom: 24px; }
.hero-copy > p:not(.eyebrow) { max-width: 520px; font-size: 1.17rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 24px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #421d2d; background: #ffc6d7; }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: white; }
.section { padding: clamp(70px, 9vw, 120px) clamp(22px, 7vw, 110px); }
.intro h2, .order-callout h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.035em; margin-bottom: 18px; }
.section-lead { max-width: 680px; font-size: 1.1rem; color: #536058; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.category-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-grid-two .category-card { min-height: 340px; }
.category-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-radius: var(--radius); text-decoration: none; color: white; position: relative; overflow: hidden; transition: transform .2s ease; }
.category-card:hover { transform: translateY(-5px); }
.category-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; left: -55px; bottom: -65px; }
.card-home { background: var(--green); }
.card-pastry { background: linear-gradient(145deg, #d86d86, #a9335b); }
.card-dessert { background: linear-gradient(145deg, #7f3551, #4b2233); }
.card-number { opacity: .65; font-weight: 700; }
.category-card h3 { font-size: 1.8rem; margin-bottom: 8px; }
.category-card p { margin: 0; color: rgba(255,255,255,.76); }
.card-arrow { font-size: 1.7rem; align-self: flex-end; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--paper); border-block: 1px solid var(--line); padding: 35px clamp(22px, 7vw, 110px); }
.trust-strip div { display: grid; text-align: center; padding: 0 16px; border-left: 1px solid var(--line); }
.trust-strip div:last-child { border-left: 0; }
.trust-strip strong { font-family: "Rubik", sans-serif; font-size: 1.15rem; }
.trust-strip span { color: #637069; font-size: .92rem; }
.order-callout { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.order-callout p { margin-bottom: 0; }
.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 48px clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1fr 1fr auto; gap: 32px; align-items: center; }
.footer-brand { color: white; }
.copyright { direction: ltr; }
.inner-header { position: static; background: var(--ink); }
.page-hero { padding: clamp(70px, 10vw, 130px) clamp(22px, 8vw, 125px); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { color: var(--ink); font-size: clamp(2.8rem, 6vw, 5.4rem); margin-bottom: 18px; }
.page-hero p { max-width: 650px; font-size: 1.15rem; color: #58645d; }
.recipe-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.recipe-card { padding: 28px; min-height: 235px; border: 1px solid var(--line); border-radius: var(--radius); background: white; display: flex; flex-direction: column; justify-content: space-between; }
.recipe-card .tag { color: var(--amber-dark); font-weight: 700; font-size: .88rem; }
.recipe-card h2 { font-size: 1.55rem; margin: 20px 0 10px; }
.recipe-card p { color: #5f6b64; margin: 0; }
.recipe-card small { margin-top: 25px; color: #7a857e; }
.order-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(35px, 7vw, 90px); }
.order-form { display: grid; gap: 18px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
label { display: grid; gap: 7px; font-weight: 600; }
input, select, textarea { width: 100%; padding: 13px 14px; border: 1px solid #bdc5bf; border-radius: 10px; background: white; font: inherit; color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
.form-note { margin: 0; color: #6b756f; font-size: .9rem; }
.order-form button { border: 0; font: inherit; cursor: pointer; }
@media (max-width: 850px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; border: 1px solid rgba(255,255,255,.55); background: transparent; color: white; border-radius: 999px; padding: 8px 15px; font: inherit; }
  .main-nav { display: none; position: absolute; top: 70px; right: 16px; left: 16px; padding: 20px; border-radius: 16px; background: var(--ink); flex-direction: column; align-items: stretch; box-shadow: 0 18px 50px rgba(0,0,0,.22); }
  .main-nav.open { display: flex; }
  .hero { min-height: 680px; align-items: end; }
  .hero-image { object-position: 42% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(58,20,37,.94) 0%, rgba(78,26,49,.54) 62%, rgba(58,20,37,.16) 100%); }
  .hero-copy { margin: 0; padding: 140px 24px 60px; width: 100%; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .category-grid, .category-grid-two, .recipe-list { grid-template-columns: 1fr; }
  .category-card { min-height: 240px; }
  .trust-strip { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .trust-strip div:nth-child(2) { border-left: 0; }
  .order-callout, .order-layout { display: grid; grid-template-columns: 1fr; align-items: start; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
