@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #FBF7F0; --warm: #F4EDE0; --white: #FFFFFF;
  --rust: #B84A1A; --rust-dark: #8F3610; --rust-light: #F2E0D8;
  --olive: #4A5E35; --olive-light: #E4EBD9; --olive-dark: #344226;
  --brown: #2C1C0E; --tan: #C4A882;
  --text-dark: #2C1C0E; --text-mid: #6B5744; --text-light: #A8957F;
  --border: rgba(44,28,14,0.1); --border-strong: rgba(44,28,14,0.2);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); }
.topbar { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; background: var(--white); border-bottom: 1px solid var(--border); }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--brown); }
.logo span { color: var(--rust); }
.topbar-links { display: flex; gap: 24px; }
.topbar-links a { font-size: 13px; font-weight: 500; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.topbar-links a:hover { color: var(--rust); }
.topbar-cta { background: var(--rust); color: var(--white); padding: 9px 20px; font-size: 12.5px; font-weight: 700; border: none; cursor: pointer; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.topbar-cta:hover { background: var(--rust-dark); }
.hero { background: var(--brown); padding: 3.5rem 2rem 0; text-align: center; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(184,74,26,0.25) 0%, transparent 60%); pointer-events: none; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--tan); font-weight: 600; margin-bottom: 1.1rem; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 500; color: var(--white); line-height: 1.12; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--tan); }
.hero-sub { font-size: 15px; color: rgba(251,247,240,0.78); max-width: 420px; margin: 0 auto 1.75rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 10px; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-btn { background: var(--rust); color: var(--white); padding: 13px 30px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.hero-btn:hover { background: var(--rust-dark); }
.hero-btn-ghost { background: transparent; color: var(--white); padding: 13px 26px; font-size: 13px; font-weight: 600; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; border-radius: 2px; text-decoration: none; }
.hero-photo-bar { width: 100%; max-width: 660px; height: 240px; margin: 0 auto; border-radius: 4px 4px 0 0; overflow: hidden; background: rgba(255,255,255,0.05); }
.hero-photo-bar img { width: 100%; height: 100%; object-fit: cover; }
.trust-strip { background: var(--rust); display: flex; justify-content: center; gap: 2rem; padding: 1rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); font-size: 12.5px; font-weight: 600; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--tan); flex-shrink: 0; }
.stats-row { display: flex; background: var(--warm); border-bottom: 1px solid var(--border); }
.stat { flex: 1; text-align: center; padding: 1.4rem 0.5rem; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--brown); }
.stat-l { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 600; margin-top: 2px; }
.section { padding: 3rem 1.5rem; }
.section-eyebrow { text-align: center; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); font-weight: 700; margin-bottom: 0.5rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 500; color: var(--brown); text-align: center; margin-bottom: 0.4rem; }
.section-sub { text-align: center; color: var(--text-light); font-size: 14px; margin-bottom: 2.25rem; }
.menu-section { background: var(--white); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.menu-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: 4px; padding: 1.25rem; transition: all 0.15s; }
.menu-card:hover { border-color: var(--rust); box-shadow: 0 6px 20px rgba(184,74,26,0.1); }
.menu-tag { display: inline-block; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.tag-seafood { background: var(--olive-light); color: var(--olive-dark); }
.tag-protein { background: var(--rust-light); color: var(--rust-dark); }
.tag-chefs { background: #F5EDD0; color: #7A5A10; }
.tag-pasta { background: var(--olive-light); color: var(--olive-dark); }
.menu-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 600; color: var(--brown); margin-bottom: 7px; line-height: 1.3; }
.menu-card p { font-size: 12.5px; color: var(--text-mid); line-height: 1.55; margin-bottom: 14px; }
.menu-price { font-size: 16px; font-weight: 700; color: var(--olive); border-top: 1px solid var(--border); padding-top: 10px; }
.how-section { background: var(--olive-light); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.step { background: var(--white); padding: 1.5rem 1.25rem; text-align: center; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 500; color: var(--rust); margin-bottom: 8px; }
.step h4 { font-size: 14px; font-weight: 700; color: var(--brown); margin-bottom: 5px; }
.step p { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; }
.order-section { background: var(--warm); }
.order-form { max-width: 460px; margin: 0 auto; }
.field { margin-bottom: 14px; }
.field-label { display: block; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--olive-dark); font-weight: 700; margin-bottom: 5px; }
.field-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-strong); border-radius: 3px; background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); }
.field-input:focus { outline: 2px solid var(--olive); border-color: transparent; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn { width: 100%; background: var(--olive); color: var(--white); border: none; padding: 15px; border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.submit-btn:hover { background: var(--olive-dark); }
.order-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 10px; }
.order-note strong { color: var(--brown); }
.order-success { max-width: 460px; margin: 0 auto; text-align: center; background: var(--olive-light); border: 1.5px solid var(--olive); border-radius: 4px; padding: 2rem; }
.order-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--olive-dark); margin-bottom: 0.5rem; }
.order-success p { color: var(--text-mid); font-size: 14px; line-height: 1.6; }
.about-section { background: var(--brown); }
.about-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.about-photo { width: 96px; height: 96px; border-radius: 3px; background: var(--tan); margin: 0 auto 1.25rem; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.06em; position: absolute; }
.about-section .section-eyebrow { color: var(--tan); }
.about-section p { color: rgba(251,247,240,0.75); font-size: 15px; line-height: 1.8; margin-bottom: 1rem; }
.about-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--tan); line-height: 1.5; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); margin: 1rem 0; }
.about-creds { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 1rem; }
.about-creds span { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(251,247,240,0.45); font-weight: 600; }
.footer { background: #1A0E06; padding: 1.5rem; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--tan); font-weight: 500; margin-bottom: 6px; }
.footer-logo span { color: var(--rust); }
.footer-contact { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; line-height: 1.8; }
@media (max-width: 600px) {
  .topbar-links { display: none; }
  .topbar { padding: 1rem; }
  .hero h1 { font-size: 34px; }
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 50%; border-bottom: 1px solid var(--border); }
  .trust-strip { gap: 1rem; }
  .row2 { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
}
