:root {
  --bg: #fffaf4;
  --surface: #ffffff;
  --surface-alt: #f7e8d9;
  --text: #2f1d14;
  --muted: #6f5443;
  --accent: #a14b1f;
  --accent-dark: #7a3013;
  --border: #ead5bf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #fff4e8 0%, #f9dfc6 100%);
  padding: 1.25rem 0 4rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Georgia", serif;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

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

.page-hero {
  padding: 1.25rem 0 3.5rem;
  background: linear-gradient(135deg, #fff4e8 0%, #f9dfc6 100%);
}

.page-hero .nav {
  padding-bottom: 3rem;
}

.page-hero-copy {
  max-width: 780px;
}

.page-hero-copy h1 {
  max-width: 740px;
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.03;
}

.page-hero-copy p:last-child {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.swag-hero {
  background: linear-gradient(135deg, #f5e3d2 0%, #e8b88f 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 20px rgba(161, 75, 31, 0.18);
}

.btn-secondary {
  color: var(--accent-dark);
  background: rgba(255,255,255,0.75);
}

.btn-small {
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  background: var(--surface-alt);
  color: var(--accent-dark);
}

.hero-card {
  background: linear-gradient(180deg, #fffaf4 0%, #fdf2e8 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(49, 24, 10, 0.08);
}

.hero-card img {
  width: 180px;
  margin: 0 auto 1rem;
  object-fit: contain;
  border-radius: 18px;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #fff8ee;
}

.section-header {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

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

.recipe-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.recipe-feature {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  background: var(--text);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(49, 24, 10, 0.12);
  isolation: isolate;
}

.recipe-feature-wide {
  grid-column: span 2;
  min-height: 430px;
}

.recipe-feature::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(25, 14, 8, 0.86));
  content: "";
}

.recipe-feature img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-feature:hover img {
  transform: scale(1.04);
}

.recipe-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding: 1.5rem;
}

.recipe-feature .eyebrow {
  margin-bottom: 0.45rem;
  color: #ffd7a8;
}

.recipe-feature strong {
  max-width: 540px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.recipe-feature-copy > span:not(.eyebrow):not(.recipe-feature-link) {
  max-width: 520px;
  margin-top: 0.65rem;
  color: #fff3e7;
}

.recipe-feature-link {
  margin-top: 1.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.recipe-library {
  background: #fff8ee;
}

.recipe-sheet {
  scroll-margin-top: 1rem;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(49, 24, 10, 0.05);
}

.recipe-sheet-heading {
  max-width: 720px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.recipe-sheet-heading .eyebrow {
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
}

.recipe-sheet-heading h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.recipe-sheet-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.recipe-sheet-columns {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  padding-top: 1.25rem;
}

.recipe-sheet h4 {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tool-card h3 {
  margin-bottom: 0.45rem;
}

.tool-card p {
  margin-top: 0;
  color: var(--muted);
}

.tool-index {
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tool-card .btn {
  margin-top: auto;
}

.shop-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.swag-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.swag-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--text);
  border-radius: 18px;
  color: #fff8ee;
}

.swag-panel h2 {
  max-width: 560px;
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.swag-panel p {
  max-width: 560px;
  color: #f5dcca;
}

.swag-panel .eyebrow {
  color: #ffd7a8;
}

.swag-panel .btn-primary {
  margin-top: 1rem;
  background: #ffd7a8;
  color: var(--text);
}

.swag-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.swag-list li {
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.swag-list strong,
.swag-list span {
  display: block;
}

.swag-list strong {
  margin-bottom: 0.25rem;
}

.swag-list span {
  color: var(--muted);
  font-size: 0.93rem;
}

.interest-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  max-width: 560px;
  margin-top: 1.5rem;
}

.interest-form input {
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(49, 24, 10, 0.05);
}

.card h3 {
  margin-top: 0;
}

.recipe-notes {
  margin: 0.75rem 0 1rem;
  padding-left: 1rem;
  color: var(--muted);
}

.recipe-notes li + li {
  margin-top: 0.35rem;
}

.recipe-detail {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.recipe-detail h4 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.recipe-steps {
  margin: 0 0 0.5rem;
  padding-left: 1rem;
  color: var(--muted);
}

.recipe-steps li + li {
  margin-top: 0.35rem;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.video-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
}

.video-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: linear-gradient(135deg, #a14b1f, #d48f49);
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer {
  padding: 1.5rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 800px) {
  .hero-content,
  .card-grid,
  .video-layout,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .recipe-feature-grid {
    grid-template-columns: 1fr;
  }

  .recipe-feature-wide {
    grid-column: auto;
  }

  .recipe-feature,
  .recipe-feature-wide {
    min-height: 330px;
  }

  .recipe-sheet-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .swag-grid,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .nav,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
