/* ============================================================
   STYLES.CSS — CA Carpentry INC Landing Page
   Change colors here → :root block
   Change fonts here   → :root block + @import at top of file
   ============================================================ */

/* ── Google Fonts are loaded in PHP head ── */

/* ── CSS Variables ───────────────────────────────────────────
   To change colors: edit any --color-* value below.
   To change fonts:  edit --font-main and --font-heading.
   ─────────────────────────────────────────────────────────── */
:root {
  --color-primary:   #203064;
  --color-secondary: #101010;
  --color-accent:    #c88a2f;
  --color-accent-2:  #a8721f;
  --color-light:     #F7F4EF;
  --color-white:     #FFFFFF;
  --color-text:      #2B2B2B;
  --color-muted:     #6B7280;
  --color-border:    #E5DDD4;
  --color-success:   #2F6F58;

  /* Typography */
  --font-main:       'Roboto', Arial, sans-serif;
  --font-heading:    'Be Vietnam Pro', Arial, sans-serif;

  /* Spacing & Shape */
  --radius:          22px;
  --radius-sm:       12px;
  --shadow:          0 20px 55px rgba(31,41,51,.10);
  --shadow-lg:       0 32px 72px rgba(31,41,51,.16);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: #FAFAF8;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page { overflow-x: hidden; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── Eyebrow Label ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1.5px solid rgba(200,164,106,.40);
  border-radius: 999px;
  background: rgba(200,164,106,.08);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.eyebrow-light {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}
.eyebrow-light::before { background: var(--color-accent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .22s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 14px 32px rgba(200,164,106,.34);
}
.btn-primary:hover {
  background: var(--color-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(200,164,106,.40);
}
.btn-outline {
  border-color: rgba(255,255,255,.40);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--color-primary);
  color: #fff;
}
.btn-dark:hover {
  background: #111820;
  transform: translateY(-2px);
}
.btn-lg { min-height: 58px; padding: 16px 32px; font-size: 16px; }

/* ── Top Bar ──────────────────────────────────────────────── */
.topbar {
  background: var(--color-primary);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-family: var(--font-main);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}
.topbar a {
  color: #fff;
  font-weight: 600;
  transition: color .2s;
}
.topbar a:hover { color: var(--color-accent); }
.topbar-right { display: flex; align-items: center; gap: 20px; }

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 18px rgba(31,41,51,.06);
  overflow: visible;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.brand {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.brand span {
  display: block;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-top: 3px;
}
.brand-logo {
  display: block;
  margin-bottom: -70px;
  line-height: 0;
}
.brand-logo img {
  height: 140px;
   width: 140px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  padding: 6px;
    background: #fff;

}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.nav-links a {
  color: var(--color-text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--color-accent); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20,28,40,.94) 0%, rgba(31,41,51,.88) 50%, rgba(20,28,40,.82) 100%),
    url('https://cacarpentry.biz/wp-content/uploads/2026/05/ca-carpentry-decks-pergolas-patio-covers-denver-colorado_028-scaled.webp') center / cover;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(200,164,106,.18), transparent 30rem);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .75fr;
  gap: 48px;
  align-items: start;
  padding: 80px 0 64px;
}
.hero-content { padding-top: 4px; }
.hero h1 {
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: .98;
  margin: 20px 0 20px;
  letter-spacing: -.04em;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}
.hero .lead {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  max-width: 640px;
  margin: 0 0 28px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 32px;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}
.proof {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  padding: 16px;
  border-radius: 16px;
}
.proof strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
}
.proof span {
  display: block;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

/* ── Quote Card (Form) ────────────────────────────────────── */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px 26px;
  border: 1px solid rgba(200,164,106,.22);
  position: relative;
  top: 16px;
}
.quote-card-head { margin-bottom: 20px; }
.quote-card-head h2 {
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--color-primary);
  line-height: 1.2;
}
.quote-card-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13.5px;
}

/* ── Form Fields ──────────────────────────────────────────── */
.form-grid { display: grid; gap: 11px; }
.field label {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  background: #FAFAF8;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: var(--color-text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.field textarea { min-height: 86px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,164,106,.14);
  background: #fff;
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #dc3545;
}
/* Honeypot — hide visually and from screen readers */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.privacy {
  font-size: 11px;
  color: var(--color-muted);
  margin: 8px 0 0 !important;
  line-height: 1.5;
}
.form-errors {
  background: #fff3f3;
  border: 1px solid #fcc;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 14px;
  color: #b0001e;
  font-size: 13px;
}
.form-errors ul { margin: 6px 0 0; padding-left: 18px; }

/* ── Trust Strip ──────────────────────────────────────────── */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 0;
}
.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--color-light);
  display: grid;
  place-items: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 20px;
}
.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-primary);
}
.trust-item span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

/* ── Sections ─────────────────────────────────────────────── */
section { padding: 78px 0; }
.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 14px 0 10px;
  color: var(--color-primary);
}
.section-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
}
.bg-light { background: var(--color-light); }

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(31,41,51,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,164,106,.50);
}
.service-media {
  height: 210px;
  background: linear-gradient(135deg,rgba(20,28,40,.18),rgba(20,28,40,.72)), var(--img) center/cover;
  position: relative;
}
.service-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(20,28,40,.82);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 1px solid rgba(255,255,255,.18);
  letter-spacing: .04em;
}
.service-body { padding: 24px; }
.service-body h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 20px;
}
.service-body p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.65;
}
.service-body ul {
  margin: 0; padding: 0;
  list-style: none;
  display: grid; gap: 8px;
}
.service-body li {
  font-size: 13px;
  font-weight: 600;
  color: #394459;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.service-body li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Why Choose Split ─────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.visual-stack { position: relative; min-height: 520px; }
.photo-large {
  position: absolute;
  inset: 0 80px 80px 0;
  border-radius: 28px;
  background:
    linear-gradient(135deg,rgba(20,28,40,.12),rgba(20,28,40,.52)),
    url('https://cacarpentry.biz/wp-content/uploads/2025/07/deck-main-exterior-scaled.jpg') center/cover;
  box-shadow: var(--shadow);
}
.photo-small {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%; height: 260px;
  border: 8px solid #fff;
  border-radius: 24px;
  background:
    linear-gradient(135deg,rgba(20,28,40,.12),rgba(20,28,40,.48)),
    url('https://cacarpentry.biz/wp-content/uploads/2024/05/Louvered-Shade-Arbor-Photo-2ca-carpentry-3.jpg') center/cover;
  box-shadow: var(--shadow);
}
.exp-badge {
  position: absolute;
  left: 18px; bottom: 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10);
}
.exp-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: .9;
  color: var(--color-accent);
}
.exp-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: rgba(255,255,255,.70);
  margin-top: 4px;
  display: block;
}
.split-content h2 {
  font-size: clamp(32px,4vw,50px);
  color: var(--color-primary);
  margin: 14px 0 18px;
}
.split-content p {
  color: var(--color-muted);
  margin: 0 0 16px;
  line-height: 1.7;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.check-list li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-list li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 900;
}

/* ── Process Section ──────────────────────────────────────── */
.process-section {
  background: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(200,164,106,.16), transparent 30rem);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-head h2 { color: #fff; }
.process-section .section-head p { color: rgba(255,255,255,.65); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step-card {
  counter-increment: step;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
  transition: background .22s;
}
.step-card:hover { background: rgba(255,255,255,.11); }
.step-card::before {
  content: "0" counter(step);
  position: absolute;
  right: 16px; top: 10px;
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: rgba(200,164,106,.22);
}
.step-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
}
.step-card p { margin: 0; color: rgba(255,255,255,.60); font-size: 13px; }

/* ── Service Areas ────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 14px 32px rgba(31,41,51,.09);
}
.area-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-light);
  display: grid; place-items: center;
  color: var(--color-accent);
  flex-shrink: 0;
  font-size: 18px;
}
.area-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--color-primary);
}
.area-card span {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 3px;
}

/* ── Portfolio / Gallery ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}
.portfolio-main,
.portfolio-mini {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s;
}
.portfolio-main {
  background:
    linear-gradient(135deg,rgba(20,28,40,.18),rgba(20,28,40,.72)),
    url('https://cacarpentry.biz/wp-content/uploads/2024/03/IMG_5177ca-carpentry.jpg') center/cover;
  min-height: 420px;
}
.portfolio-side { display: grid; gap: 22px; }
.portfolio-mini {
  min-height: 195px;
  background:
    linear-gradient(135deg,rgba(20,28,40,.22),rgba(20,28,40,.70)),
    var(--img) center/cover;
}
.portfolio-main:hover, .portfolio-mini:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.p-caption strong { display: block; font-size: 20px; }
.p-caption span { display: block; color: rgba(255,255,255,.70); font-size: 13px; margin-top: 4px; }

/* ── Testimonial ──────────────────────────────────────────── */
.testimonial-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}
.mini-cta {
  background: linear-gradient(135deg, var(--color-primary), #111c28);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mini-cta::after {
  content: "";
  position: absolute;
  right: -90px; bottom: -90px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(200,164,106,.14);
}
.mini-cta h2 {
  font-size: 38px;
  margin: 12px 0;
  color: #fff;
}
.mini-cta p {
  color: rgba(255,255,255,.65);
  margin: 0 0 22px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 16px 42px rgba(31,41,51,.07);
}
.stars {
  color: var(--color-accent);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 18px;
  color: #394459;
  line-height: 1.65;
  border: none;
  padding: 0;
}
.testimonial-author strong { color: var(--color-primary); font-family: var(--font-heading); }
.testimonial-author span { color: var(--color-muted); font-size: 13px; margin-left: 6px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; max-width: 960px; margin: auto; }
details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(31,41,51,.04);
}
summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p { color: var(--color-muted); margin: 14px 0 0; font-size: 14.5px; line-height: 1.7; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta { padding: 0 0 80px; }
.final-card {
  background: linear-gradient(135deg, var(--color-primary), #111c28);
  border-radius: 28px;
  padding: 52px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(200,164,106,.18), transparent 28rem);
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 { font-size: clamp(32px, 4vw, 46px); margin: 0 0 12px; line-height: 1.05; }
.final-card p { margin: 0; color: rgba(255,255,255,.65); max-width: 680px; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0C1219;
  color: rgba(255,255,255,.65);
  padding: 44px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.90);
  margin: 0 0 14px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0 0 7px;
  display: block;
  transition: color .2s;
}
.footer-col a:hover { color: var(--color-accent); }
.footer-col .brand-footer {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-inner { /* thank-you footer */ }
.footer-nap {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  text-align: center;
  padding: 20px 0;
}
.footer-nap a { color: rgba(255,255,255,.55); }

/* ── Mobile Sticky Call Bar ───────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(31,41,51,.10);
}
.mobile-bar .btn { width: 100%; }

/* ── Thank-You Page ───────────────────────────────────────── */
.ty-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}
.ty-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ty-main {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.ty-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 52px;
  text-align: center;
  max-width: 680px;
  width: 100%;
}
.ty-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #e8f5ef;
  color: var(--color-success);
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 2px solid #c3e3d4;
}
.ty-card h1 {
  font-size: 36px;
  color: var(--color-primary);
  margin: 0 0 14px;
}
.ty-lead {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}
.ty-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.ty-step {
  background: var(--color-light);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.ty-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,164,106,.15);
  font-size: 20px;
  color: var(--color-accent);
  margin: 0 auto 10px;
}
.ty-step p { margin: 0; font-size: 13px; color: var(--color-muted); }
.ty-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ty-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
}
.ty-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ty-link:hover { color: var(--color-accent); }

/* ── Loading state ────────────────────────────────────────── */
.btn-loading { opacity: .7; pointer-events: none; }

/* ── Hamburger Menu ───────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--color-light); }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 51;
  background: rgba(20,28,40,.55);
  backdrop-filter: blur(4px);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(20,28,40,.18);
  display: flex;
  flex-direction: column;
  padding: 24px 0 32px;
  overflow-y: auto;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 8px;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-light);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  line-height: 1;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 2px;
  flex: 1;
}
.mobile-nav-links a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { color: var(--color-accent); padding-left: 4px; }
.mobile-nav-cta {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta .btn { width: 100%; }

/* ── Responsive Breakpoints ───────────────────────────────── */

/* Large tablets */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: clamp(36px, 4.2vw, 62px); }
}

/* Tablets */
@media (max-width: 980px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    padding: 56px 0 48px;
    gap: 36px;
  }
  .quote-card {
    max-width: 600px;
    margin: 0 auto;
    position: static;
    top: 0;
  }
  .proof-row { max-width: 100%; }

  /* Layouts */
  .split-section { grid-template-columns: 1fr; gap: 0; }
  .visual-stack {
    min-height: 380px;
    margin-bottom: 48px;
  }
  .testimonial-wrap { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .final-card {
    grid-template-columns: 1fr;
    padding: 36px;
    text-align: center;
  }
  .final-card > div:last-child {
    flex-direction: row;
    justify-content: center;
  }

  /* Grids */
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Base */
  .container { width: min(100% - 24px, 1180px); }
  section { padding: 52px 0; }
  body { padding-bottom: 76px; }

  /* Topbar */
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }
  .topbar-right { gap: 14px; font-size: 12px; }

  /* Nav */
  .site-nav .container { padding: 12px 0; }
  .brand-logo img { height: 58px; width: 58px; }

  /* Hero */
  .hero .container { padding: 40px 0 36px; gap: 28px; }
  .hero h1 { font-size: clamp(30px, 8vw, 42px); margin: 14px 0 16px; }
  .hero .lead { font-size: 15px; margin-bottom: 22px; }
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .proof-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .proof { padding: 12px 10px; }
  .proof strong { font-size: 17px; }
  .proof span { font-size: 11px; }

  /* Form */
  .quote-card { padding: 22px 18px; border-radius: 16px; }
  .quote-card-head h2 { font-size: 19px; }
  .field input,
  .field select,
  .field textarea { font-size: 16px; /* prevents iOS zoom */ padding: 13px 14px; }
  .btn-dark { min-height: 54px; font-size: 15px; }

  /* Trust strip */
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 18px 0; }
  .trust-item { gap: 10px; }
  .trust-icon { width: 34px; height: 34px; border-radius: 10px; font-size: 16px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11px; }

  /* Section heads */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .section-head p { font-size: 14.5px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-media { height: 185px; }
  .service-body { padding: 20px; }
  .service-body h3 { font-size: 18px; }

  /* Why choose split */
  .split-section { gap: 0; }
  .visual-stack { min-height: 300px; margin-bottom: 36px; }
  .photo-large { inset: 0 50px 50px 0; border-radius: 20px; }
  .photo-small { width: 55%; height: 180px; border-width: 6px; border-radius: 16px; }
  .exp-badge { padding: 14px 16px; border-radius: 14px; }
  .exp-badge strong { font-size: 30px; }
  .exp-badge span { font-size: 10px; }
  .check-list { grid-template-columns: 1fr; gap: 8px; }
  .check-list li { padding: 10px 12px; font-size: 13px; }

  /* Process */
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 20px 18px; }
  .step-card::before { font-size: 38px; }
  .step-card h3 { font-size: 16px; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-card { padding: 14px 16px; gap: 10px; }
  .area-icon { width: 30px; height: 30px; border-radius: 8px; }
  .area-card strong { font-size: 14px; }
  .area-card span { font-size: 11px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-main { min-height: 260px; padding: 20px; }
  .portfolio-mini { min-height: 160px; padding: 16px; }
  .p-caption strong { font-size: 16px; }

  /* Testimonial */
  .mini-cta { padding: 28px 22px; }
  .mini-cta h2 { font-size: 26px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card blockquote { font-size: 15px; }

  /* FAQ */
  summary { font-size: 14.5px; }
  details { padding: 16px 18px; }
  details p { font-size: 14px; }

  /* Final CTA */
  .final-cta { padding: 0 0 52px; }
  .final-card { padding: 28px 22px; border-radius: 20px; gap: 22px; }
  .final-card h2 { font-size: clamp(24px, 6vw, 32px); }
  .final-card > div:last-child { flex-direction: column; width: 100%; }
  .final-card > div:last-child .btn { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .site-footer { padding: 36px 0 0; }

  /* Thank-you */
  .ty-card { padding: 28px 18px; }
  .ty-card h1 { font-size: 26px; }
  .ty-steps { grid-template-columns: 1fr; gap: 10px; }
  .ty-actions { flex-direction: column; }
  .ty-actions .btn { width: 100%; }
  .ty-links { gap: 16px; flex-wrap: wrap; justify-content: center; }

  /* Mobile bar */
  .mobile-bar { display: block; }
}

/* Small phones */
@media (max-width: 380px) {
  .proof-row { grid-template-columns: 1fr; gap: 8px; }
  .trust-strip .container { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .topbar-right a:last-child { display: none; }
}
