:root {
  --paper: #f7f3ea;
  --paper-2: #eee6d7;
  --ivory: #fbf8f0;
  --ink: #11130f;
  --muted: #6c675c;
  --green: #1d332b;
  --green-2: #14261f;
  --steel: #455d66;
  --line: #d6cab8;
  --line-dark: rgba(251, 248, 240, 0.22);
  --gold: #b1976a;
  --white: #ffffff;
  --display: "Iowan Old Style", "New York", "Cormorant Garamond", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 36px 110px rgba(17, 19, 15, 0.22);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 8.8vw, 118px);
  line-height: 0.88;
}

h2 {
  color: var(--green);
  font-size: clamp(38px, 5.9vw, 78px);
  line-height: 0.95;
}

h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(247, 243, 234, 0.82);
  border-bottom: 1px solid rgba(214, 202, 184, 0.62);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header[data-scrolled] {
  min-height: 66px;
  background: rgba(247, 243, 234, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 196px;
  text-decoration: none;
}

.brand img {
  width: min(210px, 52vw);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #4e544c;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.nav-cta,
.button,
.text-link {
  text-decoration: none;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 21px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.02em;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: var(--green);
  background: transparent;
}

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

.button.primary {
  background: var(--ivory);
  color: var(--green);
  border-color: var(--ivory);
}

.button.secondary {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(251, 248, 240, 0.42);
}

.button.large {
  min-height: 54px;
  padding: 0 26px;
}

.section-inner,
.hero-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 84px;
  background:
    linear-gradient(90deg, rgba(251, 248, 240, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(251, 248, 240, 0.03) 1px, transparent 1px),
    var(--green-2);
  background-size: 92px 92px, 92px 92px, auto;
  color: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 38, 31, 0.86) 0%, rgba(20, 38, 31, 0.58) 48%, rgba(20, 38, 31, 0.92) 100%),
    radial-gradient(circle at 72% 38%, rgba(177, 151, 106, 0.18), transparent 28%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding: clamp(80px, 12vw, 150px) 0 clamp(122px, 15vw, 178px);
}

.hero h1 {
  color: var(--ivory);
}

.hero-copy {
  max-width: 665px;
  margin-top: 28px;
  color: rgba(251, 248, 240, 0.76);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-folio {
  position: relative;
  min-height: 560px;
  padding: 28px;
  background: rgba(251, 248, 240, 0.92);
  border: 1px solid rgba(251, 248, 240, 0.52);
  color: var(--green);
  box-shadow: var(--shadow);
}

.hero-folio::before,
.hero-folio::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(177, 151, 106, 0.55);
  pointer-events: none;
}

.hero-folio::before {
  inset: 12px;
}

.hero-folio::after {
  inset: 22px;
  border-color: rgba(29, 51, 43, 0.18);
}

.folio-top,
.folio-title,
.folio-grid {
  position: relative;
  z-index: 1;
}

.folio-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--steel);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.folio-title {
  margin-top: 88px;
}

.folio-title span,
.folio-grid span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.folio-title strong {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(36px, 3.55vw, 50px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.folio-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 52px 0;
}

.folio-lines span {
  height: 1px;
  background: rgba(29, 51, 43, 0.2);
}

.folio-lines span:nth-child(2) {
  width: 86%;
}

.folio-lines span:nth-child(3) {
  width: 72%;
}

.folio-lines span:nth-child(4) {
  width: 54%;
}

.folio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(29, 51, 43, 0.2);
  border: 1px solid rgba(29, 51, 43, 0.2);
}

.folio-grid div {
  min-height: 120px;
  padding: 16px;
  background: rgba(251, 248, 240, 0.95);
}

.folio-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.24;
}

.hero-footer {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  background: rgba(20, 38, 31, 0.74);
  backdrop-filter: blur(14px);
}

.hero-footer span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 46px);
  border-right: 1px solid var(--line-dark);
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 25px);
  line-height: 1;
}

.hero-footer span:last-child {
  border-right: 0;
}

.signal-section {
  padding: clamp(86px, 11vw, 142px) 0;
  background: var(--paper);
  color: var(--ink);
}

.signal-inner {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.signal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.signal-item {
  display: grid;
  grid-template-columns: 64px minmax(190px, 0.75fr) 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.signal-item span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.signal-item strong {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.signal-item p {
  color: var(--muted);
  font-size: 16px;
}

.journey-section {
  padding: clamp(86px, 11vw, 150px) 0;
  background: var(--green-2);
  color: var(--ivory);
}

.journey-section h2,
.journey-section h3 {
  color: var(--ivory);
}

.journey-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(38px, 8vw, 104px);
}

.journey-sticky {
  position: sticky;
  top: 112px;
  align-self: start;
}

.journey-sticky p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(251, 248, 240, 0.72);
  font-size: 18px;
}

.journey-steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.journey-step {
  min-height: 250px;
  padding: 34px;
  background: rgba(251, 248, 240, 0.045);
}

.journey-step span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
}

.journey-step p,
.sample-copy p,
.scope-intro p,
.scope-card p,
.scope-note p,
.cred-row p,
.contact-inner p,
.site-footer p,
.fine-print {
  color: var(--muted);
}

.journey-step p {
  margin-top: 16px;
  color: rgba(251, 248, 240, 0.7);
  font-size: 16px;
}

.proof-section {
  padding: clamp(86px, 11vw, 150px) 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-heading {
  max-width: 980px;
  margin-bottom: 46px;
}

.sample-showcase {
  display: grid;
  gap: 28px;
}

.sample-panel {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1fr;
  min-height: 570px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 32px 90px rgba(17, 19, 15, 0.12);
}

.sample-panel.alt {
  grid-template-columns: 1fr minmax(380px, 0.9fr);
}

.sample-panel.alt .sample-image {
  order: 2;
}

.sample-image {
  display: block;
  overflow: hidden;
  background: var(--paper-2);
}

.sample-image img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}

.sample-image:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.06);
}

.sample-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
}

.tag,
.price {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sample-copy h3 {
  margin-top: 18px;
  font-size: clamp(34px, 3.6vw, 56px);
}

.sample-copy p {
  max-width: 570px;
  margin-top: 22px;
  font-size: 17px;
}

.text-link {
  width: max-content;
  margin-top: 30px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.scope-section {
  padding: clamp(86px, 11vw, 146px) 0;
  background: var(--paper);
}

.scope-intro {
  max-width: 860px;
}

.scope-intro p {
  margin-top: 24px;
  font-size: 18px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.scope-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  background: var(--ivory);
}

.scope-card.primary-card {
  background: var(--green);
}

.scope-card.primary-card h3,
.scope-card.primary-card .price,
.scope-card.primary-card .scope-cta {
  color: var(--ivory);
}

.scope-card.primary-card p {
  color: rgba(251, 248, 240, 0.72);
}

.scope-card h3 {
  margin-top: 18px;
}

.scope-card p {
  margin-top: auto;
  padding-top: 28px;
}

.scope-card .price {
  font-family: var(--display);
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.scope-cta {
  width: max-content;
  margin-top: 28px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.scope-card.primary-card .scope-cta {
  border-color: rgba(251, 248, 240, 0.72);
}

.scope-note {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.scope-note span {
  color: var(--green);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.scope-note p {
  max-width: 820px;
  font-size: 17px;
}

.cred-section {
  padding: clamp(84px, 11vw, 142px) 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cred-inner {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(36px, 7vw, 88px);
}

.cred-rows {
  display: grid;
  border-top: 1px solid var(--line);
}

.cred-row {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.cred-row span {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1;
}

.contact-section {
  min-height: 76svh;
  display: flex;
  align-items: center;
  padding: clamp(92px, 12vw, 150px) 0;
  background: var(--green-2);
  color: var(--ivory);
}

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

.contact-inner {
  margin-left: max(20px, 9vw);
}

.contact-inner h2 {
  max-width: 920px;
}

.contact-inner p {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(251, 248, 240, 0.72);
  font-size: 19px;
}

.contact-inner .button {
  margin-top: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 34px clamp(18px, 4vw, 58px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-top: 10px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--green);
  font-weight: 820;
  text-align: right;
}

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

.fine-print {
  grid-column: 1 / -1;
  max-width: 940px;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    display: none;
  }

  .hero-inner,
  .signal-inner,
  .journey-inner,
  .cred-inner {
    grid-template-columns: 1fr;
  }

  .hero-folio {
    min-height: 470px;
  }

  .journey-sticky {
    position: static;
  }

  .sample-panel,
  .sample-panel.alt {
    grid-template-columns: 1fr;
  }

  .sample-panel.alt .sample-image {
    order: 0;
  }

  .sample-image img {
    min-height: 430px;
  }

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

  .scope-card {
    min-height: 240px;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 176px;
  }

  .nav-cta {
    min-height: 39px;
    padding: 0 12px;
  }

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

  .hero-inner {
    width: calc(100% - 36px);
    padding: 54px 0 178px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-folio {
    min-height: auto;
    padding: 22px;
  }

  .folio-title {
    margin-top: 58px;
  }

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

  .hero-footer {
    grid-template-columns: 1fr;
  }

  .hero-footer span {
    min-height: 43px;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .signal-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .signal-item p {
    grid-column: 2;
  }

  .journey-step,
  .sample-copy,
  .scope-card {
    padding: 24px;
  }

  .journey-step span {
    margin-bottom: 34px;
  }

  .sample-image img {
    min-height: 330px;
  }

  .scope-note,
  .cred-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
  }

  .contact-inner {
    width: calc(100% - 36px);
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
