:root {
  --pearl: #fbf8f5;
  --ivory: #fffdfb;
  --mist: #f4ece7;
  --blush: #ead8cf;
  --copper: #b8754f;
  --copper-dark: #7f4a31;
  --sage: #75836f;
  --graphite: #302b28;
  --muted: #756b66;
  --line: rgba(127, 74, 49, .22);
  --shadow: 0 24px 70px rgba(70, 47, 34, .14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--graphite);
  background:
    linear-gradient(180deg, rgba(255, 253, 251, .8), rgba(251, 248, 245, .98) 44%),
    var(--pearl);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: #fbf8f5;
  border-bottom: 1px solid rgba(127, 74, 49, .12);
  backdrop-filter: blur(16px);
}

body.in-app-browser .site-header {
  background: #fbf8f5;
  backdrop-filter: none;
}

.site-header.is-elevated {
  box-shadow: 0 10px 35px rgba(62, 45, 36, .08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: min(100%, max-content);
}

.brand-mark .brand-symbol {
  flex: 0 0 auto;
  width: clamp(38px, 4vw, 52px);
  height: clamp(42px, 4.5vw, 58px);
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(184, 117, 79, .14));
}

.brand-mark .brand-wordmark {
  width: clamp(170px, 16vw, 252px);
  height: auto;
  max-height: 52px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(184, 117, 79, .14));
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

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

.nav-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--ivory);
  background: var(--graphite);
  border: 1px solid var(--graphite);
  border-radius: 999px;
  font-size: 14px;
  white-space: nowrap;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100svh - 120px));
  display: grid;
  grid-template-columns: minmax(520px, 640px) minmax(420px, 560px);
  justify-content: center;
  align-items: center;
  column-gap: clamp(48px, 8vw, 140px);
  overflow: hidden;
  padding: clamp(50px, 6vw, 78px) clamp(20px, 5vw, 72px) clamp(38px, 6vw, 68px);
  background: var(--pearl);
}

.hero::before {
  display: none;
}

.hero-art {
  position: static;
  grid-column: 2;
  grid-row: 1;
  z-index: -2;
  width: 100%;
  display: grid;
  place-items: center;
  opacity: .58;
}

.hero-art picture,
.hero-art img {
  width: min(560px, 100%);
  max-height: 70svh;
  object-fit: contain;
  filter: drop-shadow(0 34px 55px rgba(184, 117, 79, .13));
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  padding-left: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}

h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

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

h1 {
  max-width: 680px;
  font-size: clamp(56px, 6vw, 92px);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(34px, 5vw, 70px);
}

h3 {
  font-size: 27px;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: min(100%, 520px);
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 590px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  background: rgba(255, 253, 251, .68);
  border: 1px solid rgba(127, 74, 49, .12);
  border-radius: 999px;
}

.hero-points span::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  content: "";
  background: var(--copper);
  border-radius: 50%;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: var(--ivory);
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  box-shadow: 0 16px 36px rgba(127, 74, 49, .24);
}

.button.ghost {
  color: var(--graphite);
  background: rgba(255, 253, 251, .72);
  border-color: var(--line);
}

.button.outline {
  color: var(--copper-dark);
  background: transparent;
  border-color: var(--line);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 74px);
  bottom: clamp(18px, 4vw, 42px);
  color: var(--sage);
  font-size: 14px;
}

.hero-note::before {
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  content: "";
  background: var(--copper);
}

.intro-band,
.trust-section,
.closing {
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 72px);
}

.intro-band {
  background:
    linear-gradient(135deg, #302b28 0%, #3a312d 52%, #2b2825 100%);
  color: var(--ivory);
  overflow: hidden;
}

.intro-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 54px);
  line-height: 1.15;
}

.mini-stats {
  display: grid;
  gap: 12px;
}

.mini-stats span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 253, 251, .18);
  border-radius: var(--radius);
  color: #efe5df;
  background: rgba(255, 253, 251, .035);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 120px) 0;
}

.steps-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(20px, 5vw, 60px) 0 clamp(58px, 9vw, 120px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.section-heading.compact {
  max-width: 680px;
}

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

.service-card {
  min-height: 282px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--ivory);
  border: 1px solid rgba(127, 74, 49, .13);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(70, 47, 34, .07);
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.receive-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 9vw, 120px);
}

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

.receive-grid article {
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 251, .92), rgba(244, 236, 231, .48));
  border: 1px solid rgba(127, 74, 49, .13);
  border-radius: var(--radius);
}

.receive-grid span {
  color: var(--copper-dark);
  font-weight: 800;
}

.receive-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

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

.steps-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 251, .78);
  border: 1px solid rgba(127, 74, 49, .13);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(70, 47, 34, .06);
}

.steps-grid span {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.steps-grid h3 {
  margin-top: 24px;
}

.steps-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(244, 236, 231, .72), rgba(255, 253, 251, .84)),
    var(--mist);
}

.assurance-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  margin: clamp(20px, 4vw, 42px) auto 0;
}

.assurance-strip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--copper-dark);
  background: rgba(255, 253, 251, .62);
  border: 1px solid rgba(127, 74, 49, .13);
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.trust-copy,
.trust-list {
  width: min(100%, 590px);
}

.trust-copy {
  justify-self: end;
}

.trust-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 253, 251, .68);
  border: 1px solid rgba(127, 74, 49, .12);
  border-radius: var(--radius);
}

.trust-list span {
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
}

.closing {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.closing img {
  width: clamp(128px, 13vw, 190px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(184, 117, 79, .13));
}

.contact-copy {
  grid-column: 1;
  min-width: 0;
  max-width: 680px;
}

.closing > img {
  grid-column: 1;
  margin-bottom: clamp(10px, 2vw, 18px);
  opacity: .92;
}

.lead-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

.closing h2 {
  max-width: 620px;
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.08;
}

.social-row {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.social-row a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--copper-dark);
  background: rgba(255, 253, 251, .78);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: var(--ivory);
}

.social-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-form {
  display: grid;
  gap: 13px;
  padding: clamp(20px, 2.4vw, 26px);
  background: var(--ivory);
  border: 1px solid rgba(127, 74, 49, .14);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(70, 47, 34, .09);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--graphite);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  color: var(--graphite);
  background: #fffaf7;
  border: 1px solid rgba(127, 74, 49, .18);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
}

.field input {
  padding: 12px 14px;
}

.field select {
  padding: 12px 10px;
}

.field input:focus,
.field select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 117, 79, .12);
}

.phone-field {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  min-height: 82px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid rgba(127, 74, 49, .13);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer strong {
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-social a {
  color: var(--copper-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    position: sticky;
    top: 0;
    backdrop-filter: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 86svh;
    padding-top: 72px;
  }

  .hero-art {
    inset: 4% auto auto 50%;
    width: 86vw;
    opacity: .2;
    transform: translateX(-48%);
  }

  .hero-art picture,
  .hero-art img {
    width: min(560px, 86vw);
    max-height: 50svh;
  }

  .hero-content {
    width: min(640px, 100%);
    align-self: end;
  }

  .hero-note {
    position: static;
    margin-top: 34px;
  }

  .intro-grid,
  .trust-section,
  .closing {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .trust-copy {
    justify-self: start;
  }

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

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

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

  .assurance-strip {
    grid-template-columns: 1fr;
  }

  .closing img {
    width: min(190px, 58vw);
    justify-self: center;
  }

  .contact-copy,
  .closing > img,
  .lead-form,
  .social-row {
    grid-column: 1;
    grid-row: auto;
  }

  .social-row {
    justify-content: center;
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding-top: clamp(26px, 7vw, 44px);
  }

  .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(158px, 28vw, 230px);
    opacity: 1;
    transform: none;
    order: 0;
    overflow: visible;
  }

  .hero-art picture,
  .hero-art img {
    width: auto;
    height: 100%;
    max-width: min(250px, 54vw);
    max-height: none;
  }

  .hero-content {
    width: min(680px, calc(100vw - 56px));
    min-width: 0;
    align-self: center;
    padding-left: 0;
    order: 1;
  }

  .hero-actions {
    width: min(100%, 520px);
  }

  .hero-note {
    position: static;
    width: min(680px, 100%);
    margin: 32px auto 0;
    order: 2;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 11px 14px;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .brand-mark {
    gap: 8px;
  }

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

  .brand-mark .brand-wordmark {
    width: min(190px, calc(100vw - 86px));
    height: auto;
    max-height: 46px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 24px 18px 44px;
    gap: 34px;
  }

  .hero-art {
    height: 150px;
    margin-bottom: 8px;
  }

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

  h1 {
    font-size: clamp(38px, 11.2vw, 48px);
    max-width: 100%;
  }

  .hero-content {
    width: min(100%, 326px);
    min-width: 0;
    align-self: flex-start;
  }

  .hero-art picture,
  .hero-art img {
    width: auto !important;
    height: 138px !important;
    max-width: min(176px, 48vw) !important;
    max-height: 138px !important;
    object-fit: contain;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
  }

  .hero-copy {
    font-size: 16px;
  }

  h2 {
    font-size: clamp(31px, 11vw, 48px);
  }

  .closing h2 {
    font-size: clamp(31px, 8.5vw, 38px);
  }

  .button,
  .hero-actions,
  .contact-actions,
  .hero-points {
    width: 100%;
    max-width: 100%;
  }

  .hero-points span {
    width: 100%;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .intro-band,
  .trust-section,
  .closing,
  .steps-section {
    padding-inline: 18px;
  }

  .intro-grid p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.3;
  }

  .closing {
    padding-block: 34px;
    gap: 18px;
  }

  .closing > img {
    width: min(138px, 44vw);
  }

  .social-row {
    justify-content: stretch;
    gap: 10px;
  }

  .social-row a {
    flex: 1 1 100%;
    min-height: 46px;
  }

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

  .receive-section {
    width: calc(100% - 36px);
  }

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

  .steps-section {
    width: 100%;
  }

  .phone-field {
    grid-template-columns: minmax(102px, 34%) minmax(0, 1fr);
    gap: 8px;
  }

  .field select {
    padding-inline: 9px;
  }

  .trust-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }

  .site-footer div {
    justify-content: center;
  }
}

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

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