:root {
  color-scheme: light;
  --ink: #151713;
  --muted: #65665d;
  --paper: #f7f2e9;
  --surface: #fffdf8;
  --soft: #ede7d8;
  --line: #d8cfbd;
  --forest: #263f31;
  --navy: #173453;
  --red: #ad3f32;
  --gold: #b0833b;
  --shadow: rgba(31, 43, 35, 0.16);
}

* { box-sizing: border-box; }

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

a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(14px);
}

nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 950;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 52, 83, 0.32);
  border-radius: 50%;
  object-fit: cover;
}

.brand-word {
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-word small {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.back,
.navlinks a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration: none;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 16px;
}

main { padding-bottom: 72px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(46px, 8vw, 84px) 0 clamp(34px, 5vw, 54px);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 650px;
  font-size: clamp(3.9rem, 8vw, 7.6rem);
  line-height: 0.88;
}

h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
h3 { color: var(--ink); font-size: 1.08rem; line-height: 1.22; }

.lead {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.kicker {
  border: 1px solid rgba(23, 52, 83, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 250, 241, 0.72);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 26px 70px var(--shadow);
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.label-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(30px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(251, 247, 238, 0.96)),
    var(--surface);
  box-shadow: 0 26px 70px rgba(31, 43, 35, 0.13);
}

.label-seal {
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  border: 1px solid rgba(23, 52, 83, 0.22);
  border-radius: 50%;
  object-fit: cover;
}

.label-kicker,
.label-detail,
.label-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.label-wordmark {
  margin-top: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
}

.label-product {
  margin: 30px 0 8px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
}

.label-rule {
  width: 100%;
  height: 1px;
  margin: 28px 0;
  background: var(--line);
}

section { padding: clamp(34px, 5vw, 58px) 0; }

.band {
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.68);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
}

.category-grid,
.feature-list,
.file-grid,
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.panel {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 10px 30px rgba(31, 43, 35, 0.08);
}

.panel p {
  margin: 8px 0 16px;
  color: var(--muted);
}

.panel a {
  color: var(--navy);
  font-weight: 950;
}

.tag {
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 8px;
  background: var(--soft);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status {
  color: var(--red);
  font-weight: 950;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-family: "Segoe UI Symbol", "Apple Color Emoji", sans-serif;
  font-size: 1rem;
  line-height: 1;
  vertical-align: 0.05em;
}

.mark.heart { color: var(--red); }
.mark.caution { color: var(--gold); }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.legend span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 250, 241, 0.78);
}

.list {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.list li {
  display: flex;
  gap: 8px;
}

.list li::before {
  content: "+";
  color: var(--red);
  font-weight: 950;
}

.recipe-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.94);
}

.recipe-card h3 { margin-bottom: 8px; }

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

.recipe-section h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-section ul,
.recipe-section ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.recipe-section li::marker {
  color: var(--red);
  font-weight: 950;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(232, 236, 225, 0.7);
}

.copy-block {
  margin-top: 12px;
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  color: var(--navy);
}

.note-box {
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--muted);
}

.note-box strong {
  color: var(--red);
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 30px rgba(31, 43, 35, 0.08);
}

.budget-table th,
.budget-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.budget-table th {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.budget-table td:nth-child(3),
.budget-table td:nth-child(4),
.budget-table td:nth-child(5) {
  font-weight: 850;
}

.budget-checklist th:first-child,
.budget-checklist td:first-child {
  width: 54px;
  text-align: center;
}

.budget-checklist input[type="number"],
.budget-checklist input[type="text"] {
  width: 100%;
  min-width: 120px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 9px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

.budget-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

.total-row td {
  background: rgba(232, 236, 225, 0.55);
  color: var(--navy);
  font-weight: 950;
}

.budget-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.store-callout {
  min-height: 440px;
}

.store-hero-image {
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(31, 43, 35, 0.12);
}

.store-hero-image img {
  width: 100%;
}

.product-grid,
.listing-grid,
.store-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 10px 30px rgba(31, 43, 35, 0.08);
}

.product-card {
  padding: 14px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 207, 189, 0.86);
  border-radius: 8px;
  object-fit: cover;
}

.product-card a {
  color: var(--navy);
  font-weight: 950;
}

.media-video {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 207, 189, 0.86);
  border-radius: 8px;
  background: #151713;
  object-fit: cover;
}

.product-card p,
.listing-card p {
  color: var(--muted);
}

.product-photo,
.listing-photo {
  min-height: 190px;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 207, 189, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 36%),
    linear-gradient(145deg, var(--photo-a), var(--photo-b));
}

.listing-photo {
  min-height: 210px;
  margin: 0;
  border-width: 0 0 1px;
  border-radius: 0;
}

.listing-body {
  padding: 16px;
}

.price {
  margin: 0 0 8px;
  color: var(--forest) !important;
  font-size: 1.05rem;
  font-weight: 950;
}

.egyptian { --photo-a: #f1e3c6; --photo-b: #b89046; }
.scallop { --photo-a: #f4d6ce; --photo-b: #f9f0e5; }
.barrel { --photo-a: #2b211c; --photo-b: #a26f42; }
.gem { --photo-a: #392342; --photo-b: #9670a5; }
.crock { --photo-a: #171918; --photo-b: #66745e; }
.moon { --photo-a: #f1ebdc; --photo-b: #c9bfa9; }
.starter { --photo-a: #f2e8d5; --photo-b: #9d6f49; }
.refill { --photo-a: #fff8eb; --photo-b: #d5c7af; }
.small { --photo-a: #f8ece2; --photo-b: #b69aa4; }
.vessel { --photo-a: #ebe1cf; --photo-b: #5d6950; }
.harvest { --photo-a: #d9903d; --photo-b: #3f3b2d; }
.barrelhouse { --photo-a: #1f1b18; --photo-b: #8f6037; }

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.swatch-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.swatch-grid span::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(21, 23, 19, 0.22);
  border-radius: 50%;
  background: var(--swatch);
}

@media (max-width: 880px) {
  nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .navlinks {
    flex-wrap: wrap;
  }

  .hero,
  .category-grid,
  .feature-list,
  .file-grid,
  .recipe-grid,
  .product-grid,
  .listing-grid,
  .store-options {
    grid-template-columns: 1fr;
  }

  .budget-table {
    display: block;
    overflow-x: auto;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 10px;
  }
}

.storefront main {
  padding-bottom: 0;
}

.store-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 242, 233, 0.98)),
    var(--paper);
}

.store-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 7vw, 82px) 0;
}

.store-hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6.4vw, 6.8rem);
  line-height: 0.92;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button,
.shop-card button,
.buy-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  padding: 10px 14px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.shop-card button,
.buy-row button {
  background: var(--navy);
  color: #fffdf8;
}

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

.shop-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.95);
  box-shadow: 0 10px 30px rgba(31, 43, 35, 0.08);
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.shop-card-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.shop-card-photo img {
  border-bottom: 0;
}

.labeled-product-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(58%, 210px);
  border: 1px solid rgba(23, 52, 83, 0.26);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 24px rgba(31, 43, 35, 0.18);
}

.labeled-product-photo figcaption span,
.labeled-product-photo figcaption small {
  display: block;
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.labeled-product-photo figcaption strong {
  display: block;
  margin: 5px 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 0.98;
}

.labeled-product-photo figcaption small {
  color: var(--forest);
  letter-spacing: 0.1em;
}

.hcc-product-photo img {
  object-position: 44% 48%;
}

.shop-card-body {
  display: flex;
  min-height: 260px;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.shop-card-body p:not(.tag) {
  margin: 10px 0 16px;
  color: var(--muted);
}

.buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.buy-row strong {
  color: var(--forest);
  font-size: 1.18rem;
}

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

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.cart-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 42px rgba(31, 43, 35, 0.1);
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 52px;
}

.empty-cart {
  margin: 0;
  color: var(--muted);
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.cart-row span {
  min-width: 0;
  color: var(--ink);
  font-weight: 850;
}

.cart-row strong {
  color: var(--forest);
}

.cart-row button,
.text-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0;
  border-top: 2px solid var(--line);
  padding-top: 14px;
  color: var(--navy);
  font-weight: 950;
}

.cart-total strong {
  font-size: 1.35rem;
}

.cart-panel .button {
  width: 100%;
}

.checkout-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.text-button {
  width: 100%;
  margin-top: 10px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .store-hero-inner,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .store-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .shop-card-body {
    min-height: auto;
  }

  .labeled-product-photo figcaption {
    width: min(62%, 190px);
  }
}
