:root {
  --ink: #1a2332;
  --ink-soft: #3d4a5c;
  --muted: #6b7789;
  --paper: #f7f5f2;
  --paper-2: #eeebe6;
  --line: #d8d2c8;
  --sage: #3d6b5a;
  --sage-deep: #2a4f42;
  --sage-soft: #e8f0ec;
  --sky: #c5d9e8;
  --sky-deep: #7ba3c4;
  --accent: #c4784a;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(26, 35, 50, 0.08);
  --radius: 4px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(197, 217, 232, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(61, 107, 90, 0.12), transparent 50%),
    linear-gradient(180deg, #faf8f5 0%, var(--paper) 40%, var(--paper-2) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(247, 245, 242, 0.88);
  border-bottom: 1px solid rgba(216, 210, 200, 0.7);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span {
  color: var(--sage);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  align-items: center;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--sage-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--sage-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 35, 50, 0.25) 0%, rgba(26, 35, 50, 0.55) 55%, rgba(26, 35, 50, 0.78) 100%),
    linear-gradient(120deg, #2a4f42 0%, #3d6b5a 35%, #5a7d92 70%, #7ba3c4 100%);
  background-size: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 40px,
      rgba(255, 255, 255, 0.03) 41px
    );
  opacity: 0.7;
}

.hero-content {
  padding: 5.5rem 0 4rem;
  color: var(--white);
  max-width: 38rem;
  animation: rise 0.9s ease both;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn-solid {
  background: var(--sage);
  color: var(--white);
}

.btn-solid:hover {
  background: var(--sage-deep);
  color: var(--white);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.65rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--ink-soft);
}

.prose h2 {
  margin-top: 2.25rem;
}

.prose ul {
  color: var(--ink-soft);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

/* Feature strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.feature-item h3 {
  margin-bottom: 0.4rem;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-visual {
  min-height: 320px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(160deg, var(--sage-deep), var(--sky-deep));
  position: relative;
  overflow: hidden;
  animation: drift 12s ease-in-out infinite alternate;
}

.split-visual::before {
  content: "";
  position: absolute;
  width: 55%;
  height: 70%;
  right: 8%;
  bottom: 0;
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(20% 100%, 100% 35%, 100% 100%);
}

.split-visual::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 55%;
  left: 10%;
  bottom: 0;
  background: rgba(26, 35, 50, 0.2);
  clip-path: polygon(0 100%, 85% 20%, 100% 100%);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* Page hero (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  animation: rise 0.7s ease both;
}

.page-hero .brand-line {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

/* Contact */
.contact-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.contact-box h3 {
  margin-top: 0;
}

.contact-box p {
  color: var(--ink-soft);
  margin: 0 0 0.65rem;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.phone {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.5rem !important;
}

.phone a {
  color: var(--ink);
  text-decoration: none;
}

.phone a:hover {
  color: var(--sage-deep);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(61, 107, 90, 0.35);
  border-color: var(--sage);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 3rem;
  background:
    linear-gradient(135deg, var(--sage-deep), #3d6b5a 50%, #4a708a);
  color: var(--white);
  border-radius: var(--radius);
  animation: rise 0.8s ease both;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.footer-brand span {
  color: var(--sage);
}

.site-footer p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--sage-deep);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

.disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 52rem;
  margin: 1.5rem 0 0;
  line-height: 1.5;
}

/* Animations */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    filter: saturate(1);
    transform: scale(1);
  }
  to {
    filter: saturate(1.08);
    transform: scale(1.02);
  }
}

.reveal {
  animation: rise 0.85s ease both;
}

.reveal-delay {
  animation-delay: 0.15s;
}

/* Legal */
.legal-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 245, 242, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .feature-strip,
  .split,
  .contact-boxes,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .cta-band {
    padding: 2rem;
  }
}
