/* ==========================================================================
   Site Prep Pros — Custom WordPress Theme CSS
   Converted from React + Tailwind CSS 4 frontend
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS IMPORT
   -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  --radius: 0.25rem;

  /* Brand Colors */
  --primary: #e07820;
  --primary-foreground: #ffffff;
  --primary-dark: #c96a12;

  /* Backgrounds */
  --background: #faf9f7;
  --card: #ffffff;

  /* Text */
  --foreground: #1e2128;
  --card-foreground: #1e2128;
  --muted-foreground: #636570;
  --text-on-dark: #f5f4f2;

  /* Dark Surfaces */
  --charcoal: #191c23;
  --ink: #1e2229;

  /* UI */
  --muted: #f2f1ef;
  --border: #dedfe4;
  --input: #faf9f7;

  /* Gradients & Shadows */
  --grad-fire: linear-gradient(135deg, #e88225, #c9560f);
  --shadow-glow: 0 0 60px -10px rgba(224, 120, 32, 0.45);
  --shadow-hard: 0 24px 60px -24px rgba(30, 33, 40, 0.35);
  --shadow-soft: 0 10px 30px -12px rgba(30, 33, 40, 0.12);

  /* Typography */
  --font-display: "Anton", "Oswald", "Impact", sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;

  /* Spacing */
  --max-w-7xl: 80rem;
  --max-w-6xl: 72rem;
  --max-w-5xl: 64rem;
}

/* --------------------------------------------------------------------------
   3. BASE RESET & GLOBALS
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
}

@media (max-width: 640px) {
  h1 { letter-spacing: -0.02em; }
}

ul { list-style: none; }

/* --------------------------------------------------------------------------
   4. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* Texture overlay */
.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* Grid line texture — light */
.grid-lines {
  background-image:
    linear-gradient(to right, rgba(30, 33, 40, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 33, 40, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Grid line texture — dark */
.grid-lines-dark {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.text-primary { color: var(--primary); }
.text-on-dark { color: var(--text-on-dark); }
.bg-primary { background-color: var(--primary); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-grad-fire { background: var(--grad-fire); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-hard { box-shadow: var(--shadow-hard); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.text-balance { text-wrap: balance; }

/* --------------------------------------------------------------------------
   5. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal-left.in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal-right.in { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.reveal-scale.in { opacity: 1; transform: none; }

.reveal-blur {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(30px);
  transition: opacity 1s, filter 1s, transform 1s;
}
.reveal-blur.in { opacity: 1; filter: blur(0); transform: none; }

.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(.7,0,.3,1);
}
.reveal-clip.in { clip-path: inset(0 0 0 0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }
.reveal-delay-6 { transition-delay: 0.8s; }

/* --------------------------------------------------------------------------
   6. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 40s linear infinite; }

@keyframes blink { 50% { opacity: 0; } }
.caret::after {
  content: "_";
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  color: var(--primary);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-bounce { animation: bounce 1s ease-in-out infinite; }

@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fadein { animation: fadein 0.4s ease-out both; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   7. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

#scroll-progress-bar .bar {
  height: 100%;
  background: var(--grad-fire);
  box-shadow: var(--shadow-glow);
  transition: width 0.15s linear;
  width: 0%;
}

/* --------------------------------------------------------------------------
   8. TOP BAR
   -------------------------------------------------------------------------- */
.site-topbar {
  display: none;
  background-color: var(--charcoal);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .site-topbar { display: block; }
}

.site-topbar__inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-topbar__left,
.site-topbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-topbar__right { opacity: 0.8; }

.site-topbar a,
.site-topbar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.site-topbar a:hover { color: var(--primary); }

.site-topbar .phone-link {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   9. SITE HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 4px;
  z-index: 50;
  transition: all 0.5s ease;
  background: rgba(250, 249, 247, 0.4);
  backdrop-filter: blur(4px);
}

.site-header.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.site-header__inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-header__inner { padding: 0 1.5rem; height: 6rem; }
}

.site-header__logo img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 640px) {
  .site-header__logo img { height: 4rem; }
}

@media (min-width: 768px) {
  .site-header__logo img { height: 5rem; }
}

/* Desktop Nav */
.site-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}

.site-header__nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(30, 33, 40, 0.8);
  transition: color 0.2s;
  position: relative;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.site-header__nav a:hover,
.site-header__nav a.current-page {
  color: var(--primary);
}

.site-header__nav a:hover::after,
.site-header__nav a.current-page::after {
  width: 100%;
}

/* Header CTA */
.site-header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__cta { display: inline-flex; }
}

/* Hamburger */
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  gap: 5px;
  position: relative;
  z-index: 70;
  cursor: pointer;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .site-header__hamburger { display: none; }
}

.site-header__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--foreground);
  transition: all 0.3s ease;
  transform-origin: center;
}

.site-header__hamburger span:nth-child(1) { width: 24px; }
.site-header__hamburger span:nth-child(2) { width: 16px; align-self: flex-start; }
.site-header__hamburger span:nth-child(3) { width: 24px; }

.site-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
  background: var(--primary);
}
.site-header__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.site-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
  background: var(--primary);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(25, 28, 35, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

@media (min-width: 1024px) {
  .mobile-menu-backdrop { display: none; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: 85%;
  max-width: 340px;
  height: 100dvh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.85, 0.25, 1);
}

.mobile-drawer.active {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-drawer { display: none; }
}

.mobile-drawer__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mobile-drawer__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
}
.mobile-drawer__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-fire);
  z-index: 10;
}

.mobile-drawer__top {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem 1.5rem;
}

.mobile-drawer__top img { height: 3rem; width: auto; }

.mobile-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(245, 244, 242, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
}

.mobile-drawer__close:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-drawer__nav {
  position: relative;
  z-index: 10;
  flex: 1;
  padding: 0.5rem 1.25rem 1rem;
  overflow-y: auto;
}

.mobile-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateX(24px);
}

.mobile-drawer.active .mobile-drawer__nav a {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer__nav a:nth-child(1) { transition-delay: 0.11s; }
.mobile-drawer__nav a:nth-child(2) { transition-delay: 0.17s; }
.mobile-drawer__nav a:nth-child(3) { transition-delay: 0.23s; }
.mobile-drawer__nav a:nth-child(4) { transition-delay: 0.29s; }
.mobile-drawer__nav a:nth-child(5) { transition-delay: 0.35s; }

.mobile-drawer__nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.mobile-drawer__nav a.current-page { border-bottom-color: rgba(224, 120, 32, 0.3); }
.mobile-drawer__nav a.current-page::before { height: 1.75rem; }

.mobile-drawer__nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 1rem;
}

.mobile-drawer__step {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.25);
  width: 1.25rem;
  flex-shrink: 0;
}

.mobile-drawer__nav a.current-page .mobile-drawer__step {
  color: rgba(224, 120, 32, 0.7);
}

.mobile-drawer__nav-label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.mobile-drawer__nav a:hover .mobile-drawer__nav-label,
.mobile-drawer__nav a.current-page .mobile-drawer__nav-label {
  color: var(--primary);
}

.mobile-drawer__nav-arrow {
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
  flex-shrink: 0;
}

.mobile-drawer__nav a:hover .mobile-drawer__nav-arrow,
.mobile-drawer__nav a.current-page .mobile-drawer__nav-arrow {
  color: rgba(224, 120, 32, 0.6);
}

.mobile-drawer__bottom {
  position: relative;
  z-index: 10;
  padding: 1.25rem 1.25rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s ease 0.45s;
}

.mobile-drawer.active .mobile-drawer__bottom {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer__phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: var(--shadow-glow);
  transition: opacity 0.3s;
}

.mobile-drawer__phone-cta:hover { opacity: 0.9; }

.mobile-drawer__email-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.mobile-drawer__email-link:hover { color: rgba(255,255,255,0.7); }

.mobile-drawer__hours {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.625rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
}

.mobile-drawer__trust {
  margin-top: 1.25rem;
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* --------------------------------------------------------------------------
   10. CTA BUTTON COMPONENT
   -------------------------------------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 640px) {
  .cta-btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
}

/* Primary variant */
.cta-btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.cta-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.cta-btn--primary:hover { box-shadow: var(--shadow-glow); }

.cta-btn--primary:hover::before {
  transform: translateX(0);
}

.cta-btn--primary span,
.cta-btn--primary svg {
  position: relative;
  z-index: 1;
}

.cta-btn--primary:hover span,
.cta-btn--primary:hover svg {
  color: var(--text-on-dark);
}

/* Ghost dark variant */
.cta-btn--ghost {
  border: 1px solid rgba(30, 33, 40, 0.2);
  color: var(--foreground);
}

.cta-btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Ghost light variant (on dark backgrounds) */
.cta-btn--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-on-dark);
}

.cta-btn--ghost-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cta-btn svg.arrow-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.cta-btn:hover svg.arrow-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 17, 22, 0.75) 0%,
    rgba(18, 20, 27, 0.6) 50%,
    rgba(18, 20, 27, 0.85) 100%
  );
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.hero__gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w-6xl);
  margin: 0 auto;
  padding: 7rem 1.25rem 4rem;
  text-align: center;
  color: var(--text-on-dark);
}

@media (min-width: 640px) {
  .hero__content { padding: 8rem 1.5rem 6rem; }
}

.hero__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.5em; margin-bottom: 1.5rem; }
}

.hero__eyebrow-line {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero__eyebrow-line { width: 2rem; }
}

.hero__h1 {
  font-size: clamp(2.4rem, 9vw, 8rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hero__typewriter-wrap {
  margin-top: 1.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero__typewriter-wrap { margin-top: 2rem; height: 3rem; }
}

.hero__typewriter {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 640px) { .hero__typewriter { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero__typewriter { font-size: 1.5rem; } }

.hero__body {
  margin-top: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  color: rgba(245, 244, 242, 0.75);
  text-wrap: balance;
  padding: 0 0.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .hero__body { margin-top: 1.5rem; font-size: 1rem; } }
@media (min-width: 768px) { .hero__body { font-size: 1.125rem; } }

.hero__ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) { .hero__ctas { margin-top: 2.5rem; gap: 1rem; } }

/* Stats grid */
.hero__stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) { .hero__stats { margin-top: 5rem; } }
@media (min-width: 768px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }

.hero__stat {
  background: rgba(18, 20, 27, 0.7);
  backdrop-filter: blur(8px);
  padding: 1rem;
  text-align: center;
}

@media (min-width: 640px) { .hero__stat { padding: 1.5rem; } }

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}

@media (min-width: 640px) { .hero__stat-number { font-size: 1.875rem; } }
@media (min-width: 768px) { .hero__stat-number { font-size: 2.25rem; } }

.hero__stat-label {
  margin-top: 0.25rem;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: rgba(245, 244, 242, 0.65);
  text-transform: uppercase;
}

@media (min-width: 640px) { .hero__stat-label { font-size: 0.625rem; letter-spacing: 0.25em; } }
@media (min-width: 768px) { .hero__stat-label { font-size: 0.75rem; } }

.hero__scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 244, 242, 0.7);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 10;
}

@media (min-width: 640px) {
  .hero__scroll-hint { bottom: 1.5rem; font-size: 0.75rem; }
}

/* --------------------------------------------------------------------------
   12. MARQUEE SECTION
   -------------------------------------------------------------------------- */
.marquee-section {
  position: relative;
  padding: 1.5rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  overflow: hidden;
  border-top: 1px solid rgba(180, 80, 10, 0.5);
  border-bottom: 1px solid rgba(180, 80, 10, 0.5);
}

@media (min-width: 640px) { .marquee-section { padding: 2rem 0; } }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 1.5rem;
}

@media (min-width: 640px) {
  .marquee-item { font-size: 1.5rem; gap: 2rem; margin: 0 2rem; }
}
@media (min-width: 768px) {
  .marquee-item { font-size: 2.5rem; }
}

.marquee-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-foreground);
  transform: rotate(45deg);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .marquee-dot { width: 0.75rem; height: 0.75rem; }
}

/* --------------------------------------------------------------------------
   13. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.about-section__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.about-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) { .about-section__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .about-section__inner { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }

.about-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 640px) { .about-section__eyebrow { font-size: 0.75rem; } }

.about-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .about-section__heading { font-size: 4.5rem; } }

.about-section__body {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 640px) { .about-section__body { margin-top: 2.5rem; font-size: 1.125rem; } }

.about-section__body p + p { margin-top: 1rem; }

.about-trust-cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .about-trust-cards { margin-top: 2.5rem; gap: 1rem; }
}

.about-trust-card {
  border: 1px solid var(--border);
  padding: 0.75rem;
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

@media (min-width: 640px) { .about-trust-card { padding: 1rem; } }

.about-trust-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.about-trust-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .about-trust-card svg { width: 1.5rem; height: 1.5rem; }
}

.about-trust-card__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

@media (min-width: 640px) { .about-trust-card__label { font-size: 0.75rem; } }

.about-section__cta {
  display: inline-flex;
  margin-top: 2rem;
}

@media (min-width: 640px) { .about-section__cta { margin-top: 2.5rem; } }

/* About image */
.about-section__image-wrap {
  position: relative;
  margin-top: 1rem;
}

@media (min-width: 1024px) { .about-section__image-wrap { margin-top: 0; } }

.about-section__image-border {
  position: absolute;
  inset: -0.75rem;
  border: 1px solid rgba(224, 120, 32, 0.3);
  pointer-events: none;
}

@media (min-width: 640px) { .about-section__image-border { inset: -1rem; } }

.about-section__img-container {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.about-section__img {
  width: 100%;
  height: 22.5rem;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

@media (min-width: 640px) { .about-section__img { height: 30rem; } }
@media (min-width: 1024px) { .about-section__img { height: 37.5rem; } }

.about-section__img-container:hover .about-section__img {
  transform: scale(1.05);
}

.about-section__years-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -0.75rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1rem;
  max-width: 10.625rem;
  z-index: 10;
  box-shadow: var(--shadow-hard);
}

@media (min-width: 640px) {
  .about-section__years-badge { bottom: -1.5rem; right: -1.5rem; padding: 1.5rem; max-width: 12.5rem; }
}

.about-section__years-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

@media (min-width: 640px) { .about-section__years-number { font-size: 3rem; } }

.about-section__years-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
}

@media (min-width: 640px) { .about-section__years-label { font-size: 0.75rem; } }

/* --------------------------------------------------------------------------
   14. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  padding: 5rem 0;
  background: var(--charcoal);
  color: var(--text-on-dark);
  overflow: hidden;
}

.services-section__noise,
.services-section__gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-section__noise { opacity: 0.2; }
.services-section__gridlines { opacity: 0.4; }

.services-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .services-section__inner { padding: 0 1.5rem; } }

.services-section__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 4rem; }
}

.services-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .services-section__eyebrow { font-size: 0.75rem; } }

.services-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
  max-width: 48rem;
}

@media (min-width: 640px) { .services-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .services-section__heading { font-size: 4.5rem; } }

.services-section__intro {
  max-width: 28rem;
  color: rgba(245, 244, 242, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .services-section__intro { font-size: 1rem; } }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: #1e2229;
  padding: 1.5rem;
  min-height: 21.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 640px) { .service-card { padding: 2rem; min-height: 23.75rem; } }

.service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.service-card:hover .service-card__bg {
  opacity: 0.85;
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 28, 35, 0.72) 0%, rgba(25, 28, 35, 0.32) 50%, transparent 100%);
  transition: all 0.7s ease;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(25, 28, 35, 0.55) 0%, rgba(25, 28, 35, 0.12) 50%, transparent 100%);
}

.service-card__content {
  position: relative;
  z-index: 10;
}

.service-card__number {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

@media (min-width: 640px) { .service-card__icon { width: 2.5rem; height: 2.5rem; } }

.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

@media (min-width: 640px) { .service-card__title { font-size: 1.5rem; } }
@media (min-width: 768px) { .service-card__title { font-size: 1.875rem; } }

.service-card:hover .service-card__title { color: var(--primary); }

.service-card__desc {
  font-size: 0.75rem;
  color: rgba(245, 244, 242, 0.7);
  line-height: 1.6;
}

@media (min-width: 640px) { .service-card__desc { font-size: 0.875rem; } }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

@media (min-width: 640px) { .service-card__link { margin-top: 1.5rem; font-size: 0.75rem; } }

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   15. PROCESS SECTION
   -------------------------------------------------------------------------- */
.process-section {
  position: relative;
  padding: 6rem 0 7rem;
  background: var(--background);
  overflow: hidden;
}

.process-section__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.process-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .process-section__inner { padding: 0 1.5rem; } }

.process-section__header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .process-section__header { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: flex-end; margin-bottom: 5rem; }
}

.process-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .process-section__eyebrow { font-size: 0.75rem; } }

.process-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .process-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .process-section__heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .process-section__heading { font-size: 4.5rem; } }

.process-section__right-col {
  padding-bottom: 0.25rem;
}

.process-section__intro {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28rem;
}

@media (min-width: 640px) { .process-section__intro { font-size: 1rem; } }

.process-section__cta { margin-top: 1.5rem; }

/* Process steps */
.process-steps { border-top: 1px solid var(--border); }

.process-step {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  padding: 2rem 0;
  align-items: start;
  transition: background-color 0.3s;
}

@media (min-width: 640px) {
  .process-step {
    grid-template-columns: 4.5rem 1fr 2fr;
    column-gap: 2.5rem;
    padding: 2.5rem 0;
  }
}

.process-step:hover { background: rgba(242, 241, 239, 0.5); }

.process-step__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  grid-row: span 2;
  padding-top: 2px;
  transition: opacity 0.3s;
}

@media (min-width: 640px) {
  .process-step__number { font-size: 3rem; grid-row: span 1; }
}

.process-step:hover .process-step__number { opacity: 0.8; }

.process-step__title {
  font-size: 1.25rem;
  transition: color 0.3s;
}

@media (min-width: 640px) { .process-step__title { font-size: 1.5rem; } }

.process-step:hover .process-step__title { color: var(--primary); }

.process-step__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  grid-column: 2;
}

@media (min-width: 640px) {
  .process-step__desc { grid-column: 3; grid-row: 1; font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   16. PROJECTS SECTION
   -------------------------------------------------------------------------- */
.projects-section {
  position: relative;
  padding: 5rem 0;
  background: var(--muted);
  overflow: hidden;
}

.projects-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .projects-section__inner { padding: 0 1.5rem; } }

.projects-section__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .projects-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 4rem; }
}

.projects-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .projects-section__eyebrow { font-size: 0.75rem; } }

.projects-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .projects-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .projects-section__heading { font-size: 4.5rem; } }

.projects-section__intro {
  max-width: 28rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .projects-section__intro { font-size: 1rem; } }

/* Bento grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) { .projects-grid { gap: 1rem; } }

@media (min-width: 1024px) {
  .projects-grid { grid-template-rows: repeat(2, 270px); }
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-soft);
  background: var(--charcoal);
}

.project-card:nth-child(1) {
  height: 260px;
  grid-column: span 2;
}

.project-card:nth-child(2),
.project-card:nth-child(3) {
  height: 170px;
  grid-column: span 1;
}

.project-card:nth-child(4) {
  height: 220px;
  grid-column: span 2;
}

.project-card:nth-child(5),
.project-card:nth-child(6) {
  height: 200px;
  grid-column: span 2;
}

@media (min-width: 640px) {
  .project-card:nth-child(1) { height: 320px; }
  .project-card:nth-child(2),
  .project-card:nth-child(3) { height: 200px; }
  .project-card:nth-child(4) { height: 260px; }
  .project-card:nth-child(5),
  .project-card:nth-child(6) { height: 230px; }
}

@media (min-width: 1024px) {
  .project-card:nth-child(1) { grid-column: span 2; grid-row: span 2; height: auto; }
  .project-card:nth-child(2) { grid-column: span 1; grid-row: span 1; height: auto; }
  .project-card:nth-child(3) { grid-column: span 1; grid-row: span 1; height: auto; }
  .project-card:nth-child(4) { grid-column: span 1; grid-row: span 2; height: auto; }
  .project-card:nth-child(5) { grid-column: span 2; grid-row: span 1; height: auto; }
  .project-card:nth-child(6) { grid-column: span 2; grid-row: span 1; height: auto; }
}

.project-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card__img { transform: scale(1.1); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 28, 35, 0.95) 0%, rgba(25, 28, 35, 0.3) 50%, transparent 100%);
}

.project-card__hover-tint {
  position: absolute;
  inset: 0;
  background: rgba(224, 120, 32, 0);
  transition: background 0.3s;
}

.project-card:hover .project-card__hover-tint {
  background: rgba(224, 120, 32, 0.15);
}

.project-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (min-width: 640px) {
  .project-card__tag { top: 1rem; left: 1rem; font-size: 0.625rem; }
}

.project-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(4px);
  transition: transform 0.3s;
  color: var(--text-on-dark);
}

@media (min-width: 640px) { .project-card__info { padding: 1.5rem; } }

.project-card:hover .project-card__info { transform: translateY(0); }

.project-card__location {
  font-size: 0.5625rem;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

@media (min-width: 640px) { .project-card__location { font-size: 0.625rem; margin-bottom: 0.5rem; } }

.project-card__title {
  font-size: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) { .project-card__title { font-size: 1.25rem; } }
@media (min-width: 1024px) { .project-card__title { font-size: 1.5rem; } }

.project-card__view-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

@media (min-width: 640px) { .project-card__view-link { margin-top: 0.75rem; font-size: 0.75rem; } }

.project-card:hover .project-card__view-link { opacity: 1; }

/* Projects Lightbox */
.projects-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(25, 28, 35, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

@media (min-width: 640px) { .projects-lightbox { padding: 1.5rem; } }

.projects-lightbox.active {
  opacity: 1;
  pointer-events: all;
  animation: fadein 0.3s ease;
}

.projects-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text-on-dark);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .projects-lightbox__close { top: 1.5rem; right: 1.5rem; }
}

.projects-lightbox__close:hover { color: var(--primary); }

.projects-lightbox__inner {
  max-width: 64rem;
  width: 100%;
}

.projects-lightbox__img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.projects-lightbox__caption {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-on-dark);
}

@media (min-width: 640px) { .projects-lightbox__caption { margin-top: 1.5rem; } }

.projects-lightbox__caption-tag {
  font-size: 0.625rem;
  color: var(--primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .projects-lightbox__caption-tag { font-size: 0.75rem; } }

.projects-lightbox__caption-title {
  font-size: 1.5rem;
}

@media (min-width: 640px) { .projects-lightbox__caption-title { font-size: 1.875rem; } }

/* --------------------------------------------------------------------------
   17. WHY US SECTION
   -------------------------------------------------------------------------- */
.whyus-section {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.whyus-section__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.whyus-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) { .whyus-section__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .whyus-section__inner { grid-template-columns: 5fr 7fr; gap: 3rem; } }

.whyus-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .whyus-section__eyebrow { font-size: 0.75rem; } }

.whyus-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .whyus-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .whyus-section__heading { font-size: 3.75rem; } }

.whyus-section__intro {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .whyus-section__intro { margin-top: 2rem; font-size: 1rem; } }

/* Reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

.reason-card {
  background: var(--card);
  padding: 1.5rem;
  transition: background 0.2s;
}

@media (min-width: 640px) { .reason-card { padding: 2rem; } }

.reason-card:hover { background: var(--muted); }

.reason-card__icon {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

@media (min-width: 640px) { .reason-card__icon { width: 2rem; height: 2rem; } }

.reason-card:hover .reason-card__icon { transform: scale(1.1); }

.reason-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .reason-card__title { font-size: 1.25rem; } }

.reason-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   18. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
  background: var(--charcoal);
  color: var(--text-on-dark);
  overflow: hidden;
}

.testimonials-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  transform: scale(1.05);
}

.testimonials-section__noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.testimonials-section__inner {
  position: relative;
  max-width: var(--max-w-5xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

@media (min-width: 640px) { .testimonials-section__inner { padding: 0 1.5rem; } }

.testimonials-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .testimonials-section__eyebrow { font-size: 0.75rem; } }

.testimonials-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  margin-bottom: 3rem;
  text-wrap: balance;
}

@media (min-width: 640px) { .testimonials-section__heading { font-size: 3rem; margin-bottom: 4rem; } }
@media (min-width: 768px) { .testimonials-section__heading { font-size: 3.75rem; } }

/* Testimonial carousel */
.testimonials-carousel {
  position: relative;
  min-height: 20rem;
}

@media (min-width: 640px) { .testimonials-carousel { min-height: 17.5rem; } }

.testimonial-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .testimonial-stars { margin-bottom: 1.5rem; } }

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--primary);
  color: var(--primary);
}

@media (min-width: 640px) { .testimonial-stars svg { width: 1.25rem; height: 1.25rem; } }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 640px) { .testimonial-quote { font-size: 1.25rem; } }
@media (min-width: 768px) { .testimonial-quote { font-size: 1.875rem; } }

.testimonial-author {
  margin-top: 1.5rem;
}

@media (min-width: 640px) { .testimonial-author { margin-top: 2rem; } }

.testimonial-author__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 640px) { .testimonial-author__name { font-size: 1rem; } }

.testimonial-author__role {
  font-size: 0.75rem;
  color: rgba(245, 244, 242, 0.65);
}

@media (min-width: 640px) { .testimonial-author__role { font-size: 0.875rem; } }

.testimonials-dots {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) { .testimonials-dots { margin-top: 3rem; } }

.testimonials-dot {
  height: 4px;
  transition: all 0.3s;
  cursor: pointer;
  background: rgba(255,255,255,0.2);
  width: 1.5rem;
  border: none;
}

.testimonials-dot:hover { background: rgba(255,255,255,0.4); }

.testimonials-dot.active {
  width: 3rem;
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   19. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  position: relative;
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.faq-section__inner {
  position: relative;
  max-width: var(--max-w-5xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .faq-section__inner { padding: 0 1.5rem; } }

.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) { .faq-section__header { margin-bottom: 4rem; } }

.faq-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .faq-section__eyebrow { font-size: 0.75rem; } }

.faq-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .faq-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .faq-section__heading { font-size: 3.75rem; } }

.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

@media (min-width: 640px) { .faq-question { padding: 1.5rem 0; gap: 1.5rem; } }

.faq-question__text {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

@media (min-width: 640px) { .faq-question__text { font-size: 1.125rem; } }
@media (min-width: 768px) { .faq-question__text { font-size: 1.25rem; } }

.faq-question:hover .faq-question__text { color: var(--primary); }

.faq-toggle {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--primary);
}

@media (min-width: 640px) { .faq-toggle { width: 2.5rem; height: 2.5rem; } }

.faq-item.open .faq-toggle {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding-bottom: 1.25rem;
}

@media (min-width: 640px) { .faq-answer__inner { padding-bottom: 1.5rem; } }

.faq-answer__text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48rem;
}

@media (min-width: 640px) { .faq-answer__text { font-size: 1rem; } }

/* --------------------------------------------------------------------------
   20. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  color: var(--text-on-dark);
}

.final-cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 35, 0.85);
}

.final-cta-section__noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.final-cta-section__inner {
  position: relative;
  max-width: var(--max-w-5xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

@media (min-width: 640px) { .final-cta-section__inner { padding: 0 1.5rem; } }

.final-cta-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .final-cta-section__eyebrow { font-size: 0.75rem; margin-bottom: 1.5rem; } }

.final-cta-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .final-cta-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .final-cta-section__heading { font-size: 5rem; } }

.final-cta-section__body {
  margin-top: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: rgba(245, 244, 242, 0.75);
  line-height: 1.7;
}

@media (min-width: 640px) { .final-cta-section__body { margin-top: 2rem; font-size: 1.125rem; } }

.final-cta-section__ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) { .final-cta-section__ctas { margin-top: 2.5rem; gap: 1rem; } }

/* --------------------------------------------------------------------------
   21. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  padding: 5rem 0;
  background: var(--muted);
  overflow: hidden;
}

.contact-section__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

.contact-section__inner {
  position: relative;
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) { .contact-section__inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .contact-section__inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 640px) { .contact-section__eyebrow { font-size: 0.75rem; } }

.contact-section__heading {
  font-size: 2.5rem;
  line-height: 0.9;
  text-wrap: balance;
}

@media (min-width: 640px) { .contact-section__heading { font-size: 3rem; } }
@media (min-width: 768px) { .contact-section__heading { font-size: 3.75rem; } }

.contact-section__body {
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .contact-section__body { margin-top: 1.5rem; font-size: 1rem; } }

/* Contact info rows */
.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) { .contact-info-list { margin-top: 2.5rem; gap: 1.5rem; } }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.contact-info-row__icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}

@media (min-width: 640px) {
  .contact-info-row__icon-wrap { width: 3rem; height: 3rem; }
}

a.contact-info-row:hover .contact-info-row__icon-wrap {
  background: var(--primary);
  color: var(--primary-foreground);
}

.contact-info-row__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

@media (min-width: 640px) { .contact-info-row__label { font-size: 0.75rem; } }

.contact-info-row__value {
  font-size: 0.875rem;
  color: var(--foreground);
  transition: color 0.2s;
  margin-top: 0.125rem;
}

@media (min-width: 640px) { .contact-info-row__value { font-size: 1rem; } }

a.contact-info-row:hover .contact-info-row__value { color: var(--primary); }

/* Map */
.contact-map {
  margin-top: 2rem;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) { .contact-form-wrap { padding: 2rem; } }
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; flex: 1; }

.form-field { display: flex; flex-direction: column; }

.form-field label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) { .form-field label { font-size: 0.75rem; } }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--input);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

@media (min-width: 640px) {
  .form-field input, .form-field select, .form-field textarea { font-size: 1rem; }
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(224, 120, 32, 0.2);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(99, 101, 112, 0.6);
}

.form-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  flex: 1;
}

.form-field-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-field-row { grid-template-columns: 1fr 1fr; }
}

.form-submit {
  width: 100%;
  margin-top: auto;
}

/* Form success state */
.form-success {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 0;
}

.form-success.active { display: flex; }

.form-success svg {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .form-success svg { width: 4rem; height: 4rem; } }

.form-success__heading {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .form-success__heading { font-size: 1.875rem; } }

.form-success__body {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) { .form-success__body { font-size: 1rem; } }

/* --------------------------------------------------------------------------
   22. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: #ffffff;
  color: var(--foreground);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 640px) { .site-footer__inner { padding: 5rem 1.5rem; } }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: repeat(4, 1fr); } }

.site-footer__brand img {
  height: 6rem;
  width: auto;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) { .site-footer__brand img { height: 7rem; } }
@media (min-width: 768px) { .site-footer__brand img { height: 5rem; } }

.site-footer__tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 18rem;
}

.site-footer__col-heading {
  font-size: 0.875rem;
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.site-footer__nav li + li { margin-top: 0.5rem; }

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover { color: var(--primary); }

.site-footer__contact li + li { margin-top: 0.75rem; }

.site-footer__contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.site-footer__bottom {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.site-footer__bottom-inner {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) { .site-footer__bottom-inner { padding: 1.5rem; } }
@media (min-width: 768px) {
  .site-footer__bottom-inner { flex-direction: row; gap: 1rem; }
}

.site-footer__trust {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   23. 404 PAGE
   -------------------------------------------------------------------------- */
.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--charcoal);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 2rem 1.25rem;
}

.error-404-section__grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.error-404-section__noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.error-404-section__inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
}

.error-404-section__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 25vw, 12rem);
  line-height: 0.9;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.error-404-section__eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) { .error-404-section__eyebrow { font-size: 0.75rem; } }

.error-404-section__heading {
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.error-404-section__body {
  font-size: 1rem;
  color: rgba(245, 244, 242, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

@media (min-width: 640px) { .error-404-section__body { font-size: 1.125rem; } }

.error-404-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   24. ICON SVGs (inlined as CSS masks for Lucide icons)
   -------------------------------------------------------------------------- */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   25. CONTAINER HELPERS
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-w-7xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

.container--5xl {
  max-width: var(--max-w-5xl);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .container--5xl { padding: 0 1.5rem; } }

/* --------------------------------------------------------------------------
   26. SELECT DROPDOWN CUSTOM ARROW
   -------------------------------------------------------------------------- */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23636570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   27. SKIP LINK (ACCESSIBILITY)
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   28. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  .site-topbar,
  .site-header,
  #scroll-progress-bar,
  .mobile-drawer,
  .mobile-menu-backdrop { display: none !important; }
}

/* --------------------------------------------------------------------------
   29. CONTACT FORM 7 — OUTER WRAPPER
   Wraps the rendered CF7 shortcode. Matches the same card container
   style as the original static form wrappers.
   -------------------------------------------------------------------------- */

/* Outer wrapper — same visual as .contact-form-wrap */
.spp-cf7-outer {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* Strip CF7's own wrapper chrome so our styles take over */
.spp-cf7-outer .wpcf7,
.spp-cf7-outer .wpcf7-form {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remove injected <br> tags CF7 adds between fields */
.spp-cf7-outer br { display: none; }

/* --------------------------------------------------------------------------
   30. FORM PLACEHOLDER — shown when no shortcode is set
   -------------------------------------------------------------------------- */
.spp-form-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.75rem;
  min-height: 20rem;
  gap: 1rem;
}

@media (min-width: 640px) {
  .spp-form-placeholder {
    padding: 3rem 2.5rem;
    min-height: 22rem;
  }
}

/* Icon */
.spp-form-placeholder svg {
  color: var(--primary);
  opacity: 0.55;
  flex-shrink: 0;
}

/* Title */
.spp-form-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin: 0;
}

@media (min-width: 640px) {
  .spp-form-placeholder__title {
    font-size: 1.25rem;
  }
}

/* Body text */
.spp-form-placeholder__body {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 26rem;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .spp-form-placeholder__body {
    font-size: 0.875rem;
  }
}

/* Shortcode example */
.spp-form-placeholder__example {
  display: inline-block;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.375rem 0.875rem;
  letter-spacing: 0.01em;
  word-break: break-all;
  max-width: 100%;
}

/* Call button (contact page placeholder only) */
.spp-form-placeholder__tel {
  display: inline-flex;
  margin-top: 0.5rem;
  text-decoration: none;
}
