:root {
  /* Palette: deep burgundy + cream + forest accent */
  --bg: #f7f1e6;            /* warm cream background */
  --surface: #ffffff;
  --surface-dim: #f0e7d4;
  --ink: #1f1410;           /* near-black with warm undertone */
  --ink-soft: #5a4b42;
  --ink-muted: #8a7a6e;
  --border: #e3d5be;
  --primary: #7a1320;       /* deep burgundy */
  --primary-hover: #5a0d18;
  --primary-soft: #f7e6e3;
  --accent: #1f4d2f;        /* forest green for tiny accents */
  --cream: #f6efe3;
  --dark: #2a0a0f;          /* very dark burgundy section */
  --dark-soft: #401218;

  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --rad-sm: 6px;
  --rad-md: 12px;
  --rad-lg: 22px;
  --rad-xl: 32px;
  --shadow-sm: 0 2px 6px rgba(31, 20, 16, 0.05), 0 1px 2px rgba(31, 20, 16, 0.03);
  --shadow-md: 0 12px 28px rgba(31, 20, 16, 0.08), 0 4px 10px rgba(31, 20, 16, 0.04);
  --container: 1140px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 230, 0.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 19px;
  color: var(--ink);
}
.brand-mark { display: inline-flex; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-weight: 700; font-size: 17px; }
.brand-text span { font-weight: 400; font-size: 13px; color: var(--ink-soft); letter-spacing: 0.03em; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover { color: var(--ink); border-color: var(--ink); }
.nav-cta { margin-left: 4px; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { gap: 14px; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .12s ease, background-color .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary);
  color: var(--cream);
}
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-cream {
  background: var(--cream);
  color: var(--dark);
}
.btn-cream:hover { background: #fff; }
.btn-lg { padding: 14px 24px; font-size: 16px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 96px 0 84px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(122, 19, 32, 0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 85%, rgba(31, 77, 47, 0.08), transparent 60%);
  z-index: -1;
}
.hero .container { position: relative; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--primary); }
.eyebrow-cream { color: #e9c79d; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  max-width: 920px;
}
.hero-title .accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ============== STRIP ============== */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-inner > div {
  padding: 26px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.strip-inner > div:last-child { border-right: none; }
.strip-inner strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.strip-inner span { font-size: 13.5px; color: var(--ink-muted); }

@media (max-width: 760px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-inner > div:nth-child(2) { border-right: none; }
  .strip-inner > div:nth-child(1),
  .strip-inner > div:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============== SECTIONS ============== */
.section {
  padding: 96px 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 780px;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 0 44px;
  line-height: 1.55;
}

.section-dark {
  background: var(--dark);
  color: var(--cream);
}
.section-title-cream { color: var(--cream); }
.section-lede-cream { color: #d6c5a5; }

/* ============== CARDS ============== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-md);
  padding: 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 920px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ============== VISIT ============== */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  margin: 28px 0 32px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(246, 239, 227, 0.18);
}
.visit-details dt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9a87a;
  margin-bottom: 4px;
}
.visit-details dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--cream);
}
.visit-actions { margin-top: 8px; }

.map-card {
  border-radius: var(--rad-lg);
  overflow: hidden;
  border: 1px solid rgba(246, 239, 227, 0.18);
  background: #1a050a;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .map-card { aspect-ratio: 4 / 3; }
}

/* ============== DELIVERY ============== */
.delivery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.delivery-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.muted { color: var(--ink-muted); font-size: 14px; }

.signup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rad-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.signup-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.signup-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.signup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup input {
  padding: 12px 14px;
  border-radius: var(--rad-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.signup input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 19, 32, 0.15);
}
.signup button { align-self: flex-start; }
.signup-thanks { color: var(--accent); font-weight: 600; margin: 4px 0 0; }
.fine-print {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .delivery-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============== ABOUT ============== */
.about-inner { max-width: 820px; }
.about-copy {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--dark);
  color: #d6c5a5;
  padding: 56px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand strong {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.footer-brand p { margin: 0; color: #b8a684; font-size: 14.5px; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
}
.footer-links a {
  color: #d6c5a5;
  transition: color .15s;
}
.footer-links a:hover { color: var(--cream); }
.footer-legal {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 239, 227, 0.12);
  font-size: 13px;
  color: #9c8b6c;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
