/* =========================================================
   OH Land Buyer — Design Tokens
   Palette: warm cream ground, deep pine-black ink, burnt-terracotta
   accent, soft gold action color, olive footer — pulled directly
   from the approved wireframe.
   Type: Fraunces (display serif) + Work Sans (body/UI)
========================================================= */
:root{
  --cream:      #F8F2E6;
  --cream-deep: #EFE3CB;
  --ink:        #241A10;
  --ink-soft:   #5A4632;
  --navy:       #241A10;
  --terracotta: #C79A45;
  --terracotta-dark: #A67B2E;
  --gold:       #C79A45;
  --gold-dark:  #A67B2E;
  --gold-light: #E4C77E;
  --olive:      #4E3B26;
  --olive-dark: #3B2C1C;
  --white:      #FFFFFF;
  --line:       rgba(36,26,16,0.14);

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 30px rgba(28,38,32,0.12);
  --wrap: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; }
p{ margin: 0 0 1em; }
ul,ol{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline: 3px solid var(--terracotta); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

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

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; letter-spacing: .01em; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-block{ width: 100%; }
.btn-gold{ background: var(--gold); color: var(--white); }
.btn-gold:hover{ background: var(--gold-dark); }
.btn-cream{ background: var(--cream); color: var(--terracotta-dark); }
.btn-cream:hover{ background: var(--white); }
.btn-navy{ background: var(--ink); color: var(--cream); margin-top: 28px; }
.btn-navy:hover{ background: var(--navy); }

/* ---------- Placeholder image blocks ---------- */
.img-placeholder{
  width: 100%; height: 100%; min-height: 160px;
  background:
    repeating-linear-gradient(135deg, rgba(28,38,32,0.06) 0 12px, transparent 12px 24px),
    var(--cream-deep);
  border: 1px dashed rgba(28,38,32,0.35);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-soft); font-size: .78rem;
  padding: 12px;
}
.img-placeholder small{ opacity: .7; font-size: .7rem; }
.img-placeholder.portrait{ aspect-ratio: 4/5; }
.img-placeholder.wide{ aspect-ratio: 16/10; margin-bottom: 14px; }

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 20px;
}
.header-tagline{
  font-size: .58rem; color: var(--ink-soft); line-height: 1.3;
  width: 100%; text-align: left; margin-top: 3px;
}
.logo-block{ display: flex; flex-direction: column; align-items: flex-start; width: max-content; }
.logo{ display: flex; align-items: flex-end; gap: 10px; color: var(--ink); }
.logo-img{ height: 38px; width: auto; max-width: 180px; object-fit: contain; }
.logo-footer .logo-img{ filter: brightness(0) invert(1); }
.logo-mark{ color: var(--olive); flex-shrink: 0; }
.logo-text{ font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .01em; }

.main-nav{ display: flex; gap: 36px; }
.main-nav a{ font-weight: 500; font-size: .95rem; position: relative; }
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background: var(--terracotta); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--ink); }

/* =========================================================
   HERO
========================================================= */
.hero{ position: relative; overflow: hidden; background: var(--ink); }
.hero-media{ position: absolute; inset: 0; }
.hero-video{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-video-fallback{ display: none; height: 100%; border-radius: 0; border: none; position: absolute; inset: 0; }
.hero-media.video-failed .hero-video{ display: none; }
.hero-media.video-failed .hero-video-fallback{ display: flex; }
.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,16,10,.78) 10%, rgba(20,16,10,.42) 55%, rgba(20,16,10,.12) 85%);
}
@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
  .hero-video-fallback{ display: flex; }
}
.hero-inner{
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
  align-items: center;
  padding-top: 96px; padding-bottom: 96px; min-height: 640px;
}
.hero-copy{ margin-left: -28px; }
.hero-copy h1{
  color: var(--white); font-size: clamp(5.25rem, 9.5vw, 7.5rem); max-width: 16ch;
  font-family: 'Lobster', cursive; font-weight: 400; line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.hero-sub{ color: rgba(255,255,255,.88); font-size: 1.16rem; max-width: 42ch; margin-left: 32px; margin-top: -45px; }

.offer-card{
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 32px; width: 100%;
}
.offer-card h2{ font-size: 1.3rem; margin-bottom: 2px; }
.offer-card-sub{ color: var(--ink-soft); margin-bottom: 18px; font-size: .95rem; }
.field-row{ margin-bottom: 14px; }
.field-row.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label{ display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.field input{
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); font-family: var(--font-body); font-size: .95rem;
  background: var(--cream);
}
.field input:focus{ background: var(--white); }
.offer-card .btn-block{ margin-top: 10px; }
.offer-badges{ display: flex; gap: 18px; margin-top: 26px; font-size: .8rem; color: var(--ink-soft); flex-wrap: wrap; justify-content: center; }
.form-status{ font-size: .85rem; margin: 10px 0 0; min-height: 1.2em; }
.form-status.success{ color: #3E6B3A; }
.form-status.error{ color: var(--terracotta-dark); }

/* =========================================================
   FEATURE STRIP
========================================================= */
.feature-strip{ background: var(--ink); padding: 26px 0; }
.feature-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-item{
  display: flex; align-items: center; gap: 12px; color: var(--cream);
  font-size: .92rem; font-weight: 500; justify-content: center; text-align: left;
}
.feature-item svg{ color: var(--gold); flex-shrink: 0; }

/* =========================================================
   FAQ
========================================================= */
.faq{ padding: 100px 0; margin-top: 40px; }
.faq-inner{ max-width: 780px; margin: 0 auto; }
.faq h2{ text-align: center; font-size: clamp(1.8rem, 3.2vw, 2.4rem); margin-bottom: 40px; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 4px; font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.faq-icon{
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold-dark);
  transition: transform .2s ease;
}
.faq-q[aria-expanded="true"] .faq-icon{ transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .25s ease;
}
.faq-a p{ padding: 0 4px 22px; color: var(--ink-soft); max-width: 65ch; }

/* =========================================================
   FOUNDER VIDEO
========================================================= */
.founder-video{ padding: 90px 0 20px; text-align: center; }
.founder-video h2{ font-size: clamp(2.1rem, 3.75vw, 2.9rem); margin-bottom: 8px; }
.founder-video-sub{ color: var(--ink-soft); margin-bottom: 32px; }
.founder-video-inner{ max-width: 1000px; margin: 0 auto; position: relative; }
.founder-video-sub{ white-space: nowrap; }
@media (max-width: 800px){
  .founder-video-sub{ white-space: normal; }
}
.video-section-wrap{ position: relative; padding: 40px 0; }
.video-bg-logo{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70%; max-width: 700px; height: auto;
  opacity: 0.6; z-index: 0; pointer-events: none; user-select: none;
}
.video-embed{
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); background: var(--ink); cursor: pointer;
  z-index: 1;
}
.video-thumb{ width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed.no-thumb{
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, transparent 12px 24px),
    var(--ink);
}
.video-embed.no-thumb::after{
  content: 'Add a thumbnail at images/founder-video-thumb.jpg';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem; padding: 20px; text-align: center;
}
.video-play-btn{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: transform .15s ease, background .15s ease;
}
.video-play-btn svg{ margin-left: 4px; }
.video-play-btn:hover{ transform: translate(-50%, -50%) scale(1.06); background: var(--gold-dark); }
.video-embed iframe{ width: 100%; height: 100%; border: none; display: block; }

/* =========================================================
   DIVIDER
========================================================= */
.section-divider{
  height: 28px;
  background: var(--ink);
  border-top: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
}

/* =========================================================
   ABOUT
========================================================= */
.about{ padding: 100px 0 10px; }
.about-photo{ position: relative; }
.about-img{
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-inner{ display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.eyebrow{ text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--terracotta-dark); margin-bottom: 12px; }
.about-copy h2{ font-size: clamp(1.6rem, 2.6vw, 2.1rem); max-width: 20ch; }
.about-copy p{ color: var(--ink-soft); }

/* =========================================================
   WHY WORK WITH ME
========================================================= */
.why-work{ padding: 30px 0 100px; }
.why-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card{
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow); text-align: left;
}
.why-card svg{ color: var(--gold); margin-bottom: 14px; }
.why-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
.why-card p{ color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* =========================================================
   MY PROCESS
========================================================= */
.process{ padding: 100px 0 120px; background: var(--cream-deep); }
.process h2{ text-align: center; font-size: clamp(2.25rem, 4vw, 3.25rem); margin-bottom: 56px; }
.process-grid{
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 20px; align-items: center; counter-reset: step;
}
.process-step{ position: relative; text-align: center; align-self: start; }
.process-arrow{ color: var(--gold-dark); display: flex; align-items: center; justify-content: center; padding-top: 90px; }
.step-icon{
  width: 250px; height: 250px; border-radius: 50%; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  overflow: hidden;
}
.step-icon img{ width: 100%; height: 100%; object-fit: cover; }
.step-icon .step-icon-fallback{ width: 100%; height: 100%; border-radius: 50%; border-style: dashed; }
.step-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  color: var(--white); font-weight: 700; font-size: .78rem; margin-bottom: 12px;
}
.process-step h3{ font-size: 1.05rem; margin-bottom: 10px; }
.process-step p{ color: var(--ink-soft); font-size: .92rem; max-width: 30ch; margin: 0 auto; line-height: 1.6; }

/* =========================================================
   COMPARE CARDS
========================================================= */
.compare-cards{ padding-top: 100px; padding-bottom: 100px; background: var(--cream-deep); }
.compare-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card{ border-radius: var(--radius); padding: 40px; }
.compare-dark{ background: var(--ink); color: rgba(255,255,255,.9); }
.compare-accent{ background: var(--terracotta); color: var(--white); }
.compare-accent-header{ display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.compare-accent-logo{ height: 40px; width: auto; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.compare-label{ font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 14px; }
.compare-accent-header .compare-label{ margin-bottom: 0; }
.compare-copy{ font-size: .95rem; opacity: .9; line-height: 1.6; margin-bottom: 16px; }
.compare-lead-in{ font-size: .92rem; font-weight: 600; margin-bottom: 8px; }
.compare-list li{ padding: 9px 0; border-top: 1px solid rgba(255,255,255,.16); font-size: .95rem; padding-left: 26px; position: relative; }
.compare-list li:first-child{ border-top: none; }
.compare-list li.con::before{ content:'✕'; position:absolute; left:0; color: #E7A98C; font-weight: 700; }
.compare-list li.pro::before{ content:'✓'; position:absolute; left:0; color: var(--white); font-weight: 700; }
.compare-accent .btn{ margin-top: 24px; }
.compare-accent-note{ font-size: .88rem; opacity: .9; margin: 18px 0 0; line-height: 1.6; }

/* =========================================================
   TESTIMONIALS / PAST PROJECTS CAROUSEL
========================================================= */
.testimonials{ padding: 100px 0 100px; }
.testimonial-head{ text-align: center; margin-bottom: 40px; }
.testimonial-head h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 0 auto 14px; }
.testimonial-sub{ max-width: 68ch; margin: 0 auto; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

.carousel{ display: flex; align-items: center; gap: 16px; }
.carousel-track{
  flex: 1; display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px; -ms-overflow-style: none; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar{ display: none; }

.testimonial-card{
  flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.testimonial-card .img-placeholder.wide{ margin: 0; border-radius: 0; aspect-ratio: 4/3; }
.t-photo{ width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.testimonial-card .t-photo-fallback{ margin: 0; border-radius: 0; }
.testimonial-body{ padding: 22px; }
.stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card blockquote{ margin: 0 0 18px; font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }
.t-meta{ display: flex; align-items: center; gap: 12px; }
.t-name{ margin: 0; font-weight: 600; font-size: .9rem; }
.t-loc{ margin: 0; font-size: .8rem; color: var(--ink-soft); }

.carousel-btn{
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.carousel-btn:hover{ background: var(--gold-dark); transform: scale(1.05); }

@media (max-width: 980px){
  .testimonial-card{ flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 640px){
  .testimonial-card{ flex: 0 0 85%; }
  .carousel-btn{ width: 38px; height: 38px; }
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section{ background: var(--navy); padding: 90px 0; }
.contact-inner{ max-width: 620px; margin: 0 auto; text-align: center; }
.contact-inner h2{ color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); }
.contact-inner > p{ color: rgba(255,255,255,.75); margin-bottom: 36px; }
.contact-form{ text-align: left; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 32px; }
.contact-form .field label{ color: rgba(255,255,255,.8); }
.contact-form .field input{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: var(--white); }
.contact-form .field input:focus{ background: rgba(255,255,255,.1); }
.checkbox-row{ display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: rgba(255,255,255,.7); margin: 6px 0 10px; cursor: pointer; }
.checkbox-row input{ margin-top: 3px; }
.checkbox-row a{ text-decoration: underline; color: var(--white); }
.contact-form .btn{ width: 100%; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background: var(--olive); color: rgba(255,255,255,.9); padding-top: 64px; }
.footer-inner{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.logo-footer{ color: var(--white); margin-bottom: 14px; }
.logo-footer .logo-mark{ color: var(--cream); }
.footer-brand p{ color: rgba(255,255,255,.75); font-size: .9rem; max-width: 36ch; }
.footer-heading{ font-weight: 700; margin-bottom: 14px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links{ display: flex; flex-direction: column; }
.footer-links a{ padding: 6px 0; color: rgba(255,255,255,.82); font-size: .92rem; }
.footer-links a:hover{ color: var(--white); }
.footer-contact{ display: flex; flex-direction: column; }
.footer-contact a{ padding: 6px 0; color: rgba(255,255,255,.82); font-size: .92rem; }
.social-row{ display: flex; gap: 12px; margin-top: 14px; }
.social-row a{
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; padding: 0;
}
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.18); padding: 20px 24px; text-align: center; font-size: .8rem; color: rgba(255,255,255,.65); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; min-height: unset; }
  .hero-copy{ margin-left: 0; }
  .about{ padding: 64px 0 10px; }
  .about-inner{ grid-template-columns: 1fr; gap: 36px; }
  .about-photo{ max-width: 320px; }
  .why-work{ padding: 24px 0 64px; }
  .why-grid{ grid-template-columns: 1fr 1fr; }
  .process{ padding: 64px 0 72px; }
  .process-grid{ grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-arrow{ display: none; }
  .step-icon{ width: 170px; height: 170px; }
  .feature-grid{ grid-template-columns: 1fr 1fr; }
  .compare-cards{ padding-top: 64px; padding-bottom: 64px; }
  .compare-grid{ grid-template-columns: 1fr; }
  .testimonials{ padding: 64px 0; }
  .faq{ padding: 64px 0; margin-top: 24px; }
  .contact-section{ padding: 64px 0; }
  .footer-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .main-nav{
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 12px 24px 20px; gap: 4px;
    display: none;
  }
  .main-nav.open{ display: flex; }
  .main-nav a{ padding: 10px 0; }
  .nav-toggle{ display: flex; }
  .field-row.two-col{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; gap: 48px; }
  .compare-card{ padding: 26px; }
  .feature-grid{ grid-template-columns: 1fr; gap: 14px; }
  .feature-item{ justify-content: flex-start; }
}

@media (max-width: 640px){
  .wrap{ padding: 0 18px; }

  /* Header */
  .header-tagline{ font-size: .56rem; }

  /* Hero */
  .hero-inner{ padding-top: 44px; padding-bottom: 44px; gap: 28px; }
  .hero-copy h1{
    font-size: clamp(2.6rem, 13vw, 3.6rem); max-width: 100%;
  }
  .hero-sub{ margin-left: 0; margin-top: 8px; font-size: 1rem; }
  .offer-card{ padding: 24px; }

  /* Founder video */
  .founder-video{ padding: 56px 0 16px; }
  .founder-video h2{ font-size: clamp(1.5rem, 6vw, 2rem); }
  .video-bg-logo{ width: 55%; }

  /* Divider */
  .section-divider{ height: 20px; border-top-width: 4px; border-bottom-width: 4px; }

  /* About */
  .about{ padding: 48px 0 10px; }
  .about-inner{ gap: 28px; }
  .about-copy h2{ font-size: 1.4rem; }

  /* Why Work With Me */
  .why-work{ padding: 20px 0 48px; }
  .why-card{ padding: 24px 20px; }

  /* Process */
  .process{ padding: 48px 0 56px; }
  .process h2{ font-size: clamp(1.7rem, 7vw, 2.2rem); margin-bottom: 40px; }
  .step-icon{ width: 140px; height: 140px; }

  /* Feature strip */
  .feature-strip{ padding: 20px 0; }

  /* Compare cards */
  .compare-cards{ padding-top: 48px; padding-bottom: 48px; }
  .compare-grid{ gap: 18px; }
  .compare-label{ font-size: 1.2rem; }

  /* Testimonials */
  .testimonials{ padding: 48px 0; }
  .testimonial-head h2{ font-size: clamp(1.5rem, 6vw, 2rem); }
  .testimonial-sub{ font-size: .9rem; }

  /* FAQ */
  .faq{ padding: 48px 0; margin-top: 16px; }
  .faq h2{ font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 28px; }

  /* Contact */
  .contact-section{ padding: 48px 0; }
  .contact-form{ padding: 24px; }

  /* Testimonial carousel */
  .testimonial-card{ flex: 0 0 85%; }
  .carousel-btn{ width: 38px; height: 38px; }
}

