/* ============================================================
   My Wine Expert — Design System
   A sibling brand to Whiskey Library.
   Palette: deep burgundy, cream, brass, ink.
============================================================ */

:root {
  --burgundy:        #5C1A2B;
  --burgundy-deep:   #3A0E1A;
  --burgundy-light:  #8C2A40;
  --cream:           #F4ECD8;
  --cream-soft:      #FAF6EE;
  --parchment:       #EDE4D3;
  --brass:           #B08D57;
  --brass-light:     #C9A961;
  --ink:             #1A1410;
  --ink-soft:        #2B231C;
  --paper:           #FFFCF6;
  --rule:            rgba(176, 141, 87, 0.25);
  --rule-soft:       rgba(26, 20, 16, 0.08);

  --serif:  'Playfair Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', 'Helvetica Neue', system-ui, -apple-system, Arial, sans-serif;

  --shadow-card:  0 1px 0 rgba(26, 20, 16, 0.04), 0 20px 40px -20px rgba(26, 20, 16, 0.20);
  --shadow-deep:  0 30px 80px -30px rgba(26, 20, 16, 0.50);

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  --page-max: 1320px;
}

/* ------------- reset ------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ------------- typography ------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 4.4vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.6rem, 2.7vw, 2.5rem); line-height: 1.15; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.5rem); line-height: 1.25; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-soft); }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
}

.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--burgundy);
}

/* ------------- layout ------------- */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 1100px) { .wrap { padding: 0 56px; } }

.section { padding: clamp(56px, 8vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(244, 236, 216, 0.78); }
.section--dark .eyebrow { color: var(--brass-light); }

.section--cream { background: var(--cream-soft); }
.section--burgundy { background: var(--burgundy); color: var(--cream); }
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3 { color: var(--cream); }
.section--burgundy p { color: rgba(244, 236, 216, 0.85); }
.section--burgundy .eyebrow { color: var(--brass-light); }

.divider {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
  color: var(--brass);
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: currentColor; opacity: 0.5;
}
.divider span { font-family: var(--serif); font-style: italic; font-size: 0.95rem; }

/* ------------- buttons ------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  border-radius: 0;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn:hover { background: var(--burgundy); border-color: var(--burgundy); transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }

.btn--brass { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-light); border-color: var(--brass-light); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--sm { padding: 10px 18px; font-size: 0.7rem; }

/* ------------- header ------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
}
.nav { display: flex; gap: 28px; }
.nav--right { justify-content: flex-end; }
.nav a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--burgundy); border-bottom-color: var(--brass); }
.site-header__logo { justify-self: center; }
.site-header__logo img { height: 56px; }

@media (max-width: 880px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; height: 72px; }
  .site-header__logo { justify-self: start; }
  .site-header__logo img { height: 44px; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
}
.menu-toggle {
  display: none;
  background: transparent; border: 0; padding: 8px;
  color: var(--ink);
  font-size: 1.4rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  background: var(--paper);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 18px 28px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-soft);
}

/* ------------- footer ------------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 236, 216, 0.8);
  padding: 72px 0 28px;
  margin-top: 80px;
}
.site-footer h4 { color: var(--cream); margin-bottom: 16px; }
.site-footer a { color: rgba(244, 236, 216, 0.78); transition: color 0.2s; }
.site-footer a:hover { color: var(--brass-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: 6px 0; font-size: 0.88rem; }
.footer-grid img { height: 48px; margin-bottom: 18px; }
.footer-grid p { color: rgba(244, 236, 216, 0.65); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(244, 236, 216, 0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: rgba(244, 236, 216, 0.55);
  letter-spacing: 0.04em;
}

/* ------------- announcement ------------- */
.announce {
  background: var(--burgundy-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 28px;
  font-weight: 500;
}
.announce a { color: var(--brass-light); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HOME — Hero
============================================================ */
.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 80px 0 120px;
  background: #0F0A07;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,7,0.55) 0%, rgba(15,10,7,0.75) 60%, rgba(15,10,7,0.92) 100%),
    radial-gradient(1200px 600px at 80% 20%, rgba(176,141,87,0.10), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__photo {
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  border: 1px solid rgba(176, 141, 87, 0.3);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: 56px; } }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  line-height: 1.02;
  margin-bottom: 28px;
}
.hero h1 em { color: var(--brass-light); font-style: italic; font-weight: 400; }
.hero p { color: rgba(244, 236, 216, 0.78); font-size: 1.08rem; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.hero__visual svg.bottle-art {
  width: 100%; max-width: 460px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}

/* ------------- founders portrait ------------- */
.founders {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--cream-soft);
}
.founders__figure {
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 28px;
}
.founders__figure img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -30px rgba(26, 20, 16, 0.45);
}
.founders__figure figcaption {
  margin-top: 22px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.founders__figure figcaption strong {
  font-style: normal;
  font-weight: 500;
  color: var(--burgundy);
}

/* ------------- featured strip / numbers ------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--cream-soft);
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }
.stats__item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stats__item:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
.stats__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--burgundy);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ------------- intro / lead copy ------------- */
.lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.lead h2 { margin-bottom: 22px; }
.lead p { font-size: 1.08rem; color: var(--ink-soft); }

/* ------------- collections / featured ------------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 56px;
}
@media (max-width: 1100px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 500px)  { .featured-grid { grid-template-columns: 1fr; } }

.product-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.product-card:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.product-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1A1410;
  position: relative;
}
.product-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.94;
}
.product-card:hover .product-card__photo img {
  transform: scale(1.04);
  opacity: 1;
}
.product-card__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(26,20,16,0.35) 100%);
  pointer-events: none;
}
.product-card__body {
  padding: 22px 22px 24px;
  text-align: center;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-card__region {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 4px;
  min-height: 2.6em;
}
.product-card__producer {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.product-card__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 500;
  margin-top: auto;
}
.product-card__score {
  position: absolute;
  top: 14px; right: 14px;
  width: 42px; height: 42px;
  border: 1px solid var(--brass);
  color: var(--cream);
  background: rgba(26, 20, 16, 0.75);
  font-family: var(--serif);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ------------- story strip ------------- */
.story-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--burgundy-deep);
}
@media (max-width: 880px) { .story-strip { grid-template-columns: 1fr; } }
.story-strip__copy { padding: 80px 56px; color: var(--cream); }
.story-strip__copy h2 { color: var(--cream); margin-bottom: 20px; }
.story-strip__copy p { color: rgba(244,236,216,0.85); }
.story-strip__visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.story-strip__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.story-strip__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,14,26,0.25) 0%, rgba(26,20,16,0.45) 100%);
  pointer-events: none;
}

/* ============================================================
   SHOP
============================================================ */
.shop-header {
  padding: 64px 0 32px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.shop-header h1 { margin-bottom: 12px; }
.shop-header p { max-width: 640px; color: var(--ink-soft); }

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 48px 0 80px;
}
@media (max-width: 980px) { .shop-layout { grid-template-columns: 1fr; gap: 24px; } }

.filters {
  position: sticky; top: 110px; align-self: start;
  border: 1px solid var(--rule-soft);
  background: var(--cream-soft);
  padding: 28px 24px;
}
.filters h4 { margin-top: 0; margin-bottom: 18px; }
.filter-group { margin-bottom: 24px; }
.filter-group__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.filter-group label {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}
.filter-group label:hover { color: var(--burgundy); }
.filter-group input[type="checkbox"] { accent-color: var(--burgundy); }

.filters select,
.filters input[type="search"],
.filters input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--rule-soft);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
}
.filters input[type="search"]:focus,
.filters select:focus { outline: 2px solid var(--brass); outline-offset: -1px; }

.price-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; }
.price-row span { color: var(--ink-soft); font-size: 0.8rem; }

.shop-results__toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.shop-results__count { font-size: 0.84rem; color: var(--ink-soft); letter-spacing: 0.06em; }
.shop-results__sort select {
  padding: 8px 12px;
  border: 1px solid var(--rule-soft);
  background: var(--paper);
  font-size: 0.86rem;
}

.shop-results__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .shop-results__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .shop-results__grid { grid-template-columns: 1fr; } }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
}
.empty-state h3 { font-family: var(--serif); margin-bottom: 8px; }

.pagination {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination button {
  min-width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule-soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination button:hover { border-color: var(--brass); color: var(--burgundy); }
.pagination button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ------------- mobile filter trigger ------------- */
.mobile-filter-bar {
  display: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
@media (max-width: 980px) {
  .mobile-filter-bar { display: flex; gap: 10px; }
  .filters { display: none; }
  .filters.open { display: block; position: fixed; inset: 0; z-index: 200; overflow: auto; padding: 30px 24px 80px; }
  .filters__close { float: right; background: transparent; border: 0; font-size: 1.4rem; }
}

/* ============================================================
   PRODUCT PAGE
============================================================ */
.product-hero {
  background: var(--cream-soft);
  padding: 56px 0 80px;
  border-bottom: 1px solid var(--rule-soft);
}
.breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.breadcrumbs a { color: var(--burgundy); }
.breadcrumbs span { color: var(--brass); margin: 0 10px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 880px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }

.product-visual {
  background: var(--ink);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  position: relative;
  min-height: 540px;
  aspect-ratio: 4 / 5;
}
.product-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(26,20,16,0.35) 100%);
  pointer-events: none;
}

.product-info__region {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.product-info__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}
.product-info__producer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 24px;
}
.product-info__price-row {
  display: flex; align-items: baseline; gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 28px;
}
.product-info__price { font-family: var(--serif); font-size: 2rem; color: var(--ink); }
.product-info__per { font-size: 0.84rem; color: var(--ink-soft); }
.product-info__score-badge {
  margin-left: auto;
  background: var(--burgundy);
  color: var(--cream);
  padding: 8px 14px;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.product-meta__item { padding: 14px 0; border-bottom: 1px solid var(--rule-soft); }
.product-meta__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.product-meta__value { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }

.tasting-notes { margin: 32px 0; }
.tasting-notes p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; color: var(--ink-soft); font-style: italic; }

.pairings { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 32px; }
.pairings .tag {
  font-size: 0.74rem;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.related { margin-top: 100px; }
.related h3 { margin-bottom: 32px; }

/* ============================================================
   ABOUT
============================================================ */
.page-hero {
  padding: 80px 0 60px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.page-hero h1 { max-width: 780px; }
.page-hero p { max-width: 640px; font-size: 1.05rem; color: var(--ink-soft); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split--reverse > div:first-child { order: 2; }
@media (max-width: 880px) { .split--reverse > div:first-child { order: 0; } }

.image-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: #1A1410;
}
.image-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(26,20,16,0.25) 100%);
  pointer-events: none;
}
.image-card__caption {
  position: absolute; bottom: 16px; left: 20px;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--cream);
  opacity: 0.85;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ============================================================
   FOUNDERS PHOTO
============================================================ */
.founders {
  background: var(--cream-soft);
  padding: clamp(40px, 6vw, 80px) 28px;
}
.founders__figure {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.founders__figure img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--rule-soft);
  box-shadow: 0 30px 60px -20px rgba(26, 20, 16, 0.35);
  background: var(--ink);
}
.founders__figure figcaption {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.founders__figure figcaption strong {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  color: var(--burgundy);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 32px 0;
  border-top: 1px solid var(--brass);
}
.value h4 { font-family: var(--serif); font-size: 1.4rem; text-transform: none; letter-spacing: 0; color: var(--burgundy); margin-bottom: 12px; }
.value p { color: var(--ink-soft); }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form {
  display: flex; flex-direction: column; gap: 16px;
}
.form label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  display: block;
}
.form input, .form textarea, .form select {
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.95rem;
  width: 100%;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--brass);
  outline-offset: -1px;
}
.form textarea { min-height: 140px; resize: vertical; }
.contact-info p { color: var(--ink-soft); }
.contact-info h4 { color: var(--burgundy); margin-bottom: 6px; }

/* ============================================================
   Newsletter
============================================================ */
.newsletter {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 28px;
  text-align: center;
}
.newsletter h2 { color: var(--cream); margin-bottom: 16px; }
.newsletter p { color: rgba(244,236,216,0.78); max-width: 540px; margin: 0 auto 28px; }
.newsletter-form {
  display: flex; gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(244,236,216,0.4);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  border-right: 0;
}
.newsletter-form input::placeholder { color: rgba(244,236,216,0.5); }
.newsletter-form button {
  background: var(--brass);
  border: 1px solid var(--brass);
  color: var(--ink);
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.newsletter-form button:hover { background: var(--brass-light); border-color: var(--brass-light); }

/* helpers */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }
@media (max-width: 720px) { .hide-mobile { display: none; } }

/* age gate */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(26, 20, 16, 0.94);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.age-gate__inner {
  background: var(--paper);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--brass);
}
.age-gate__inner svg { margin: 0 auto 24px; }
.age-gate h2 { font-size: 1.6rem; }
.age-gate p { color: var(--ink-soft); }
.age-gate__buttons { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
