:root {
  --bg: #f5f0e7;
  --bg-soft: #fbf7f1;
  --bg-dark: #0f0d0c;
  --bg-card: #1a1715;
  --text: #1b1715;
  --text-soft: #64584f;
  --line: rgba(27,23,21,.11);
  --white: #f8f4ee;
  --gold: #d3a35f;
  --gold-soft: #edd7b6;
  --shadow: 0 22px 60px rgba(0,0,0,.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
button { font: inherit; }

.shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.section-space { padding: clamp(72px, 9vw, 128px) 0; }
.eyebrow {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #947143;
}
.section-title-block h2,
.manifesto-title h2,
.values-title h2,
.hero h1,
.statement-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.035em;
}
.section-title-block h2,
.manifesto-title h2,
.values-title h2 {
  font-size: clamp(2.1rem, 3.8vw, 4.1rem);
  max-width: 12.5ch;
}
.section-title-block.narrow h2 { max-width: 13ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15,13,12,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 108px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(248,244,238,.9);
  font-size: 14px;
}
.desktop-nav a:hover { color: var(--gold-soft); }
.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.mobile-menu-close span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 29px; }
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  padding: 98px 28px 36px;
  background: rgba(15,13,12,.98);
  display: grid;
  align-content: start;
  gap: 18px;
  transform: translateX(100%);
  transition: transform .32s ease;
  z-index: 70;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  color: var(--white);
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  cursor: pointer;
}
.mobile-menu-close span:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
.mobile-menu-close span:nth-child(2) { top: 20px; transform: translateX(-50%) rotate(-45deg); }
body.menu-open { overflow: hidden; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: stretch;
  background: #0c0a09;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(8,7,6,.82) 0%, rgba(8,7,6,.65) 32%, rgba(8,7,6,.28) 56%, rgba(8,7,6,.12) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(64px, 10vw, 110px) 0;
  color: var(--white);
  width: min(1240px, calc(100% - 40px));
}
.hero-copy .eyebrow { color: #b89765; }
.hero h1 {
  font-size: clamp(3rem, 6vw, 6.1rem);
  max-width: 8.3ch;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold-soft); font-style: italic; }
.hero .lead {
  max-width: 600px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(248,244,238,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: .24s ease;
}
.primary-button {
  background: var(--gold);
  color: #1c130a;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
.primary-button:hover { transform: translateY(-1px); filter: brightness(1.03); }
.ghost-button {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.ghost-button:hover { background: rgba(255,255,255,.08); }

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .9fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.manifesto-copy {
  padding-top: 32px;
  max-width: 520px;
}
.manifesto-title h2 em { color: #8f754e; font-style: italic; }
.manifesto-copy p {
  font-size: 1.05rem;
  color: var(--text-soft);
}
.manifesto-copy p + p { margin-top: 18px; }

.values-head { margin-bottom: 26px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-grid article {
  padding: 34px 28px 38px;
  min-height: 260px;
}
.values-grid article + article { border-left: 1px solid var(--line); }
.value-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(211,163,95,.12);
  color: #8a693f;
  font-size: 1.1rem;
  margin-bottom: 26px;
}
.values-grid h3,
.collection-card h3,
.retailer-copy h2,
.footer-brand,
.audience-items span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}
.values-grid h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  margin-bottom: 12px;
}
.values-grid p { color: var(--text-soft); font-size: 1rem; }

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}
.feature-copy p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 1.05rem;
}
.card-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}
.card-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.collections-intro { margin-bottom: 28px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.collection-card {
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(27,23,21,.07);
  min-height: 242px;
}
.collection-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: #8f754e;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .86rem;
}
.collection-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 14px;
}
.collection-card p { color: var(--text-soft); font-size: .98rem; }
.collection-card.accent-dark {
  background: linear-gradient(160deg, #171310 0%, #251d18 100%);
  color: var(--white);
}
.collection-card.accent-dark p { color: rgba(248,244,238,.74); }
.collection-card.accent-soft {
  background: linear-gradient(180deg, #f5ebdd 0%, #efe3d2 100%);
}

.feature-banner {
  position: relative;
  min-height: clamp(520px, 70vw, 760px);
  background: #100e0d;
  color: var(--white);
  overflow: hidden;
}
.feature-banner-media,
.feature-banner-media img,
.feature-banner::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.feature-banner-media img {
  object-fit: cover;
  object-position: center center;
}
.feature-banner::after {
  content: "";
  background: linear-gradient(90deg, rgba(8,7,6,.86) 0%, rgba(8,7,6,.72) 28%, rgba(8,7,6,.38) 56%, rgba(8,7,6,.12) 100%);
}
.feature-banner-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-items: center;
}
.light-copy .eyebrow { color: #d3a35f; }
.light-copy p:not(.eyebrow) { color: rgba(248,244,238,.82); margin-top: 20px; max-width: 50ch; }

.statement {
  background: var(--bg-soft);
  border-top: 1px solid rgba(27,23,21,.06);
  border-bottom: 1px solid rgba(27,23,21,.06);
}
.statement-inner {
  text-align: center;
  padding: clamp(28px, 3vw, 42px) 0;
}
.statement-inner p {
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8f754e;
  margin-bottom: 18px;
}
.statement-inner h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.retailer-card {
  display: grid;
  grid-template-columns: 320px minmax(0,1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: linear-gradient(135deg, #16120f 0%, #281c11 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.retailer-badge {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}
.retailer-badge img { width: 110px; }
.retailer-badge small,
.retailer-badge span {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,244,238,.68);
}
.retailer-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}
.retailer-copy .eyebrow { color: #d3a35f; }
.retailer-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}
.retailer-copy p {
  color: rgba(248,244,238,.82);
  max-width: 58ch;
  margin-bottom: 22px;
}

.site-footer {
  background: #0f0d0c;
  color: rgba(248,244,238,.86);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr 1fr .9fr;
  gap: 28px;
}
.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(248,244,238,.56);
}
.footer-grid a,
.footer-grid p { color: rgba(248,244,238,.8); }
.footer-grid a { display: block; margin-bottom: 12px; }
.footer-brand {
  font-size: clamp(1.75rem, 2vw, 2.3rem);
  margin-bottom: 14px;
  color: var(--gold-soft);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  margin-top: 34px;
  font-size: 14px;
  color: rgba(248,244,238,.56);
}

@media (max-width: 1180px) {
  .collection-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .manifesto,
  .feature-split,
  .retailer-card {
    grid-template-columns: 1fr;
  }
  .manifesto-copy { padding-top: 0; max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .retailer-badge { max-width: 320px; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1240px); }
  :root { --header-height: 74px; }
  .brand img { width: 94px; }
  .hero-copy,
  .hero { min-height: calc(100svh - var(--header-height)); }
  .hero {
    align-items: end;
  }
  .hero-media img { object-position: center center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(8,7,6,.22) 0%, rgba(8,7,6,.55) 48%, rgba(8,7,6,.88) 100%); }
  .hero-copy {
    align-content: end;
    padding: 48px 0 28px;
  }
  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.4rem, 11vw, 4rem);
  }
  .hero .lead { max-width: 100%; font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-button,
  .ghost-button { width: 100%; }
  .section-title-block h2,
  .manifesto-title h2,
  .values-title h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    max-width: 100%;
  }
  .collection-grid { grid-template-columns: 1fr; }
  .feature-banner {
    min-height: 620px;
  }
  .feature-banner::after { background: linear-gradient(180deg, rgba(8,7,6,.2) 0%, rgba(8,7,6,.52) 44%, rgba(8,7,6,.88) 100%); }
  .feature-banner-inner {
    align-items: end;
    padding-bottom: 28px;
  }
  .feature-banner-media img { object-position: 72% center; }
  .retailer-card { padding: 24px 18px; }
  .footer-grid,
  .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .footer-bottom { gap: 6px; }
}

@media (max-width: 420px) {
  .values-grid article,
  .collection-card { padding-inline: 20px; }
  .mobile-menu { padding-inline: 22px; }
}
