:root {
  --ink: #11110f;
  --muted: #6d6a63;
  --paper: #f2eee7;
  --cream: #fbf8f2;
  --accent: #a87839;
  --accent-dark: #805827;
  --gold: #c7a56d;
  --charcoal: #11110f;
  --line: rgba(17, 17, 15, 0.14);
}

body {
  background:
    radial-gradient(circle at 85% 20%, rgba(168, 120, 57, 0.07), transparent 28rem),
    var(--paper);
}

h1, h2, h3,
.hero h1,
.page-hero h1,
.product-info h1,
.success-page h1,
.section-heading h2,
.story h2,
.detail-content h2,
.product-card h3,
.empty-state h3,
.form-section h2 {
  font-family: "Cormorant Garamond", serif;
}

.announcement {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  color: rgba(255, 255, 255, 0.58);
  background: #090908;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement b {
  color: var(--gold);
  font-weight: 600;
}

.announcement span:last-child {
  text-align: right;
}

.site-header {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 12, 0.94);
}

.nav-shell {
  min-height: 82px;
}

.site-header .brand {
  color: white;
}

.brand span {
  color: var(--gold);
}

.site-header nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.site-header nav a:hover {
  color: white;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.cart-link {
  color: white;
}

.cart-link > span:last-child {
  color: #11110f;
  background: var(--gold);
}

.premium-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 77% 37%, rgba(188, 137, 73, 0.18), transparent 25rem),
    linear-gradient(135deg, #0a0a09 0%, #171613 55%, #0d0d0c 100%);
}

.premium-hero::before {
  content: "";
  position: absolute;
  width: 58vw;
  height: 58vw;
  top: -35vw;
  left: -25vw;
  border: 1px solid rgba(199, 165, 109, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(199, 165, 109, 0.025),
    0 0 0 160px rgba(199, 165, 109, 0.02);
}

.premium-hero-shell {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
  padding-block: 88px;
}

.premium-hero .hero-copy {
  position: relative;
  z-index: 2;
}

.premium-hero .eyebrow {
  color: var(--gold);
}

.premium-hero h1 {
  margin: 0;
  font-size: clamp(4.7rem, 8vw, 8rem);
  line-height: 0.81;
  letter-spacing: -0.055em;
}

.premium-hero h1 em {
  color: var(--gold);
  font-weight: 600;
}

.premium-hero .intro {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.62);
}

.premium-hero .primary-button {
  color: #11110f;
  background: var(--gold);
}

.premium-hero .primary-button:hover {
  background: #dbc08d;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-underline-offset: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-text-link span {
  color: var(--gold);
  font-size: 1.2rem;
}

.hero-proof {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-proof strong {
  font-family: "Cormorant Garamond", serif;
  color: white;
  font-size: 1.2rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.premium-showcase {
  position: relative;
  min-width: 0;
}

.showcase-image {
  position: relative;
  min-height: 570px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(199, 165, 109, 0.28);
  border-radius: 250px 250px 22px 22px;
  background: #24211d;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}

.showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 7, 0.64));
  pointer-events: none;
}

.showcase-image img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05);
  transition: transform 500ms ease, filter 500ms ease;
}

.showcase-image:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.04);
}

.showcase-placeholder {
  position: relative;
  min-height: 570px;
  background:
    radial-gradient(circle at 72% 18%, rgba(231, 197, 139, 0.34), transparent 16rem),
    linear-gradient(145deg, #4b3727, #171512 65%);
}

.showcase-glass {
  position: absolute;
  width: 190px;
  height: 280px;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.64);
  border-top-width: 7px;
  border-radius: 9px 9px 82px 82px;
  box-shadow: inset -20px 0 26px rgba(255, 255, 255, 0.08), 0 28px 60px rgba(0, 0, 0, 0.34);
}

.showcase-glass span {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, #b0642f, #492015);
  border-radius: 50% 50% 75px 75px;
}

.showcase-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 25px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.showcase-caption div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.showcase-caption span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.showcase-caption strong {
  max-width: 290px;
  font: 600 1.35rem/1.05 "Cormorant Garamond", serif;
}

.showcase-caption b {
  color: white;
  font-size: 0.88rem;
  white-space: nowrap;
}

.showcase-seal {
  position: absolute;
  z-index: 3;
  width: 100px;
  height: 100px;
  top: 34px;
  right: -32px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(17, 17, 15, 0.22);
  border-radius: 50%;
  color: #11110f;
  background: var(--gold);
  font: 700 2.1rem/0.75 "Cormorant Garamond", serif;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.showcase-seal small {
  font: 800 0.46rem "DM Sans", sans-serif;
  letter-spacing: 0.15em;
}

.brand-marquee {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--accent);
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.brand-marquee span:first-child {
  margin-left: -15px;
}

.brand-marquee i {
  color: #1a1814;
  font-style: normal;
}

.product-section {
  padding-block: 120px;
}

.section-heading {
  align-items: end;
}

.section-heading h2 {
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 0.9;
}

.heading-note {
  max-width: 360px;
  padding-bottom: 4px;
}

.heading-note p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.heading-note a {
  color: var(--accent);
  font-weight: 800;
  text-underline-offset: 5px;
}

.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 6px;
  background: #f8f4ed;
  box-shadow: none;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(36, 27, 19, 0.13);
}

.product-visual {
  background: #ded4c7;
}

.product-visual img {
  filter: saturate(0.88);
}

.product-card:hover .product-visual img {
  filter: saturate(1);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.product-meta > span {
  color: #477a58;
  font-size: 0.68rem;
  font-weight: 800;
}

.product-card h3 {
  font-size: 1.75rem;
}

.product-card-foot {
  min-height: 48px;
}

.quick-add {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #1a1916;
  border-radius: 999px;
  color: white;
  background: #1a1916;
  font-size: 0.76rem;
  font-weight: 800;
  transition: 180ms ease;
}

.quick-add:hover {
  color: #11110f;
  border-color: var(--gold);
  background: var(--gold);
}

.editorial {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 85% 18%, rgba(168, 120, 57, 0.22), transparent 24rem),
    #11110f;
}

.editorial-shell {
  min-height: 650px;
  display: grid;
  grid-template-columns: 120px 1fr 0.7fr;
  align-items: center;
  gap: 60px;
  padding-block: 100px;
}

.editorial-number {
  align-self: start;
  padding-top: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.editorial-copy h2 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.83;
  letter-spacing: -0.05em;
}

.editorial-copy h2 em {
  color: var(--gold);
  font-weight: 600;
}

.editorial-copy > p:last-child {
  max-width: 620px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.05rem;
  line-height: 1.8;
}

.editorial-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(199, 165, 109, 0.28);
  background: rgba(255, 255, 255, 0.035);
}

.editorial-card > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-card strong {
  position: relative;
  z-index: 2;
  font: 600 2.4rem/0.95 "Cormorant Garamond", serif;
}

.editorial-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -80px;
  border: 1px solid rgba(199, 165, 109, 0.38);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(199, 165, 109, 0.035);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 95px;
}

.service-grid article {
  padding: 15px 36px 15px 0;
}

.service-grid article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.service-grid span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
}

.service-grid h3 {
  margin: 45px 0 12px;
  font-size: 2rem;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 65px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  border-top-color: rgba(255, 255, 255, 0.1);
  background: #0b0b0a;
}

.site-footer .brand {
  color: white;
}

.site-footer p,
.site-footer .footer-links,
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.45);
}

.page-hero h1,
.product-info h1,
.success-page h1 {
  color: #1b1916;
}

.primary-button {
  background: var(--accent);
}

.order-summary,
.form-section {
  border-radius: 4px;
}

@media (max-width: 940px) {
  .premium-hero-shell {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 85px;
  }

  .premium-showcase {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .editorial-shell {
    grid-template-columns: 60px 1fr;
  }

  .editorial-card {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .announcement {
    display: flex;
    justify-content: center;
  }

  .announcement span {
    display: none;
  }

  .premium-hero h1 {
    font-size: clamp(4.1rem, 18vw, 6.6rem);
  }

  .hero-proof {
    gap: 18px;
  }

  .showcase-seal {
    right: -4px;
  }

  .editorial-shell {
    grid-template-columns: 1fr;
  }

  .editorial-number {
    display: none;
  }

  .editorial-card {
    grid-column: auto;
  }

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

  .service-grid article,
  .service-grid article + article {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid h3 {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .cart-label {
    display: none;
  }

  .premium-hero-shell {
    min-height: auto;
    padding-block: 68px;
  }

  .premium-hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.6rem);
  }

  .premium-hero .intro {
    font-size: 1rem;
  }

  .hero-proof {
    margin-top: 48px;
  }

  .hero-proof span {
    font-size: 0.6rem;
  }

  .showcase-image,
  .showcase-placeholder {
    min-height: 440px;
  }

  .showcase-image img {
    height: 440px;
  }

  .showcase-glass {
    width: 145px;
    height: 220px;
    top: 90px;
  }

  .showcase-seal {
    width: 82px;
    height: 82px;
    font-size: 1.8rem;
  }

  .product-section {
    padding-block: 80px;
  }

  .section-heading h2 {
    font-size: 3.8rem;
  }

  .editorial-shell {
    padding-block: 80px;
  }

  .editorial-copy h2 {
    font-size: 4.3rem;
  }
}
