/* ============================================
   NORTHWOODS PRO-LINK v2 — STYLESHEET
   Aesthetic: Bold industrial-meets-wilderness.
   Barlow Condensed for display, Barlow for body.
   Dark forest, raw amber, white, graphite.
   Photo-driven. High contrast. No soft edges.
   ============================================ */

:root {
  --ink:        #0e0e0d;
  --ink-soft:   #1e1e1c;
  --charcoal:   #2e2e2b;
  --graphite:   #5a5a55;
  --ash:        #9a9a94;
  --smoke:      #d8d8d0;
  --offwhite:   #f5f4f0;
  --white:      #ffffff;

  --forest:     #1a3a22;
  --forest-mid: #2d6040;
  --pine:       #4a8c5c;
  --sage:       #a8c8b0;
  --mist:       #e8f2eb;

  --amber:      #d4860a;
  --amber-hot:  #f0a020;
  --amber-pale: #fdf3e0;

  --red:        #c43030;
  --red-pale:   #fceaea;
  --blue:       #1860a8;
  --blue-pale:  #e6f1fb;

  --font-display: 'Barlow Condensed', Impact, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --max:   1140px;
  --gutter: 2rem;
  --r:     6px;
  --r-lg:  12px;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }

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

/* SHARED TYPE */
.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine);
  display: block;
  margin-bottom: 0.6rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--r);
  border: none;
  transition: background 0.18s, transform 0.12s;
}
.btn-primary:hover { background: var(--amber-hot); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.18s, background 0.18s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }

/* ============================================
   NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}
.logo strong { color: var(--amber); font-weight: 800; }
.logo-icon { color: var(--amber-hot); flex-shrink: 0; }
.logo-img { height: 60px; width: auto; display: block; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--ink); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--r);
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover { background: var(--amber-hot) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,14,10,0.85) 0%,
    rgba(10,14,10,0.65) 50%,
    rgba(10,14,10,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-hot);
  display: block;
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.h1-a {
  display: block;
  font-size: clamp(64px, 10vw, 120px);
  color: var(--white);
  letter-spacing: -0.02em;
}

.h1-b {
  display: block;
  font-size: clamp(64px, 10vw, 120px);
  color: var(--amber-hot);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 20px;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--forest);
  border-bottom: 3px solid var(--amber);
  padding: 1.5rem 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.sn {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--amber-hot);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.sl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,0.12); }

/* ============================================
   PROBLEM
   ============================================ */
.problem-section {
  padding: 6rem 0;
  background: var(--offwhite);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.problem-text p {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.7;
  margin-top: 1.25rem;
  font-weight: 300;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vc {
  border-radius: var(--r-lg);
  padding: 1.4rem;
}

.missed-vc {
  background: #fff5f5;
  border: 1px solid #f0c0c0;
}
.answered-vc {
  background: #f0f9f3;
  border: 1px solid #a8d8b4;
}

.vc-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red   { background: var(--red); }
.dot-green { background: var(--pine); }

.vc-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.answered-label { color: var(--forest); }

.vc-msg {
  font-size: 14px;
  color: var(--graphite);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.answered-msg { color: var(--forest); }

.vc-cost {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}
.answered-cost { color: var(--forest-mid); }

.vc-arrow {
  text-align: center;
  font-size: 22px;
  color: var(--ash);
  padding: 0.5rem 0;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.strip-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.strip-photos {
  display: flex;
  height: 100%;
}

.strip-col {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.strip-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.strip-col:hover img { transform: scale(1.04); }

.strip-cap {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1.5rem 1rem 1rem;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,10,0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.strip-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--white);
}

/* ============================================
   CALL HANDLING
   ============================================ */
.calls-section {
  padding: 6rem 0;
  background: var(--ink);
}

.calls-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.calls-head .section-heading { color: var(--white); }
.calls-head .section-tag { color: var(--amber-hot); }

.calls-intro {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  padding-top: 3rem;
}

.call-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.call-card {
  background: var(--ink-soft);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s;
}
.call-card:hover { background: var(--charcoal); }

.call-n {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: -0.02em;
}

.call-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 1rem;
  width: fit-content;
}
.cb-red   { background: rgba(196,48,48,0.2); color: #f08080; }
.cb-blue  { background: rgba(24,96,168,0.2); color: #80b0e8; }
.cb-amber { background: rgba(212,134,10,0.2); color: var(--amber-hot); }
.cb-gray  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45); }

.call-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.call-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}

.call-result {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  width: fit-content;
  margin-top: auto;
}
.cr-red   { background: rgba(196,48,48,0.15); color: #f08080; border: 1px solid rgba(196,48,48,0.3); }
.cr-blue  { background: rgba(24,96,168,0.15); color: #80b0e8; border: 1px solid rgba(24,96,168,0.3); }
.cr-amber { background: rgba(212,134,10,0.15); color: var(--amber-hot); border: 1px solid rgba(212,134,10,0.3); }
.cr-gray  { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); }

/* ============================================
   LAKE BREAK
   ============================================ */
.lake-break {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lake-img-wrap { position: absolute; inset: 0; }
.lake-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.lake-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,10,0.5), rgba(10,14,10,0.7));
}

.lake-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

blockquote p {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1rem;
}

blockquote cite {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
  padding: 6rem 0;
  background: var(--offwhite);
}

.process-head {
  margin-bottom: 3.5rem;
}
.process-sub {
  font-size: 16px;
  color: var(--graphite);
  font-weight: 300;
  margin-top: 1rem;
  max-width: 480px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--smoke);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--smoke);
}

.ps {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ps-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--mist);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ps-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.ps-body p {
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 6rem 0;
  background: var(--charcoal);
}

.pricing-head { margin-bottom: 3rem; }
.pricing-head .section-heading { color: var(--white); }
.pricing-head .section-tag { color: var(--amber-hot); }
.pricing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-top: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.plan {
  background: var(--ink-soft);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-hot {
  background: var(--forest);
}

.plan-hot-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 800;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.plan-price sup {
  font-size: 28px;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
  color: rgba(255,255,255,0.6);
}
.plan-price span {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  margin-left: 4px;
}

.plan-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 1.5rem;
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-feats li {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.plan-feats li::before {
  content: '✓';
  color: var(--pine);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-btn {
  display: block;
  padding: 12px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.18s;
  margin-top: auto;
}

.pb-solid {
  background: var(--amber);
  color: var(--white);
  border: none;
}
.pb-solid:hover { background: var(--amber-hot); }

.pb-outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
}
.pb-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.who-section {
  padding: 6rem 0;
  background: var(--white);
  border-top: 4px solid var(--amber);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.who-left p {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1.25rem;
}

.trade-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.trade-chips span {
  background: var(--offwhite);
  border: 1px solid var(--smoke);
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.area-card {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  color: var(--white);
}

.area-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-hot);
  display: block;
  margin-bottom: 1rem;
}

.area-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.area-card li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-card li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--pine);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  line-height: 1.5;
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 6rem 0;
  background: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-left .section-heading { color: var(--white); }
.faq-left .section-tag { color: var(--amber-hot); }

.faq-right { border-top: 1px solid rgba(255,255,255,0.1); }

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--white); }

.fi {
  font-size: 22px;
  color: var(--amber-hot);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .fi { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a.open { max-height: 300px; }

.faq-a p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  padding-bottom: 1.25rem;
  font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--offwhite);
  border-top: 4px solid var(--amber);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-left p {
  font-size: 16px;
  color: var(--graphite);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1.25rem;
}

.contact-lines {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--graphite);
  text-decoration: none;
}
.cline:hover { color: var(--ink); }
.cline span:first-child { font-size: 18px; flex-shrink: 0; }
.cline a { color: var(--forest-mid); }

/* FORM */
.contact-right {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--smoke);
  padding: 2.25rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.f2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.fg { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
}

.req { color: var(--amber); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--offwhite);
  border: 1px solid var(--smoke);
  border-radius: var(--r);
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--ash); }

input:focus, select:focus, textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(74,140,92,0.15);
  background: var(--white);
}

input.error, select.error, textarea.error {
  border-color: var(--red);
}

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='%235a5a55' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.ferr {
  font-size: 12px;
  color: var(--red);
  display: none;
}
.ferr.visible { display: block; }

/* checkbox */
.fg-check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0; }

.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--graphite);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  flex: 1;
}

input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.checkmark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--smoke);
  border-radius: 4px;
  background: var(--offwhite);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all 0.15s;
}

input[type="checkbox"]:checked + .checkmark {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
}

input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  display: block;
  width: 4px; height: 8px;
  border: 2px solid white;
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px,-1px);
}

.btn-submit {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.18s;
  width: 100%;
  cursor: pointer;
}
.btn-submit:hover { background: var(--ink); }
.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.success-icon {
  width: 56px; height: 56px;
  background: var(--mist);
  border: 2px solid var(--sage);
  color: var(--forest-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 15px; color: var(--graphite); }

.form-err-msg {
  background: var(--red-pale);
  border: 1px solid #f0c0c0;
  border-radius: var(--r);
  padding: 1rem;
  font-size: 14px;
  color: var(--red);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--smoke);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo-light { color: var(--ink); }
.logo-light strong { color: var(--amber); }

.footer-brand p {
  font-size: 13px;
  color: var(--graphite);
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links { display: flex; gap: 3rem; }

.fcol {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.fcol h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ash);
  margin-bottom: 0.25rem;
}
.fcol a {
  font-size: 13px;
  color: var(--graphite);
  transition: color 0.15s;
}
.fcol a:hover { color: var(--ink); }

.footer-bottom {
  padding: 1.25rem 0;
  background: var(--offwhite);
  border-top: 1px solid var(--smoke);
}
.fbot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fbot-inner p {
  font-size: 12px;
  color: var(--ash);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim.in { opacity: 1; transform: translateY(0); }
.anim:nth-child(2) { transition-delay: 0.08s; }
.anim:nth-child(3) { transition-delay: 0.16s; }
.anim:nth-child(4) { transition-delay: 0.24s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
  .call-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 800px) {
  .problem-grid,
  .who-grid,
  .contact-grid,
  .calls-head { grid-template-columns: 1fr; gap: 2.5rem; }

  .calls-intro { padding-top: 0; }

  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }

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

  .stats-row { justify-content: center; gap: 2rem; }
  .stat-div { display: none; }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: var(--ink-soft);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 15px; }
  .site-header { position: relative; }
  .hamburger { display: flex; }

  .h1-a, .h1-b { font-size: clamp(48px, 14vw, 72px); }

  .hero-btns { flex-direction: column; align-items: flex-start; }

  .call-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .strip-section { height: auto; }
  .strip-photos { flex-direction: column; height: auto; }
  .strip-col { height: 200px; }
  .strip-overlay { position: relative; background: var(--forest); padding: 2rem; }

  .f2col { grid-template-columns: 1fr; }

  .footer-links { flex-direction: column; gap: 1.5rem; }
  .fbot-inner { flex-direction: column; gap: 0.4rem; text-align: center; }
}
