/* ============================================
   TOKENS
   ============================================ */
:root {
  --ink: #1A1D1B;
  --ink-soft: #2B2F2D;
  --cream: #F7F5F0;
  --cream-dim: #EFEBE3;
  --mint: #4FBA8F;
  --mint-deep: #357A5E;
  --grey: #6B6B6B;
  --white: #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --wrap: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}

p { margin: 0; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.15s ease;
}

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

.btn-primary:hover {
  background: #5FCBA0;
  transform: translateY(-1px);
}

.btn-small {
  background: transparent;
  border: 1.5px solid var(--mint);
  color: var(--cream);
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-small:hover {
  background: var(--mint);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--ink);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--white);
  margin-bottom: 22px;
}

.hero-lede {
  font-size: 1.08rem;
  color: #C9CDC9;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions { margin-bottom: 18px; }

.hero-contact {
  font-size: 0.88rem;
  color: #9A9F9A;
}

.hero-contact a {
  color: var(--mint);
  text-decoration: none;
}

.hero-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.badge-link {
  display: inline-block;
}

.badge-specialist {
  max-width: 70px;
  height: auto;
  display: block;
}

.figure-blocks {
  position: absolute;
  top: -20px;
  right: 8%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 0;
}

.figure-blocks span {
  display: block;
  height: 10px;
  border-radius: 2px;
  background: var(--mint-deep);
  opacity: 0.6;
}
.figure-blocks span:nth-child(1) { width: 64px; }
.figure-blocks span:nth-child(2) { width: 40px; background: var(--mint); opacity: 0.85; }
.figure-blocks span:nth-child(3) { width: 52px; }

.figure-photo {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1.05;
  z-index: 1;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.figure-photo:hover {
  transform: scale(1.05);
}

.photo-frame {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1.5px solid var(--mint-deep);
  object-fit: cover;
  display: block;
}

/* ============================================
   CREDENTIAL STRIP
   ============================================ */
.credential-strip {
  background: var(--mint-deep);
  padding: 16px 0;
}

.credential-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

.credential-inner .dot { color: rgba(247,245,240,0.5); }

/* ============================================
   OFFER
   ============================================ */
.offer h2, .about h2, .testimonials h2, .cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--cream-dim);
  border-left: 3px solid var(--mint);
  padding: 26px 28px;
  border-radius: var(--radius);
}

.offer-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.offer-card p:last-child {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--cream-dim); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
}

.about p { margin-bottom: 16px; color: var(--ink-soft); }
.about p:last-child { margin-bottom: 0; }

.about-list p {
  font-size: 0.95rem;
  color: var(--grey);
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #DCD7CC;
}
.about-list p:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.about-list strong { color: var(--ink); font-family: var(--font-display); font-weight: 500; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

blockquote {
  margin: 0;
  background: var(--white);
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dim);
}

.stars {
  color: var(--mint-deep);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

blockquote p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

blockquote cite {
  font-size: 0.82rem;
  color: var(--mint-deep);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.cta-inner h2 { color: var(--white); margin-bottom: 14px; }

.cta-inner p {
  color: #C9CDC9;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(247,245,240,0.1);
  padding: 26px 0 36px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.footer-inner p {
  color: #8A8F8A;
  font-size: 0.82rem;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  color: #8A8F8A;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-links a:hover { color: var(--mint); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; justify-content: flex-start; }
  .figure-photo { width: 180px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .offer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 64px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}