:root {
  --black: #12100d;
  --gold: #9b835f;
  --ivory: #faf7f2;
  --white: #ffffff;
  --line: #e7ded1;
  --soft: #f3ede3;
  --text: #5f5141;
  --shadow: 0 18px 40px rgba(18,16,13,0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}
button, a { font: inherit; }
button {
  background: none;
  border: none;
  cursor: pointer;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: var(--black);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.brand img, .footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 14px;
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  color: var(--black);
}
.brand em {
  display: block;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 10px;
  color: var(--gold);
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.desktop-nav button, .mobile-menu button { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--black);
  padding: 10px 16px;
  border-radius: 999px;
}
.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--black);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.menu-button {
  display: none;
  font-size: 22px;
  color: var(--black);
  width: 40px;
  height: 40px;
  border-radius: 999px;
}
.mobile-menu {
  border-top: 1px solid var(--line);
  background: white;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-section { padding: 40px 0 20px; }
.hero-shell {
  overflow: hidden;
  border-radius: 28px;
  background: var(--black);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}
.hero-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 10px;
  color: var(--gold);
}
.hero-copy h1,
.section-head h2,
.gift-copy h2,
.contact-card h2,
.product-copy h1,
.related-head h2,
.metric-card h3,
.cart-header h3,
.cart-card h4,
.product-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--black);
  margin: 0;
}
.hero-copy h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 0.95;
  margin-top: 18px;
  max-width: 620px;
}
.hero-copy p {
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 22px 0 0;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-media img,
.gift-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { min-height: 620px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 16px;
}
.metric-card,
.contact-card,
.product-card,
.product-info,
.cart-card,
.gift-shell,
.product-hero-shell {
  background: white;
}
.metric-card {
  border-radius: 22px;
  padding: 24px;
}
.metric-card h3 {
  font-size: 2rem;
  margin-top: 10px;
  line-height: 1;
}
.metric-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
}
.shop-section { padding: 48px 0 80px; }
.section-head { margin-bottom: 28px; }
.section-head h2, .gift-copy h2, .contact-card h2, .related-head h2 { font-size: 2.25rem; margin-top: 8px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  overflow: hidden;
  border-radius: 20px;
}
.product-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
  width: 100%;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.02); }
.product-card-body { padding: 20px; }
.product-card h3 {
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 12px 0 0;
}
.product-card-price { color: var(--black); font-size: 14px; padding-top: 6px; }
.product-card-row { display: flex; gap: 14px; justify-content: space-between; align-items: flex-start; }
.product-card p { font-size: 14px; line-height: 1.6; margin: 14px 0 0; }
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 14px;
}
.btn-light {
  background: white;
  color: var(--black);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}
.btn-dark {
  background: var(--black);
  color: white;
}
.btn.full { width: 100%; }
.gifting-section { padding-bottom: 80px; }
.gift-shell {
  overflow: hidden;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gift-copy {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gift-copy p,
.contact-card p,
.product-copy p,
.product-info p { font-size: 15px; line-height: 1.8; margin: 18px 0 0; }
.gift-copy .btn,
.contact-card .btn { margin-top: 28px; width: fit-content; }
.contact-section { padding-bottom: 96px; }
.contact-card {
  border-radius: 28px;
  padding: 44px 24px;
  text-align: center;
}
.contact-card p { max-width: 620px; margin-left: auto; margin-right: auto; }
.product-view { padding-top: 40px; padding-bottom: 80px; }
.product-hero-shell {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 56px;
}
.product-media {
  overflow: hidden;
  border-radius: 26px;
  background: white;
}
.product-media img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}
.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-copy h1 { font-size: clamp(3rem, 5vw, 4.5rem); line-height: .98; margin-top: 16px; }
.product-price { margin-top: 18px; font-size: 22px; color: var(--black); }
.product-info-grid {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}
.product-info {
  border-radius: 18px;
  padding: 20px;
}
.product-info strong { color: var(--black); }
.product-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.related-section { padding-top: 48px; }
.related-head { margin-bottom: 28px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 100%);
  background: var(--ivory);
  border-left: 1px solid var(--line);
  z-index: 50;
  display: flex;
  flex-direction: column;
}
.cart-header,
.cart-footer {
  padding: 20px 24px;
}
.cart-header { border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; }
.cart-header p { margin: 6px 0 0; font-size: 14px; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: grid;
  gap: 16px;
}
.cart-card {
  border-radius: 18px;
  padding: 16px;
}
.cart-card-row { display: flex; gap: 16px; }
.cart-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
}
.cart-card h4 { font-size: 1.25rem; }
.cart-card-price,
.cart-card-total { font-size: 14px; }
.qty {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 4px;
}
.qty button { padding: 8px; }
.qty span { min-width: 36px; text-align: center; font-size: 14px; }
.cart-footer { border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 14px; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 40;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.text-left { text-align: left; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-shell,
  .gift-shell,
  .product-hero-shell { grid-template-columns: 1fr; }
  .hero-media img { min-height: 360px; }
  .product-media img { min-height: 420px; }
}

@media (max-width: 800px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .metrics { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(1200px, calc(100% - 20px)); }
  .hero-copy,
  .gift-copy,
  .contact-card,
  .product-card-body { padding-left: 18px; padding-right: 18px; }
  .product-grid,
  .related-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.6rem; }
  .section-head h2,
  .gift-copy h2,
  .contact-card h2,
  .related-head h2 { font-size: 2rem; }
}
