:root {
  --night: #080302;
  --brown: #1b0805;
  --brown-soft: #2b1009;
  --gold: #d7a24b;
  --gold-light: #efd09a;
  --copy: rgba(246, 226, 194, .78);
  --line: rgba(218, 155, 67, .34);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { background: #000; scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--gold-light);
  background:
    radial-gradient(circle at 82% 18%, rgba(126, 57, 25, .2), transparent 32rem),
    radial-gradient(circle at 10% 82%, rgba(105, 34, 19, .18), transparent 34rem),
    linear-gradient(135deg, #170805, #050201 54%, #140604);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .085;
  pointer-events: none;
  background: repeating-radial-gradient(circle at -12% 46%, #e0a450 0 1px, transparent 1px 9px);
}

a { color: inherit; }

/* Catalog header foundations are repeated here so every standalone section
   keeps precisely the same alignment before the desktop grid rules apply. */
.container {
  margin-right: auto;
  margin-left: auto;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container,
.nav-buttons {
  display: flex;
  align-items: center;
}

.logo-container { gap: 20px; }
.nav-buttons { gap: 12px; }
.catalog-primary-nav a { line-height: 1.6; }

.section-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(26, 8, 5, .97), rgba(8, 3, 2, .94) 58%, rgba(31, 12, 7, .97));
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.section-header__inner {
  display: grid;
  width: min(calc(100% - 44px), 1380px);
  min-height: 82px;
  margin: 0 auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.6vw, 44px);
}

.section-brand {
  color: #e8c188;
  font-family: var(--display);
  font-size: clamp(29px, 2.4vw, 39px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.section-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.55vw, 25px);
}

.section-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(247, 225, 191, .76);
  font-size: clamp(10px, .86vw, 13px);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.section-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #dfaa58, transparent);
  opacity: 0;
  transition: .24s ease;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a.is-current { color: #f3cf96; outline: none; }

.section-nav a:hover::after,
.section-nav a:focus-visible::after,
.section-nav a.is-current::after { right: 0; left: 0; opacity: .8; }

.section-tools { display: flex; align-items: center; gap: 8px; }

.section-tool,
.section-menu-button {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0;
  place-items: center;
  color: #efd09a;
  border: 1px solid rgba(220, 162, 77, .3);
  border-radius: 50%;
  background: rgba(38, 14, 8, .68);
  text-decoration: none;
}

.section-tool svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.section-menu-button { display: none; cursor: pointer; font-size: 20px; }

.section-main { overflow: hidden; }

.section-hero {
  width: min(calc(100% - 44px), 1320px);
  margin: 0 auto;
  padding: clamp(74px, 9vw, 132px) 0 clamp(48px, 6vw, 86px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: #d59a43;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 500;
  line-height: .96;
}

.section-lead {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--copy);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}

.section-grid {
  display: grid;
  width: min(calc(100% - 44px), 1320px);
  margin: 0 auto;
  padding-bottom: clamp(48px, 7vw, 100px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-card {
  position: relative;
  min-height: 280px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(215, 152, 65, .34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 5%, rgba(137, 54, 25, .28), transparent 34%),
    linear-gradient(145deg, rgba(47, 18, 10, .95), rgba(10, 4, 3, .98));
  box-shadow: 0 24px 52px rgba(0, 0, 0, .28), 0 1px rgba(255, 225, 176, .07) inset;
}

.section-card--image {
  display: grid;
  min-height: 350px;
  align-content: end;
  isolation: isolate;
}

.section-card--image img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .64;
}

.section-card--image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 12%, rgba(18, 5, 3, .28) 44%, rgba(12, 4, 2, .98));
}

.section-card__number { color: #d39b47; font-size: 10px; letter-spacing: .18em; }

.section-card h2 {
  margin: 48px 0 12px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.section-card--image h2 { margin-top: 86px; }
.section-card p { margin: 0; color: rgba(242, 219, 184, .69); font-size: 13px; line-height: 1.6; }

.section-card__link {
  display: inline-flex;
  margin-top: 22px;
  align-items: center;
  gap: 9px;
  color: #e8b866;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.section-cta {
  width: min(calc(100% - 44px), 1320px);
  margin: 0 auto clamp(30px, 4vw, 62px);
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(110deg, rgba(52, 19, 10, .96), rgba(8, 3, 2, .98) 64%, rgba(47, 16, 8, .96));
  text-align: center;
}

.section-cta h2 { margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 58px); font-weight: 500; }
.section-cta p { max-width: 650px; margin: 13px auto 24px; color: var(--copy); line-height: 1.65; }

.section-button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  color: #241006;
  border: 1px solid #dfa64d;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5db9e, #d8953d);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.section-footer {
  padding: 26px 22px 34px;
  color: rgba(239, 207, 160, .58);
  border-top: 1px solid rgba(213, 151, 65, .22);
  font-size: 11px;
  text-align: center;
}

.section-drawer,
.section-drawer-overlay { display: none; }

@media (max-width: 980px) {
  .section-nav { display: none; }
  .section-menu-button { display: grid; }
  .section-header__inner { min-height: 70px; grid-template-columns: auto 1fr auto; }
  .section-brand { justify-self: center; font-size: 30px; }
  .section-account-tool { display: none; }
  .section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .section-drawer {
    position: fixed;
    z-index: 1002;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: min(390px, 88vw);
    padding: 24px 16px;
    flex-direction: column;
    gap: 5px;
    background: linear-gradient(145deg, #260d07, #090302 68%);
    box-shadow: 24px 0 60px rgba(0, 0, 0, .5);
    transform: translateX(-105%);
    transition: transform .28s ease;
  }

  .section-drawer.is-open { transform: translateX(0); }
  .section-drawer a { padding: 14px 16px; color: rgba(249, 231, 202, .82); border-radius: 14px; font-size: 14px; font-weight: 600; text-decoration: none; }
  .section-drawer a.is-current { color: #ffe8bd; background: rgba(166, 91, 30, .2); }
  .section-drawer .drawer-utility { margin-top: 12px; border-top: 1px solid rgba(216, 155, 67, .22); border-radius: 0; }

  .section-drawer-overlay {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: block;
    visibility: hidden;
    border: 0;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .section-drawer-overlay.is-open { visibility: visible; opacity: 1; }
}

@media (max-width: 620px) {
  .section-header__inner,
  .section-hero,
  .section-grid,
  .section-cta { width: min(calc(100% - 22px), 460px); }
  .section-tools { gap: 6px; }
  .section-tool,
  .section-menu-button { width: 40px; height: 40px; }
  .section-hero { padding-top: 58px; padding-bottom: 38px; }
  .section-hero h1 { font-size: clamp(42px, 13vw, 61px); }
  .section-lead { font-size: 13px; }
  .section-grid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 44px; }
  .section-card { min-height: 230px; padding: 26px; border-radius: 26px; }
  .section-card--image { min-height: 300px; }
  .section-card h2 { margin-top: 35px; font-size: 36px; }
  .section-card--image h2 { margin-top: 80px; }
  .section-cta { padding: 34px 22px; border-radius: 27px; }
}
