:root {
  --ink: #171614;
  --muted: #6b655c;
  --paper: #f4f0e9;
  --linen: #e9e1d4;
  --oak: #9b6e45;
  --brass: #b9823f;
  --graphite: #22201d;
  --white: #fffaf2;
  --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;
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: var(--brass);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(244, 240, 233, 0.92);
  border-bottom: 1px solid rgba(23, 22, 20, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 3px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.header-call {
  opacity: 0.86;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.header-call:hover {
  color: var(--brass);
  opacity: 1;
}

.header-call {
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 56% center;
  transform: translateY(var(--hero-shift, 0));
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.78) 0%, rgba(12, 11, 9, 0.48) 36%, rgba(12, 11, 9, 0.08) 72%),
    linear-gradient(180deg, rgba(12, 11, 9, 0.26) 0%, rgba(12, 11, 9, 0.04) 48%, rgba(12, 11, 9, 0.52) 100%);
}

.hero-content {
  width: min(650px, calc(100% - 36px));
  padding: clamp(138px, 18vh, 210px) 0 120px;
  margin-left: clamp(18px, 8vw, 118px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-claim {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(1.25rem, 2.8vw, 2.15rem);
  line-height: 1.14;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  border-color: var(--brass);
  background: var(--brass);
  color: #17110a;
}

.button-primary:hover {
  background: #d0964e;
  border-color: #d0964e;
}

.button-secondary {
  color: inherit;
  background: rgba(255, 250, 242, 0.07);
}

.site-header.is-scrolled .button-secondary,
.contact .button-secondary {
  background: transparent;
}

.hero-proof {
  position: absolute;
  left: clamp(18px, 8vw, 118px);
  right: clamp(18px, 8vw, 118px);
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 242, 0.38);
  color: rgba(255, 250, 242, 0.88);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: end;
}

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

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}

.offer {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 54px);
  background: var(--linen);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.offer-item {
  display: grid;
  gap: 22px;
}

.image-link {
  display: block;
  overflow: hidden;
  background: var(--graphite);
  aspect-ratio: 4 / 3;
}

.image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.image-link:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.item-number {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1;
}

.offer-item p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.process-image {
  overflow: hidden;
  align-self: stretch;
  min-height: 520px;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 22, 20, 0.16);
}

.steps li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 22, 20, 0.16);
  color: var(--muted);
}

.steps span {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 8vw, 118px);
  background: var(--graphite);
  color: var(--white);
}

.proof h2 {
  max-width: 840px;
}

.proof-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 250, 242, 0.2);
}

.proof-lines p {
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(38px, 8vw, 104px);
  align-items: start;
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-panel {
  padding-top: 8px;
  border-top: 2px solid var(--ink);
}

.contact-panel p,
address {
  margin: 0 0 18px;
  color: var(--muted);
  font-style: normal;
}

.contact-name {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.contact .button-secondary {
  color: var(--ink);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(23, 22, 20, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

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

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

  .nav {
    display: none;
  }

  .hero-content {
    padding-top: 132px;
    margin-left: 18px;
  }

  .hero-proof {
    left: 18px;
    right: 18px;
  }

  .intro,
  .section-head,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .process-image {
    min-height: 360px;
  }
}

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

  .header-call {
    font-size: 0.78rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 11, 9, 0.82) 0%, rgba(12, 11, 9, 0.56) 52%, rgba(12, 11, 9, 0.18) 100%),
      linear-gradient(180deg, rgba(12, 11, 9, 0.42) 0%, rgba(12, 11, 9, 0.08) 45%, rgba(12, 11, 9, 0.58) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 128px;
  }

  .hero-title {
    font-size: clamp(2.75rem, 14vw, 3.5rem);
    line-height: 0.94;
  }

  .hero-claim {
    max-width: 330px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    font-size: 0.72rem;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    flex-direction: column;
  }
}
