/* The Blue Oven — shared styles
   Palette: deep navy ink, warm cream ground, burnt-honey accent */

:root {
  --ink:        #16263F;
  --ink-soft:   #2A3A54;
  --bg:         #FBF8F1;
  --surface:    #FFFFFF;
  --accent:     #C0852E;
  --accent-deep:#9A6420;
  --muted:      #5C6573;
  --line:       #E7DFCF;
  --maxw:       1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.wordmark .the { font-style: italic; font-weight: 400; color: var(--accent-deep); font-size: 18px; }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; text-decoration: none;
}
.nav a:hover { color: var(--accent-deep); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(192,133,46,0.12), transparent 60%),
    var(--ink);
  color: #F4EEE2;
  padding: 96px 0 104px;
}
.hero .eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 20px;
}
.hero h1 {
  color: #FBF8F1;
  font-size: clamp(40px, 7vw, 72px);
  margin: 0 0 22px; max-width: 16ch;
}
.hero h1 .flame { color: var(--accent); font-style: italic; }
.hero p {
  font-size: clamp(17px, 2vw, 20px);
  color: #CFD6DF; max-width: 56ch; margin: 0 0 32px;
}
.btn {
  display: inline-block; background: var(--accent); color: #15233A;
  font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: 2px;
  text-decoration: none; transition: background .15s ease;
}
.btn:hover { background: #D7972F; text-decoration: none; }
.btn.ghost { background: transparent; color: #F4EEE2; border: 1px solid rgba(244,238,226,0.4); margin-left: 10px; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow-dark {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-deep); margin: 0 0 14px;
}
.section h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 18px; }
.lead { font-size: 19px; color: var(--ink-soft); max-width: 64ch; }

/* Brand cards */
.brands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.brand-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  padding: 28px 24px;
}
.brand-card h3 { font-size: 22px; margin: 0 0 8px; }
.brand-card .tag { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 14px; }
.brand-card p { font-size: 15px; color: var(--muted); margin: 0; }

/* Offerings list */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 36px; }
.offer-grid .item { border-top: 1px solid var(--line); padding-top: 14px; }
.offer-grid .item strong { display: block; font-size: 16px; }
.offer-grid .item span { font-size: 14px; color: var(--muted); }

/* Contact strip */
.contact-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.contact-strip .c { }
.contact-strip .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 6px; }
.contact-strip .val { font-size: 16px; color: var(--ink); margin: 0; }

/* ---------- Legal pages ---------- */
.legal { padding: 64px 0 96px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin: 0 0 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
.legal h2 { font-size: 22px; margin: 38px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.placeholder { background: #FBEFD5; color: #7A5410; padding: 1px 7px; border-radius: 3px; font-weight: 600; }

.backlink { display: inline-block; margin-top: 8px; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C9D0DA; padding: 56px 0 40px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.site-footer .wordmark { color: #F4EEE2; }
.site-footer h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; font-family: "Inter", sans-serif; font-weight: 600; }
.site-footer a { color: #C9D0DA; font-size: 14px; display: block; margin-bottom: 9px; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.site-footer p { font-size: 14px; color: #9AA4B2; margin: 8px 0 0; }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; font-size: 13px; color: #8A95A4; }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav { display: none; }
  .brands, .offer-grid, .contact-strip, .site-footer .cols { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 80px; }
  .btn.ghost { margin-left: 0; margin-top: 12px; display: inline-block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
