:root {
  color-scheme: light;
  --ink: #16130f;
  --muted: #6f665b;
  --paper: #fbf8f2;
  --stone: #e9e0d4;
  --ivory: #f6efd9;
  --rose: #ead0cd;
  --oak: #a87243;
  --black-stone: #25211d;
  --line: rgba(22, 19, 15, 0.16);
  --shadow: 0 18px 55px rgba(34, 27, 19, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  justify-self: start;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.86rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #262019;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
  filter: saturate(0.96) contrast(0.98);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.74) 0%, rgba(10, 8, 6, 0.46) 42%, rgba(10, 8, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 clamp(54px, 9vh, 88px);
  color: #fff;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.8rem);
  font-weight: 500;
  line-height: 0.92;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-offer {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}

.hero-offer strong {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.text-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.hero .button-primary {
  background: #fff;
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-band div {
  min-height: 116px;
  padding: 28px clamp(20px, 4vw, 44px);
  background: #fffaf3;
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  margin-bottom: 6px;
}

.signal-band span,
p,
dd,
li {
  color: var(--muted);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.section-kicker {
  color: var(--oak);
}

.split,
.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.copy-stack p,
.details-layout p,
.feature-copy p,
.order-copy p,
.section-heading-row p,
.final-cta p,
.thanks-shell p {
  margin: 0;
  font-size: 1.02rem;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.image-rhythm {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.image-tile {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: var(--shadow);
}

.image-tile.wide {
  grid-row: span 2;
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  padding: 9px 11px;
  border-radius: var(--radius);
  background: rgba(251, 248, 242, 0.88);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.outcome-section h2 {
  max-width: 880px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.outcome {
  min-height: 240px;
  padding: 28px;
  background: #fffaf3;
}

.outcome span {
  display: block;
  margin-bottom: 60px;
  color: var(--oak);
  font-size: 0.78rem;
  font-weight: 900;
}

.outcome p,
.variant-body p,
.faq p,
.form-note {
  margin: 10px 0 0;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  background: var(--black-stone);
  color: #fff;
}

.feature-copy {
  align-self: center;
  width: min(560px, calc(100% - 36px));
  justify-self: end;
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px) clamp(58px, 8vw, 106px) 0;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.variant-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
}

.variant-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--stone);
}

.variant-body {
  padding: 22px;
}

.text-button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.details-layout {
  align-items: start;
}

.details-layout h2 {
  margin-bottom: 20px;
}

.spec-list {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 18px;
  padding: 20px;
  background: #fffaf3;
}

.spec-list dt {
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 8px;
  padding: 0 8px;
}

.gallery-strip img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--stone);
}

.order-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.order-copy h2 {
  margin-bottom: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--oak);
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
  box-shadow: var(--shadow);
}

.price-panel {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(168, 114, 67, 0.34);
  border-radius: var(--radius);
  background: #f5eadf;
}

.price-panel span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
}

.price-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.price-panel small {
  color: var(--muted);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-weight: 900;
}

fieldset label {
  position: relative;
}

fieldset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

fieldset span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

fieldset input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 850;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(168, 114, 67, 0.16);
}

.form-note {
  font-size: 0.84rem;
}

.faq h2 {
  max-width: 760px;
  margin-bottom: 34px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.final-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 116px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #fff8f3 0%, #f4eadf 58%, #ead0cd 100%);
}

.final-cta img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 36px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fbf8f2 0%, #ead0cd 100%);
}

.thanks-shell {
  width: min(720px, calc(100% - 36px));
  padding: 28px;
}

.thanks-shell section {
  margin-top: 82px;
}

.thanks-shell h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.thanks-shell .button {
  margin-top: 28px;
}

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

  .nav-links {
    display: none;
  }

  .signal-band,
  .split,
  .details-layout,
  .feature-band,
  .section-heading-row,
  .order-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .outcome-grid,
  .variant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-copy {
    width: min(var(--max), calc(100% - 36px));
    justify-self: center;
    padding: 64px 0;
  }

  .feature-band img {
    min-height: 420px;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip img {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-media img {
    object-position: 56% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(10, 8, 6, 0.78) 0%, rgba(10, 8, 6, 0.3) 56%, rgba(10, 8, 6, 0.22) 100%);
  }

  .hero-content {
    padding-top: 112px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 19vw, 5.8rem);
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .signal-band,
  .image-rhythm,
  .outcome-grid,
  .variant-grid,
  .form-grid,
  fieldset,
  .gallery-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .image-rhythm {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .image-tile,
  .image-tile img {
    min-height: 320px;
  }

  .image-tile.wide {
    grid-row: auto;
  }

  .section {
    width: calc(100% - 36px);
    padding: 72px 0;
  }

  .outcome {
    min-height: auto;
  }

  .outcome span {
    margin-bottom: 34px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-strip {
    padding: 0 12px;
  }

  .gallery-strip img {
    height: 340px;
  }

  .order-form {
    padding: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
