:root {
  --ink: #16110d;
  --muted: #6f6459;
  --paper: #fffaf1;
  --ivory: #f7efe2;
  --champagne: #d0b58c;
  --gold: #b88745;
  --deep: #24170f;
  --line: rgba(72, 50, 27, 0.16);
  --shadow: 0 22px 70px rgba(50, 34, 14, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 5%, rgba(208, 181, 140, 0.32), transparent 26rem),
    linear-gradient(180deg, #fffaf2 0%, #f8efe1 54%, #fffaf2 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 18px 50px rgba(62, 42, 18, 0.14);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 44px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #31251c;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:nth-child(2) {
  margin-right: 6px;
  padding-inline: 22px;
  background: linear-gradient(135deg, #20150f, #4d2d15);
  color: #fff8e9;
  clip-path: polygon(14% 0, 86% 0, 100% 50%, 86% 100%, 14% 100%, 0 50%);
}

.site-nav a:hover {
  background: rgba(208, 181, 140, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 148px 24px 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.86) 42%, rgba(255, 250, 242, 0.34) 100%),
    repeating-linear-gradient(90deg, rgba(184, 135, 69, 0.08) 0 1px, transparent 1px 120px);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0.32;
}

.hero-bg img {
  width: min(840px, 75vw);
  margin-right: -80px;
  filter: drop-shadow(0 42px 80px rgba(63, 43, 19, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 12vw, 9.25rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 12px;
  color: #453323;
  font-size: clamp(1.25rem, 3vw, 2.05rem);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, #20140d, #533113);
  color: #fff8e8;
  box-shadow: 0 18px 38px rgba(65, 39, 15, 0.25);
}

.button-secondary {
  border-color: rgba(184, 135, 69, 0.38);
  background: rgba(255, 255, 255, 0.62);
  color: var(--deep);
}

.proof-grid {
  width: min(760px, 100%);
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-grid span {
  padding: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-grid span + span {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.section,
.cta-band,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 74px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.pillars,
.reason-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillars article,
.reason-grid article,
.testimonial-grid figure,
.collection-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(73, 50, 20, 0.08);
}

.pillars article,
.reason-grid article {
  padding: 26px;
}

.pillars p,
.reason-grid p,
.collection-card p,
.section-heading p,
.cta-band p,
.site-footer p {
  color: var(--muted);
}

.icon-diamond {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  display: block;
  background: linear-gradient(135deg, #f5dfb7, #a96e2d);
  clip-path: polygon(50% 0, 100% 38%, 50% 100%, 0 38%);
}

.section-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.section-heading h2,
.section-heading p {
  max-width: 720px;
}

.text-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.collection-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(184, 135, 69, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(208, 181, 140, 0.28));
  clip-path: polygon(50% 0, 100% 38%, 50% 100%, 0 38%);
}

.collection-card span {
  margin-bottom: 7px;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.collection-card strong {
  color: var(--gold);
}

.collection-card p {
  margin: 14px 0 0;
}

.featured-card {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(35, 22, 13, 0.92), rgba(98, 62, 24, 0.9)),
    var(--deep);
  color: #fff8e8;
}

.featured-card p,
.featured-card strong {
  color: #efd9ae;
}

.choose {
  width: 100%;
  max-width: none;
  padding: 84px max(20px, calc((100% - 1120px) / 2));
  background: linear-gradient(135deg, rgba(36, 23, 15, 0.96), rgba(62, 38, 17, 0.94));
  color: #fff8ec;
}

.choose .section-heading p,
.choose .reason-grid p {
  color: rgba(255, 248, 236, 0.72);
}

.choose .reason-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choose .reason-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-band {
  margin-top: 70px;
  margin-bottom: 36px;
  padding: clamp(30px, 5vw, 54px);
  justify-content: space-between;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(229, 207, 172, 0.72)),
    var(--ivory);
  box-shadow: var(--shadow);
}

.cta-band div {
  max-width: 680px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 26px;
}

.testimonial-grid blockquote {
  margin: 0 0 20px;
  color: #332419;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.testimonial-grid figcaption {
  font-weight: 800;
}

.testimonial-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin-bottom: 22px;
  color: var(--muted);
}

.site-footer {
  margin-top: 34px;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(160px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--line);
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.site-footer a {
  margin-bottom: 10px;
  display: block;
  color: #3d2c1f;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-mark {
  width: 90px;
  margin-bottom: 12px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    min-height: 66px;
    border-radius: 28px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav a:nth-child(2) {
    margin: 0;
    clip-path: none;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-bg {
    opacity: 0.2;
  }

  .hero-bg img {
    width: 780px;
    max-width: none;
    margin-right: -300px;
  }

  .split,
  .section-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pillars,
  .testimonial-grid,
  .choose .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    padding: 8px 10px;
  }

  .brand {
    font-size: 1.32rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-inline: 18px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3.45rem, 17vw, 5.25rem);
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

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

  .proof-grid span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 52px 0;
  }

  .section,
  .cta-band,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .pillars,
  .reason-grid,
  .testimonial-grid,
  .choose .reason-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

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

  .collection-card {
    min-height: 190px;
  }

  .cta-band {
    margin-top: 36px;
  }
}
