/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --green:       #2A5C45;
  --green-light: #3A7A5C;
  --green-tint:  #EAF2EE;
  --cream:       #FAFAF8;
  --black:       #111111;
  --grey:        #555555;
  --grey-light:  #888888;
  --border:      #D8E4DF;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
}

/* ─── BASE ────────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--black);
}
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--grey);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 500; }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 3px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: all 0.25s;
}

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}
.ticker-item::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ──────────────────────────────────────── */
section { padding: 6rem 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 640px;
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 7rem 5vw 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 860px;
  margin-bottom: 1.75rem;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); }
.btn-ghost {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--black); }
.btn-ghost::after { content: '→'; }

/* ─── PROBLEM ─────────────────────────────────────────────── */
.problem { background: var(--black); }
.problem .section-label { color: #7BA898; }
.problem .section-title { color: #fff; max-width: 760px; }
.problem .section-body { color: #888; max-width: 600px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: #2A2A2A;
  border: 1px solid #2A2A2A;
}
.problem-card { background: #161616; padding: 2.5rem 2rem; }
.problem-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1;
}
.problem-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.problem-card p { font-size: 0.9rem; font-weight: 300; color: #888; line-height: 1.65; }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--cream); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--border);
}
.how-step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
}
.how-step:last-child { border-right: none; }
.how-step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green-tint);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.how-step p { font-size: 0.9rem; font-weight: 300; color: var(--grey); line-height: 1.7; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-note {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 300;
  margin-top: 2rem;
  line-height: 1.6;
  border-left: 2px solid var(--green);
  padding-left: 1rem;
}
form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}
input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); }
textarea { resize: vertical; min-height: 100px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.btn-submit {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--green-light); }

/* ─── CROSSLINK BAND ──────────────────────────────────────── */
.crosslink {
  background: var(--green-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 5vw;
}
.crosslink-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.crosslink-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.crosslink-text p {
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 300;
  max-width: 480px;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 3rem 5vw;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo span { color: var(--green-light); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: #666;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #999; }
.footer-copy {
  font-size: 0.75rem;
  color: #444;
  font-weight: 300;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.page-hero {
  padding: 6rem 5vw 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.75;
}

.about-body {
  padding: 5rem 5vw;
}
.about-body-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
}
.about-body h2:first-child { margin-top: 0; }
.about-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-body p:last-child { margin-bottom: 0; }
.about-pull {
  border-left: 3px solid var(--green);
  padding: 1.25rem 2rem;
  margin: 3rem 0;
  background: var(--green-tint);
}
.about-pull p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
  margin: 0;
}
.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3.5rem 0;
}

/* ─── AGENCIES PAGE ───────────────────────────────────────── */
.agencies-hero { background: var(--black); padding: 6rem 5vw 5rem; }
.agencies-hero-inner { max-width: 1100px; margin: 0 auto; }
.agencies-hero .section-label { color: #7BA898; }
.agencies-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.agencies-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #888;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.agencies-offer { background: var(--cream); padding: 6rem 5vw; }
.agencies-offer-inner { max-width: 1100px; margin: 0 auto; }
.agencies-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.agencies-offer-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.agencies-model {
  border: 1px solid var(--border);
}
.agencies-model-row {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.agencies-model-row:last-child { border-bottom: none; }
.agencies-model-row .model-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.agencies-model-row .model-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
}
.agencies-model-row .model-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.5;
}

.agencies-criteria { background: var(--green-tint); padding: 5rem 5vw; }
.agencies-criteria-inner { max-width: 1100px; margin: 0 auto; }
.criteria-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  background: #fff;
}
.criteria-list li {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}
.criteria-list li:last-child { border-bottom: none; }
.criteria-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.agencies-form-section { background: var(--cream); padding: 6rem 5vw; }
.agencies-form-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

/* ─── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; color: var(--black); }
  .nav-hamburger { display: flex; }

  .hero { padding: 4rem 1.25rem 3rem; }
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 4rem 1.25rem 3rem; }
  .about-body { padding: 3.5rem 1.25rem; }
  .agencies-hero { padding: 4rem 1.25rem 3rem; }
  .agencies-offer { padding: 4rem 1.25rem; }
  .agencies-criteria { padding: 4rem 1.25rem; }
  .agencies-form-section { padding: 4rem 1.25rem; }
  .crosslink { padding: 3rem 1.25rem; }

  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }

  .contact-grid,
  .about-grid,
  .agencies-offer-grid,
  .agencies-form-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }
  .crosslink-inner { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
