:root {
  --brand: #5f675d;
  --paper: #f5f4f1;
  --surface: #fffefa;
  --soft: #ebe9e3;
  --ink: #2c312b;
  --muted: #70766d;
  --line: rgba(95, 103, 93, 0.18);
  --shadow: 0 24px 60px rgba(95, 103, 93, 0.16);
  --radius: 8px;
  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(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(95, 103, 93, 0.1);
}

.brand,
.main-nav {
  display: flex;
  align-items: center;
}

.brand-logo-frame {
  display: block;
  width: 168px;
  height: 58px;
  overflow: hidden;
}

.brand-logo {
  width: 330px;
  max-width: none;
  transform: translate(-81px, -136px);
}

.main-nav {
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.nav-cta {
  color: var(--paper) !important;
  background: var(--brand);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(95, 103, 93, 0.14), rgba(245, 244, 241, 0.72)),
    var(--soft);
}

.section-pad {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: stretch;
  color: var(--paper);
  background: var(--brand);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 6vw, 96px) clamp(40px, 6vw, 80px) clamp(64px, 6vw, 96px) clamp(20px, 5vw, 72px);
}

.hero .eyebrow,
.hero .hero-tagline,
.hero .hero-lead {
  color: rgba(245, 244, 241, 0.88);
}

.hero .stress-list li {
  color: var(--paper);
  background: rgba(245, 244, 241, 0.1);
  border-color: rgba(245, 244, 241, 0.22);
}

.hero .button.primary {
  color: var(--brand);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(44, 49, 43, 0.24);
}

.hero .button.primary:hover {
  background: #fffefa;
}

.hero .button.ghost {
  color: var(--paper);
  background: rgba(245, 244, 241, 0.08);
  border-color: rgba(245, 244, 241, 0.3);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.hero-lead,
.hero-tagline,
.proposal-copy p,
.partner-copy p,
.problem-copy p,
.support-panel p {
  color: var(--muted);
}

.hero-tagline {
  margin-bottom: 22px;
  color: var(--brand);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.stress-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.stress-list li,
.timeline-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.64);
  padding: 12px 14px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--paper);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(95, 103, 93, 0.24);
}

.button.primary:hover {
  background: #4f574e;
}

.button.ghost {
  color: var(--brand);
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid var(--line);
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 460px;
}

.hero-image-wrapper {
  display: flex;
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

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

.section-with-bg {
  position: relative;
  overflow: hidden;
}

.section-with-bg>* {
  position: relative;
  z-index: 1;
}

.section-bg {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
  opacity: 0.15;
  pointer-events: none;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip div {
  padding: 26px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--brand);
  font-size: 1.2rem;
}

.proof-strip span {
  color: var(--muted);
}

.section-intro {
  max-width: 920px;
  margin-bottom: 42px;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.problem-copy {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.support-panel {
  padding: 28px;
  color: var(--paper);
  background: var(--brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.support-panel p {
  color: rgba(245, 244, 241, 0.84);
  margin-bottom: 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(95, 103, 93, 0.1);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--paper);
  background: var(--brand);
  border-radius: 8px;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card ul,
.benefit-block ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.service-card li,
.benefit-block li {
  position: relative;
  padding-left: 26px;
}

.service-card li::before,
.benefit-block li::before {
  position: absolute;
  left: 0;
  color: var(--brand);
  content: "✓";
  font-weight: 900;
}

.service-card strong {
  margin-top: auto;
  color: var(--brand);
}

.benefit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-block {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.benefit-block h3 {
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.partner {
  display: grid;
  place-items: center;
}

.partner-copy {
  max-width: 900px;
  text-align: center;
}

.partner-copy p {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.proposal {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.proposal-copy p {
  max-width: 640px;
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.proposal-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proposal-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.proposal-form input,
.proposal-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.proposal-form input:focus,
.proposal-form select:focus {
  outline: 3px solid rgba(95, 103, 93, 0.18);
  border-color: var(--brand);
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--brand);
  font-weight: 800;
}

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

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

@media (max-width: 980px) {

  .hero,
  .proposal,
  .problem-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 320px;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand-logo-frame {
    width: 148px;
    height: 50px;
  }

  .brand-logo {
    width: 292px;
    transform: translate(-72px, -121px);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
  }

  .hero-content {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .stress-list,
  .benefit-columns,
  .proof-strip,
  .timeline-list {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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