:root {
  --red: #a51f26;
  --red-dark: #7f151b;
  --ink: #171414;
  --muted: #6f6861;
  --cream: #fbf4e6;
  --paper: #fffdf7;
  --sand: #eadfcb;
  --gold: #c69433;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 20, 12, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Libre Franklin", Arial, sans-serif;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 100;
  margin: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid rgba(23, 20, 20, 0.1);
  backdrop-filter: blur(16px);
}

.main-nav {
  width: min(1200px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
}

.brand-text {
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: var(--red-dark);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-links a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-count {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sand);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at top left, rgba(165, 31, 38, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cream), #fff7ea);
  border: 1px solid rgba(23, 20, 20, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.shop-header h2,
.site-footer h2 {
  font-family: "Bitter", Georgia, serif;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.hero-image-large {
  aspect-ratio: 4 / 4.6;
}

.page-hero {
  width: min(1200px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: clamp(34px, 6vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(165, 31, 38, 0.14), transparent 32%),
    linear-gradient(135deg, var(--cream), #fff7ea);
  border: 1px solid rgba(23, 20, 20, 0.08);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.trust-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(23, 20, 20, 0.1);
  background: var(--white);
}

.trust-strip div {
  padding: 22px 24px;
  border-right: 1px solid rgba(23, 20, 20, 0.1);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bitter", Georgia, serif;
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 76px auto 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.shop-header h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.section-subtitle {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.category-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.category-grid article,
.steps article,
.product-card {
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.category-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.category-grid article {
  padding-bottom: 22px;
}

.category-grid a {
  display: block;
  text-decoration: none;
}

.category-grid h3,
.category-grid p,
.steps h3,
.steps p {
  margin-left: 22px;
  margin-right: 22px;
}

.category-grid h3,
.steps h3,
.product-card h3 {
  font-family: "Bitter", Georgia, serif;
}

.category-grid h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 23px;
}

.category-grid p,
.steps p {
  color: var(--muted);
  line-height: 1.6;
}

.product-section {
  scroll-margin-top: 140px;
}

.home-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
}

.home-cta h2 {
  max-width: 680px;
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.shop-header {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}

.product-search input {
  width: min(320px, 100%);
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.offer-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 24px 0 28px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--sand);
  color: var(--muted);
  font-weight: 700;
}

.offer-banner strong {
  color: var(--red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product-image {
  display: block;
  background: #f5eee0;
}

.product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.sale-badge,
.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 9px;
  background: var(--red);
  color: var(--white);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card h3 {
  min-height: 56px;
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.3;
}

.price {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
}

.price span {
  margin-right: 8px;
  color: #8a8178;
  font-size: 14px;
  text-decoration: line-through;
}

.add-cart {
  min-height: 42px;
  margin-top: auto;
  border: 0;
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-cart:hover,
.add-cart:focus {
  background: var(--red);
}

.add-cart:disabled {
  background: #b8aea2;
  color: rgba(255, 255, 255, 0.92);
  cursor: not-allowed;
}

.add-cart:disabled:hover,
.add-cart:disabled:focus {
  background: #b8aea2;
}

.no-results {
  margin: 30px 0 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.about-section {
  scroll-margin-top: 140px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at top left, rgba(165, 31, 38, 0.12), transparent 32%),
    var(--cream);
  border: 1px solid var(--sand);
  border-radius: 6px;
}

.about-image-stack {
  position: relative;
  min-height: 460px;
}

.about-image-stack img {
  position: absolute;
  width: 72%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.about-image-stack img:first-child {
  top: 0;
  left: 0;
}

.about-image-stack img:last-child {
  right: 0;
  bottom: 0;
  border: 10px solid var(--cream);
}

.about-copy h1,
.about-copy h2 {
  margin: 0 0 18px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .founder-signature {
  margin-top: 22px;
  color: var(--red-dark);
  font-family: "Bitter", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.how-to-use {
  padding: 52px;
  background: #171414;
  color: var(--white);
  border-radius: 6px;
}

.how-to-use .section-heading h2,
.how-to-use .eyebrow {
  color: var(--white);
}

.steps article {
  padding: 24px 0;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-left: 22px;
  border-radius: 50%;
  background: var(--red);
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.74);
}

.demo-video-section {
  margin-top: 34px;
}

.demo-video {
  width: 100%;
  max-height: 760px;
  display: block;
  background: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.usage-guide {
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.usage-grid article,
.care-note {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 6px;
}

.usage-grid h3,
.care-note h3 {
  margin: 0 0 10px;
  font-family: "Bitter", Georgia, serif;
  font-size: 22px;
}

.usage-grid p,
.care-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.care-note {
  margin-top: 22px;
  background: var(--cream);
}

.recipe-section {
  margin-top: 48px;
}

.recipe-grid {
  display: grid;
  gap: 28px;
}

.recipe-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(30, 20, 12, 0.06);
}

.recipe-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--cream);
}

.recipe-content {
  padding: clamp(24px, 4vw, 42px);
}

.recipe-meta {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recipe-card h3 {
  margin: 0 0 12px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.recipe-content > p:not(.recipe-meta) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.recipe-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
}

.recipe-columns h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-columns ul,
.recipe-columns ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.recipe-columns li + li {
  margin-top: 6px;
}

.contact-form-section {
  scroll-margin-top: 140px;
}

.contact-form-section[hidden] {
  display: none;
}

.contact-form-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 42px rgba(30, 20, 12, 0.08);
}

.contact-form-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form-close:hover,
.contact-form-close:focus {
  border-color: var(--red);
  color: var(--red);
}

.contact-form-copy h1,
.contact-form-copy h2 {
  margin: 0 0 16px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.contact-form-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-form-copy a {
  color: var(--red);
  font-weight: 800;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stock-badge {
  background: rgba(23, 20, 20, 0.84);
}

.featured-product {
  border-color: rgba(165, 31, 38, 0.38);
  box-shadow: 0 12px 32px rgba(165, 31, 38, 0.12);
}

.is-out-of-stock .product-image img {
  filter: grayscale(0.35);
  opacity: 0.58;
}

.is-out-of-stock .product-info {
  color: #7c746d;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(165, 31, 38, 0.12);
}

.form-submit {
  min-height: 50px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-submit:hover,
.form-submit:focus {
  background: var(--red-dark);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 76px auto 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  background: var(--red-dark);
  color: var(--white);
  border-radius: 6px;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.contact-cta {
  min-width: 220px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.contact-cta:hover,
.contact-cta:focus {
  background: var(--white);
  border-color: var(--white);
  color: var(--red-dark);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(23, 20, 20, 0.45);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  box-shadow: -18px 0 50px rgba(23, 20, 20, 0.22);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 20, 20, 0.12);
}

.cart-drawer-header h2 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: 30px;
}

.cart-close {
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  min-height: 38px;
  padding: 0 12px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 20, 20, 0.1);
}

.cart-item img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--cream);
}

.cart-item h3 {
  margin: 0 0 6px;
  font-family: "Bitter", Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
}

.cart-item-price {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-controls button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--sand);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.cart-controls .remove-item {
  width: auto;
  margin-left: auto;
  padding: 0 8px;
  color: var(--red);
}

.cart-empty {
  margin: 24px 0;
  color: var(--muted);
  font-weight: 700;
}

.cart-summary {
  padding-top: 18px;
  border-top: 1px solid rgba(23, 20, 20, 0.12);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.cart-summary p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-message {
  margin-top: 14px !important;
  padding: 12px;
  background: var(--cream);
  border: 1px solid var(--sand);
  color: var(--ink) !important;
  border-radius: 3px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    radial-gradient(circle at top left, rgba(165, 31, 38, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cream), #fff7ea);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: clamp(32px, 6vw, 64px);
  background: var(--white);
  border: 1px solid rgba(23, 20, 20, 0.1);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.thank-you-card p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .main-nav {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(23, 20, 20, 0.1);
  }

  .nav-links.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(23, 20, 20, 0.08);
  }

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

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

@media (max-width: 760px) {
  .hero {
    padding: 28px;
  }

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

  .trust-strip,
  .category-grid,
  .about-card,
  .contact-form-card,
  .recipe-card,
  .recipe-columns,
  .steps,
  .usage-grid {
    grid-template-columns: 1fr;
  }

  .recipe-card img {
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .about-image-stack {
    min-height: 360px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 20, 20, 0.1);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .shop-header,
  .home-cta,
  .site-footer {
    display: block;
  }

  .home-cta-actions {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .product-search input {
    width: 100%;
    margin-top: 18px;
  }

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

  .how-to-use,
  .site-footer {
    padding: 28px;
  }

  .site-footer .button,
  .contact-cta {
    margin-top: 20px;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    display: none;
  }

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

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