:root {
  color-scheme: light;
  --ink: #261b16;
  --muted: #6d5a4f;
  --paper: #fffaf1;
  --flour: #f5ead8;
  --tomato: #b72f22;
  --basil: #236b45;
  --cheese: #f3c96c;
  --crust: #9b5a2c;
  --line: rgba(38, 27, 22, 0.15);
  --shadow: 0 24px 70px rgba(61, 35, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--tomato);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.revenue-strip {
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  background: var(--ink);
  color: #fffaf1;
}

.revenue-strip .wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 0.86rem;
}

.revenue-strip a {
  color: var(--cheese);
  font-weight: 850;
  text-decoration: none;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: 64px 20px;
  background:
    linear-gradient(90deg, rgba(38, 27, 22, 0.82), rgba(38, 27, 22, 0.38) 56%, rgba(38, 27, 22, 0.1)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Stromboli2%20(2).jpg?width=1800") center / cover;
  color: #fffaf1;
}

.hero-inner,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  width: min(790px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cheese);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.02;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  font-weight: 500;
}

.hero p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  color: rgba(255, 250, 241, 0.9);
}

main {
  overflow: hidden;
}

section {
  padding: 82px 0;
}

.section-soft {
  background: var(--flour);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.page-hero {
  padding: 72px 0 48px;
  background:
    linear-gradient(180deg, rgba(245, 234, 216, 0.94), rgba(255, 250, 241, 1)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Stromboli2%20(2).jpg?width=1400") center / cover;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
}

h2 {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.2rem);
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.caption {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.quick-grid,
.card-grid,
.product-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-card,
.info-card,
.product-card,
.sponsor-card,
.ad-slot,
.newsletter-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.quick-card {
  min-height: 190px;
  padding: 26px;
}

.quick-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.quick-card span,
.info-card p,
.text-list li,
.timeline p,
.faq p {
  color: var(--muted);
}

.info-card {
  padding: 26px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-body p,
.sponsor-card p,
.ad-slot p,
.newsletter-box p,
.fine-print {
  color: var(--muted);
}

.product-body .button,
.sponsor-card .button,
.newsletter-box .button {
  margin-top: 14px;
}

.sponsor-card {
  padding: 28px;
}

.price {
  display: block;
  margin: 12px 0 10px;
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.ad-slot {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 22px;
  text-align: center;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(38, 27, 22, 0.035),
      rgba(38, 27, 22, 0.035) 10px,
      rgba(255, 255, 255, 0.34) 10px,
      rgba(255, 255, 255, 0.34) 20px
    );
}

.ad-label {
  display: block;
  margin-bottom: 5px;
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-box {
  padding: 28px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.disclosure {
  padding: 22px;
  border-left: 4px solid var(--cheese);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.disclosure p {
  margin: 0;
  color: var(--muted);
}

.info-card.accent {
  background: var(--tomato);
  color: #fffaf1;
}

.info-card.accent p {
  color: rgba(255, 250, 241, 0.86);
}

.text-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.text-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.text-list li:first-child {
  border-top: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--tomato);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 18px;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.step::before {
  content: counter(steps);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--basil);
  color: #fff;
  font-weight: 850;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.matrix {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--tomato);
  background: var(--flour);
}

tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  padding: 70px 0;
  background: var(--ink);
  color: #fffaf1;
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  background: var(--tomato);
  color: #fffaf1;
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: var(--basil);
}

.faq {
  display: grid;
  gap: 18px;
}

.faq article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 40px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 920px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero {
    min-height: 78vh;
  }

  .split,
  .cta-band .wrap {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .card-grid,
  .product-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .wrap,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  section {
    padding: 62px 0;
  }

  .step {
    grid-template-columns: 1fr;
  }
}
