
:root {
  --black: #050403;
  --soft-black: #0d0b09;
  --ivory: #f7f1e8;
  --warm-ivory: #eee4d7;
  --taupe: #b9aa97;
  --deep-brown: #2b1711;
  --gold: #b8964b;
  --gold-soft: #d1b76c;
  --muted: #807366;
  --line: rgba(184, 150, 75, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--soft-black);
  background:
    radial-gradient(circle at top left, rgba(184,150,75,.10), transparent 28rem),
    linear-gradient(180deg, #fbf7f0 0%, #f2eadf 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 232, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 150, 75, 0.22);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  letter-spacing: .18em;
  font-weight: 500;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: .78;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.hero {
  min-height: 88vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 80px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(5,4,3,.92), rgba(5,4,3,.62), rgba(5,4,3,.88)),
    radial-gradient(circle at 70% 30%, rgba(184,150,75,.28), transparent 30rem),
    #080604;
}

.hero-inner {
  width: min(980px, 100%);
  text-align: center;
}

.monogram {
  width: 92px;
  height: 92px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  color: var(--gold-soft);
  letter-spacing: .12em;
  font-size: 1.65rem;
  box-shadow: 0 0 0 8px rgba(184,150,75,.06);
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(4.4rem, 11vw, 9.5rem);
  letter-spacing: .15em;
}

.subtitle {
  margin: 12px 0 28px;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .82rem;
  color: var(--gold-soft);
}

.intro {
  width: min(720px, 100%);
  margin: 0 auto 38px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(247,241,232,.86);
}

.cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: rgba(184,150,75,.12);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  transition: .25s ease;
}

.cta:hover, .button:hover {
  background: var(--gold);
  color: var(--black);
}

main {
  overflow: hidden;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.narrow {
  width: min(860px, calc(100% - 40px));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  max-width: 900px;
  margin-bottom: 28px;
}

.section p {
  font-size: 1.08rem;
  color: #4d4339;
  max-width: 780px;
}

.grid-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.card {
  padding: 38px;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(184,150,75,.26);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 22px;
}

.card ul {
  margin: 0;
  padding-left: 20px;
  color: #4d4339;
}

.card li {
  margin: 12px 0;
}

.dark {
  width: 100%;
  max-width: none;
  padding: 110px max(20px, calc((100vw - 1120px) / 2));
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(5,4,3,.96), rgba(43,23,17,.94)),
    #080604;
}

.dark p {
  color: rgba(247,241,232,.78);
}

.dark h2 {
  color: var(--ivory);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.steps div {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.34);
}

.steps strong {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  letter-spacing: .2em;
}

.steps span {
  display: block;
  color: #4d4339;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.product-card {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(184,150,75,.24);
  box-shadow: 0 20px 50px rgba(0,0,0,.09);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
}

.product-info {
  padding: 28px;
}

.product-info h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.product-info p {
  font-size: .98rem;
  margin: 0;
}

.quote-band {
  width: 100%;
  max-width: none;
  padding: 105px 20px;
  text-align: center;
  color: var(--ivory);
  background:
    linear-gradient(rgba(5,4,3,.86), rgba(5,4,3,.86)),
    radial-gradient(circle at center, rgba(184,150,75,.24), transparent 32rem),
    #080604;
}

.quote-band p {
  width: min(880px, 100%);
  margin: 0 auto;
  color: rgba(247,241,232,.9);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.16;
}

.contact {
  text-align: center;
}

.contact h2, .contact p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  padding: 44px 20px;
  text-align: center;
  color: rgba(247,241,232,.72);
  background: var(--black);
  border-top: 1px solid rgba(184,150,75,.25);
  font-family: Arial, sans-serif;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 22px 0;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

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

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

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

  .section {
    padding: 70px 0;
  }

  h1 {
    letter-spacing: .1em;
  }
}


.card ul ul {
  margin-top: 8px;
  margin-bottom: 18px;
  padding-left: 22px;
  color: #65584c;
}

.card strong {
  color: var(--deep-brown);
}

