:root {
  --ink: #172422;
  --muted: #5d6b67;
  --paper: #f6f1e8;
  --white: #fffdf8;
  --moss: #264143;
  --moss-2: #385a4b;
  --clay: #b5654a;
  --gold: #d6a857;
  --line: rgba(23, 36, 34, 0.14);
  --shadow: 0 24px 70px rgba(23, 36, 34, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(23, 36, 34, 0.78), rgba(23, 36, 34, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.46);
  background: rgba(255, 253, 248, 0.13);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255, 253, 248, 0.58);
  background: rgba(255, 253, 248, 0.12);
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 46px;
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 30, 28, 0.9) 0%, rgba(17, 30, 28, 0.66) 42%, rgba(17, 30, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 30, 28, 0.74), rgba(17, 30, 28, 0.08) 58%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.75rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.18;
}

.hero-copy {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  background: var(--gold);
  color: #1b211c;
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.55);
  color: var(--white);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 46px;
  width: min(330px, calc(100% - 36px));
  padding: 22px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.18;
}

.section-band,
.services,
.trust,
.final-cta {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-band {
  background: var(--paper);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: start;
}

.intro p:last-child,
.trust-panel p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.service-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.service-icon {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--clay);
  font-weight: 900;
}

.service-grid p,
.steps p,
.faq p,
.trust-list span {
  color: var(--muted);
}

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

.steps > div {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  background: var(--moss);
  color: var(--white);
  font-weight: 900;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--moss);
  color: var(--white);
}

.trust-panel p {
  color: rgba(255, 253, 248, 0.78);
}

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

.trust-list div {
  padding: 22px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.15);
}

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

.trust-list strong {
  margin-bottom: 6px;
}

.trust-list span {
  color: rgba(255, 253, 248, 0.74);
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
}

details p {
  padding: 0 22px 22px;
}

.final-cta {
  text-align: center;
  background: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.82);
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: start;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 24px;
  }

  .intro,
  .service-grid,
  .steps,
  .trust {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .steps > div {
    min-height: auto;
  }

  .service-icon,
  .steps span {
    margin-bottom: 24px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 12px;
  }

  .brand span:last-child {
    max-width: 136px;
    white-space: normal;
    line-height: 1.05;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 840px;
    padding-top: 118px;
  }

  h1 {
    font-size: 3.1rem;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
