/* ─────────────────────────────────────────
   TOKENS
   ───────────────────────────────────────── */
:root {
  --teal:      #0D7C66;
  --teal-dk:   #0a6354;
  --teal-lt:   #EAF4F1;
  --teal-mid:  #D0EBE4;

  --bg:        #FAFAF8;
  --bg-alt:    #F2F4F1;

  --ink:       #1C1C1A;
  --ink-2:     #3D4040;
  --ink-3:     #6B7071;
  --border:    #E0E3DE;

  --contact-bg: #1A2620;

  --r:  10px;
  --rs: 6px;
  --max: 1080px;
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ─────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--light {
  color: oklch(from var(--teal) calc(l + 0.3) c h);
  color: #5EB8A3; /* fallback */
}

.section-heading {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 14px;
}

.section-intro {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.why .section-intro {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: var(--rs);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.22s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dk);
  border-color: var(--teal-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 124, 102, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-submit {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  width: 100%;
  justify-content: center;
  padding: 15px 26px;
  font-size: 16px;
}
.btn-submit:hover {
  background: var(--teal-dk);
  border-color: var(--teal-dk);
  box-shadow: 0 6px 20px rgba(13, 124, 102, 0.28);
}

/* ─────────────────────────────────────────
   NAV
   ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal-dk); }

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: clamp(480px, 70vh, 680px);
  align-items: center;
}
.hero-content {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 48px) clamp(56px, 8vw, 96px);
}
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust .sep { opacity: 0.4; }

.hero-photo-wrap {
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background: var(--teal-lt);
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─────────────────────────────────────────
   WHY GO THROUGH ME
   ───────────────────────────────────────── */
.why {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bg-alt);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 3vw, 36px) 0;
  border-top: 1px solid var(--border);
}
.why-item:last-child { border-bottom: 1px solid var(--border); }

.why-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: rgba(13, 124, 102, 0.35);
  line-height: 1;
  padding-top: 4px;
  transition: color 0.3s;
  user-select: none;
}
.why-item:hover .why-num { color: rgba(13, 124, 102, 0.7); }

.why-body h3 {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-body p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 600px;
}

/* ─────────────────────────────────────────
   WHAT I OFFER
   ───────────────────────────────────────── */
.offer {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bg);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.offer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-top: 1px solid var(--border);
}
.offer-item:nth-child(odd) { padding-right: clamp(20px, 4vw, 48px); }
.offer-item:nth-child(even) {
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 1px solid var(--border);
}
.offer-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }

.offer-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
}
.offer-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.offer-item p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}
.offer-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-3);
  padding: 16px 20px;
  background: var(--teal-lt);
  border-radius: var(--rs);
  border-left: 3px solid var(--teal);
}
.offer-note strong { color: var(--ink-2); }

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.process {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bg-alt);
}
.process .eyebrow { margin-bottom: 14px; }
.process .section-heading { margin-bottom: clamp(40px, 5vw, 60px); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 32px);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(12px, 2vw, 24px);
  color: var(--teal-mid);
  padding-top: 18px;
}

/* ─────────────────────────────────────────
   ABOUT
   ───────────────────────────────────────── */
.about {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-photo-col { position: sticky; top: 80px; }
.about-photo {
  width: 100%;
  border-radius: var(--r);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}
.about-text .eyebrow { margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.credential {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-lt);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--teal-mid);
}

/* ─────────────────────────────────────────
   FAQ
   ───────────────────────────────────────── */
.faq {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--bg-alt);
}
.faq-inner {
  max-width: 720px;
}
.faq-list {
  margin-top: 0;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-q[aria-expanded="true"] { color: var(--teal); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--ink-3);
}
.faq-q[aria-expanded="true"] .faq-icon { color: var(--teal); }

.faq-body {
  overflow: hidden;
}
.faq-body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  padding-bottom: 24px;
  max-width: 600px;
}
/* JS will remove `hidden` and animate with max-height */
.faq-body.is-open {
  /* handled by JS */
}

/* ─────────────────────────────────────────
   CONTACT
   ───────────────────────────────────────── */
.contact {
  padding: clamp(72px, 10vw, 112px) 0;
  background: var(--contact-bg);
  color: #E8EDE9;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-intro h2 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #F0F5F2;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.contact-intro p {
  font-size: 15px;
  color: rgba(232, 237, 233, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #5EB8A3;
  transition: color 0.2s;
}
.contact-link:hover { color: #7FCFC0; }

/* FORM */
.contact-form {
  background: #fff;
  border-radius: var(--r);
  padding: clamp(28px, 4vw, 40px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.form-field input {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--rs);
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.12);
}
.form-field input::placeholder { color: #B0B8B5; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-check label {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  cursor: pointer;
}

.form-error {
  font-size: 13px;
  color: #c0392b;
  margin-top: 10px;
  text-align: center;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
}

.field-hint {
  font-weight: 400;
  color: var(--ink-3);
  font-size: 12px;
}

.form-success {
  background: #fff;
  border-radius: var(--r);
  padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 40px);
  text-align: center;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--teal-lt);
  border-radius: 50%;
  color: var(--teal);
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.form-success p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  background: #141814;
  padding: clamp(36px, 5vw, 52px) 0 clamp(28px, 4vw, 40px);
  color: rgba(232, 237, 233, 0.55);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: #E8EDE9;
}
.footer-brand span { font-size: 13px; }

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(232, 237, 233, 0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #E8EDE9; }

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  color: rgba(232, 237, 233, 0.35);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATION
   ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photo-wrap {
    height: 300px;
    order: -1;
  }
  .hero-content {
    padding: 40px clamp(20px, 5vw, 48px);
  }

  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-photo-col {
    position: static;
    max-width: 260px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-arrow {
    padding: 8px 0;
    transform: rotate(90deg);
    justify-content: flex-start;
    padding-left: 18px;
  }
}

@media (max-width: 680px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
  .offer-item:nth-last-child(-n+2) { border-bottom: none; }
  .offer-item:last-child { border-bottom: 1px solid var(--border); }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }

  .footer-links {
    align-items: flex-start;
  }

  .why-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .why-num {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .nav-inner, .container { padding-left: 16px; padding-right: 16px; }
  .nav-phone { font-size: 13px; }
}
