* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #5c564f;
  --accent: #c54d3c;
  --cream: #fbf6ee;
  --sand: #efe6d8;
  --leaf: #2f5d4e;
  --line: rgba(28, 26, 23, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mag-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 6vw 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.issue {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-row a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-row a:hover {
  border-bottom-color: var(--accent);
}

.primary-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: #1f201c;
  color: #f9f3ea;
}

.section.bg-oven {
  background-image: linear-gradient(120deg, rgba(15, 16, 14, 0.85), rgba(15, 16, 14, 0.2)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.section.dark .muted {
  color: rgba(249, 243, 234, 0.7);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.headline {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
}

.subline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.columns.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 280px;
  min-width: 0;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--leaf);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(197, 77, 60, 0.4);
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ghost-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.service-option input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.secondary-button {
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
  font-weight: 600;
}

.footer {
  padding: 50px 6vw;
  background: #121210;
  color: #e6e1d8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e6e1d8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 92px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 15;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.policy {
  background: #fff;
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy h1 {
  font-family: "Fraunces", serif;
}

.policy h2 {
  margin-top: 18px;
  font-size: 1.2rem;
}

@media (max-width: 720px) {
  .mag-header {
    padding: 18px 5vw;
  }

  .section {
    padding: 50px 5vw;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    bottom: 80px;
  }
}
