/* ============================================================
   KIRÁLY KOSARAS FAVÁGÓ – styles.css
   Design: Practical Local Trust · Mobile-first · No frameworks
============================================================ */

/* ---- RESET & BASE ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --clr-bg:        #F7F5F1;       /* off-white, warm */
  --clr-bg-alt:    #EEEAE3;       /* slightly darker off-white */
  --clr-bg-dark:   #1E2820;       /* deep forest charcoal */
  --clr-green:     #2D5A27;       /* forest green */
  --clr-green-mid: #3D7A35;
  --clr-green-lt:  #EBF2E8;       /* very light green tint */
  --clr-orange:    #D95F0E;       /* muted safety orange */
  --clr-orange-lt: #FFF0E6;
  --clr-charcoal:  #222B1E;
  --clr-text:      #2A2F26;
  --clr-text-mid:  #4A5244;
  --clr-text-lt:   #6B7566;
  --clr-border:    #D4CFC6;
  --clr-white:     #FFFFFF;

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Mono", "Courier New", monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;

  /* Layout */
  --max-w: 1160px;
  --radius: 4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px; /* space for sticky bar on mobile */
}

@media (min-width: 768px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- CONTAINER ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ---- TYPOGRAPHY ------------------------------------------ */
h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-charcoal);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-charcoal);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--clr-charcoal);
}

p { color: var(--clr-text-mid); }

.section-title {
  margin-bottom: var(--space-md);
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 0.6rem;
}

.section-eyebrow.center { text-align: center; }

/* ---- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-white);
  border-color: var(--clr-orange);
}
.btn-primary:hover { background: #c05209; border-color: #c05209; }

.btn-secondary {
  background: transparent;
  color: var(--clr-green);
  border-color: var(--clr-green);
}
.btn-secondary:hover { background: var(--clr-green-lt); }

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--clr-white); }

.btn-block { display: flex; width: 100%; justify-content: center; }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ---- STICKY MOBILE CALL BAR ------------------------------ */
.sticky-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--clr-charcoal);
  border-top: 2px solid var(--clr-orange);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}

.sticky-call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  min-height: 48px;
}

.sticky-secondary-btn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--clr-white);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.4);
  min-height: 48px;
}

@media (min-width: 768px) { .sticky-call-bar { display: none; } }

/* ---- HEADER ---------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

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

.brand { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-green);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.72rem;
  color: var(--clr-text-lt);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--clr-green); }

.nav-cta {
  background: var(--clr-orange) !important;
  color: var(--clr-white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: #c05209 !important; }

@media (min-width: 900px) { .main-nav { display: flex; } }

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-charcoal);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-nav-cta {
  background: var(--clr-orange);
  color: var(--clr-white) !important;
  padding: 0.75rem 1rem !important;
  border-radius: var(--radius);
  text-align: center;
  border-bottom: none !important;
  margin-top: 0.25rem;
}

/* ---- HERO ------------------------------------------------ */
.hero {
  padding: var(--space-lg) 0 var(--space-xl);
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

/* subtle wood-grain texture via CSS */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      92deg,
      transparent,
      transparent 120px,
      rgba(100, 80, 40, 0.025) 121px,
      rgba(100, 80, 40, 0.025) 122px
    ),
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 60px,
      rgba(80, 60, 20, 0.015) 61px,
      rgba(80, 60, 20, 0.015) 62px
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 3.5rem;
  }
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 0.75rem;
}

.hero h1 { margin-bottom: 1.1rem; }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-microcopy {
  font-size: 0.82rem;
  color: var(--clr-text-lt);
}

/* Contact card */
.hero-aside { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-charcoal);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.contact-list { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.25rem; }

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--clr-border);
}
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-lt);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}

.contact-phone {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-orange);
}

/* Hero photo placeholder */
.hero-photo-placeholder {
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  background: var(--clr-bg-alt);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- PHOTO PLACEHOLDER (shared) -------------------------- */
.photo-placeholder {
  background: var(--clr-bg-alt);
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--clr-text-lt);
}

.placeholder-inner p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-lt);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.placeholder-inner small {
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin-top: 0.2rem;
  color: var(--clr-text-lt);
}

.placeholder-inner svg { opacity: 0.35; }

.photo-placeholder.tall { min-height: 420px; }

/* ---- TRUST STRIP ----------------------------------------- */
.trust-strip {
  background: var(--clr-bg-dark);
  padding: var(--space-lg) 0;
}

.trust-strip .section-eyebrow {
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
}

.fact-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 600px) { .fact-strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .fact-strip { grid-template-columns: repeat(4, 1fr); } }

.fact-block {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fact-block:last-child { border-right: none; }

@media (min-width: 600px) {
  .fact-block:nth-child(2n) { border-right: none; }
}

@media (min-width: 900px) {
  .fact-block { border-bottom: none; }
  .fact-block:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.07); }
  .fact-block:last-child { border-right: none; }
}

.fact-year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--clr-orange);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.fact-icon {
  color: var(--clr-orange);
  margin-bottom: 0.6rem;
}

.fact-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}

.fact-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ---- SERVICES -------------------------------------------- */
.services {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 600px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .service-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.service-card {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}

.service-card--primary { background: var(--clr-green); }
.service-card--primary h3 { color: var(--clr-white); }
.service-card--primary p { color: rgba(255,255,255,0.75); }
.service-card--primary .service-note { color: rgba(255,255,255,0.5); }
.service-card--primary .service-number { color: rgba(255,255,255,0.25); }

.service-card--light { background: var(--clr-white); }

.service-card--accent { background: var(--clr-orange-lt); border-left: 4px solid var(--clr-orange); }
.service-card--accent h3 { color: var(--clr-charcoal); }

.service-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-border);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.service-card h3 { font-size: 1rem; margin-bottom: 0.1rem; }
.service-card p { font-size: 0.88rem; line-height: 1.55; flex: 1; }

.service-note {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-text-lt);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--clr-border);
}

/* ---- METHODS --------------------------------------------- */
.methods {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .methods-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
  }
}

.methods-left h2 { margin-bottom: 1rem; }
.methods-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
  margin-bottom: 0.75rem;
}
.methods-support {
  font-size: 0.9rem;
  color: var(--clr-text-lt);
  font-style: italic;
}

.methods-list-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-green);
  margin-bottom: 1rem;
}

.methods-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.methods-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}
.methods-list li:last-child { border-bottom: none; }

.method-line {
  flex-shrink: 0;
  width: 24px;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
}

.methods-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: var(--clr-green-lt);
  color: var(--clr-green);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 90, 39, 0.2);
}

/* ---- PROCESS --------------------------------------------- */
.process {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.process-step {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .process-step {
    flex-direction: column;
    margin-bottom: 0;
    border-radius: var(--radius-lg);
  }
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--clr-green);
  color: var(--clr-white);
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-body p { font-size: 0.85rem; color: var(--clr-text-mid); line-height: 1.55; }

.process-connector {
  display: none;
}

@media (min-width: 768px) {
  .process-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 1.75rem;
    width: 2rem;
    justify-content: center;
  }
  .process-connector::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-border);
    margin-top: 18px;
  }
}

/* ---- CRANE SECTION --------------------------------------- */
.crane-section {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.crane-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .crane-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3.5rem;
  }
}

.crane-content h2 { margin-bottom: 1rem; }
.crane-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text-mid);
  margin-bottom: 1.5rem;
}

.crane-specs {
  display: flex;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--clr-white);
}

.spec-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}
.spec-item:last-child { border-right: none; }

.spec-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--clr-green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.spec-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clr-text-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.crane-uses { margin-bottom: 1.75rem; }
.crane-uses-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-green);
  margin-bottom: 0.75rem;
}

.crane-uses-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.crane-uses-list li {
  font-size: 0.88rem;
  color: var(--clr-text-mid);
  padding-left: 1rem;
  position: relative;
}
.crane-uses-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--clr-orange);
  border-radius: 50%;
}

/* ---- GALLERY --------------------------------------------- */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--clr-bg);
}

.gallery-intro {
  font-size: 0.92rem;
  color: var(--clr-text-lt);
  margin-bottom: var(--space-md);
  max-width: 560px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
}

.gallery-item { min-height: 180px; }

.gallery-item--large {
  grid-column: span 2;
  min-height: 260px;
}

@media (min-width: 768px) {
  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 2;
    min-height: 380px;
  }
}

/* ---- FAQ ------------------------------------------------- */
.faq {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-white);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--clr-bg-alt); }
.faq-question[aria-expanded="true"] { color: var(--clr-green); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s;
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after  { width: 2px; height: 12px; top: 4px; left: 9px; }

.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); }

.faq-answer {
  padding: 0 1.25rem 1.1rem;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--clr-text-mid);
}

/* ---- FINAL CTA ------------------------------------------- */
.final-cta {
  padding: var(--space-xl) 0;
  background: var(--clr-bg-dark);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .cta-text { flex: 1 1 300px; }
  .cta-actions { flex-shrink: 0; }
}

.cta-text h2 {
  color: var(--clr-white);
  margin-bottom: 0.6rem;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}
.cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-contact-details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-contact-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

/* Map placeholder */
.map-placeholder {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---------------------------------------------- */
.site-footer {
  background: #141A12;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-contact a,
.footer-contact span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.8); }

/* ---- UTILITIES ------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ---- PRINT ----------------------------------------------- */
@media print {
  .sticky-call-bar, .site-header, .nav-toggle { display: none; }
  body { padding-bottom: 0; }
}
