:root {
  --bg: #fffdf8;
  --paper: #ffffff;
  --ink: #2b1a12;
  --muted: #756a63;
  --line: #eadfd2;
  --red: #7b2f18;
  --red-dark: #4b2415;
  --green: #386b35;
  --gold: #c49a45;
  --shadow: 0 24px 60px rgba(68, 35, 23, .12);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Avenir Next", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--red); color: #fff; padding: 10px 14px; z-index: 100; }
.skip-link:focus { left: 10px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234,223,210,.82);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; min-width: 205px; }
.brand img { width: 106px; }
.brand span { display: block; font-size: 13px; color: var(--muted); line-height: 1.25; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 18px; color: var(--red-dark); line-height: 1.1; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 46px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { transform: rotate(45deg); }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(90deg); }
body.nav-open .nav-toggle span::after { opacity: 0; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a, .nav-parent {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: #46342c;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a:hover, .nav-parent:hover, .site-nav a.active { color: var(--red); background: #fff2ed; }
.nav-item { position: relative; }
.nav-parent { display: inline-flex; align-items: center; gap: 8px; cursor: default; }
.nav-parent::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.subnav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-item:hover .subnav, .nav-item:focus-within .subnav { opacity: 1; transform: translateY(0); pointer-events: auto; }
.subnav a { border-radius: 10px; display: block; padding: 9px 10px; }
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 42px;
  align-items: center;
}
.hero h1, .page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--red-dark);
}
.page-hero h1 {
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
}
.hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.quiet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}
.quiet-links a {
  color: var(--red-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(75, 36, 21, .25);
}
.quiet-links a:hover {
  border-bottom-color: currentColor;
}
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button { background: var(--red); color: #fff; box-shadow: 0 12px 28px rgba(143,31,17,.24); }
.button:hover { background: var(--red-dark); }
.button-secondary { background: #fff; color: var(--red-dark); border-color: var(--line); }
.hero-media {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 35% 25%, #fff 0, #fff 36%, #fbefe2 100%);
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.hero-media-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.hero-media-banner img {
  object-fit: contain;
  padding: 20px;
}
.hero-media-banner .hero-card {
  display: none;
}
.hero-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(234,223,210,.9);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 42px rgba(68,35,23,.12);
}
.hero-card strong { display: block; color: var(--green); }
.main { overflow: hidden; }
.section { max-width: 1180px; margin: 0 auto; padding: 46px 24px; scroll-margin-top: 96px; }
.section h2 { margin: 0 0 14px; font-family: Georgia, serif; color: var(--red-dark); font-size: clamp(26px, 3vw, 36px); line-height: 1.1; }
.section-intro { color: var(--muted); max-width: 760px; margin: 0 0 28px; font-size: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(68,35,23,.08);
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #f7efe6; }
.product-card-bottle img,
.product-card-biscuits img {
  object-fit: contain;
  background: #fff;
}
.product-card-bottle img {
  padding: 8px 16px;
}
.product-card-biscuits img {
  padding: 16px 22px;
}
.product-card .body { padding: 20px; }
.product-card h3 { margin: 0 0 8px; color: var(--red-dark); font-size: 22px; }
.product-card p { margin: 0 0 14px; color: var(--muted); }
.product-card a { font-weight: 800; color: var(--red); text-decoration: none; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.split img { border-radius: 24px; box-shadow: var(--shadow); }
.creator-section > img {
  max-height: 520px;
  width: auto;
  justify-self: center;
  object-fit: contain;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 18px 48px rgba(68,35,23,.08);
}
.creation-links {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.creation-links h3 {
  margin: 0 0 10px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 22px;
}
.creation-links ul {
  margin: 0;
  padding-left: 20px;
  color: var(--red-dark);
}
.creation-links li {
  margin: 6px 0;
}
.creation-links a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}
.creation-links a:hover {
  text-decoration: underline;
}
.legal-page p {
  font-weight: 400;
}
.legal-page h2 {
  margin-top: 28px;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.18;
}
.legal-page h2:first-child {
  margin-top: 0;
}
.product-list { display: grid; gap: 24px; }
.product-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.product-row img { border-radius: 18px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.bottle-list .product-row {
  grid-template-columns: 260px 1fr;
}
.bottle-list .product-row img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
}
.product-row-feature {
  grid-template-columns: minmax(280px, 430px) 1fr;
}
.product-row-feature > img {
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: #fff;
}
.product-row h2, .product-row h3 { margin: 0 0 8px; color: var(--red-dark); font-size: 24px; font-family: Georgia, serif; }
.product-row p { margin: 0; color: var(--muted); }
.award-line {
  margin-top: 18px !important;
  color: var(--red-dark) !important;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}
.ingredients {
  margin-top: 10px;
  font-size: 14px;
  color: #5b4b43;
}
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}
.cert-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #edf6e8;
  color: var(--green);
  border: 1px solid #cfe3c7;
  font-size: 12px;
  font-weight: 800;
}
.cert-badges img {
  width: auto;
  height: 46px;
  object-fit: contain;
}
.cert-badges img.logo-tall {
  height: 54px;
}
.product-card .cert-badges {
  margin: 4px 0 14px;
}
.product-card .cert-badges img {
  height: 34px;
}
.product-card .cert-badges img.logo-tall {
  height: 40px;
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.flavor-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(68,35,23,.07);
}
.flavor-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  padding: 12px;
}
.flavor-grid h3 {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--red-dark);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.15;
}
.recipe-list {
  display: grid;
  gap: 22px;
}
.recipe-block {
  display: grid;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(68,35,23,.07);
}
.recipe-block img {
  width: min(100%, 520px);
  max-height: 280px;
  object-fit: contain;
  justify-self: start;
  border-radius: 14px;
  background: #fff;
}
.recipe-block h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.recipe-block p {
  color: var(--muted);
  margin: 0;
}
.recipe-lead {
  font-weight: 800;
  color: var(--red-dark);
}
.recipe-steps {
  margin: 14px 0 0;
  padding-left: 22px;
  color: #5b4b43;
}
.recipe-steps li {
  margin: 7px 0;
}
.recipe-submit .button {
  margin-top: 18px;
}
.press-page {
  padding-top: 24px;
}
.press-book-title {
  max-width: min(100%, 460px);
  margin: 0 0 30px;
}
.press-section {
  margin-top: 32px;
}
.press-section h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}
.press-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.press-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(68,35,23,.08);
}
button.press-card {
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}
.press-preview-trigger:hover,
.press-preview-trigger:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(68,35,23,.12);
}
.press-preview-trigger:focus-visible {
  outline: 3px solid rgba(141, 50, 31, .28);
  outline-offset: 3px;
}
.press-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}
.press-card-document img {
  aspect-ratio: 3/4;
}
.press-subtitle {
  margin: 10px 0 14px;
  color: var(--red-dark);
  font-weight: 800;
}
.awards-grid {
  margin-bottom: 28px;
}
.press-award-card {
  position: relative;
}
.press-award-card > img:not(.award-medal) {
  aspect-ratio: 4/3;
}
.award-medal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 46px !important;
  height: 46px !important;
  aspect-ratio: 1 !important;
  padding: 0 !important;
  background: transparent !important;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(68,35,23,.18));
}
.press-card span { display: block; padding: 14px 14px 4px; font-weight: 800; color: var(--red-dark); }
.press-card small {
  display: block;
  padding: 0 14px 16px;
  color: var(--muted);
  font-size: 13px;
}
.preview-modal[hidden] {
  display: none;
}
.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 24, 21, .72);
}
.preview-modal-panel {
  position: relative;
  z-index: 1;
  width: min(94vw, 860px);
  max-height: 92vh;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}
.preview-modal-panel img {
  max-width: 100%;
  max-height: calc(92vh - 36px);
  object-fit: contain;
  border-radius: 10px;
}
.preview-modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--red-dark);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.media-detail {
  padding-top: 24px;
}
.back-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 18px;
}
.back-link:hover {
  text-decoration: underline;
}
.media-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 34px rgba(68,35,23,.07);
}
.media-logo {
  max-width: 240px;
  margin-bottom: 20px;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 16px;
  background: #201815;
}
.video-frame img,
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.audio-list {
  display: grid;
  gap: 14px;
}
.audio-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: var(--paper);
}
.audio-item h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.audio-item audio {
  width: 100%;
}
.media-source-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.media-source-note span {
  color: var(--red-dark);
  font-weight: 800;
}
.video-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(43, 26, 18, .88);
  color: #fff;
}
.video-note span {
  color: #f2dfd5;
  font-size: 14px;
}
.document-frame {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
}
.document-frame img {
  width: min(100%, 760px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(68,35,23,.08);
}
.page-hero { max-width: 1180px; margin: 0 auto; padding: 52px 24px 22px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
form label { font-weight: 800; color: var(--red-dark); }
.field-hint {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}
input, select, textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 13px; font: inherit; background: #fff; color: var(--ink); }
textarea { min-height: 150px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
input[type="submit"], input[type="reset"] { width: auto; cursor: pointer; font-weight: 800; }
input[type="submit"] { background: var(--red); color: #fff; border-color: var(--red); }
input[type="reset"] { background: #fff; color: var(--red-dark); }
.field { margin-bottom: 18px; }
.notice { color: var(--red-dark); font-weight: 800; }
.site-footer { margin-top: 42px; border-top: 1px solid var(--line); background: #2b211d; color: #f8eee6; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 28px 24px; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.footer-inner a { color: #fff; }
.footer-inner .legal,
.footer-inner .legal a {
  font-weight: 400;
}
.legal { font-size: 14px; color: #ddcfc5; }
.alcohol { color: var(--muted); font-size: 13px; text-align: center; margin-top: 26px; }
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  body.nav-open .site-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a, .nav-parent { border-radius: 12px; padding: 12px; }
  .nav-item { display: grid; }
  .nav-parent { justify-content: space-between; }
  .subnav { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 0 12px; display: grid; background: transparent; }
  .hero { grid-template-columns: 1fr; padding-top: 34px; }
  .hero-media { min-height: 280px; }
  .hero-media img { min-height: 280px; }
  .product-grid, .split, .form-grid, .product-row-feature, .flavor-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .header-inner { padding: 10px 16px; }
  .brand img { width: 64px; }
  .brand { gap: 9px; min-width: auto; }
  .brand span { display: block; }
  .brand strong { font-size: 20px; max-width: 130px; }
  .site-nav { top: 62px; left: 10px; right: 10px; }
  .hero { padding-top: 24px; padding-bottom: 16px; gap: 22px; }
  .hero, .section, .page-hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 28px; }
  .hero p, .section-intro, .page-hero p { font-size: 15px; }
  .hero p { margin-top: 16px; }
  .hero-actions { display: grid; margin-top: 20px; }
  .hero-media { min-height: 210px; border-radius: 20px; }
  .hero-media img { min-height: 210px; }
  .hero-media-banner img { padding: 10px; }
  .hero-card { display: none; }
  .product-row { grid-template-columns: 1fr; padding: 16px; }
  .bottle-list .product-row { grid-template-columns: 1fr; }
  .bottle-list .product-row img { margin: 0 auto; }
  .press-grid { grid-template-columns: 1fr; }
  .video-frame {
    aspect-ratio: 4/3;
  }
  .video-note {
    position: static;
    border-radius: 0;
  }
  .footer-inner { display: grid; }
}
