:root {
  --cream: #f5eadc;
  --cream-2: #fffaf4;
  --ink: #17130f;
  --terracotta: #b85d35;
  --olive: #3f4730;
  --muted: #7e746b;
  --line: rgba(23, 19, 15, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Montserrat', sans-serif; color: var(--ink); background: var(--cream-2); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 14px clamp(20px, 5vw, 76px); background: rgba(255,250,244,.94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.brand strong { display: block; font-family: 'Cormorant Garamond', serif; letter-spacing: .15em; font-size: 1.45rem; }
.brand small { color: var(--terracotta); text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; }
.main-nav { display: flex; gap: 28px; font-size: .9rem; }
.main-nav a:hover { color: var(--terracotta); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; padding: 80px clamp(24px, 9vw, 140px); background: url('assets/hero.png') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,238,226,.98) 0%, rgba(248,238,226,.8) 42%, rgba(248,238,226,.08) 78%); }
.hero-content { position: relative; max-width: 620px; }
.eyebrow { color: var(--terracotta); text-transform: uppercase; letter-spacing: .24em; font-size: .78rem; font-weight: 600; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: .98; margin: 0; }
h1 { font-size: clamp(4rem, 8vw, 8rem); text-transform: uppercase; letter-spacing: .03em; }
h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
h3 { font-size: 2rem; }
.hero p:not(.eyebrow) { max-width: 520px; font-size: 1.1rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 4px; border: 1px solid var(--terracotta); cursor: pointer; font: inherit; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.btn.primary { background: var(--terracotta); color: white; }
.btn.ghost { background: rgba(255,255,255,.45); color: var(--ink); }
.btn:hover { transform: translateY(-1px); }
.section { padding: clamp(70px, 9vw, 130px) clamp(24px, 9vw, 140px); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.intro > p, .kiosk-copy p, .order p, .contact-card p { line-height: 1.85; color: var(--muted); }
.products { background: var(--cream); }
.section-heading { max-width: 800px; margin-bottom: 50px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: var(--cream-2); border: 1px solid var(--line); overflow: hidden; }
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card div { padding: 28px; }
.product-card span { color: var(--terracotta); font-size: .75rem; letter-spacing: .18em; }
.product-card p { color: var(--muted); line-height: 1.7; }
.kiosk { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; align-items: center; }
.kiosk img { border-radius: 6px; box-shadow: 0 20px 60px rgba(31,24,17,.12); }
.order { background: var(--olive); color: white; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.order p { color: rgba(255,255,255,.72); }
.interest-form label { display: block; margin-bottom: 12px; }
.form-row { display: flex; gap: 10px; }
.form-row input { flex: 1; min-height: 50px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: white; padding: 0 16px; outline: none; }
.form-row input::placeholder { color: rgba(255,255,255,.52); }
.form-message { min-height: 24px; margin-bottom: 0; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-card { border-left: 3px solid var(--terracotta); padding-left: 28px; }
.contact-card a { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); margin: 10px 0; word-break: break-word; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(24px, 9vw, 140px); background: #1c1814; color: rgba(255,255,255,.72); font-size: .8rem; }
.footer-brand { color: white; letter-spacing: .15em; }
.footer-brand span { color: var(--terracotta); margin-left: 12px; }
.reveal { opacity: 0; transform: translateY(22px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 75px; right: 20px; display: none; flex-direction: column; background: var(--cream-2); padding: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.1); }
  .main-nav.open { display: flex; }
  .hero { min-height: 68vh; background-position: 62% center; }
  .hero-overlay { background: rgba(248,238,226,.86); }
  .intro, .kiosk, .order, .contact { grid-template-columns: 1fr; gap: 35px; }
  .product-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
@media (max-width: 520px) {
  .brand small { display: none; }
  .form-row { flex-direction: column; }
  .hero { padding-top: 70px; }
}
