﻿/* ============================================================
   LAMCON RENOVATIONS & CONSTRUCTION SERVICES
   Global Stylesheet - Mobile-First
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red:        #C0392B;
  --red-dark:   #96281B;
  --red-light:  #E74C3C;
  --white:      #FFFFFF;
  --off-white:  #F5F5F3;
  --light-grey: #E8E8E6;
  --mid-grey:   #9A9A96;
  --dark-grey:  #3A3A38;
  --charcoal:   #1C1C1A;
  --black:      #0D0D0D;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.20);

  --max-width: 1280px;
  --section-pad: 4rem 1.25rem;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

p  { font-size: clamp(0.95rem, 1.8vw, 1.05rem); color: var(--dark-grey); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); background: var(--white); }
.section--dark  { background-color: var(--charcoal); color: var(--white); }
.section--dark p { color: var(--light-grey); }
.section--grey  { background-color: var(--off-white); }
.section--red   { background-color: var(--red); color: var(--white); }
.section--red p { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 0.85rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
}
.btn-primary:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,57,43,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--dark-grey);
}
.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--charcoal);
  color: var(--white);
}
.btn-call:hover {
  background-color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* ---------- Floating Contact Buttons ---------- */
.floating-contacts {
  position: fixed;
  right: 1.25rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 900;
}

.floating-contacts a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.floating-contacts a:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.float-call { background: var(--charcoal); }
.float-wa   { background: #25D366; }

.floating-contacts svg { width: 22px; height: 22px; }

/* ---------- Navigation Header ---------- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  padding: 0.35rem 0;
  background: rgba(12,12,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

#site-header.header-light {
  background: transparent;
}

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

.logo img { height: 55px; width: auto; transition: height var(--transition); }
#site-header.scrolled .logo img { height: 44px; }

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
  overflow-y: auto;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.mobile-menu a:hover { color: var(--red); }

.mobile-menu-contacts {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.08);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,10,0.85) 0%,
    rgba(12,12,10,0.25) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 7rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero-content .eyebrow { color: var(--red-light); }

.hero-content h1 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 1.75rem;
}

.hero-content p {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
  opacity: 0.6;
  animation: bounce 2.4s ease infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

.hero-scroll-indicator svg { color: var(--white); }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.5s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { width: 100%; }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
}

.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.why-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.why-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 1;
  transition: color 0.3s;
}

.why-item:hover .why-number { color: var(--red); }
.why-item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.4rem; text-transform: none; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  background: var(--charcoal);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-top-color 0.35s ease;
}

.stat-item:hover { border-top-color: var(--red); }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-number span { color: var(--red); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.4rem;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: steps;
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--light-grey);
  counter-increment: steps;
  transition: var(--transition);
}

.process-step:last-child { border-bottom: none; }

.process-step:hover { padding-left: 0.5rem; }

.process-step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.process-step h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: none;
}

/* ---------- Services Card Grid (Homepage) ---------- */
.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card-new {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.service-card-new:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card-new:hover::before {
  transform: scaleY(1);
}

.service-card-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.service-card-new h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  text-transform: none;
}

.service-card-new p {
  font-size: 0.875rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 600px) {
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Services Editorial (Homepage) - kept for reference ---------- */
.section--services-dark {
  background: var(--charcoal);
}

.services-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.services-editorial-intro h2 {
  color: var(--white);
  margin-top: 0.75rem;
}

.services-editorial-intro p {
  color: rgba(255,255,255,0.62);
  margin-top: 1rem;
  line-height: 1.75;
}

.eyebrow--light {
  color: var(--red);
}

.service-row {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  transition: padding-left 0.3s ease;
}

.service-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.service-row:hover { padding-left: 0.5rem; }

.service-row-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--red);
  line-height: 1.45;
  padding-top: 0.05rem;
}

.service-row h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--white);
  letter-spacing: 0;
}

.service-row p {
  color: rgba(255,255,255,0.52);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ---------- Director Quote ---------- */
.director-quote-section {
  background: var(--red);
  padding: 3.5rem 1.25rem;
}

.director-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.director-quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  line-height: 0.55;
  color: rgba(255,255,255,0.22);
  display: block;
  margin-bottom: 1.5rem;
}

.director-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.director-quote cite {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  font-style: normal;
}

/* ---------- Why List (Homepage) ---------- */
.why-list {
  border-top: 1px solid var(--light-grey);
}

.why-list-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light-grey);
  align-items: center;
  transition: padding-left 0.3s ease;
}

.why-list-item:hover { padding-left: 0.75rem; }

.why-list-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-grey);
  line-height: 1;
  transition: color 0.3s;
}

.why-list-item:hover .why-list-num { color: var(--red); }

.why-list-body h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.why-list-body p {
  color: var(--mid-grey);
  font-size: 0.9rem;
  line-height: 1.72;
}

/* ---------- Why Scroll Section ---------- */

/* Mobile-first: static stacked layout */
.why-scroll-track {
  background: var(--off-white);
}

.why-scroll-sticky {
  padding: var(--section-pad);
}

.why-scroll-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left panel */
.why-scroll-left .ornament  { margin-bottom: 1.25rem; }
.why-scroll-left .eyebrow   { margin-bottom: 0.75rem; }
.why-scroll-left h2         { margin: 0 0 0.85rem; }
.why-scroll-left > p        { color: var(--dark-grey); max-width: 400px; }

/* Dots */
.why-scroll-dots {
  display: none;
  gap: 0.45rem;
  margin-top: 2.25rem;
}

.why-scroll-dot {
  display: block;
  height: 3px;
  width: 22px;
  background: var(--light-grey);
  border-radius: 2px;
  transition: background 0.35s ease, width 0.35s ease;
}

.why-scroll-dot.is-active {
  background: var(--red);
  width: 36px;
}

/* CTA in left panel */
.why-scroll-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.why-scroll-cta-note {
  font-size: 0.76rem;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
}

/* Right panel: items stacked on mobile */
.why-scroll-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-scroll-big-num {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 700;
  color: var(--red);
  opacity: 1;
  line-height: 1;
  margin-bottom: -0.75rem;
  user-select: none;
  pointer-events: none;
}

.why-scroll-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: none;
}

.why-scroll-item p {
  color: var(--dark-grey);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  max-width: 500px;
  margin: 0;
}

/* Desktop 768px+: sticky scroll behaviour */
@media (min-width: 768px) {
  .why-scroll-track {
    height: calc(100vh * 4); /* 1 pinned viewport + 6 scroll steps (~0.5vh each) */
  }

  .why-scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .why-scroll-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
  }

  .why-scroll-dots { display: flex; }

  /* All items occupy the same grid cell - CSS grid overlay */
  .why-scroll-items {
    display: grid;
    gap: 0;
  }

  .why-scroll-item {
    grid-row: 1;
    grid-column: 1;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .why-scroll-item.is-active {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion: disable sticky, show all items */
@media (prefers-reduced-motion: reduce) {
  .why-scroll-track   { height: auto !important; }
  .why-scroll-sticky  { position: static !important; height: auto !important; }
  .why-scroll-item    { opacity: 1 !important; transform: none !important; }
  .why-scroll-dots    { display: none !important; }
}

/* ---------- Gallery / Projects ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,10,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay p {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Lightbox ---------- */
.gallery-item { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,12,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.is-open { opacity: 1; pointer-events: auto; }

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
  transition: opacity 0.2s;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  opacity: 0.75;
  transition: opacity 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.75rem 0.85rem;
  border-radius: 3px;
  transition: background 0.2s;
  z-index: 10000;
  line-height: 1;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-caption {
  position: fixed;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.lightbox-counter {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  pointer-events: none;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--mid-grey);
  margin-top: 0.2rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--red);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { color: var(--white); position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,0.85); position: relative; z-index: 1; max-width: 540px; margin: 1rem auto 2rem; }

.cta-banner .btn-outline {
  position: relative;
  z-index: 1;
}

/* ---------- Area Tags ---------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-tag {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  color: var(--red);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Service Map ---------- */
.service-map {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--light-grey);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.service-map iframe {
  width: 100%;
  height: 260px;
  display: block;
  border: none;
  filter: saturate(0.7) contrast(1.05);
}

.service-map-note {
  background: var(--white);
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--mid-grey);
  text-align: center;
  border-top: 1px solid var(--light-grey);
  margin: 0;
}

/* ---------- Contact Form ---------- */
.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--light-grey);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo img { height: 38px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 280px; }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(192,57,43,0.18);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
  letter-spacing: 0.04em;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.75); }

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ---- StratStudios Credit (Mandatory) ---- */
.stratstudios-credit {
  display: inline-grid;
  place-items: center;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stratstudios-credit:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(192,57,43,0.5);
  color: rgba(255,255,255,0.65);
  box-shadow: 0 6px 20px rgba(192,57,43,0.2);
}

.stratstudios-credit:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ---------- Mission Split ---------- */
.mission-split {
  display: grid;
  grid-template-columns: 1fr;
}

.mission-split-image {
  position: relative;
}

.mission-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-split-content {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.mission-split-content-inner { max-width: 560px; }

@media (min-width: 768px) {
  .mission-split {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
  .mission-split-image { min-height: auto; }
  .mission-split-content { padding: 5rem 4rem; }
}

/* ---------- Section Feature Image ---------- */
.section-feature-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 3rem;
  display: block;
}

/* ---------- About Page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px rgba(192, 57, 43, 0.22), 0 2px 12px rgba(0,0,0,0.18);
}

/* ---------- Morne Credentials ---------- */
.morne-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-grey);
  flex-wrap: wrap;
}

.morne-credential-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.morne-credential-item strong {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--red);
  line-height: 1;
}

.morne-credential-item span {
  font-size: 0.8rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 180px;
  height: 180px;
  background: var(--red);
  border-radius: 3px;
  z-index: -1;
}

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

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(192,57,43,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.value-icon svg { width: 20px; height: 20px; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--charcoal);
  padding: 7rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.page-hero .eyebrow { color: var(--red-light); }
.page-hero h1 { color: var(--white); max-width: 820px; margin: 0 auto; }
.page-hero p  { color: rgba(255,255,255,0.62); max-width: 600px; margin: 1.25rem auto 0; }

/* ---------- Editorial Design Language ---------- */

/* Italic accent words in headings */
h1 em, h2 em, h3 em, .process-cta p em {
  font-style: italic;
  color: var(--red);
  font-weight: inherit;
}

/* Rotated diamond ornament */
.ornament {
  display: block;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
  margin: 0 auto 3rem;
  flex-shrink: 0;
}
.ornament--left  { margin-left: 0; }
.ornament--white { background: rgba(255,255,255,0.4); }

/* Arrow text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.25s ease;
  margin-top: 1.75rem;
}
.text-link:hover { gap: 0.9rem; }

/* Editorial intro — big statement split section */
.editorial-intro-section {
  background: var(--white);
  padding-bottom: 0;
}

.editorial-intro-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid var(--light-grey);
}

.editorial-intro-inner h2 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.07;
}

.editorial-intro-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.editorial-intro-body p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--dark-grey);
  max-width: 500px;
}

.mission-full-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Craftsmen / Visionaries statement section */
.craftsmen-section {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.craftsmen-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.craftsmen-inner h2 {
  font-size: clamp(2.6rem, 6.5vw, 6.5rem);
  line-height: 1.04;
  color: var(--white);
  max-width: 960px;
}

.craftsmen-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 540px;
}

.craftsmen-body p {
  color: rgba(255,255,255,0.58);
  font-size: 1.05rem;
  line-height: 1.78;
}

/* Full-bleed image CTA (replaces flat red banner) */
.cta-fullbleed {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cta-fullbleed-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.cta-fullbleed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.cta-fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,10,0.94) 0%,
    rgba(12,12,10,0.52) 50%,
    rgba(12,12,10,0.18) 100%
  );
}

.cta-fullbleed-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.cta-fullbleed-content h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  max-width: 780px;
  margin-bottom: 1.25rem;
  line-height: 1.07;
}

.cta-fullbleed-content p {
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-size: 1.06rem;
}

/* ---------- Privacy / Terms ---------- */.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 0.75rem; font-family: var(--font-body); font-weight: 700; }
.legal-content h3 { font-size: 1.1rem; margin: 2rem 0 0.5rem; font-family: var(--font-body); font-weight: 700; }
.legal-content p  { margin-bottom: 1rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--dark-grey); }

/* ---------- Thank You ---------- */
.thankyou-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--off-white);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thankyou-icon svg { width: 36px; height: 36px; color: var(--white); }

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ---------- Animations (AOS-like, JS driven) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.93); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (min-width: 480px) {
  .stats-bar             { grid-template-columns: repeat(3, 1fr); }
  .stat-item             { padding: 2.5rem 2rem; }
}

@media (min-width: 600px) {
  :root { --section-pad: 5rem 1.5rem; }
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .form-row              { grid-template-columns: repeat(2, 1fr); }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }
  .service-map iframe    { height: 420px; }
}

@media (min-width: 768px) {
  :root { --section-pad: 7rem 2rem; }
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
  .footer-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom         { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  :root { --section-pad: 8rem 2.5rem; }
  .nav-links  { display: flex; }
  .nav-cta    { display: inline-flex; }
  .hamburger  { display: none; }
  .logo img                        { height: 207px; }
  #site-header.scrolled .logo img  { height: 80px; }
  .services-grid         { grid-template-columns: repeat(3, 1fr); }
  .about-split           { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .why-grid              { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid          { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid           { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .process-grid          { grid-template-columns: repeat(2, 1fr); gap: 0 4rem; }
  .values-grid           { grid-template-columns: 1fr; }
  .cta-fullbleed         { min-height: 580px; }
  .director-quote-section { padding: 5.5rem 0; }
  /* Why list - 3-column on desktop: num | heading | body */
  .why-list-item         { grid-template-columns: 5rem 1fr 2fr; gap: 3rem; align-items: start; }
  .why-list-body h3      { margin-bottom: 0; }
  /* Editorial intro */
  .editorial-intro-inner { grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: end; }
  /* Craftsmen */
  .craftsmen-inner       { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 8rem; }
  /* CTA fullbleed */
  .cta-fullbleed-content { padding: 7rem 2.5rem 5.5rem; }
  /* Page hero */
  .page-hero             { padding: 10rem 2.5rem 5.5rem; }
}

@media (min-width: 1280px) {
  :root { --section-pad: 9rem 2.5rem; }
}

/* ============================================================
   LEAD-GEN COMPONENTS
   ============================================================ */

/* ---------- Hero micro-trust line ---------- */
.hero-micro {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.hero-micro::before,
.hero-micro::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* ---------- Primary CTA pulse ring (hero) ---------- */
@keyframes cta-ring-pulse {
  0%   { box-shadow: 0 4px 20px rgba(192,57,43,0.35), 0 0 0 0 rgba(192,57,43,0.4); }
  65%  { box-shadow: 0 4px 20px rgba(192,57,43,0.35), 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 4px 20px rgba(192,57,43,0.35), 0 0 0 0 rgba(192,57,43,0); }
}

.btn-pulse {
  animation: cta-ring-pulse 2.8s ease-out infinite;
}

.btn-pulse:hover {
  animation: none;
  box-shadow: 0 8px 28px rgba(192,57,43,0.50);
}

/* ---------- Section-end CTA strip ---------- */
.section-end-cta {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  background: var(--charcoal);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  border-left: 3px solid var(--red);
}

.section-end-cta-text {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-family: var(--font-heading);
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.section-end-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.section-end-cta-note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .section-end-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 2.75rem 3rem;
  }

  .section-end-cta-text { flex: 1; }
  .section-end-cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }
}

/* ---------- Floating contacts: labelled pills on desktop ---------- */
@media (min-width: 768px) {
  .floating-contacts a {
    width: auto;
    height: 46px;
    border-radius: 50px;
    padding: 0 1.15rem;
    gap: 0.6rem;
  }

  .floating-contacts .float-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

/* On mobile keep .float-label hidden */
.floating-contacts .float-label {
  display: none;
}

@media (min-width: 768px) {
  .floating-contacts .float-label { display: inline; }
}

/* ---------- Contact form: response-time note ---------- */
.form-response-note {
  font-size: 0.78rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.form-response-note-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
}

/* ---------- Form: live validation feedback ---------- */
.form-group input:not(:placeholder-shown):valid,
.form-group select:valid:not([value=""]),
.form-group textarea:not(:placeholder-shown):valid {
  border-color: rgba(37, 211, 102, 0.55);
}

.form-group input:not(:placeholder-shown):invalid,
.form-group textarea:not(:placeholder-shown):invalid {
  border-color: rgba(192, 57, 43, 0.5);
}

/* ---------- Process section CTA ---------- */
.process-cta {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.process-cta p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--charcoal);
  margin: 0;
}

@media (min-width: 768px) {
  .process-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

/* ---------- Stats bar: credibility subline ---------- */
.stat-since {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 0.35rem;
}
