@import url("https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Syne:wght@400;500;600;700&display=swap");

:root {
  --cocoa: #3f2219;
  --brown: #592a1d;
  --brown-soft: #7c4b3a;
  --peach: #e1a570;
  --peach-light: #edc39e;
  --cream: #f7eee8;
  --paper: #fffaf6;
  --line: #d8bba8;
  --ink-muted: #765f56;
  --shadow: 0 1.25rem 3rem rgb(63 34 25 / 12%);
  --radius: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--cocoa);
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  color: var(--cocoa);
  background:
    radial-gradient(circle at 92% 8%, rgb(225 165 112 / 24%), transparent 25rem),
    linear-gradient(180deg, #fffaf6 0, var(--cream) 34rem);
  font-family: "Syne", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

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

a {
  color: var(--brown);
  font-weight: 600;
  text-decoration-color: var(--peach);
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brown-soft);
}

a:focus-visible,
summary:focus-visible {
  outline: 0.2rem solid var(--peach);
  outline-offset: 0.25rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--cocoa);
  font-family: "Akaya Kanadaka", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

p {
  margin: 0 0 1.2rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--cream);
  background: var(--cocoa);
  border-radius: 999px;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 0.3rem solid var(--peach);
  color: var(--cream);
  background: var(--cocoa);
  box-shadow: 0 0.6rem 2rem rgb(63 34 25 / 14%);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(100% - 2rem, 78rem);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 6.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--cream);
  text-decoration: none;
}

.brand:hover {
  color: var(--peach-light);
}

.brand img {
  width: 4.7rem;
  height: 4.7rem;
  border: 2px solid var(--peach-light);
  border-radius: 50%;
  background: var(--cream);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: "Akaya Kanadaka", Georgia, serif;
  font-size: 2rem;
}

.brand-tagline {
  margin-top: 0.3rem;
  color: var(--peach-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a,
.mobile-menu a {
  padding: 0.55rem 0.75rem;
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] {
  color: var(--cocoa);
  background: var(--peach);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--peach-light);
  border-radius: 999px;
  color: var(--cream);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
  width: 13rem;
  padding: 0.75rem;
  border: 1px solid var(--peach);
  border-radius: 1rem;
  background: var(--cocoa);
  box-shadow: var(--shadow);
}

.hero {
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7.5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brown-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-lede,
.page-lede {
  max-width: 42rem;
  color: var(--ink-muted);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--brown);
  border-radius: 999px;
  color: var(--cream);
  background: var(--brown);
  box-shadow: 0 0.35rem 0 var(--peach);
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.button:hover {
  color: var(--cream);
  transform: translateY(-0.12rem);
  box-shadow: 0 0.52rem 0 var(--peach);
}

.button-secondary {
  color: var(--brown);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--brown);
  background: rgb(225 165 112 / 16%);
  box-shadow: none;
}

.hero-image {
  position: relative;
  min-height: 36rem;
}

.hero-image::before {
  position: absolute;
  inset: 5% -12% -8% 10%;
  border-radius: 48% 52% 44% 56%;
  background: var(--peach-light);
  content: "";
  transform: rotate(-4deg);
}

.hero-image img {
  position: absolute;
  width: 72%;
  height: 78%;
  border: 0.5rem solid var(--paper);
  border-radius: 46% 54% 42% 58% / 42% 40% 60% 58%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-image .hero-bread {
  top: 0;
  right: 0;
}

.hero-image .hero-logo {
  right: 52%;
  bottom: 0;
  width: 42%;
  height: auto;
  border: 0.35rem solid var(--cream);
  border-radius: 50%;
  background: var(--cream);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-paper {
  background: var(--paper);
  border-top: 1px solid rgb(216 187 168 / 70%);
  border-bottom: 1px solid rgb(216 187 168 / 70%);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 34rem;
  color: var(--ink-muted);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 0.75rem 1.8rem rgb(63 34 25 / 8%);
}

.product-card img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
}

.product-card:nth-child(2) img {
  object-position: center 42%;
}

.product-body {
  padding: 1.35rem;
}

.product-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  flex: 0 0 auto;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  color: var(--cream);
  background: var(--brown);
  font-weight: 700;
}

.allergen {
  margin: 1rem 0 0;
  color: var(--brown-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) * 1.35);
  color: var(--cream);
  background: var(--cocoa);
  box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-panel p {
  color: var(--cream);
}

.cta-panel .eyebrow {
  color: var(--peach-light);
}

.cta-panel .button {
  border-color: var(--peach);
  color: var(--cocoa);
  background: var(--peach);
  box-shadow: 0 0.35rem 0 var(--cream);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero h1 {
  max-width: 54rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.content-grid img,
.feature-image {
  width: 100%;
  border: 0.45rem solid var(--paper);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.alerts-image {
  height: auto;
  aspect-ratio: 4 / 5;
}

.image-stack {
  display: grid;
  gap: 1rem;
}

.image-stack .oven-photo {
  height: clamp(20rem, 40vw, 32rem);
  object-position: center 38%;
}

.image-stack .permit-photo {
  height: auto;
}

.image-caption {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.notice-card,
.contact-card,
.legal-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0.75rem 1.8rem rgb(63 34 25 / 7%);
}

.notice-card + .notice-card,
.legal-card + .legal-card {
  margin-top: 1.25rem;
}

.fine-print {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

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

.review {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 0.75rem 1.8rem rgb(63 34 25 / 7%);
}

.review p {
  font-family: "Akaya Kanadaka", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.35;
}

.review cite {
  color: var(--brown-soft);
  font-style: normal;
  font-weight: 700;
}

.review-featured {
  grid-column: 1 / -1;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.legal-copy {
  max-width: 56rem;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.site-footer {
  margin-top: clamp(3rem, 7vw, 7rem);
  padding: 3.5rem 0 2rem;
  border-top: 0.3rem solid var(--peach);
  color: var(--cream);
  background: var(--cocoa);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: var(--cream);
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
}

.site-footer h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.site-footer h3 {
  margin-bottom: 0.7rem;
  font-family: "Syne", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0.5rem;
  color: #f1ddd1;
}

.site-footer a {
  color: var(--peach-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(237 195 158 / 35%);
  color: #d9bba9;
  font-size: 0.78rem;
}

@media (max-width: 58rem) {
  .site-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 30rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 40rem) {
  .header-inner {
    min-height: 5.5rem;
  }

  .brand img {
    width: 4rem;
    height: 4rem;
  }

  .brand-name {
    font-size: 1.55rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-image {
    min-height: 24rem;
  }

  .hero-image img {
    width: 78%;
  }

  .hero-image .hero-logo {
    right: 58%;
    width: 38%;
  }

  .section-heading,
  .cta-panel,
  .footer-bottom {
    display: block;
  }

  .product-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card:last-child,
  .review-featured {
    grid-column: auto;
  }

  .product-card img {
    height: 17rem;
  }

  .cta-panel .button {
    margin-top: 1rem;
  }

  .footer-grid > * + * {
    padding-top: 1.25rem;
    border-top: 1px solid rgb(237 195 158 / 22%);
  }
}

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

  .button {
    transition: none;
  }
}
