:root {
  --ink: #1b0f0a;
  --ink-2: #2a1810;
  --cacao: #3a2015;
  --milk: #f6ecdc;
  --cream: #fff8ef;
  --beige: #ead9c0;
  --gold: #d9a45f;
  --gold-2: #f1c27b;
  --wine: #7d2e28;
  --copper: #b66b3e;
  --muted: #7b6758;
  --line: rgba(217, 164, 95, 0.28);
  --shadow: 0 24px 70px rgba(27, 15, 10, 0.18);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Ecommerce catalog, product detail and cart */
.commerce-page-shell {
  min-height: 70vh;
  padding: 118px clamp(20px, 5vw, 78px) 72px;
  color: var(--cream);
  background:
    linear-gradient(rgba(216, 164, 98, 0.045) 1px, transparent 1px),
    #160d09;
  background-size: 100% 72px;
}

.commerce-loading {
  display: grid;
  place-items: center;
  min-height: 48vh;
  color: rgba(255, 248, 239, 0.66);
}

.commerce-loading span {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(217, 164, 95, 0.24);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: commerce-spin 0.8s linear infinite;
}

@keyframes commerce-spin {
  to { transform: rotate(360deg); }
}

.catalog-toolbar-copy small {
  color: rgba(255, 248, 239, 0.52);
}

.shop-search-field {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(217, 164, 95, 0.16);
  color: var(--champagne);
  font-size: 12px;
  font-weight: 700;
}

.shop-search-field input {
  width: 100%;
  padding: 11px 12px;
  color: var(--cream);
  background: rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(217, 164, 95, 0.24);
  border-radius: 6px;
  outline: none;
}

.shop-search-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 95, 0.12);
}

.catalog-card-media > a {
  display: block;
  height: 100%;
}

.catalog-card-media > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-card-media > a img {
  transform: scale(1.045);
}

.product-card-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  gap: 8px;
}

.product-card-tools button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--cream);
  background: rgba(20, 11, 7, 0.78);
  border: 1px solid rgba(255, 248, 239, 0.18);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.product-card-tools button:hover,
.product-card-tools button.is-active {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.product-card-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 248, 239, 0.52);
  font-size: 11px;
}

.in-stock { color: #b8d69b !important; }
.out-stock { color: #d78979 !important; }

.catalog-card-body h2 a,
.related-product-card h3 a,
.cart-line-info h2 a {
  color: inherit;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 12px;
}

.product-rating > span { color: var(--gold); }

.product-price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-price-line strong { color: var(--champagne); font-size: 18px; }
.product-price-line del { color: rgba(255, 248, 239, 0.42); font-size: 13px; }

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8px;
  margin-top: 4px;
}

.product-card-actions .btn,
.product-card-actions button {
  min-height: 40px;
  padding: 9px 11px;
  justify-content: center;
  font-size: 12px;
}

.product-card-actions .catalog-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #24130c;
  background: var(--champagne);
  border: 1px solid var(--champagne);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
}

.product-card-actions .catalog-add:hover { background: #efc98f; }
.product-card-actions .catalog-add:disabled { cursor: not-allowed; opacity: 0.45; }

.commerce-modal-root[hidden] { display: none; }

.commerce-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 22px;
}

.commerce-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 3, 0.78);
  backdrop-filter: blur(8px);
}

.commerce-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  color: var(--cream);
  background: #20120c;
  border: 1px solid rgba(217, 164, 95, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--cream);
  background: rgba(17, 9, 6, 0.66);
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
}

.quick-view-dialog {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
}

.quick-view-image {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}

.quick-view-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 5vw, 58px);
}

.quick-view-copy h2 { font-size: clamp(32px, 4vw, 48px); }
.quick-view-copy label { display: grid; gap: 8px; color: var(--champagne); font-weight: 700; }
.quick-view-copy select { padding: 12px; color: var(--cream); background: #160d09; border: 1px solid rgba(217, 164, 95, 0.34); border-radius: 5px; }
.quick-view-actions { display: flex; gap: 10px; flex-wrap: wrap; }

body.modal-open { overflow: hidden; }

.product-breadcrumb {
  display: flex;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto 30px;
  color: rgba(255, 248, 239, 0.54);
  font-size: 13px;
}

.product-breadcrumb a:hover { color: var(--gold); }

.product-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 6vw, 88px);
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 78px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.product-thumbnails { display: grid; align-content: start; gap: 10px; }
.product-thumbnail { aspect-ratio: 1 / 1.1; padding: 0; overflow: hidden; background: #21130d; border: 1px solid rgba(217, 164, 95, 0.18); border-radius: 5px; cursor: pointer; opacity: 0.62; }
.product-thumbnail.active { border-color: var(--gold); opacity: 1; }
.product-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.product-main-image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #21130d;
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: 7px;
}

.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-main-image > span { position: absolute; top: 18px; left: 18px; padding: 7px 11px; color: #25140d; background: var(--champagne); border-radius: 3px; font-size: 11px; font-weight: 800; text-transform: uppercase; }

.product-detail-copy { align-self: center; }
.product-detail-copy h1 { max-width: 720px; margin: 8px 0 16px; font-size: clamp(42px, 5vw, 68px); }
.product-detail-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 16px; color: rgba(255, 248, 239, 0.52); font-size: 12px; }
.product-detail-meta span + span { position: relative; }
.product-detail-meta span + span::before { content: ""; position: absolute; top: 50%; left: -10px; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.product-detail-price { display: flex; align-items: baseline; gap: 14px; margin: 24px 0 16px; }
.product-detail-price strong { color: var(--champagne); font-family: var(--serif); font-size: 34px; }
.product-detail-price del { color: rgba(255, 248, 239, 0.4); }
.product-detail-lead { max-width: 620px; color: rgba(255, 248, 239, 0.72); font-size: 16px; line-height: 1.75; }

.product-options { padding: 0; margin: 26px 0; border: 0; }
.product-options legend { margin-bottom: 12px; color: var(--cream); font-weight: 700; }
.product-options > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.product-option { display: grid; gap: 3px; min-height: 68px; padding: 12px; background: rgba(255, 248, 239, 0.035); border: 1px solid rgba(217, 164, 95, 0.2); border-radius: 5px; cursor: pointer; }
.product-option.active { background: rgba(217, 164, 95, 0.1); border-color: var(--gold); }
.product-option input { position: absolute; opacity: 0; pointer-events: none; }
.product-option small { color: rgba(255, 248, 239, 0.5); }

.product-purchase-row { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 10px; }
.quantity-stepper { display: grid; grid-template-columns: 38px minmax(42px, 1fr) 38px; min-height: 48px; overflow: hidden; border: 1px solid rgba(217, 164, 95, 0.3); border-radius: 5px; }
.quantity-stepper button, .quantity-stepper input { min-width: 0; padding: 0; color: var(--cream); background: transparent; border: 0; text-align: center; }
.quantity-stepper button { cursor: pointer; font-size: 18px; }
.quantity-stepper button:hover { background: rgba(217, 164, 95, 0.12); }
.quantity-stepper input { border-right: 1px solid rgba(217, 164, 95, 0.16); border-left: 1px solid rgba(217, 164, 95, 0.16); appearance: textfield; }
.product-add-primary { justify-content: center; }

.product-secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.product-secondary-actions .btn { justify-content: center; }
.product-wishlist-action { color: var(--cream); background: transparent; border: 1px solid rgba(217, 164, 95, 0.3); border-radius: 5px; cursor: pointer; }
.product-wishlist-action.is-active { color: var(--gold); border-color: var(--gold); }
.product-trust-list { display: grid; gap: 9px; padding: 20px 0 0; margin: 24px 0 0; border-top: 1px solid rgba(217, 164, 95, 0.16); color: rgba(255, 248, 239, 0.62); list-style: none; }
.product-trust-list li::before { content: "✓"; margin-right: 9px; color: var(--gold); }

.product-information {
  max-width: 1400px;
  margin: 0 auto;
  padding: 54px 0 68px;
  border-top: 1px solid rgba(217, 164, 95, 0.2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.2);
}

.product-info-tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 14px; }
.product-info-tabs button { min-width: max-content; padding: 11px 16px; color: rgba(255, 248, 239, 0.6); background: transparent; border: 0; border-bottom: 2px solid transparent; cursor: pointer; }
.product-info-tabs button.active { color: var(--champagne); border-color: var(--gold); }
.product-info-panel { max-width: 920px; padding-top: 28px; color: rgba(255, 248, 239, 0.72); font-size: 16px; line-height: 1.8; }
.product-info-panel h3 { margin-bottom: 12px; color: var(--cream); font-size: 28px; }
.product-info-panel dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.product-info-panel dl div { padding-left: 16px; border-left: 2px solid var(--gold); }
.product-info-panel dt { color: var(--champagne); font-weight: 700; }
.product-info-panel dd { margin: 4px 0 0; }
.info-note { padding: 12px 14px; background: rgba(217, 164, 95, 0.08); border-left: 2px solid var(--gold); }

.related-products { max-width: 1400px; margin: 0 auto; padding: 68px 0 10px; }
.related-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.related-product-card { position: relative; overflow: hidden; background: #21130d; border: 1px solid rgba(217, 164, 95, 0.18); border-radius: 6px; }
.related-product-card > a { display: block; aspect-ratio: 1.18 / 1; overflow: hidden; }
.related-product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.related-product-card:hover img { transform: scale(1.04); }
.related-product-card div { padding: 16px 54px 18px 16px; }
.related-product-card small { color: var(--gold); }
.related-product-card h3 { margin: 6px 0 10px; font-size: 22px; }
.related-product-card > button { position: absolute; right: 14px; bottom: 14px; width: 34px; height: 34px; color: var(--champagne); background: transparent; border: 1px solid var(--gold); border-radius: 50%; cursor: pointer; }

.commerce-not-found { display: grid; justify-items: start; max-width: 780px; min-height: 64vh; align-content: center; margin: 0 auto; }
.commerce-not-found > span { color: rgba(217, 164, 95, 0.22); font-family: var(--serif); font-size: 120px; line-height: 0.8; }
.commerce-not-found h1 { margin: 12px 0; font-size: clamp(42px, 6vw, 72px); }
.commerce-not-found .btn { margin-top: 20px; }

.commerce-page-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; max-width: 1400px; margin: 0 auto 42px; padding-bottom: 30px; border-bottom: 1px solid rgba(217, 164, 95, 0.2); }
.commerce-page-heading h1 { margin: 6px 0 10px; font-size: clamp(44px, 6vw, 72px); }
.commerce-page-heading > div > p:last-child { color: rgba(255, 248, 239, 0.62); }
.checkout-steps { display: flex; gap: 8px; color: rgba(255, 248, 239, 0.42); font-size: 12px; }
.checkout-steps span { padding: 8px 10px; border-bottom: 1px solid rgba(217, 164, 95, 0.18); }
.checkout-steps .active { color: var(--champagne); border-color: var(--gold); }

.cart-root { max-width: 1400px; margin: 0 auto; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.65fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.cart-list-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(217, 164, 95, 0.2); }
.cart-list-head button, .cart-line-info button { padding: 0; color: #d99d82; background: transparent; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.cart-line { display: grid; grid-template-columns: 132px minmax(180px, 1fr) 105px 126px 112px; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(217, 164, 95, 0.16); }
.cart-line-image { display: block; aspect-ratio: 1 / 0.82; overflow: hidden; border-radius: 5px; }
.cart-line-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info small { color: var(--gold); }
.cart-line-info h2 { margin: 4px 0; font-size: 22px; }
.cart-line-info > span { display: block; margin-bottom: 8px; color: rgba(255, 248, 239, 0.48); font-size: 12px; }
.cart-line-unit, .cart-line-total { display: grid; gap: 5px; }
.cart-line-unit span, .cart-line-total span { color: rgba(255, 248, 239, 0.48); font-size: 11px; }
.cart-line-total strong { color: var(--champagne); }
.continue-shopping { display: inline-block; margin-top: 22px; color: var(--champagne); }

.cart-summary { position: sticky; top: 94px; padding: 26px; background: #21130d; border: 1px solid rgba(217, 164, 95, 0.24); border-radius: 7px; box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22); }
.cart-summary h2 { margin: 4px 0 22px; font-size: 32px; }
.coupon-form { display: grid; gap: 8px; padding-bottom: 20px; border-bottom: 1px solid rgba(217, 164, 95, 0.16); }
.coupon-form label { color: var(--champagne); font-size: 12px; font-weight: 700; }
.coupon-form > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.coupon-form input { min-width: 0; padding: 11px; color: var(--cream); background: rgba(255, 248, 239, 0.04); border: 1px solid rgba(217, 164, 95, 0.26); border-radius: 5px 0 0 5px; outline: 0; text-transform: uppercase; }
.coupon-form input:focus { border-color: var(--gold); }
.coupon-form button { padding: 0 14px; color: #24130c; background: var(--champagne); border: 0; border-radius: 0 5px 5px 0; cursor: pointer; font-weight: 700; }
.coupon-status { min-height: 18px; margin: 0; color: rgba(255, 248, 239, 0.48); font-size: 11px; }
.cart-totals { display: grid; gap: 12px; margin: 22px 0; }
.cart-totals div { display: flex; justify-content: space-between; gap: 20px; }
.cart-totals dd { margin: 0; }
.cart-grand-total { padding-top: 16px; border-top: 1px solid rgba(217, 164, 95, 0.22); color: var(--champagne); font-size: 20px; font-weight: 700; }
.shipping-progress { margin-bottom: 20px; overflow: hidden; }
.shipping-progress::before { content: ""; display: block; height: 4px; background: rgba(255, 248, 239, 0.1); border-radius: 2px; }
.shipping-progress > span { display: block; height: 4px; margin-top: -4px; background: var(--gold); border-radius: 2px; }
.shipping-progress p, .shipping-achieved { margin: 9px 0 0; color: rgba(255, 248, 239, 0.54); font-size: 11px; }
.shipping-achieved { color: #b8d69b; }
.checkout-button { display: flex; justify-content: space-between; width: 100%; }
.checkout-note { margin: 10px 0 0; color: rgba(255, 248, 239, 0.42); font-size: 10px; text-align: center; }

.empty-cart { display: grid; justify-items: center; max-width: 700px; min-height: 54vh; align-content: center; margin: 0 auto; text-align: center; }
.empty-cart-icon { display: grid; place-items: center; width: 80px; height: 80px; margin-bottom: 20px; color: var(--gold); border: 1px solid rgba(217, 164, 95, 0.38); border-radius: 50%; font-size: 34px; }
.empty-cart h2 { margin: 8px 0 12px; font-size: clamp(36px, 5vw, 56px); }
.empty-cart > p:not(.eyebrow) { max-width: 540px; color: rgba(255, 248, 239, 0.62); }
.empty-cart .btn { margin-top: 22px; }

.commerce-benefit-strip { display: grid; grid-template-columns: repeat(4, 1fr); color: var(--ink); background: #f4eadc; border-top: 1px solid rgba(72, 39, 23, 0.12); }
.commerce-benefit-strip div { display: grid; gap: 4px; padding: 20px clamp(18px, 3vw, 42px); border-right: 1px solid rgba(72, 39, 23, 0.12); }
.commerce-benefit-strip strong { font-family: var(--serif); font-size: 18px; }
.commerce-benefit-strip span { color: rgba(49, 27, 17, 0.66); font-size: 11px; }

@media (max-width: 1120px) {
  .product-detail-main { grid-template-columns: 1fr 0.9fr; gap: 36px; }
  .product-main-image { min-height: 520px; }
  .related-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; width: min(620px, 100%); margin-left: auto; }
  .cart-line { grid-template-columns: 120px minmax(180px, 1fr) 118px 110px; }
  .cart-line-unit { display: none; }
}

@media (max-width: 820px) {
  .commerce-page-shell { padding: 96px 18px 52px; }
  .quick-view-dialog { grid-template-columns: 1fr; }
  .quick-view-image { min-height: 280px; max-height: 360px; }
  .product-detail-main { grid-template-columns: 1fr; }
  .product-gallery { grid-template-columns: 70px minmax(0, 1fr); }
  .product-main-image { min-height: 500px; }
  .product-detail-copy h1 { font-size: 46px; }
  .commerce-page-heading { align-items: start; flex-direction: column; }
  .checkout-steps { width: 100%; overflow-x: auto; }
  .cart-line { grid-template-columns: 96px minmax(0, 1fr) 116px; align-items: start; }
  .cart-line-total { grid-column: 2; }
  .cart-quantity { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .commerce-benefit-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .product-card-actions { grid-template-columns: 1fr; }
  .commerce-modal-root { padding: 10px; }
  .product-gallery { display: flex; flex-direction: column-reverse; }
  .product-thumbnails { display: flex; overflow-x: auto; }
  .product-thumbnail { flex: 0 0 68px; }
  .product-main-image { min-height: 390px; }
  .product-detail-copy h1 { font-size: 38px; }
  .product-options > div { grid-template-columns: 1fr; }
  .product-purchase-row, .product-secondary-actions { grid-template-columns: 1fr; }
  .product-info-panel dl, .related-product-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .cart-line-info h2 { font-size: 19px; }
  .cart-quantity { grid-column: 1; grid-row: 2; }
  .cart-line-total { grid-column: 2; }
  .commerce-benefit-strip { grid-template-columns: 1fr; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-kerning: normal;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 72px);
  color: var(--cream);
  background: rgba(21, 11, 7, 0.84);
  border-bottom: 1px solid rgba(255, 248, 239, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(21, 11, 7, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
  background: #f7eddc;
  border: 1px solid rgba(217, 164, 95, 0.35);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.15vw, 18px);
  color: rgba(255, 248, 239, 0.78);
  font-size: 12.5px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-2);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.icon-btn,
.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cream);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(217, 164, 95, 0.25);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 1px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-gold {
  color: #2b170e;
  background: linear-gradient(135deg, #f5c985, var(--gold));
  box-shadow: 0 14px 30px rgba(217, 164, 95, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 18px 42px rgba(217, 164, 95, 0.36);
}

.btn-ghost {
  color: var(--cream);
  background: rgba(255, 248, 239, 0.06);
  border-color: rgba(255, 248, 239, 0.26);
}

.btn-dark {
  color: var(--cream);
  background: var(--ink);
}

.section-dark {
  color: var(--cream);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 9, 5, 0.92) 0%, rgba(18, 9, 5, 0.68) 38%, rgba(18, 9, 5, 0.12) 70%),
    linear-gradient(0deg, rgba(18, 9, 5, 0.78) 0%, rgba(18, 9, 5, 0) 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  padding: clamp(96px, 14vh, 164px) 0 clamp(96px, 13vh, 140px);
  margin-left: clamp(20px, 8vw, 110px);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-kerning: normal;
  font-synthesis: none;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h3,
blockquote,
.magazine-card-copy h2,
.popular-heading h2,
.contact-form-panel h2 {
  font-kerning: normal;
  font-synthesis: none;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 570px;
  margin-bottom: 22px;
  color: #fff8ef;
  font-size: clamp(52px, 8vw, 112px);
}

h2 {
  margin-bottom: 22px;
  color: currentColor;
  font-size: clamp(36px, 5vw, 66px);
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgba(255, 248, 239, 0.78);
  font-size: 17px;
}

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

.play-dot {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.play-dot::before {
  width: 0;
  height: 0;
  margin-left: 2px;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--ink);
}

.quality-seal {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 7vw, 96px);
  bottom: clamp(22px, 8vw, 86px);
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  padding: 20px;
  text-align: center;
  color: var(--gold-2);
  background: rgba(27, 15, 10, 0.5);
  border: 1px solid rgba(217, 164, 95, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 239, 0.08);
  backdrop-filter: blur(10px);
}

.quality-seal span {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 0.9;
}

.quality-seal small {
  color: rgba(255, 248, 239, 0.78);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 86px);
  background:
    linear-gradient(115deg, var(--cream), #f5ead9 58%, #efe0cc);
}

.story-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32%;
  gap: 14px;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-main {
  min-height: 430px;
}

.story-stack {
  display: grid;
  gap: 14px;
}

.story-copy {
  align-self: center;
}

.story-copy p {
  max-width: 670px;
  color: #5f4a3a;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.craft-grid article {
  min-width: 0;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  color: var(--gold);
}

.line-icon svg {
  width: 34px;
  height: 34px;
}

.craft-grid strong,
.benefit-bar h3 {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.craft-grid small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.products {
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 50% 0, rgba(125, 46, 40, 0.22), transparent 38%),
    linear-gradient(180deg, #120906, #21110b 48%, #120906);
}

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

.section-heading.centered {
  display: block;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: " →";
}

.text-link.dark {
  color: var(--cacao);
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 365px;
  overflow: hidden;
  background: rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 194, 123, 0.58);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-card:nth-child(3) img {
  object-position: 62% 50%;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card div {
  padding: 18px 18px 20px;
}

.product-card h3 {
  margin-bottom: 5px;
  color: var(--cream);
  font-size: 17px;
}

.product-card p {
  margin-bottom: 10px;
  color: rgba(255, 248, 239, 0.62);
  font-size: 13px;
}

.product-card strong {
  color: var(--gold-2);
  font-size: 16px;
}

.add-cart {
  position: absolute;
  right: 15px;
  bottom: 17px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--gold-2);
  background: rgba(255, 248, 239, 0.05);
  border: 1px solid rgba(241, 194, 123, 0.54);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.add-cart:hover {
  color: var(--ink);
  background: var(--gold-2);
  transform: rotate(90deg);
}

.add-cart svg {
  width: 18px;
  height: 18px;
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 248, 239, 0.95);
  border: 1px solid rgba(255, 248, 239, 0.6);
  border-radius: var(--radius);
}

.benefit-bar article {
  padding: 26px 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(58, 32, 21, 0.1);
}

.benefit-bar article:last-child {
  border-right: 0;
}

.benefit-bar .line-icon {
  margin-bottom: 8px;
}

.benefit-bar p {
  margin: 7px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gift-banner {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.gift-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gift-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 9, 5, 0.88), rgba(18, 9, 5, 0.52) 42%, rgba(18, 9, 5, 0.12)),
    linear-gradient(0deg, rgba(18, 9, 5, 0.48), transparent);
}

.gift-content {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  padding: clamp(64px, 8vw, 96px) 0;
  margin-left: clamp(20px, 8vw, 110px);
}

.gift-content p {
  max-width: 510px;
  color: rgba(255, 248, 239, 0.76);
}

.testimonials,
.blog-section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 86px);
  background: linear-gradient(180deg, #fff8ef, #f3e4cf);
}

.testimonial-grid,
.blog-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card,
.blog-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(58, 32, 21, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(58, 32, 21, 0.08);
}

.testimonial-card {
  position: relative;
  padding: 26px;
}

.testimonial-card::after {
  position: absolute;
  top: 12px;
  right: 22px;
  content: "“";
  color: rgba(217, 164, 95, 0.26);
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff2de, var(--gold-2));
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.person strong,
.person span {
  display: block;
}

.person span {
  color: var(--gold);
  font-size: 12px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: #5f4a3a;
  font-size: 14px;
}

.blog-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 210px;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card div {
  padding: 20px;
}

.blog-card time {
  color: var(--muted);
  font-size: 11px;
}

.blog-card h3 {
  margin: 5px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.05;
}

.blog-card p {
  color: #6f5a49;
  font-size: 14px;
}

.blog-card a {
  color: var(--cacao);
  font-size: 14px;
  font-weight: 800;
}

.blog-card a::after {
  content: " →";
}

.footer {
  color: rgba(255, 248, 239, 0.78);
  background: #120906;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
}

.footer-grid {
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 6vw, 86px);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 14px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 9px;
  font-size: 14px;
}

.footer-brand p {
  max-width: 390px;
  margin-top: 16px;
}

.footer .brand-logo {
  height: 92px;
  border-radius: 46%;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--gold-2);
  border: 1px solid rgba(217, 164, 95, 0.3);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  margin-top: 15px;
}

.newsletter input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--cream);
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid rgba(217, 164, 95, 0.18);
  border-radius: var(--radius);
  outline: 0;
}

.newsletter input:focus {
  border-color: var(--gold);
}

.newsletter button {
  height: 48px;
  color: var(--ink);
  background: var(--gold-2);
  border: 0;
  border-radius: var(--radius);
  font-size: 21px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 6vw, 86px);
  color: rgba(255, 248, 239, 0.54);
  border-top: 1px solid rgba(255, 248, 239, 0.08);
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 40px));
  padding: 14px 18px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
  }

  .nav-toggle {
    display: inline-grid;
    order: 3;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(21, 11, 7, 0.97);
    border: 1px solid rgba(217, 164, 95, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    order: 4;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .header-actions {
    order: 2;
    justify-self: end;
    margin-left: auto;
  }

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

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

  .benefit-bar article {
    border-bottom: 1px solid rgba(58, 32, 21, 0.1);
  }

  .story-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 9, 5, 0.76) 0%, rgba(18, 9, 5, 0.48) 42%, rgba(18, 9, 5, 0.95) 100%),
      linear-gradient(90deg, rgba(18, 9, 5, 0.76), rgba(18, 9, 5, 0.18));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 92px;
    margin: 0 auto;
  }

  .quality-seal {
    right: 18px;
    bottom: 22px;
    width: 96px;
    height: 96px;
  }

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

  .story-stack {
    grid-template-columns: 1fr 1fr;
  }

  .story-main {
    min-height: 320px;
  }

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

  .product-card {
    grid-template-rows: 240px 1fr;
  }

  .benefit-bar {
    grid-template-columns: 1fr;
  }

  .benefit-bar article {
    border-right: 0;
  }

  .gift-content {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link,
  .section-heading > .text-link {
    display: inline-block;
    margin-top: 14px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .header-actions .icon-btn:nth-child(1),
  .header-actions .icon-btn:nth-child(2) {
    display: none;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .story-section,
  .products,
  .testimonials,
  .blog-section {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* About page */
.about-page {
  background: #f7eddf;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  min-height: min(820px, calc(100vh - 78px));
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 42%, rgba(125, 46, 40, 0.18), transparent 36%),
    #180d08;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding: clamp(70px, 9vw, 132px) clamp(32px, 6vw, 96px);
}

.about-hero h1 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(58px, 6.6vw, 100px);
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 17px;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.editorial-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.editorial-link:hover span {
  transform: translateY(4px);
}

.brand-signature {
  position: relative;
  display: block;
  width: max-content;
  margin-top: clamp(46px, 7vw, 82px);
  color: var(--gold);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(26px, 3vw, 38px);
  opacity: 0.88;
  transform: rotate(-4deg);
}

.brand-signature::after {
  position: absolute;
  right: -52px;
  bottom: 5px;
  width: 46px;
  height: 16px;
  content: "";
  border-bottom: 1px solid currentColor;
  border-radius: 50%;
}

.about-hero-visual {
  position: relative;
  min-height: 650px;
}

.about-hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.about-hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #180d08 0%, rgba(24, 13, 8, 0.32) 18%, transparent 48%),
    linear-gradient(0deg, rgba(24, 13, 8, 0.52), transparent 35%);
}

.about-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.craft-note {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(22px, 5vw, 60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  color: var(--cream);
  background: rgba(24, 13, 8, 0.72);
  border: 1px solid rgba(217, 164, 95, 0.34);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.craft-note span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.craft-note p {
  margin: 0;
  color: rgba(255, 248, 239, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.cacao-sketch {
  position: absolute;
  bottom: -34px;
  left: -8px;
  width: 170px;
  color: rgba(217, 164, 95, 0.17);
  stroke-width: 1;
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(44px, 7vw, 110px);
  padding: clamp(80px, 10vw, 146px) clamp(20px, 7vw, 108px);
  background:
    linear-gradient(90deg, rgba(217, 164, 95, 0.07) 1px, transparent 1px) 0 0 / 11.5% 100%,
    #f7eddf;
}

.origin-copy {
  align-self: center;
  max-width: 620px;
}

.origin-copy h2 {
  max-width: 610px;
  color: var(--ink);
  font-size: clamp(46px, 5vw, 72px);
}

.origin-copy > p:not(.eyebrow) {
  color: #725f51;
}

.origin-copy .origin-lead {
  color: var(--cacao);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
}

.origin-proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(58, 32, 21, 0.13);
}

.origin-proofs article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 9px;
  align-items: center;
}

.origin-proofs .line-icon {
  width: 36px;
  height: 36px;
  color: var(--copper);
}

.origin-proofs strong {
  font-size: 12px;
  line-height: 1.35;
}

.origin-gallery {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  min-height: 640px;
}

.origin-gallery figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.origin-gallery .origin-primary {
  grid-row: 1 / 3;
}

.origin-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.origin-gallery figure:hover img {
  transform: scale(1.035);
}

.origin-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 15px 17px;
  color: rgba(255, 248, 239, 0.88);
  background: rgba(27, 15, 10, 0.72);
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.craftsmanship-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(125, 46, 40, 0.23), transparent 34%),
    #1b0f0a;
}

.craftsmanship-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(217, 164, 95, 0.04) 1px, transparent 1px);
  background-size: 100% 110px;
  pointer-events: none;
}

.values-section,
.process-section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 7vw, 108px);
}

.values-section {
  border-bottom: 1px solid rgba(217, 164, 95, 0.16);
}

.about-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.about-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.about-heading h2,
.process-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(44px, 5vw, 68px);
}

.about-heading > p:last-child {
  color: rgba(255, 248, 239, 0.64);
}

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

.value-card {
  position: relative;
  min-height: 280px;
  padding: 34px 28px;
  background: rgba(255, 248, 239, 0.025);
  border: 1px solid rgba(217, 164, 95, 0.25);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.value-card:hover {
  background: rgba(217, 164, 95, 0.07);
  border-color: rgba(217, 164, 95, 0.52);
  transform: translateY(-6px);
}

.value-card .line-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 32px;
  color: var(--gold-2);
  border-color: rgba(217, 164, 95, 0.36);
}

.value-card h3 {
  margin-bottom: 9px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.value-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.58);
  font-size: 13px;
}

.value-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(217, 164, 95, 0.4);
  font-family: var(--serif);
  font-size: 22px;
}

.process-section {
  padding-top: clamp(66px, 8vw, 106px);
}

.process-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.process-heading h2 {
  margin: 0;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 34px);
}

.process-track::before {
  position: absolute;
  top: 63px;
  right: 5%;
  left: 5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), var(--copper), var(--gold), transparent);
  opacity: 0.56;
}

.process-step {
  position: relative;
  padding-top: 0;
}

.process-step:nth-child(even) {
  margin-top: 38px;
}

.process-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(217, 164, 95, 0.5);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.process-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 28px;
  background: var(--ink);
  border: 3px solid var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(217, 164, 95, 0.1);
}

.process-step h3 {
  margin-bottom: 9px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.12;
}

.process-step p {
  margin: 0;
  color: rgba(255, 248, 239, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(380px, 0.92fr);
  min-height: 680px;
  background: #120a07;
}

.founder-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.founder-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 64%, #120a07 100%);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-image > span {
  position: absolute;
  bottom: 26px;
  left: clamp(20px, 5vw, 74px);
  z-index: 1;
  padding: 9px 12px;
  color: var(--cream);
  background: rgba(18, 10, 7, 0.68);
  border-left: 2px solid var(--gold);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(64px, 9vw, 130px) clamp(28px, 7vw, 110px) clamp(64px, 9vw, 130px) clamp(30px, 5vw, 76px);
}

.founder-copy h2 {
  font-size: clamp(45px, 5.2vw, 72px);
}

.founder-copy blockquote {
  position: relative;
  margin: 36px 0 24px;
  padding-left: 26px;
  color: var(--gold-2);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
  line-height: 1.35;
}

.founder-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.62);
}

.founder-name {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atelier-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(500px, 1.14fr);
  min-height: 640px;
  background: #fff8ef;
}

.atelier-copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(70px, 9vw, 130px) clamp(30px, 7vw, 110px);
}

.atelier-copy h2 {
  color: var(--ink);
  font-size: clamp(46px, 5vw, 72px);
}

.atelier-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.atelier-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(58, 32, 21, 0.12);
  border-bottom: 1px solid rgba(58, 32, 21, 0.12);
}

.atelier-meta span {
  color: var(--muted);
  font-size: 12px;
}

.atelier-meta strong {
  display: block;
  color: var(--cacao);
  font-family: var(--serif);
  font-size: 22px;
}

.atelier-image {
  min-height: 560px;
  overflow: hidden;
}

.atelier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-testimonials {
  padding: clamp(78px, 9vw, 126px) clamp(20px, 7vw, 108px);
  background: #eee0cb;
}

.about-testimonials .about-heading {
  color: var(--ink);
}

.about-testimonials .about-heading h2 {
  color: var(--ink);
}

.about-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(58, 32, 21, 0.18);
  border-bottom: 1px solid rgba(58, 32, 21, 0.18);
}

.about-review {
  min-width: 0;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid rgba(58, 32, 21, 0.15);
}

.about-review:last-child {
  border-right: 0;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.about-review .avatar {
  color: var(--cream);
  background: var(--cacao);
  border-color: rgba(217, 164, 95, 0.4);
}

.review-stars {
  color: #a96f2f;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.about-review > p {
  min-height: 112px;
  color: #59473b;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.about-review > strong,
.about-review > small {
  display: block;
}

.about-review > strong {
  color: var(--ink);
  font-size: 13px;
}

.about-review > small {
  color: var(--muted);
  font-size: 11px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px clamp(20px, 7vw, 108px);
  background: #fff8ef;
  border-top: 1px solid rgba(58, 32, 21, 0.1);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 4px 24px;
  border-right: 1px solid rgba(58, 32, 21, 0.12);
}

.trust-strip article:first-child {
  padding-left: 0;
}

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

.trust-strip .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--copper);
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  color: var(--cacao);
  font-size: 12px;
}

.trust-strip small {
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1180px) {
  .about-hero {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  }

  .origin-section {
    grid-template-columns: 1fr;
  }

  .origin-copy {
    max-width: 790px;
  }

  .origin-gallery {
    min-height: 600px;
  }

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

  .value-card {
    min-height: 250px;
  }

  .process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 52px;
  }

  .process-track::before {
    display: none;
  }

  .process-step:nth-child(even) {
    margin-top: 0;
  }

  .process-step {
    padding: 24px;
    border-top: 1px solid rgba(217, 164, 95, 0.3);
  }

  .process-dot {
    position: absolute;
    top: -7px;
    right: 18px;
  }

  .founder-section,
  .atelier-section {
    grid-template-columns: 1fr 1fr;
  }

  .founder-copy,
  .atelier-copy {
    padding-right: 44px;
    padding-left: 44px;
  }

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

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .about-hero {
    display: block;
    min-height: auto;
  }

  .about-hero-copy {
    min-height: 560px;
    padding: 100px 24px 72px;
    background:
      linear-gradient(180deg, rgba(24, 13, 8, 0.48), #180d08 94%),
      url("assets/images/about-hero.jpg") center 20% / cover no-repeat;
  }

  .about-hero-copy > p:not(.eyebrow) {
    color: rgba(255, 248, 239, 0.82);
  }

  .about-hero-visual {
    display: none;
  }

  .brand-signature {
    margin-top: 44px;
  }

  .origin-section,
  .values-section,
  .process-section,
  .about-testimonials {
    padding-right: 20px;
    padding-left: 20px;
  }

  .origin-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 220px;
    min-height: 0;
  }

  .origin-gallery .origin-primary {
    grid-column: 1 / 3;
    grid-row: auto;
  }

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

  .founder-section,
  .atelier-section {
    grid-template-columns: 1fr;
  }

  .founder-image,
  .atelier-image {
    min-height: 480px;
  }

  .founder-image::after {
    background: linear-gradient(0deg, #120a07 0%, transparent 26%);
  }

  .founder-copy,
  .atelier-copy {
    max-width: none;
    padding: 70px 24px;
  }

  .atelier-image {
    order: -1;
  }

  .about-review-grid {
    grid-template-columns: 1fr;
  }

  .about-review {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.15);
  }

  .about-review:last-child {
    border-bottom: 0;
  }

  .about-review > p {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .about-hero h1 {
    font-size: 52px;
  }

  .about-hero-copy {
    min-height: 610px;
  }

  .origin-copy h2,
  .founder-copy h2,
  .atelier-copy h2,
  .about-heading h2,
  .process-heading h2 {
    font-size: 40px;
  }

  .origin-proofs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .origin-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 360px 190px 190px;
  }

  .origin-gallery .origin-primary {
    grid-column: auto;
  }

  .origin-gallery figcaption {
    font-size: 16px;
  }

  .values-grid,
  .process-track,
  .atelier-meta,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .process-heading {
    display: block;
  }

  .process-step {
    padding-right: 8px;
    padding-left: 8px;
  }

  .founder-image,
  .atelier-image {
    min-height: 360px;
  }

  .founder-copy blockquote {
    padding-left: 18px;
    font-size: 25px;
  }

  .trust-strip {
    gap: 0;
  }

  .trust-strip article,
  .trust-strip article:first-child,
  .trust-strip article:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.1);
  }

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

@media (prefers-reduced-motion: reduce) {
  .about-page *,
  .about-page *::before,
  .about-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .about-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product catalog */
.catalog-page {
  color: var(--cream);
  background: #150c08;
}

.catalog-hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
}

.catalog-hero-image,
.catalog-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.catalog-hero-image {
  object-fit: cover;
  object-position: center;
}

.catalog-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 8, 5, 0.98) 0%, rgba(15, 8, 5, 0.84) 32%, rgba(15, 8, 5, 0.14) 68%),
    linear-gradient(0deg, rgba(15, 8, 5, 0.9), transparent 42%);
}

.catalog-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(96px, 11vw, 150px) 0 150px;
  margin-left: clamp(20px, 7vw, 108px);
}

.catalog-hero h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(60px, 7vw, 104px);
}

.catalog-hero-copy > p:last-child {
  max-width: 540px;
  color: rgba(255, 248, 239, 0.74);
  font-size: 17px;
}

.category-chips {
  position: absolute;
  right: clamp(20px, 7vw, 108px);
  bottom: 34px;
  left: clamp(20px, 7vw, 108px);
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 5px;
  scrollbar-width: none;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.category-chip {
  flex: 0 0 auto;
  min-width: 116px;
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255, 248, 239, 0.72);
  background: rgba(20, 11, 7, 0.78);
  border: 1px solid rgba(217, 164, 95, 0.3);
  border-radius: 999px;
  font-size: 13px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(12px);
}

.category-chip:hover,
.category-chip.active {
  color: #28150d;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.catalog-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  max-width: 1680px;
  padding: 44px clamp(20px, 5vw, 76px) clamp(90px, 10vw, 140px);
  margin: 0 auto;
}

.catalog-filters {
  position: sticky;
  top: 88px;
  align-self: start;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  padding: 24px 20px;
  background: #1b100b;
  border: 1px solid rgba(217, 164, 95, 0.25);
  border-radius: var(--radius);
  scrollbar-color: rgba(217, 164, 95, 0.5) transparent;
  scrollbar-width: thin;
}

.filter-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(217, 164, 95, 0.16);
}

.filter-header span,
.filter-header small {
  display: block;
}

.filter-header span {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-header small {
  margin-top: 3px;
  color: rgba(255, 248, 239, 0.42);
  font-size: 10px;
}

.filter-close {
  display: none;
  width: 36px;
  height: 36px;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.28);
  border-radius: 50%;
}

.filter-close svg,
.mobile-filter-trigger svg {
  width: 19px;
  height: 19px;
}

.filter-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(217, 164, 95, 0.14);
}

.filter-group legend {
  width: 100%;
  padding: 0 0 11px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.filter-group label {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  gap: 9px;
  align-items: center;
  color: rgba(255, 248, 239, 0.68);
  font-size: 12px;
  cursor: pointer;
}

.filter-group label:hover {
  color: var(--cream);
}

.filter-group label small {
  color: rgba(255, 248, 239, 0.34);
  font-size: 10px;
}

.filter-group input[type="checkbox"],
.filter-group input[type="radio"] {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.65);
  cursor: pointer;
}

.filter-group input[type="checkbox"] {
  border-radius: 3px;
}

.filter-group input[type="radio"] {
  border-radius: 50%;
}

.filter-group input[type="checkbox"]::before {
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid #29160e;
  border-left: 2px solid #29160e;
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

.filter-group input[type="radio"]::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold-2);
  border-radius: 50%;
  opacity: 0;
}

.filter-group input:checked {
  background: var(--gold-2);
}

.filter-group input[type="radio"]:checked {
  background: transparent;
}

.filter-group input:checked::before {
  opacity: 1;
}

.range-value,
.range-scale {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 248, 239, 0.46);
  font-size: 10px;
}

.range-value output {
  color: var(--gold-2);
  font-weight: 800;
}

.cacao-filter input[type="range"] {
  width: 100%;
  height: 3px;
  margin: 5px 0;
  appearance: none;
  background: linear-gradient(90deg, var(--gold-2) var(--range-progress, 0%), rgba(255, 248, 239, 0.16) var(--range-progress, 0%));
  border-radius: 2px;
  outline: 0;
}

.cacao-filter input[type="range"]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  appearance: none;
  background: var(--gold-2);
  border: 3px solid #2a1810;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-2);
}

.cacao-filter input[type="range"]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: var(--gold-2);
  border: 3px solid #2a1810;
  border-radius: 50%;
}

.clear-filters {
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  color: #2b170e;
  background: var(--gold-2);
  border: 0;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
}

.mobile-filter-trigger,
.filter-backdrop {
  display: none;
}

.catalog-results {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  margin-bottom: 18px;
}

.catalog-toolbar p {
  margin: 0;
  color: rgba(255, 248, 239, 0.48);
  font-size: 12px;
}

.catalog-toolbar p strong {
  color: var(--gold-2);
}

.catalog-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 239, 0.48);
  font-size: 11px;
}

.catalog-sort {
  min-width: 178px;
  height: 42px;
  padding: 0 34px 0 13px;
  color: var(--cream);
  background: #1b100b;
  border: 1px solid rgba(217, 164, 95, 0.24);
  border-radius: var(--radius);
  outline: 0;
}

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

.catalog-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #1a0f0a;
  border: 1px solid rgba(217, 164, 95, 0.22);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.catalog-card:hover {
  border-color: rgba(217, 164, 95, 0.58);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card-media {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background: #26150f;
}

.catalog-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  content: "";
  background: linear-gradient(transparent, rgba(26, 15, 10, 0.36));
  pointer-events: none;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.catalog-card:nth-child(3) .catalog-card-media img,
.catalog-card:nth-child(5) .catalog-card-media img {
  object-position: 58% center;
}

.catalog-card:nth-child(4) .catalog-card-media img {
  object-position: 35% center;
}

.catalog-card:nth-child(8) .catalog-card-media img {
  object-position: 58% center;
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.045);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  color: #2a160e;
  background: var(--gold-2);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-badge.new {
  background: #edc992;
}

.product-badge.limited {
  color: var(--cream);
  background: var(--wine);
}

.product-badge.premium {
  color: var(--cream);
  background: #67411e;
  border: 1px solid rgba(241, 194, 123, 0.5);
}

.wish-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--cream);
  background: rgba(23, 12, 8, 0.7);
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.catalog-card-media > .wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.wish-btn svg {
  width: 18px;
  height: 18px;
}

.wish-btn:hover,
.wish-btn.is-active {
  color: var(--gold-2);
  background: rgba(23, 12, 8, 0.92);
  border-color: var(--gold);
}

.wish-btn.is-active svg {
  fill: currentColor;
}

.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.catalog-card-body .product-meta {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-card-body h2 {
  min-height: 46px;
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.04;
}

.catalog-card-body .product-notes {
  margin-bottom: 18px;
  color: rgba(255, 248, 239, 0.46);
  font-size: 11px;
}

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

.product-buy > strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
  white-space: nowrap;
}

.catalog-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 11px;
  color: var(--gold-2);
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.44);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.catalog-add svg {
  width: 16px;
  height: 16px;
}

.catalog-add:hover {
  color: #2a160e;
  background: var(--gold-2);
}

.catalog-empty {
  padding: 90px 20px;
  text-align: center;
  border: 1px solid rgba(217, 164, 95, 0.22);
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty .line-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  color: var(--gold);
}

.catalog-empty h2 {
  margin-bottom: 10px;
  font-size: 38px;
}

.catalog-empty p {
  color: rgba(255, 248, 239, 0.54);
}

.catalog-empty .clear-filters {
  width: auto;
  margin-top: 10px;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(460px, 1.04fr) minmax(480px, 0.96fr);
  max-width: 1540px;
  min-height: 620px;
  margin: 0 auto clamp(90px, 10vw, 140px);
  border-top: 1px solid rgba(217, 164, 95, 0.28);
  border-bottom: 1px solid rgba(217, 164, 95, 0.28);
}

.featured-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.featured-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 68%, #1b0f0a 100%);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-image .product-badge {
  top: 22px;
  left: 22px;
}

.featured-copy {
  align-self: center;
  padding: clamp(56px, 7vw, 102px) clamp(32px, 6vw, 92px);
}

.featured-copy h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.featured-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.6);
}

.featured-price {
  display: block;
  margin: 26px 0 18px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 32px;
}

.featured-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
}

.feature-wish {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.featured-properties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(217, 164, 95, 0.2);
}

.featured-properties article {
  display: flex;
  align-items: center;
  gap: 11px;
}

.featured-properties article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--gold-2);
  border: 1px solid rgba(217, 164, 95, 0.3);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.featured-properties article > .line-icon {
  margin: 0;
}

.featured-properties strong,
.featured-properties small {
  display: block;
}

.featured-properties strong {
  color: var(--cream);
  font-size: 11px;
}

.featured-properties small {
  color: rgba(255, 248, 239, 0.42);
  font-size: 9px;
}

.tasting-notes {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: clamp(36px, 6vw, 88px);
  padding: clamp(70px, 8vw, 110px) clamp(20px, 7vw, 108px);
  color: var(--ink);
  background: #f3e6d4;
}

.tasting-title h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.tasting-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tasting-grid article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  min-width: 0;
  padding: 12px 24px;
  border-left: 1px solid rgba(58, 32, 21, 0.14);
}

.tasting-grid article:first-child {
  border-left: 0;
}

.tasting-grid .line-icon {
  width: 46px;
  height: 46px;
  color: var(--copper);
}

.tasting-grid small {
  color: var(--copper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tasting-grid h3 {
  margin: 5px 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.12;
}

.tasting-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.bestseller-section {
  padding: clamp(80px, 9vw, 124px) clamp(20px, 6vw, 92px);
  background: #120a07;
}

.bestseller-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.bestseller-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.35);
  border-radius: 50%;
}

.carousel-controls button:hover {
  color: var(--ink);
  background: var(--gold-2);
}

.carousel-controls svg {
  width: 19px;
  height: 19px;
}

.bestseller-row {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(217, 164, 95, 0.45) transparent;
  scrollbar-width: thin;
}

.bestseller-row article {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr 38px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  background: rgba(255, 248, 239, 0.025);
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.bestseller-row img {
  width: 104px;
  height: 92px;
  object-fit: cover;
  border-radius: 4px;
}

.bestseller-row small {
  color: var(--gold);
  font-size: 9px;
  text-transform: uppercase;
}

.bestseller-row h3 {
  margin: 3px 0 5px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.bestseller-row strong {
  color: var(--cream);
  font-size: 12px;
}

.bestseller-row .add-cart {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--gold-2);
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.4);
  border-radius: 50%;
}

.bestseller-row .add-cart:hover {
  color: var(--ink);
  background: var(--gold-2);
}

.bestseller-row .add-cart svg {
  width: 17px;
  height: 17px;
}

.catalog-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 30px clamp(20px, 6vw, 92px);
  color: var(--ink);
  background: #fff8ef;
  border-bottom: 1px solid rgba(58, 32, 21, 0.12);
}

.catalog-benefits article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 3px 20px;
  border-right: 1px solid rgba(58, 32, 21, 0.13);
}

.catalog-benefits article:last-child {
  border-right: 0;
}

.catalog-benefits .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--copper);
}

.catalog-benefits strong,
.catalog-benefits small {
  display: block;
}

.catalog-benefits strong {
  color: var(--cacao);
  font-size: 11px;
}

.catalog-benefits small {
  color: var(--muted);
  font-size: 9px;
}

@media (min-width: 1500px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .catalog-shell {
    grid-template-columns: 226px minmax(0, 1fr);
  }

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

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

  .tasting-notes {
    grid-template-columns: 1fr;
  }

  .tasting-title {
    max-width: 640px;
  }

  .catalog-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
  }

  .catalog-benefits article:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 920px) {
  .catalog-hero {
    min-height: 620px;
  }

  .catalog-hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 8, 5, 0.36), rgba(15, 8, 5, 0.92) 72%, #0f0805 100%),
      linear-gradient(90deg, rgba(15, 8, 5, 0.7), transparent 75%);
  }

  .catalog-hero-copy {
    padding: 120px 24px 170px;
    margin: 0;
  }

  .category-chips {
    right: 20px;
    left: 20px;
    justify-content: start;
  }

  .catalog-shell {
    display: block;
    padding-top: 22px;
  }

  .mobile-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 14px;
    margin-bottom: 14px;
    color: var(--cream);
    background: #21130d;
    border: 1px solid rgba(217, 164, 95, 0.3);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-filter-count {
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    color: var(--ink);
    background: var(--gold-2);
    border-radius: 999px;
    font-size: 10px;
  }

  .catalog-filters {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    width: min(380px, 90vw);
    max-height: none;
    padding: 24px;
    border: 0;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .filter-close {
    display: grid;
    place-items: center;
  }

  .filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: block;
    background: rgba(10, 5, 3, 0.72);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .filter-open {
    overflow: hidden;
  }

  .filter-open .catalog-filters {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .filter-open .filter-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .catalog-toolbar {
    align-items: end;
  }

  .featured-product {
    grid-template-columns: 1fr;
    margin-right: 20px;
    margin-left: 20px;
  }

  .featured-image {
    min-height: 500px;
  }

  .featured-image::after {
    background: linear-gradient(0deg, #1b0f0a, transparent 28%);
  }

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

  .tasting-grid article:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .catalog-hero {
    min-height: 650px;
  }

  .catalog-hero-image {
    object-position: 64% center;
  }

  .catalog-hero h1 {
    font-size: 54px;
  }

  .catalog-hero-copy > p:last-child {
    font-size: 15px;
  }

  .category-chip {
    min-width: auto;
  }

  .catalog-shell {
    padding-right: 14px;
    padding-left: 14px;
  }

  .catalog-toolbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-toolbar label {
    justify-content: space-between;
  }

  .catalog-sort {
    flex: 1;
    min-width: 0;
  }

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

  .catalog-card-media {
    aspect-ratio: 1 / 0.82;
  }

  .catalog-card-body h2 {
    min-height: 0;
  }

  .catalog-add span {
    display: inline;
  }

  .featured-product {
    margin-right: 0;
    margin-left: 0;
  }

  .featured-image {
    min-height: 380px;
  }

  .featured-copy {
    padding: 58px 20px;
  }

  .featured-copy h2 {
    font-size: 42px;
  }

  .featured-actions .btn {
    flex: 1;
  }

  .featured-properties,
  .tasting-grid,
  .catalog-benefits {
    grid-template-columns: 1fr;
  }

  .tasting-notes,
  .bestseller-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .tasting-grid article,
  .tasting-grid article:nth-child(3) {
    padding: 20px 0;
    border-top: 1px solid rgba(58, 32, 21, 0.13);
    border-left: 0;
  }

  .bestseller-heading {
    align-items: center;
  }

  .bestseller-heading h2 {
    font-size: 40px;
  }

  .bestseller-row {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .catalog-benefits {
    gap: 0;
  }

  .catalog-benefits article,
  .catalog-benefits article:nth-child(3) {
    justify-content: start;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.12);
  }

  .catalog-benefits article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-page *,
  .catalog-page *::before,
  .catalog-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .catalog-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Luxury gifting collection */
.gifting-page {
  color: var(--cream);
  background: #130a07;
}

.gift-campaign-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 78px));
  overflow: hidden;
  isolation: isolate;
}

.gift-campaign-image,
.gift-campaign-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gift-campaign-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.gift-campaign-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 7, 5, 0.97) 0%, rgba(15, 7, 5, 0.82) 32%, rgba(15, 7, 5, 0.08) 69%),
    linear-gradient(0deg, rgba(15, 7, 5, 0.82), transparent 35%);
}

.gift-campaign-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding: clamp(110px, 14vh, 170px) 0 clamp(100px, 12vh, 140px);
  margin-left: clamp(20px, 7vw, 108px);
}

.gift-campaign-copy h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7vw, 102px);
}

.gift-campaign-copy h1 em {
  color: var(--gold-2);
  font-weight: 500;
}

.gift-campaign-copy .hero-dash {
  color: rgba(217, 164, 95, 0.62);
  font-weight: 400;
}

.gift-campaign-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 32px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 16px;
}

.campaign-edition {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(32px, 6vw, 80px);
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 12px;
  color: var(--gold-2);
  writing-mode: vertical-rl;
}

.campaign-edition span {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
}

.campaign-edition small {
  color: rgba(255, 248, 239, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gift-trust-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1440px;
  margin: -38px auto 0;
  background: rgba(27, 15, 10, 0.94);
  border: 1px solid rgba(217, 164, 95, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.gift-trust-bar article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 23px 28px;
  border-right: 1px solid rgba(217, 164, 95, 0.14);
}

.gift-trust-bar article:last-child {
  border-right: 0;
}

.gift-trust-bar .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.gift-trust-bar strong,
.gift-trust-bar small {
  display: block;
}

.gift-trust-bar strong {
  color: var(--cream);
  font-size: 11px;
}

.gift-trust-bar small {
  color: rgba(255, 248, 239, 0.42);
  font-size: 9px;
}

.occasion-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(42px, 7vw, 108px);
  padding: clamp(110px, 12vw, 170px) clamp(20px, 6vw, 92px);
  background:
    radial-gradient(circle at 8% 48%, rgba(125, 46, 40, 0.18), transparent 28%),
    #130a07;
}

.occasion-intro {
  position: sticky;
  top: 110px;
  align-self: start;
  max-width: 360px;
}

.occasion-intro h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.occasion-intro > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.54);
}

.occasion-line {
  display: block;
  width: 94px;
  height: 1px;
  margin-top: 34px;
  background: var(--gold);
}

.occasion-line::after {
  display: block;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: 90px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.occasion-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 14px;
  min-height: 680px;
}

.occasion-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 95, 0.22);
  border-radius: var(--radius);
  isolation: isolate;
}

.occasion-tet {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.occasion-birthday {
  grid-column: 7 / 13;
  grid-row: 1;
}

.occasion-anniversary {
  grid-column: 7 / 10;
  grid-row: 2;
}

.occasion-business {
  grid-column: 10 / 13;
  grid-row: 2;
}

.occasion-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(14, 7, 5, 0.95) 0%, rgba(14, 7, 5, 0.14) 64%);
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.occasion-card:hover img {
  transform: scale(1.045);
}

.occasion-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 38px);
}

.occasion-card > div > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.occasion-card h3 {
  margin: 6px 0 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1;
}

.occasion-anniversary h3,
.occasion-business h3 {
  font-size: clamp(26px, 2.5vw, 38px);
}

.occasion-card p {
  max-width: 340px;
  margin-bottom: 14px;
  color: rgba(255, 248, 239, 0.64);
  font-size: 11px;
}

.occasion-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
}

.occasion-card a span {
  transition: transform 0.2s ease;
}

.occasion-card a:hover span {
  transform: translateX(4px);
}

.personalization-section {
  display: grid;
  grid-template-columns: minmax(460px, 1.05fr) minmax(460px, 0.95fr);
  min-height: 760px;
  color: var(--ink);
  background: #f2e5d3;
}

.personalization-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.personalization-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 72%, #f2e5d3 100%);
}

.personalization-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.personalization-caption {
  position: absolute;
  bottom: 28px;
  left: clamp(20px, 5vw, 72px);
  z-index: 2;
  padding: 10px 13px;
  color: var(--cream);
  background: rgba(27, 15, 10, 0.72);
  border-left: 2px solid var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.personalization-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(72px, 9vw, 132px) clamp(32px, 7vw, 110px);
}

.personalization-content h2 {
  color: var(--ink);
  font-size: clamp(46px, 5vw, 70px);
}

.personalization-content h2 span {
  color: var(--copper);
}

.personalization-content > p:not(.eyebrow) {
  color: var(--muted);
}

.personalization-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0;
  border-top: 1px solid rgba(58, 32, 21, 0.15);
  border-bottom: 1px solid rgba(58, 32, 21, 0.15);
}

.personalization-options article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid rgba(58, 32, 21, 0.12);
}

.personalization-options article:nth-child(odd) {
  border-right: 1px solid rgba(58, 32, 21, 0.12);
}

.personalization-options article:nth-child(3),
.personalization-options article:nth-child(4) {
  border-bottom: 0;
}

.personalization-options article:nth-child(even) {
  padding-left: 18px;
}

.personalization-options article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 27px;
}

.personalization-options h3 {
  margin-bottom: 4px;
  color: var(--cacao);
  font-family: var(--serif);
  font-size: 20px;
}

.personalization-options p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.seasonal-section {
  padding: clamp(92px, 11vw, 154px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(rgba(217, 164, 95, 0.04) 1px, transparent 1px) 0 0 / 100% 120px,
    #160c08;
}

.seasonal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.seasonal-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 74px);
}

.seasonal-heading > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 248, 239, 0.52);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1.34fr 0.83fr 0.83fr;
  gap: 14px;
}

.seasonal-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 95, 0.22);
  border-radius: var(--radius);
  isolation: isolate;
}

.seasonal-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(15, 7, 5, 0.95), transparent 62%);
}

.seasonal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.seasonal-card:hover img {
  transform: scale(1.04);
}

.seasonal-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(24px, 3vw, 38px);
}

.seasonal-card small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seasonal-card h3 {
  margin: 7px 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
}

.seasonal-card p {
  max-width: 460px;
  color: rgba(255, 248, 239, 0.6);
  font-size: 11px;
}

.seasonal-card a {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid rgba(217, 164, 95, 0.4);
}

.corporate-gifting {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(480px, 0.9fr);
  min-height: 700px;
  background: #0f0805;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
  border-bottom: 1px solid rgba(217, 164, 95, 0.18);
}

.corporate-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.corporate-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 72%, #0f0805 100%);
}

.corporate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.corporate-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(70px, 8vw, 120px) clamp(32px, 7vw, 110px) clamp(70px, 8vw, 120px) clamp(28px, 5vw, 72px);
}

.corporate-content h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.corporate-content h2 span {
  color: var(--gold);
}

.corporate-content > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.58);
}

.corporate-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
  border-bottom: 1px solid rgba(217, 164, 95, 0.18);
}

.corporate-benefits article {
  display: flex;
  align-items: center;
  gap: 11px;
}

.corporate-benefits .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.corporate-benefits strong,
.corporate-benefits small {
  display: block;
}

.corporate-benefits strong {
  color: var(--cream);
  font-size: 11px;
}

.corporate-benefits small {
  color: rgba(255, 248, 239, 0.4);
  font-size: 9px;
}

.gift-gallery-section {
  padding: clamp(90px, 10vw, 142px) 0;
  background: #1a0f0a;
}

.gift-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 6vw, 92px);
  margin-bottom: 38px;
}

.gift-gallery-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5vw, 70px);
}

.gift-gallery-controls {
  display: flex;
  gap: 8px;
}

.gift-gallery-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold-2);
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.34);
  border-radius: 50%;
}

.gift-gallery-controls button:hover {
  color: var(--ink);
  background: var(--gold-2);
}

.gift-gallery-controls svg {
  width: 19px;
  height: 19px;
}

.gift-gallery {
  display: grid;
  grid-auto-columns: minmax(320px, 28vw);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 0 clamp(20px, 6vw, 92px) 18px;
  scroll-behavior: smooth;
  scroll-padding-left: clamp(20px, 6vw, 92px);
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(217, 164, 95, 0.42) transparent;
  scrollbar-width: thin;
}

.gift-gallery figure {
  position: relative;
  aspect-ratio: 1.25;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.gift-gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 7, 5, 0.88), transparent 48%);
  opacity: 0.78;
  transition: opacity 0.25s ease;
}

.gift-gallery figure:hover::after {
  opacity: 1;
}

.gift-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gift-gallery figure:hover img {
  transform: scale(1.04);
}

.gift-gallery figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 19px;
}

.gift-reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(50px, 8vw, 120px);
  padding: clamp(90px, 10vw, 142px) clamp(20px, 6vw, 92px);
  color: var(--ink);
  background: #f2e5d3;
}

.gift-review-intro {
  max-width: 520px;
}

.gift-review-intro h2 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 68px);
}

.gift-review-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.gift-review-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(58, 32, 21, 0.18);
  border-bottom: 1px solid rgba(58, 32, 21, 0.18);
}

.gift-review-list article {
  min-width: 0;
  padding: clamp(26px, 3.5vw, 42px);
  border-right: 1px solid rgba(58, 32, 21, 0.14);
}

.gift-review-list article:last-child {
  border-right: 0;
}

.gift-review-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.gift-review-list .avatar {
  color: var(--cream);
  background: var(--cacao);
  border-color: rgba(217, 164, 95, 0.4);
}

.gift-review-list blockquote {
  min-height: 150px;
  margin: 0 0 24px;
  color: #514035;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.4;
}

.gift-review-list strong,
.gift-review-list small {
  display: block;
}

.gift-review-list strong {
  color: var(--ink);
  font-size: 12px;
}

.gift-review-list small {
  color: var(--muted);
  font-size: 9px;
}

.gift-service-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 24px 20px;
  color: var(--gold-2);
  background: var(--wine);
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 22px);
}

.gift-service-strip i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

@media (max-width: 1180px) {
  .gift-trust-bar {
    margin-right: 24px;
    margin-left: 24px;
  }

  .occasion-section {
    grid-template-columns: 1fr;
  }

  .occasion-intro {
    position: static;
    max-width: 660px;
  }

  .occasion-layout {
    min-height: 760px;
  }

  .personalization-section,
  .corporate-gifting {
    grid-template-columns: 1fr 1fr;
  }

  .personalization-content,
  .corporate-content {
    padding-right: 48px;
    padding-left: 48px;
  }

  .seasonal-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .seasonal-main {
    grid-row: 1 / 3;
  }

  .seasonal-card {
    min-height: 320px;
  }

  .gift-reviews {
    grid-template-columns: 1fr;
  }

  .gift-review-intro {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .gift-campaign-hero {
    min-height: 720px;
  }

  .gift-campaign-image {
    object-position: 66% center;
  }

  .gift-campaign-overlay {
    background:
      linear-gradient(180deg, rgba(15, 7, 5, 0.34), rgba(15, 7, 5, 0.92) 74%, #0f0705 100%),
      linear-gradient(90deg, rgba(15, 7, 5, 0.72), transparent 76%);
  }

  .gift-campaign-copy {
    padding: 130px 24px 130px;
    margin: 0;
  }

  .campaign-edition {
    display: none;
  }

  .gift-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -28px;
  }

  .gift-trust-bar article:nth-child(2) {
    border-right: 0;
  }

  .gift-trust-bar article:nth-child(1),
  .gift-trust-bar article:nth-child(2) {
    border-bottom: 1px solid rgba(217, 164, 95, 0.14);
  }

  .occasion-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 500px 340px 340px;
    min-height: 0;
  }

  .occasion-tet {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .occasion-birthday,
  .occasion-anniversary,
  .occasion-business {
    grid-column: auto;
    grid-row: auto;
  }

  .occasion-business {
    grid-column: 1 / 3;
  }

  .personalization-section,
  .corporate-gifting {
    grid-template-columns: 1fr;
  }

  .personalization-visual,
  .corporate-image {
    min-height: 520px;
  }

  .personalization-visual::after,
  .corporate-image::after {
    background: linear-gradient(0deg, #f2e5d3 0%, transparent 24%);
  }

  .corporate-image::after {
    background: linear-gradient(0deg, #0f0805 0%, transparent 24%);
  }

  .personalization-content,
  .corporate-content {
    max-width: none;
    padding: 70px 24px;
  }

  .seasonal-heading {
    display: block;
  }

  .seasonal-heading > p {
    margin-top: 18px;
  }

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

  .seasonal-main {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 520px;
  }

  .gift-gallery {
    grid-auto-columns: minmax(300px, 68vw);
  }

  .gift-review-list {
    grid-template-columns: 1fr;
  }

  .gift-review-list article {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.14);
  }

  .gift-review-list article:last-child {
    border-bottom: 0;
  }

  .gift-review-list blockquote {
    min-height: 0;
  }

  .gift-service-strip {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .gift-campaign-hero {
    min-height: 760px;
  }

  .gift-campaign-copy h1 {
    font-size: 52px;
  }

  .gift-trust-bar {
    grid-template-columns: 1fr;
    margin-right: 14px;
    margin-left: 14px;
  }

  .gift-trust-bar article,
  .gift-trust-bar article:nth-child(2) {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 164, 95, 0.14);
  }

  .gift-trust-bar article:last-child {
    border-bottom: 0;
  }

  .occasion-section,
  .seasonal-section,
  .gift-reviews {
    padding-right: 14px;
    padding-left: 14px;
  }

  .occasion-intro h2,
  .personalization-content h2,
  .seasonal-heading h2,
  .corporate-content h2,
  .gift-gallery-heading h2,
  .gift-review-intro h2 {
    font-size: 40px;
  }

  .occasion-layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 390px);
  }

  .occasion-tet,
  .occasion-birthday,
  .occasion-anniversary,
  .occasion-business {
    grid-column: auto;
    grid-row: auto;
  }

  .occasion-card h3,
  .occasion-anniversary h3,
  .occasion-business h3 {
    font-size: 36px;
  }

  .personalization-visual,
  .corporate-image {
    min-height: 390px;
  }

  .personalization-options,
  .corporate-benefits {
    grid-template-columns: 1fr;
  }

  .personalization-options article,
  .personalization-options article:nth-child(odd),
  .personalization-options article:nth-child(even),
  .personalization-options article:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.12);
  }

  .personalization-options article:last-child {
    border-bottom: 0;
  }

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

  .seasonal-main {
    grid-column: auto;
    min-height: 440px;
  }

  .seasonal-card {
    min-height: 390px;
  }

  .gift-gallery-heading {
    align-items: center;
    padding-right: 14px;
    padding-left: 14px;
  }

  .gift-gallery {
    grid-auto-columns: 84vw;
    padding-right: 14px;
    padding-left: 14px;
  }

  .gift-service-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .gift-service-strip i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gifting-page *,
  .gifting-page *::before,
  .gifting-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .gifting-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Brand story editorial */
.brand-story-page {
  color: var(--cream);
  background: #120906;
}

.storytelling-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 78px));
  overflow: hidden;
  isolation: isolate;
}

.storytelling-hero-image,
.storytelling-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.storytelling-hero-image {
  object-fit: cover;
  object-position: center;
}

.storytelling-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 7, 4, 0.98) 0%, rgba(13, 7, 4, 0.78) 31%, rgba(13, 7, 4, 0.08) 68%),
    linear-gradient(0deg, rgba(13, 7, 4, 0.8), transparent 34%);
}

.storytelling-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: clamp(108px, 14vh, 172px) 0 clamp(92px, 12vh, 142px);
  margin-left: clamp(20px, 7vw, 108px);
}

.story-handwritten {
  margin-bottom: -2px;
  color: var(--gold);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.1;
  transform: rotate(-4deg);
}

.storytelling-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(64px, 7.7vw, 112px);
}

.storytelling-hero h1 span {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 400;
}

.storytelling-hero-copy > p:not(.story-handwritten) {
  max-width: 520px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 16px;
}

.story-signature {
  position: relative;
  display: block;
  width: max-content;
  margin-top: 48px;
  color: var(--gold-2);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 29px;
  transform: rotate(-4deg);
}

.story-signature::after {
  position: absolute;
  right: -62px;
  bottom: 5px;
  width: 54px;
  height: 14px;
  content: "";
  border-bottom: 1px solid currentColor;
  border-radius: 50%;
}

.story-cacao-line {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 20px;
  z-index: 2;
  width: min(230px, 22vw);
  color: rgba(217, 164, 95, 0.24);
  stroke-width: 1.1;
}

.story-timeline {
  display: grid;
  grid-template-columns: minmax(270px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(46px, 6vw, 92px);
  padding: clamp(84px, 9vw, 126px) clamp(20px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(217, 164, 95, 0.035) 1px, transparent 1px) 0 0 / 10% 100%,
    #170d09;
  border-top: 1px solid rgba(217, 164, 95, 0.2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.2);
}

.timeline-heading {
  max-width: 430px;
}

.timeline-heading h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.timeline-heading > p:last-child {
  color: rgba(255, 248, 239, 0.5);
  font-size: 13px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(15px, 2.2vw, 34px);
  align-self: center;
}

.timeline-track::before {
  position: absolute;
  top: 29px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), var(--copper), var(--gold), transparent);
  opacity: 0.58;
}

.timeline-item {
  position: relative;
  min-width: 0;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--gold-2);
  background: #170d09;
  border: 1px solid rgba(217, 164, 95, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(217, 164, 95, 0.06);
}

.timeline-icon svg {
  width: 25px;
  height: 25px;
}

.timeline-item time {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
}

.timeline-item h3 {
  margin-bottom: 8px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.08;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 248, 239, 0.48);
  font-size: 10px;
  line-height: 1.65;
}

.story-quote-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.story-quote-section > img,
.story-quote-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-quote-section > img {
  object-fit: cover;
  object-position: center;
}

.story-quote-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(55, 28, 18, 0.98) 0%, rgba(55, 28, 18, 0.88) 38%, rgba(55, 28, 18, 0.06) 72%);
}

.story-quote-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: clamp(86px, 10vw, 140px) 20px;
  margin: 0 0 0 clamp(20px, 7vw, 108px);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.25;
}

.story-quote-section blockquote > span {
  display: block;
  height: 36px;
  color: var(--gold);
  font-size: 86px;
  line-height: 0.8;
}

.story-quote-section cite {
  display: block;
  margin-top: 24px;
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cacao-origin-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(520px, 1.26fr);
  grid-template-rows: auto auto;
  gap: 22px clamp(40px, 7vw, 108px);
  padding: clamp(94px, 11vw, 156px) clamp(20px, 6vw, 92px);
  background: #100805;
}

.origin-editorial {
  grid-row: 1 / 3;
  align-self: center;
  max-width: 600px;
}

.origin-editorial h2 {
  font-size: clamp(46px, 5.4vw, 72px);
}

.origin-editorial > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.56);
}

.origin-principles {
  display: grid;
  gap: 17px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
}

.origin-principles article {
  display: flex;
  align-items: center;
  gap: 13px;
}

.origin-principles .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--gold-2);
}

.origin-principles strong,
.origin-principles small {
  display: block;
}

.origin-principles strong {
  color: var(--cream);
  font-size: 11px;
}

.origin-principles small {
  color: rgba(255, 248, 239, 0.4);
  font-size: 9px;
}

.origin-landscape {
  position: relative;
  min-height: 490px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
}

.origin-landscape::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(13, 7, 4, 0.8), transparent 32%);
}

.origin-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.origin-landscape figcaption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 1;
}

.origin-landscape strong,
.origin-landscape small {
  display: block;
}

.origin-landscape strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
}

.origin-landscape small {
  color: rgba(255, 248, 239, 0.58);
  font-size: 9px;
}

.origin-regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(217, 164, 95, 0.2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.2);
}

.origin-regions article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid rgba(217, 164, 95, 0.15);
}

.origin-regions article:last-child {
  border-right: 0;
}

.origin-regions article > span {
  color: rgba(217, 164, 95, 0.5);
  font-family: var(--serif);
  font-size: 27px;
}

.origin-regions strong,
.origin-regions small {
  display: block;
}

.origin-regions strong {
  color: var(--cream);
  font-size: 11px;
}

.origin-regions small {
  color: rgba(255, 248, 239, 0.4);
  font-size: 8px;
}

.craft-story-section {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(480px, 1.15fr) minmax(320px, 0.85fr);
  min-height: 650px;
  background: #1b0f0a;
  border-top: 1px solid rgba(217, 164, 95, 0.2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.2);
}

.craft-story-image,
.craft-story-product {
  min-height: 580px;
  overflow: hidden;
}

.craft-story-image img,
.craft-story-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-story-copy {
  align-self: center;
  padding: clamp(68px, 8vw, 110px) clamp(34px, 5vw, 76px);
}

.craft-story-copy h2 {
  font-size: clamp(46px, 5vw, 70px);
}

.craft-story-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.56);
}

.craft-chapters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
}

.craft-chapters span {
  display: grid;
  gap: 2px;
  color: rgba(255, 248, 239, 0.68);
  font-size: 10px;
}

.craft-chapters i {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-style: normal;
}

.brand-philosophy {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  padding: clamp(90px, 10vw, 144px) clamp(20px, 6vw, 92px);
  overflow: hidden;
  color: var(--ink);
  background: #f4e8d8;
}

.philosophy-line-art {
  position: absolute;
  bottom: -24px;
  left: 8px;
  width: 190px;
  color: rgba(182, 107, 62, 0.18);
  stroke-width: 1.1;
}

.philosophy-heading {
  grid-column: 2 / 9;
  align-self: end;
}

.philosophy-heading h2 {
  color: var(--ink);
  font-size: clamp(46px, 5.4vw, 72px);
}

.philosophy-pillars {
  display: grid;
  grid-column: 2 / 10;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(58, 32, 21, 0.17);
  border-bottom: 1px solid rgba(58, 32, 21, 0.17);
}

.philosophy-pillars article {
  min-width: 0;
  padding: 26px 24px;
  border-right: 1px solid rgba(58, 32, 21, 0.13);
}

.philosophy-pillars article:last-child {
  border-right: 0;
}

.philosophy-pillars span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 27px;
}

.philosophy-pillars h3 {
  margin-bottom: 8px;
  color: var(--cacao);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.1;
}

.philosophy-pillars p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.philosophy-image {
  position: relative;
  grid-column: 10 / 13;
  grid-row: 1 / 3;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.philosophy-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(24, 13, 8, 0.84), transparent 50%);
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: var(--gold-2);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 25px;
  line-height: 1.4;
  transform: rotate(-4deg);
}

.brand-promise {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(480px, 1.14fr) minmax(320px, 0.78fr);
  min-height: 560px;
  background: #100805;
}

.promise-origin,
.promise-product {
  min-height: 500px;
  overflow: hidden;
}

.promise-origin img,
.promise-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promise-origin img {
  object-position: 26% center;
}

.promise-copy {
  align-self: center;
  padding: clamp(64px, 8vw, 110px) clamp(36px, 5vw, 76px);
}

.promise-copy h2 {
  font-size: clamp(43px, 4.7vw, 64px);
}

.promise-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.56);
}

.promise-copy .btn {
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .story-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-heading {
    max-width: 680px;
  }

  .cacao-origin-section {
    grid-template-columns: 1fr;
  }

  .origin-editorial {
    grid-row: auto;
    max-width: 760px;
  }

  .craft-story-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .craft-story-product {
    display: none;
  }

  .philosophy-heading {
    grid-column: 1 / 9;
  }

  .philosophy-pillars {
    grid-column: 1 / 10;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .philosophy-pillars article:nth-child(2) {
    border-right: 0;
  }

  .philosophy-pillars article:nth-child(1),
  .philosophy-pillars article:nth-child(2) {
    border-bottom: 1px solid rgba(58, 32, 21, 0.13);
  }

  .philosophy-image {
    grid-column: 10 / 13;
  }

  .brand-promise {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .promise-product {
    display: none;
  }
}

@media (max-width: 820px) {
  .storytelling-hero {
    min-height: 760px;
  }

  .storytelling-hero-image {
    object-position: 64% center;
  }

  .storytelling-hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 7, 4, 0.32), rgba(13, 7, 4, 0.92) 76%, #0d0704 100%),
      linear-gradient(90deg, rgba(13, 7, 4, 0.7), transparent 76%);
  }

  .storytelling-hero-copy {
    padding: 128px 24px 120px;
    margin: 0;
  }

  .story-cacao-line {
    width: 150px;
    opacity: 0.5;
  }

  .timeline-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 31px;
  }

  .timeline-track::before {
    top: 20px;
    bottom: 20px;
    left: 59px;
    width: 1px;
    height: auto;
    background: linear-gradient(0deg, transparent, var(--gold), var(--copper), var(--gold), transparent);
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 26px;
    padding-bottom: 34px;
  }

  .timeline-icon {
    grid-row: 1 / 5;
  }

  .story-quote-section {
    min-height: 610px;
  }

  .story-quote-section > img {
    object-position: 72% center;
  }

  .story-quote-overlay {
    background: linear-gradient(180deg, rgba(55, 28, 18, 0.34), rgba(55, 28, 18, 0.96) 76%);
  }

  .story-quote-section blockquote {
    padding: 260px 24px 70px;
    margin: 0;
  }

  .origin-landscape {
    min-height: 430px;
  }

  .craft-story-section {
    grid-template-columns: 1fr;
  }

  .craft-story-image {
    min-height: 520px;
  }

  .craft-story-copy {
    padding: 72px 24px;
  }

  .brand-philosophy {
    grid-template-columns: 1fr;
  }

  .philosophy-heading,
  .philosophy-pillars,
  .philosophy-image {
    grid-column: auto;
    grid-row: auto;
  }

  .philosophy-image {
    min-height: 440px;
  }

  .brand-promise {
    grid-template-columns: 1fr;
  }

  .promise-origin {
    min-height: 420px;
  }

  .promise-copy {
    padding: 72px 24px;
  }
}

@media (max-width: 520px) {
  .storytelling-hero h1 {
    font-size: 54px;
  }

  .story-handwritten {
    font-size: 28px;
  }

  .story-timeline,
  .cacao-origin-section,
  .brand-philosophy {
    padding-right: 14px;
    padding-left: 14px;
  }

  .timeline-heading h2,
  .origin-editorial h2,
  .craft-story-copy h2,
  .philosophy-heading h2,
  .promise-copy h2 {
    font-size: 40px;
  }

  .story-quote-section blockquote {
    font-size: 31px;
  }

  .origin-landscape {
    min-height: 360px;
  }

  .origin-regions {
    grid-template-columns: 1fr;
  }

  .origin-regions article {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 164, 95, 0.15);
  }

  .origin-regions article:last-child {
    border-bottom: 0;
  }

  .craft-story-image {
    min-height: 390px;
  }

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

  .philosophy-pillars {
    grid-template-columns: 1fr;
  }

  .philosophy-pillars article,
  .philosophy-pillars article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.13);
  }

  .philosophy-pillars article:last-child {
    border-bottom: 0;
  }

  .philosophy-image {
    min-height: 380px;
  }

  .promise-origin {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-story-page *,
  .brand-story-page *::before,
  .brand-story-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .brand-story-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Editorial blog */
.editorial-blog-page {
  color: var(--ink);
  background: #f4e9da;
}

.blog-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.blog-hero-image,
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero-image {
  object-fit: cover;
  object-position: center;
}

.blog-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 8, 5, 0.98) 0%, rgba(15, 8, 5, 0.78) 34%, rgba(15, 8, 5, 0.08) 68%),
    linear-gradient(0deg, rgba(15, 8, 5, 0.82), transparent 36%);
}

.blog-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding: clamp(104px, 13vh, 160px) 0 clamp(100px, 12vh, 140px);
  margin-left: clamp(20px, 7vw, 108px);
}

.blog-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-label .line-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  color: var(--gold-2);
}

.blog-hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(60px, 7vw, 100px);
}

.blog-hero-copy > p:not(.blog-label) {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255, 248, 239, 0.7);
  font-size: 16px;
}

.featured-story-card {
  position: absolute;
  right: clamp(24px, 7vw, 108px);
  bottom: 54px;
  z-index: 3;
  width: min(390px, calc(100vw - 48px));
  padding: 30px;
  color: var(--cream);
  background: rgba(24, 13, 8, 0.88);
  border: 1px solid rgba(217, 164, 95, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.featured-story-card > p {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-story-card h2 {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1.08;
}

.featured-story-card > span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 248, 239, 0.56);
  font-size: 11px;
}

.featured-story-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
}

.featured-story-card a span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 164, 95, 0.45);
  border-radius: 50%;
}

.blog-category-tabs {
  position: sticky;
  top: 66px;
  z-index: 30;
  display: flex;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  padding: 10px clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: rgba(24, 13, 8, 0.96);
  border-top: 1px solid rgba(217, 164, 95, 0.18);
  border-bottom: 1px solid rgba(217, 164, 95, 0.2);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
}

.blog-category-tabs::-webkit-scrollbar {
  display: none;
}

.blog-category-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 142px;
  min-height: 44px;
  padding: 0 15px;
  color: rgba(255, 248, 239, 0.7);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 11px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.blog-category-tab .line-icon {
  width: 28px;
  height: 28px;
  margin: 0;
  color: var(--gold);
}

.blog-category-tab:hover,
.blog-category-tab.active {
  color: #2b170e;
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.blog-category-tab.active .line-icon {
  color: #2b170e;
}

.blog-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
  gap: clamp(30px, 4vw, 58px);
  max-width: 1640px;
  padding: clamp(68px, 8vw, 112px) clamp(20px, 6vw, 92px);
  margin: 0 auto;
  background: #f4e9da;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
  min-width: 0;
}

.magazine-card {
  min-width: 0;
  overflow: hidden;
  background: #fff8ef;
  border: 1px solid rgba(58, 32, 21, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(58, 32, 21, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.magazine-card:hover {
  box-shadow: 0 24px 64px rgba(58, 32, 21, 0.14);
  transform: translateY(-5px);
}

.magazine-card[hidden] {
  display: none;
}

.magazine-card-large {
  grid-column: span 3;
}

.magazine-card-small {
  grid-column: span 2;
}

.magazine-grid.is-filtered .magazine-card {
  grid-column: span 3;
}

.magazine-card-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: var(--cacao);
}

.magazine-card-small .magazine-card-image {
  height: 240px;
}

.magazine-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 9, 6, 0.4), transparent 42%);
}

.magazine-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.magazine-card:hover .magazine-card-image img {
  transform: scale(1.04);
}

.magazine-card-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--cream);
  background: rgba(24, 13, 8, 0.76);
  border: 1px solid rgba(217, 164, 95, 0.3);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.magazine-card-copy {
  padding: 24px;
}

.magazine-card-copy time {
  display: block;
  margin-bottom: 9px;
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
}

.magazine-card-copy h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 33px;
  line-height: 1.06;
}

.magazine-card-small .magazine-card-copy h2 {
  font-size: 25px;
}

.magazine-card-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
}

.magazine-card-copy a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--copper);
  font-size: 10px;
  font-weight: 900;
}

.magazine-card-copy a span {
  transition: transform 0.2s ease;
}

.magazine-card-copy a:hover span {
  transform: translateX(4px);
}

.magazine-empty {
  grid-column: 1 / -1;
  padding: 90px 20px;
  text-align: center;
  border-top: 1px solid rgba(58, 32, 21, 0.15);
  border-bottom: 1px solid rgba(58, 32, 21, 0.15);
}

.magazine-empty[hidden] {
  display: none;
}

.magazine-empty h2 {
  color: var(--ink);
  font-size: 38px;
}

.magazine-empty p {
  color: var(--muted);
}

.popular-posts {
  position: sticky;
  top: 145px;
  align-self: start;
  padding: 28px 24px;
  background: rgba(255, 248, 239, 0.64);
  border: 1px solid rgba(58, 32, 21, 0.14);
  border-radius: var(--radius);
}

.popular-heading {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(58, 32, 21, 0.14);
}

.popular-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 35px;
  line-height: 1.05;
}

.popular-posts ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.popular-posts li {
  display: grid;
  grid-template-columns: 28px 72px 1fr;
  gap: 11px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(58, 32, 21, 0.11);
}

.popular-posts li > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 24px;
}

.popular-posts li img {
  width: 72px;
  height: 62px;
  object-fit: cover;
  border-radius: 4px;
}

.popular-posts li a {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.15;
}

.popular-posts li a:hover {
  color: var(--copper);
}

.popular-posts li time {
  color: var(--muted);
  font-size: 8px;
}

.popular-all-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 15px;
  margin-top: 20px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 900;
}

.blog-newsletter-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
  padding: clamp(76px, 9vw, 124px) clamp(20px, 8vw, 128px);
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0%, rgba(125, 46, 40, 0.22), transparent 42%),
    #1a0f0a;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
  border-bottom: 1px solid rgba(217, 164, 95, 0.18);
}

.newsletter-cacao-line {
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 260px;
  color: rgba(217, 164, 95, 0.14);
  stroke-width: 1.1;
}

.blog-newsletter-copy {
  max-width: 650px;
}

.blog-newsletter-copy h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.blog-newsletter-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.56);
}

.blog-newsletter-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.blog-newsletter-form input {
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  color: var(--cream);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid rgba(217, 164, 95, 0.26);
  border-radius: var(--radius);
  outline: 0;
}

.blog-newsletter-form input:focus {
  border-color: var(--gold);
}

.blog-newsletter-form small {
  grid-column: 1 / -1;
  color: rgba(255, 248, 239, 0.38);
  font-size: 9px;
}

.social-inspiration {
  padding: clamp(76px, 9vw, 124px) clamp(20px, 6vw, 92px);
  color: var(--ink);
  background: #fff8ef;
}

.social-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.social-heading h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(46px, 5vw, 68px);
}

.social-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.social-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(58, 32, 21, 0.3);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
}

.social-heading > a:hover {
  color: var(--cream);
  background: var(--ink);
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.social-gallery figure {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.social-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.social-gallery figure:hover img {
  transform: scale(1.06);
}

@media (max-width: 1180px) {
  .blog-content {
    grid-template-columns: 1fr;
  }

  .popular-posts {
    position: static;
  }

  .popular-posts ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

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

@media (max-width: 820px) {
  .blog-hero {
    min-height: 780px;
  }

  .blog-hero-image {
    object-position: 65% center;
  }

  .blog-hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 8, 5, 0.32), rgba(15, 8, 5, 0.94) 73%, #0f0805 100%),
      linear-gradient(90deg, rgba(15, 8, 5, 0.68), transparent 78%);
  }

  .blog-hero-copy {
    padding: 112px 24px 310px;
    margin: 0;
  }

  .featured-story-card {
    right: 20px;
    bottom: 28px;
    left: 20px;
    width: auto;
  }

  .blog-category-tabs {
    top: 68px;
    justify-content: start;
  }

  .magazine-card-large,
  .magazine-card-small,
  .magazine-grid.is-filtered .magazine-card {
    grid-column: span 3;
  }

  .magazine-card-image,
  .magazine-card-small .magazine-card-image {
    height: 280px;
  }

  .blog-newsletter-section {
    grid-template-columns: 1fr;
  }

  .social-heading {
    display: block;
  }

  .social-heading > a {
    margin-top: 20px;
  }
}

@media (max-width: 520px) {
  .blog-hero h1 {
    font-size: 50px;
  }

  .blog-hero-copy {
    padding-bottom: 330px;
  }

  .featured-story-card {
    padding: 24px;
  }

  .featured-story-card h2 {
    font-size: 28px;
  }

  .blog-content,
  .blog-newsletter-section,
  .social-inspiration {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .magazine-card-large,
  .magazine-card-small,
  .magazine-grid.is-filtered .magazine-card {
    grid-column: auto;
  }

  .magazine-card-image,
  .magazine-card-small .magazine-card-image {
    height: 250px;
  }

  .magazine-card-copy h2,
  .magazine-card-small .magazine-card-copy h2 {
    font-size: 27px;
  }

  .popular-posts ol {
    grid-template-columns: 1fr;
  }

  .blog-newsletter-copy h2,
  .social-heading h2 {
    font-size: 40px;
  }

  .blog-newsletter-form {
    grid-template-columns: 1fr;
  }

  .blog-newsletter-form small {
    grid-column: auto;
  }

  .social-gallery {
    display: grid;
    grid-auto-columns: 74vw;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .social-gallery figure {
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-blog-page *,
  .editorial-blog-page *::before,
  .editorial-blog-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .editorial-blog-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Boutique contact page */
.contact-page {
  color: var(--cream);
  background: #140b07;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(580px, 1.14fr);
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(125, 46, 40, 0.17), transparent 36%),
    #110805;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding: clamp(90px, 11vw, 150px) clamp(34px, 7vw, 108px);
}

.contact-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(58px, 6.7vw, 96px);
}

.contact-hero h1 span {
  display: block;
  color: var(--gold-2);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1.3;
  transform: rotate(-3deg);
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 248, 239, 0.68);
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.contact-text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-2);
  border-bottom: 1px solid rgba(217, 164, 95, 0.38);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-text-link span {
  font-size: 17px;
}

.contact-cacao-line {
  position: absolute;
  bottom: 22px;
  left: 18px;
  width: 190px;
  color: rgba(217, 164, 95, 0.2);
  stroke-width: 1.1;
}

.contact-hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.contact-hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #110805 0%, rgba(17, 8, 5, 0.2) 24%, transparent 52%),
    linear-gradient(0deg, rgba(17, 8, 5, 0.5), transparent 36%);
}

.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-status {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  background: rgba(18, 9, 6, 0.76);
  border: 1px solid rgba(217, 164, 95, 0.34);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.boutique-status > span {
  width: 9px;
  height: 9px;
  background: #9fc27d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(159, 194, 125, 0.12);
}

.boutique-status strong,
.boutique-status small {
  display: block;
}

.boutique-status strong {
  color: var(--cream);
  font-size: 10px;
}

.boutique-status small {
  color: rgba(255, 248, 239, 0.48);
  font-size: 8px;
}

.contact-service-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(38px, 6vw, 90px);
  max-width: 1600px;
  padding: clamp(86px, 10vw, 138px) clamp(20px, 6vw, 92px);
  margin: 0 auto;
}

.contact-section-heading {
  margin-bottom: 28px;
}

.contact-section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 62px);
}

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

.contact-info-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  min-height: 182px;
  padding: 24px;
  background: rgba(255, 248, 239, 0.025);
  border: 1px solid rgba(217, 164, 95, 0.22);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-info-card:hover {
  background: rgba(217, 164, 95, 0.06);
  border-color: rgba(217, 164, 95, 0.46);
  transform: translateY(-3px);
}

.contact-info-card .line-icon {
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.contact-info-card h3 {
  margin-bottom: 9px;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 21px;
}

.contact-info-card p {
  margin-bottom: 8px;
  color: rgba(255, 248, 239, 0.58);
  font-size: 10px;
}

.contact-info-card div > a {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.quick-message-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  margin-top: 12px;
  background: rgba(125, 46, 40, 0.13);
  border: 1px solid rgba(217, 164, 95, 0.25);
  border-radius: var(--radius);
}

.quick-message-card .line-icon {
  width: 46px;
  height: 46px;
  color: var(--gold-2);
}

.quick-message-card h3 {
  margin-bottom: 3px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 21px;
}

.quick-message-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.46);
  font-size: 9px;
}

.quick-message-card .btn {
  min-width: 116px;
}

.contact-form-panel {
  align-self: start;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.04), rgba(125, 46, 40, 0.06)),
    #1b100b;
  border: 1px solid rgba(217, 164, 95, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-form-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(42px, 4.7vw, 62px);
}

.contact-form-panel > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.52);
  font-size: 11px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 14px;
  margin-top: 30px;
}

.contact-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  color: rgba(255, 248, 239, 0.7);
  font-size: 10px;
  font-weight: 700;
}

.contact-field label span {
  color: var(--gold-2);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  color: var(--cream);
  background: rgba(255, 248, 239, 0.045);
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
  outline: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 148px;
  padding: 14px;
  resize: vertical;
}

.contact-field select option {
  color: var(--ink);
  background: var(--cream);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 248, 239, 0.3);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: rgba(255, 248, 239, 0.07);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(217, 164, 95, 0.09);
}

.contact-field > small {
  display: none;
  color: #e2a09a;
  font-size: 9px;
}

.contact-form.was-validated .contact-field input:invalid,
.contact-form.was-validated .contact-field select:invalid,
.contact-form.was-validated .contact-field textarea:invalid {
  border-color: #b95e57;
  box-shadow: 0 0 0 3px rgba(185, 94, 87, 0.09);
}

.contact-form.was-validated .contact-field input:invalid + small,
.contact-form.was-validated .contact-field select:invalid + small,
.contact-form.was-validated .contact-field textarea:invalid + small {
  display: block;
}

.contact-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 248, 239, 0.5);
  font-size: 9px;
  cursor: pointer;
}

.contact-consent input {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(217, 164, 95, 0.65);
  border-radius: 3px;
}

.contact-consent input::before {
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg);
}

.contact-consent input:checked {
  background: var(--gold-2);
}

.contact-consent input:checked::before {
  opacity: 1;
}

.contact-form.was-validated .contact-consent input:invalid {
  border-color: #b95e57;
}

.contact-form-status {
  min-height: 18px;
  color: var(--gold-2);
  font-size: 10px;
  text-align: center;
}

.contact-submit {
  justify-self: center;
  min-width: 190px;
}

.contact-submit span {
  margin-left: 8px;
  font-size: 17px;
}

.showroom-section {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(500px, 1fr);
  gap: 22px;
  max-width: 1600px;
  padding: 0 clamp(20px, 6vw, 92px) clamp(94px, 11vw, 150px);
  margin: 0 auto;
  border-top: 1px solid rgba(217, 164, 95, 0.15);
}

.showroom-map-column,
.tasting-booking {
  padding-top: clamp(70px, 8vw, 108px);
}

.boutique-map {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background:
    linear-gradient(rgba(217, 164, 95, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(90deg, rgba(217, 164, 95, 0.035) 1px, transparent 1px) 0 0 / 58px 58px,
    #24150e;
  border: 1px solid rgba(217, 164, 95, 0.26);
  border-radius: var(--radius);
  isolation: isolate;
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 16px;
  background: #412619;
  border-top: 1px solid rgba(217, 164, 95, 0.35);
  border-bottom: 1px solid rgba(217, 164, 95, 0.35);
  transform-origin: left center;
}

.map-road-one { top: 22%; left: -5%; width: 115%; transform: rotate(18deg); }
.map-road-two { top: 70%; left: -8%; width: 120%; transform: rotate(-15deg); }
.map-road-three { top: -8%; left: 35%; width: 105%; transform: rotate(72deg); }
.map-road-four { top: 44%; left: 8%; width: 90%; height: 9px; transform: rotate(-4deg); }

.map-road::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, rgba(241, 194, 123, 0.42) 0 10px, transparent 10px 22px);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(255, 248, 239, 0.42);
  font-family: var(--serif);
  font-size: 14px;
}

.map-label-one { top: 13%; left: 53%; }
.map-label-two { right: 7%; bottom: 12%; transform: rotate(-22deg); }
.map-label-three { bottom: 17%; left: 14%; }

.map-marker {
  position: absolute;
  top: 46%;
  left: 51%;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 230px;
  padding: 15px;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
}

.map-marker > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--cream);
  background: var(--cacao);
  border-radius: 50%;
}

.map-marker svg {
  width: 20px;
  height: 20px;
}

.map-marker strong,
.map-marker small {
  display: block;
}

.map-marker strong {
  font-size: 11px;
}

.map-marker small {
  margin-top: 3px;
  font-size: 8px;
}

.showroom-amenities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
}

.showroom-amenities article {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 14px 8px;
  text-align: center;
  border-right: 1px solid rgba(217, 164, 95, 0.14);
}

.showroom-amenities article:last-child {
  border-right: 0;
}

.showroom-amenities .line-icon {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
}

.showroom-amenities article > span:last-child {
  color: rgba(255, 248, 239, 0.56);
  font-size: 8px;
}

.tasting-booking {
  position: relative;
  align-self: end;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 95, 0.24);
  border-radius: var(--radius);
  isolation: isolate;
}

.tasting-booking::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 9, 6, 0.98) 0%, rgba(18, 9, 6, 0.86) 52%, rgba(18, 9, 6, 0.18) 100%);
}

.tasting-booking > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tasting-booking-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: clamp(44px, 6vw, 78px);
}

.tasting-booking h2 {
  font-size: clamp(42px, 4.6vw, 60px);
}

.tasting-booking-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.58);
}

.tasting-booking ul {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  margin: 22px 0;
  border-top: 1px solid rgba(217, 164, 95, 0.18);
  border-bottom: 1px solid rgba(217, 164, 95, 0.18);
  list-style: none;
}

.tasting-booking li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 248, 239, 0.64);
  font-size: 10px;
}

.tasting-booking li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  content: "✓";
  color: var(--gold-2);
  border: 1px solid rgba(217, 164, 95, 0.55);
  border-radius: 50%;
  font-size: 8px;
}

.contact-faq-b2b {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: 1600px;
  padding: clamp(76px, 9vw, 126px) clamp(20px, 6vw, 92px);
  margin: 0 auto;
  border-top: 1px solid rgba(217, 164, 95, 0.15);
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-list details {
  overflow: hidden;
  background: rgba(255, 248, 239, 0.025);
  border: 1px solid rgba(217, 164, 95, 0.2);
  border-radius: var(--radius);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-list details[open] {
  background: rgba(217, 164, 95, 0.055);
  border-color: rgba(217, 164, 95, 0.42);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  padding: 0 18px;
  color: rgba(255, 248, 239, 0.8);
  font-size: 11px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  content: "";
  background: var(--gold-2);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  animation: faqReveal 0.24s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  margin: 0;
  color: rgba(255, 248, 239, 0.5);
  font-size: 10px;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-b2b-banner {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 95, 0.24);
  border-radius: var(--radius);
  isolation: isolate;
}

.contact-b2b-banner::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 9, 6, 0.26), rgba(18, 9, 6, 0.94) 58%);
}

.contact-b2b-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-b2b-banner > div {
  position: absolute;
  top: 50%;
  right: clamp(28px, 5vw, 70px);
  z-index: 2;
  width: min(490px, 54%);
  transform: translateY(-50%);
}

.contact-b2b-banner h2 {
  font-size: clamp(40px, 4.5vw, 58px);
}

.contact-b2b-banner p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.56);
  font-size: 10px;
}

.contact-benefit-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 28px clamp(20px, 6vw, 92px);
  color: var(--ink);
  background: #f4e8d8;
}

.contact-benefit-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 18px;
  border-right: 1px solid rgba(58, 32, 21, 0.13);
}

.contact-benefit-strip article:last-child {
  border-right: 0;
}

.contact-benefit-strip .line-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--copper);
}

.contact-benefit-strip strong,
.contact-benefit-strip small {
  display: block;
}

.contact-benefit-strip strong {
  color: var(--cacao);
  font-size: 10px;
}

.contact-benefit-strip small {
  color: var(--muted);
  font-size: 8px;
}

@media (max-width: 1180px) {
  .contact-hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .contact-service-section,
  .showroom-section,
  .contact-faq-b2b {
    grid-template-columns: 1fr;
  }

  .contact-info-column {
    max-width: 880px;
  }

  .contact-form-panel {
    max-width: 980px;
  }

  .tasting-booking {
    min-height: 520px;
  }

  .contact-benefit-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .contact-benefit-strip article:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    min-height: 620px;
    padding: 110px 24px 80px;
    background:
      linear-gradient(180deg, rgba(17, 8, 5, 0.45), #110805 94%),
      url("assets/images/about-atelier.jpg") center / cover no-repeat;
  }

  .contact-hero-visual {
    display: none;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

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

  .showroom-amenities article:nth-child(2) {
    border-right: 0;
  }

  .showroom-amenities article:nth-child(1),
  .showroom-amenities article:nth-child(2) {
    border-bottom: 1px solid rgba(217, 164, 95, 0.14);
  }

  .contact-b2b-banner > div {
    right: 24px;
    left: 24px;
    width: auto;
  }
}

@media (max-width: 520px) {
  .contact-hero h1 {
    font-size: 50px;
  }

  .contact-hero-copy {
    min-height: 660px;
  }

  .contact-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-service-section,
  .showroom-section,
  .contact-faq-b2b {
    padding-right: 14px;
    padding-left: 14px;
  }

  .contact-section-heading h2,
  .contact-form-panel h2,
  .tasting-booking h2,
  .contact-b2b-banner h2 {
    font-size: 40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-message-card {
    grid-template-columns: 46px 1fr;
  }

  .quick-message-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .contact-form-panel {
    padding: 26px 18px;
  }

  .boutique-map {
    min-height: 360px;
  }

  .map-marker {
    width: 210px;
  }

  .tasting-booking {
    min-height: 620px;
  }

  .tasting-booking::after {
    background: linear-gradient(0deg, rgba(18, 9, 6, 0.98) 0%, rgba(18, 9, 6, 0.8) 72%, rgba(18, 9, 6, 0.25));
  }

  .tasting-booking-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 36px 20px;
  }

  .contact-b2b-banner {
    min-height: 560px;
  }

  .contact-b2b-banner::after {
    background: linear-gradient(0deg, rgba(18, 9, 6, 0.98), rgba(18, 9, 6, 0.22));
  }

  .contact-b2b-banner > div {
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .contact-benefit-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-benefit-strip article,
  .contact-benefit-strip article:nth-child(3) {
    justify-content: flex-start;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(58, 32, 21, 0.12);
  }

  .contact-benefit-strip article:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page *,
  .contact-page *::before,
  .contact-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .contact-page .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Typography and brand audit */
.site-header {
  padding-top: 8px;
  padding-bottom: 8px;
}

.magazine-card-copy h2 {
  font-size: 30px;
  line-height: 1.14;
  text-wrap: pretty;
}

.magazine-card-small .magazine-card-copy h2 {
  font-size: 24px;
  line-height: 1.16;
}

.popular-heading h2 {
  font-size: 31px;
  line-height: 1.14;
  text-wrap: pretty;
}

.contact-hero h1,
.contact-form-panel h2 {
  line-height: 1.08;
  text-wrap: balance;
}

.contact-hero h1 {
  max-width: 650px;
}

.contact-form-panel h2 {
  font-size: 54px;
}

@media (max-width: 1180px) {
  .contact-hero h1 {
    font-size: 64px;
  }
}

@media (max-width: 1024px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    min-height: 640px;
    max-width: none;
    padding: 110px 28px 82px;
    background:
      linear-gradient(180deg, rgba(17, 8, 5, 0.48), #110805 94%),
      url("assets/images/about-atelier.jpg") center / cover no-repeat;
  }

  .contact-hero-visual {
    display: none;
  }
}

@media (max-width: 820px) {
  .brand-logo {
    height: 50px;
  }

  .footer .brand-logo {
    height: 82px;
  }

  .contact-form-panel h2 {
    font-size: 46px;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    height: 46px;
  }

  .footer .brand-logo {
    height: 76px;
  }

  .contact-hero h1,
  .contact-form-panel h2,
  .magazine-card-copy h2,
  .magazine-card-small .magazine-card-copy h2,
  .popular-heading h2 {
    font-size: 38px;
  }
}

/* Workshop page and shared refinements */
.page-loading {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--cream);
  background: rgba(18, 9, 6, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  backdrop-filter: blur(8px);
}

.page-loading.is-visible {
  opacity: 1;
}

.page-loading span {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(241, 194, 123, 0.28);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  animation: page-spin 0.8s linear infinite;
}

.page-loading strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes page-spin {
  to { transform: rotate(360deg); }
}

.brand-timeline-section,
.artisan-team-section,
.workshop-list-section,
.workshop-register {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 78px);
}

.brand-timeline-section .about-heading,
.artisan-team-section .about-heading,
.workshop-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 64px);
}

.brand-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.brand-timeline::before {
  position: absolute;
  top: 38px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 164, 95, 0.55), transparent);
}

.brand-timeline article {
  position: relative;
  padding: 74px 22px 24px;
  background: rgba(255, 248, 239, 0.055);
  border: 1px solid rgba(217, 164, 95, 0.18);
  border-radius: 8px;
}

.brand-timeline time {
  position: absolute;
  top: 15px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.brand-timeline h3,
.artisan-card h3,
.workshop-card h3,
.workshop-register h2,
.workshop-heading h2,
.workshop-hero h1 {
  text-wrap: balance;
}

.brand-timeline h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.brand-timeline p {
  margin: 0;
  color: rgba(255, 248, 239, 0.68);
  font-size: 14px;
}

.artisan-team-section {
  background: var(--cream);
}

.artisan-team-section .about-heading {
  margin-inline: 0;
}

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

.artisan-card {
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(58, 32, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(27, 15, 10, 0.08);
}

.artisan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.artisan-card div {
  padding: 22px;
}

.artisan-card small,
.workshop-badge {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artisan-card h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

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

.workshop-page {
  background: var(--cream);
}

.workshop-hero {
  position: relative;
  min-height: 760px;
  padding: 130px clamp(20px, 5vw, 78px) 78px;
  overflow: hidden;
}

.workshop-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 9, 6, 0.88), rgba(18, 9, 6, 0.48) 55%, rgba(18, 9, 6, 0.1));
}

.workshop-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: clamp(120px, 12vw, 210px);
  color: var(--cream);
}

.workshop-hero h1 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.98;
}

.workshop-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 248, 239, 0.78);
  font-size: clamp(17px, 1.6vw, 20px);
}

.workshop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.workshop-heading {
  text-align: center;
}

.workshop-heading h2,
.workshop-register h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
}

.workshop-heading p {
  margin: 0;
  color: var(--muted);
}

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

.workshop-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(58, 32, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(27, 15, 10, 0.1);
}

.workshop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workshop-card > div {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.workshop-badge {
  justify-self: start;
  padding: 6px 9px;
  background: rgba(217, 164, 95, 0.12);
  border-radius: 999px;
}

.workshop-badge.limited {
  color: var(--wine);
  background: rgba(125, 46, 40, 0.1);
}

.workshop-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
}

.workshop-card p,
.workshop-card dd {
  color: var(--muted);
}

.workshop-card p {
  margin: 0;
}

.workshop-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(58, 32, 21, 0.1);
  border-bottom: 1px solid rgba(58, 32, 21, 0.1);
}

.workshop-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.workshop-card dt {
  color: var(--ink);
  font-weight: 850;
}

.workshop-card dd {
  margin: 0;
  text-align: right;
}

.workshop-register {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 10%, rgba(182, 107, 62, 0.2), transparent 30rem),
    linear-gradient(135deg, #160c08, #26140e);
}

.workshop-register h2 {
  color: var(--cream);
}

.workshop-register-copy > p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.72);
  font-size: 17px;
}

.workshop-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.workshop-includes span {
  padding: 9px 12px;
  color: var(--gold-2);
  border: 1px solid rgba(241, 194, 123, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.workshop-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(217, 164, 95, 0.26);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.workshop-form textarea {
  resize: vertical;
}

.workshop-submit.is-loading {
  opacity: 0.72;
  cursor: wait;
}

.workshop-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--cacao);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .brand-timeline,
  .artisan-team-grid,
  .workshop-grid,
  .workshop-register {
    grid-template-columns: 1fr;
  }

  .brand-timeline::before {
    display: none;
  }

  .workshop-hero {
    min-height: 680px;
  }
}

@media (max-width: 640px) {
  .brand-timeline-section,
  .artisan-team-section,
  .workshop-list-section,
  .workshop-register {
    padding-right: 14px;
    padding-left: 14px;
  }

  .workshop-hero {
    min-height: 620px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .workshop-hero::after {
    background: linear-gradient(0deg, rgba(18, 9, 6, 0.96), rgba(18, 9, 6, 0.38));
  }

  .workshop-card dl div {
    display: grid;
    gap: 2px;
  }

  .workshop-card dd {
    text-align: left;
  }

  .workshop-hero-actions,
  .workshop-hero-actions .btn {
    width: 100%;
  }
}
