:root {
  --ink: #15110f;
  --charcoal: #211b18;
  --espresso: #34251f;
  --ivory: #fffaf0;
  --pearl: #f6efe3;
  --champagne: #c8a45d;
  --gold: #e2c57c;
  --claret: #7a2332;
  --emerald: #154438;
  --muted: #776e64;
  --line: rgba(36, 27, 22, 0.13);
  --shadow: 0 24px 80px rgba(27, 18, 12, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(246, 239, 227, 0.98)),
    repeating-linear-gradient(90deg, rgba(200, 164, 93, 0.04) 0 1px, transparent 1px 80px);
  line-height: 1.72;
}

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

p a,
li a {
  color: var(--claret);
  font-weight: 700;
  border-bottom: 1px solid rgba(122, 35, 50, 0.28);
}

p a:hover,
li a:hover {
  border-bottom-color: var(--claret);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 240, 0.86);
  border-bottom: 1px solid rgba(36, 27, 22, 0.09);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 14px 42px rgba(28, 21, 16, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: var(--ivory);
  background: linear-gradient(145deg, var(--ink), var(--espresso));
  border: 1px solid rgba(226, 197, 124, 0.55);
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 180ms ease;
}

.brand:hover .brand-logo {
  opacity: 0.82;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(21, 17, 15, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--ink), var(--claret));
  box-shadow: 0 12px 32px rgba(122, 35, 50, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(21, 17, 15, 0.18);
}

.button.light {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f5e0a2);
  box-shadow: 0 16px 36px rgba(226, 197, 124, 0.18);
}

.hero .button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f7e6aa, var(--champagne));
  border-color: rgba(255, 250, 240, 0.42);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(82px, 11vw, 138px) clamp(18px, 5vw, 78px);
  color: var(--ivory);
  isolation: isolate;
  background: linear-gradient(145deg, #211b18 0%, #3a2425 42%, #7a2332 66%, #c8a45d 100%);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(21, 17, 15, 0.18), rgba(21, 17, 15, 0.48)),
    linear-gradient(115deg, rgba(21, 17, 15, 0.24), rgba(122, 35, 50, 0.08) 52%, rgba(200, 164, 93, 0.04)),
    radial-gradient(circle at 50% 34%, rgba(255, 250, 240, 0.22), transparent 0 28%, transparent 100%),
    linear-gradient(145deg, rgba(33, 27, 24, 0.14), rgba(122, 35, 50, 0.1));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(255, 250, 240, 0.22);
}

.hero-content {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.48);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--claret);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(42px, 5.8vw, 78px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  margin: 26px 0 12px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.hero-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero-intro p:first-child {
  font-size: clamp(19px, 1.6vw, 24px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.hero-visual {
  display: none;
}

.image-placeholder {
  position: relative;
  display: flex;
  min-height: 532px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(21,17,15,0.36), rgba(21,17,15,0.88)),
    linear-gradient(135deg, #241b16, #7a2332 52%, #c8a45d);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 250, 240, 0.32);
}

.image-placeholder span,
.image-placeholder strong {
  position: relative;
  z-index: 1;
}

.image-placeholder span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.image-placeholder strong {
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
}

.trust-strip {
  display: none;
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.content-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.content-section {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  padding: clamp(42px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

.content-section[data-accent] {
  position: relative;
}

.content-section[data-accent]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 54px;
  width: min(260px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne));
}

.section-kicker {
  color: var(--champagne);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 800;
}

.section-copy {
  max-width: 860px;
}

.section-copy p,
.section-copy li {
  color: rgba(21, 17, 15, 0.78);
  font-size: 17px;
}

.section-copy ul,
.section-copy ol {
  padding-left: 22px;
}

.section-copy li {
  margin: 10px 0;
}

.section-copy strong {
  color: var(--ink);
}

.content-image {
  margin: 4px 0 28px;
}

.content-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(36, 27, 22, 0.14);
  box-shadow: 0 20px 60px rgba(27, 18, 12, 0.12);
}

.content-image-placeholder {
  position: relative;
  display: grid;
  min-height: clamp(260px, 34vw, 430px);
  place-items: end start;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  color: var(--ivory);
  background:
    linear-gradient(160deg, rgba(21, 17, 15, 0.18), rgba(21, 17, 15, 0.82)),
    linear-gradient(135deg, #201916, #6f2431 54%, #c8a45d);
  border: 1px solid rgba(36, 27, 22, 0.14);
  box-shadow: 0 20px 60px rgba(27, 18, 12, 0.12);
}

.content-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.26);
}

.content-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 250, 240, 0.1) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 80% 20%, rgba(255, 250, 240, 0.22), transparent 0 26%, transparent 46%);
}

.content-image-placeholder span,
.content-image-placeholder strong {
  position: relative;
  z-index: 1;
  display: block;
}

.content-image-placeholder span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-image-placeholder strong {
  max-width: 560px;
  margin-top: 8px;
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
}

.content-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.conversion-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(34px, 6vw, 82px) auto;
  padding: clamp(34px, 5vw, 62px);
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.94), rgba(52, 37, 31, 0.88)),
    linear-gradient(120deg, var(--claret), var(--emerald));
  border: 1px solid rgba(226, 197, 124, 0.34);
  box-shadow: var(--shadow);
}

.conversion-panel .eyebrow {
  color: var(--gold);
}

.conversion-panel h2 {
  max-width: 760px;
}

.conversion-panel p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.78);
}

.related {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(60px, 8vw, 110px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.related-card {
  min-height: 168px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(31, 24, 18, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, 0.62);
}

.related-card span,
.related-card strong {
  display: block;
}

.related-card span {
  color: var(--claret);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card strong {
  margin-top: 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 78px);
  color: rgba(255, 250, 240, 0.78);
  background: var(--ink);
}

.site-footer strong {
  color: var(--ivory);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.site-footer a {
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 84px;
    display: grid;
    gap: 2px;
    padding: 12px;
    background: var(--ivory);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero-visual,
  .image-placeholder {
    min-height: 360px;
  }

  .trust-strip,
  .related-grid,
  .conversion-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .conversion-panel {
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    font-size: 13px;
  }

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

  .brand-logo {
    height: 36px;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 52px 18px 46px;
  }

  .hero-actions {
    display: grid;
  }

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

  .content-section {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-kicker {
    font-size: 24px;
  }

  .section-copy p,
  .section-copy li {
    font-size: 16px;
  }

  .conversion-panel {
    padding: 28px 20px;
  }
}
