/* ============================================================
   RACON ENGINEERS — Design System
   Fonts: Fraunces (display) + Inter (body)
   Palette: Red #D92027, Charcoal #111
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  --red: #D92027;
  --red-2: #B01820;
  --red-3: #7A1015;
  --red-tint: #FDECEC;
  --ink: #0E0E10;
  --ink-2: #2A2A2E;
  --ink-3: #4E4E56;
  --gray: #7A7A82;
  --gray-2: #B8B8BE;
  --line: #E6E4E0;
  --bone: #F5F2ED;
  --cream: #FAF7F2;
  --bg: #FFFFFF;
  --gold: #C9A64B;
  --sage: #6C7A5E;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.18);
  --shadow-red: 0 12px 40px rgba(217,32,39,0.25);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in: cubic-bezier(.7,.0,.84,.0);
  --ease-inout: cubic-bezier(.65,.05,.36,1);
  --t-fast: 0.25s;
  --t: 0.45s;
  --t-slow: 0.9s;

  --container: 1280px;
  --gutter: 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Times New Roman', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 7vw, 6.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.6vw, 3.75rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 500; }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 500; font-family: 'Inter', sans-serif; letter-spacing: -0.01em; }
h5 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.02em; }
p { color: var(--ink-3); font-size: 1.02rem; }
em, .italic { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--red);
}
.eyebrow-dark { color: var(--ink); }
.eyebrow-dark::before { background: var(--ink); }
.eyebrow-light { color: rgba(255,255,255,0.75); }
.eyebrow-light::before { background: rgba(255,255,255,0.6); }

.display {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.italic-serif { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 var(--gutter); }
section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
section.tight { padding: clamp(60px, 8vw, 100px) 0; }
.section-head {
  max-width: 780px;
  margin-bottom: 80px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 22px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all var(--t) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: opacity var(--t) var(--ease-out);
  z-index: -1;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-2);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(217,32,39,0.42);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--red); transform: translateY(-3px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--red); color: #fff; transform: translateY(-3px); }
.btn svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-sm { padding: 11px 22px; font-size: 0.82rem; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--red);
  position: relative;
  padding-bottom: 4px;
}
.btn-arrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--t) var(--ease-out);
}
.btn-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-arrow svg { transition: transform var(--t) var(--ease-out); }
.btn-arrow:hover svg { transform: translateX(6px); }

/* ---------- Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(217,32,39,0.6);
}

/* ---------- Cursor Follower (desktop only) ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-out), width 0.4s, height 0.4s, background 0.3s;
}
body.cursor-hover .cursor-dot { transform: translate(-50%,-50%) scale(0); }
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(217,32,39,0.15);
  border-color: rgba(217,32,39,0.8);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Header ---------- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all var(--t) var(--ease-out);
}
header.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
header.site-header.dark:not(.scrolled) .logo,
header.site-header.dark:not(.scrolled) .nav-links a,
header.site-header.dark:not(.scrolled) .logo-text small { color: #fff; }
header.site-header.dark:not(.scrolled) .logo-text small { color: rgba(255,255,255,0.7); }
header.site-header.dark:not(.scrolled) .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
header.site-header.dark:not(.scrolled) .menu-toggle span { background: #fff; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(217,32,39,0.35);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.logo:hover .logo-mark::after { transform: translateX(100%); }
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color var(--t) var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t) var(--ease-out);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--red); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all var(--t) var(--ease-out);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--ink); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--ink); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 22px 0;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.marquee-item::before {
  content: '✱';
  color: var(--red);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 1.1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Split Text Reveal ---------- */
.split-line { display: block; overflow: hidden; }
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.split-line.reveal > span { transform: translateY(0); }
.split-line:nth-child(1) > span { transition-delay: 0.05s; }
.split-line:nth-child(2) > span { transition-delay: 0.15s; }
.split-line:nth-child(3) > span { transition-delay: 0.25s; }
.split-line:nth-child(4) > span { transition-delay: 0.35s; }

/* ---------- Fade / Slide Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }

/* ---------- Parallax Utilities ---------- */
.parallax { will-change: transform; }
.parallax-slow { transform: translate3d(0, var(--py, 0), 0); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}
/* Villa background photo (parallax layer, behind overlays) */
.hero-image {
  position: absolute;
  top: -8%; left: -4%; right: -4%; bottom: -8%;
  z-index: -3;
  background-image: url('../images/hero-villa.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  will-change: transform;
}
/* Dark + red gradient overlay for text readability + brand tint */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(217,32,39,0.55), transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(217,32,39,0.30), transparent 50%),
    linear-gradient(180deg, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.55) 45%, rgba(10,10,12,0.85) 100%);
}
/* Left-side reading gutter — makes headline & body copy legible */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.35) 45%, transparent 75%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.6;
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb.a { background: var(--red); top: -100px; right: -100px; }
.hero-orb.b { background: #4A1FE0; bottom: -200px; left: -100px; animation-delay: -10s; opacity: 0.35; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-40px) scale(1.15); }
}

.hero-buildings {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
}
.hero-buildings svg { width: 100%; height: 100%; }

.hero-content { position: relative; z-index: 2; max-width: 1100px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  animation: fadeIn 1s var(--ease-out);
}
.hero-badge .dot {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #fff;
  box-shadow: 0 0 0 6px rgba(217,32,39,0.2);
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,32,39,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(217,32,39,0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 400;
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #FFB8BA 60%, var(--red) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 44px;
  max-width: 650px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeIn 2s ease-out 1s both;
}
.hero-scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-top: 90px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 2;
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat .num small { color: var(--red); font-size: 0.65em; font-weight: 400; }
.hero-stat .label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 12px;
  font-weight: 500;
}

/* ---------- Page Head (internal pages) ---------- */
.page-head {
  padding: 200px 0 120px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(217,32,39,0.3), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(74,31,224,0.15), transparent 40%);
  z-index: -1;
}
.page-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  z-index: -1;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: var(--red); }
.breadcrumb .current { color: #fff; }

.page-head h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 26px;
}
.page-head h1 em { font-style: italic; color: #FFB8BA; font-weight: 400; }
.page-head .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
}

/* ---------- Service Cards (v2) ---------- */
.services-showcase {
  background: var(--bone);
  overflow: hidden;
}
.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 60px 1fr 1.2fr 60px;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: padding var(--t) var(--ease-out);
  isolation: isolate;
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t) var(--ease-out);
  z-index: -1;
}
.service-row:hover { padding-left: 20px; padding-right: 20px; }
.service-row:hover::before { transform: scaleY(1); transform-origin: top; }
.service-row:hover .service-num,
.service-row:hover .service-title,
.service-row:hover .service-desc,
.service-row:hover .service-arrow { color: #fff; }
.service-row:hover .service-arrow { transform: translateX(6px) rotate(-45deg); }
.service-num {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--gray);
  transition: color var(--t);
  font-variation-settings: "opsz" 144;
}
.service-icon-lg {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.service-icon-lg svg { width: 40px; height: 40px; }
.service-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  transition: color var(--t);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--ink-3);
  transition: color var(--t);
}
.service-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all var(--t) var(--ease-out);
  transform: rotate(-45deg);
}
.service-arrow svg { width: 18px; height: 18px; }

/* ---------- Approval Cards ---------- */
.approvals-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.approvals-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,32,39,0.35), transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: orbFloat 15s ease-in-out infinite;
}
.approvals-section h2 { color: #fff; }
.approvals-section .section-head p { color: rgba(255,255,255,0.7); }
.approvals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.approval-card {
  padding: 42px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  transition: all var(--t) var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.approval-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,32,39,0.2), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}
.approval-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  background: rgba(217,32,39,0.05);
}
.approval-card:hover::before { opacity: 1; }
.approval-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.approval-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.75rem; }
.approval-card .region {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.approval-card .doc-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.approval-docs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approval-docs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease-out);
}
.approval-card:hover .approval-docs li { transform: translateX(4px); }
.approval-docs li svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Process Timeline ---------- */
.process-section { background: var(--bone); }
.process-vertical {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}
.process-vertical::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 25px;
  width: 2px;
  background: var(--line);
}
.process-vertical::after {
  content: '';
  position: absolute;
  top: 0; left: 25px;
  width: 2px;
  height: var(--progress, 0%);
  background: var(--red);
  transition: height 0.8s var(--ease-out);
  box-shadow: 0 0 12px rgba(217,32,39,0.5);
}
.process-item {
  position: relative;
  padding: 30px 0 30px 40px;
}
.process-item::before {
  content: attr(data-step);
  position: absolute;
  left: -60px; top: 30px;
  width: 52px; height: 52px;
  background: #fff;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all var(--t) var(--ease-out);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(217,32,39,0.15);
}
.process-item.active::before {
  background: var(--red);
  color: #fff;
  transform: scale(1.15);
}
.process-item h3 { margin-bottom: 12px; font-family: 'Fraunces', serif; font-size: 1.55rem; }
.process-item p { font-size: 1.02rem; margin-bottom: 12px; }
.process-item .detail {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 0.85rem;
  color: var(--gray);
}
.process-item .detail span { display: inline-flex; align-items: center; gap: 6px; }
.process-item .detail svg { width: 14px; height: 14px; color: var(--red); }

/* ---------- Portfolio ---------- */
.portfolio-section { background: #fff; }
.portfolio-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-3);
  transition: all var(--t) var(--ease-out);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform var(--t) var(--ease-out);
  aspect-ratio: 4/3;
  isolation: isolate;
}
.portfolio-item.span-4 { grid-column: span 4; }
.portfolio-item.span-6 { grid-column: span 6; }
.portfolio-item.span-8 { grid-column: span 8; }
.portfolio-item.tall { aspect-ratio: 3/4; }
.portfolio-item.wide { aspect-ratio: 16/9; }
.portfolio-visual {
  width: 100%; height: 100%;
  transition: transform 0.9s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.portfolio-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}
.portfolio-item:hover .portfolio-visual { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  color: #fff;
  z-index: 2;
  transform: translateY(20px);
  transition: transform var(--t) var(--ease-out);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.portfolio-overlay h4 {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.portfolio-overlay p { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* Portfolio SVG scenes */
.pv-villa { background: linear-gradient(135deg,#3d2617,#0f0806); }
.pv-commercial { background: linear-gradient(135deg,#2d4a6b,#0f1a26); }
.pv-interior { background: linear-gradient(135deg,#7a2830,#3d1418); }
.pv-layout { background: linear-gradient(135deg,#2f4738,#0f1a13); }
.pv-structural { background: linear-gradient(135deg,#7a6238,#3d3118); }
.pv-institutional { background: linear-gradient(135deg,#2a5a63,#0f2226); }
.pv-hospitality { background: linear-gradient(135deg,#4a2957,#1f1024); }
.pv-industrial { background: linear-gradient(135deg,#2a2a2a,#0a0a0a); }

/* ---------- Team ---------- */
.team-section { background: #fff; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  transition: transform var(--t) var(--ease-out);
}
.team-card:hover { transform: translateY(-8px); }
.team-avatar {
  width: 200px; height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-3) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 400;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t);
}
.team-avatar::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: conic-gradient(from 0deg, var(--red), transparent 50%, var(--red));
  border-radius: 50%;
  animation: rotate 8s linear infinite;
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}
.team-card:hover .team-avatar { box-shadow: var(--shadow-lg); }
.team-card:hover .team-avatar::before { opacity: 1; }
@keyframes rotate { to { transform: rotate(360deg); } }
.team-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.team-role {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.team-bio { font-size: 0.95rem; padding: 0 10px; }

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--cream);
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}
.testimonial {
  background: #fff;
  padding: 40px 34px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: all var(--t) var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px; right: 30px;
  font-family: 'Fraunces', serif;
  font-size: 8rem;
  color: var(--red-tint);
  line-height: 0.7;
  font-weight: 400;
  z-index: -1;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--red); }
.stars { color: #F5A623; margin-bottom: 18px; letter-spacing: 3px; font-size: 0.9rem; }
.testimonial p {
  color: var(--ink);
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.65;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-3));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-family: 'Fraunces', serif;
}
.testimonial-info h5 { font-size: 0.95rem; margin-bottom: 2px; }
.testimonial-info small { color: var(--gray); font-size: 0.8rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(217,32,39,0.4), transparent 60%);
  z-index: -1;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  margin-bottom: 26px;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.cta-band h2 em { color: #FFB8BA; font-style: italic; font-weight: 400; }
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin: 0 auto 40px;
  max-width: 600px;
}
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Big rotating decorative ring */
.cta-ring {
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 0;
}
.cta-ring::before,
.cta-ring::after {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-ring::after { inset: -80px; }

/* ---------- Contact ---------- */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t);
}
.contact-item:hover .contact-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-value { color: var(--ink); font-weight: 500; font-size: 1rem; }
.contact-value a:hover { color: var(--red); }

.social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.social a {
  width: 44px; height: 44px;
  background: var(--bone);
  color: var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  transition: all var(--t) var(--ease-out);
}
.social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-4px) rotate(-5deg);
}
.social svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--bone);
  padding: 50px 44px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,32,39,0.15), transparent);
  border-radius: 50%;
  z-index: -1;
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-subtitle { color: var(--ink-3); margin-bottom: 32px; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: all var(--t) var(--ease-out);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(217,32,39,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form button { width: 100%; justify-content: center; margin-top: 10px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
footer.site-footer::before {
  content: 'RACON';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(10rem, 25vw, 26rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.03);
  line-height: 0.8;
  z-index: -1;
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.footer-brand .logo { color: #fff; }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  margin: 24px 0;
  max-width: 340px;
  font-size: 0.95rem;
}
.footer-brand .social a { background: rgba(255,255,255,0.06); color: #fff; }
.footer-brand .social a:hover { background: var(--red); }
footer h5 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.footer-links li { margin-bottom: 14px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  transition: all var(--t) var(--ease-out);
  display: inline-block;
  position: relative;
}
.footer-links a:hover { color: var(--red); transform: translateX(4px); }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.gstin-badge {
  background: rgba(255,255,255,0.05);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: 'Inter', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform var(--t) var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-8deg); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2.4s infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Counter Animation ---------- */
.counter { display: inline-block; }

/* ---------- Utility & Accents ---------- */
.marker-red {
  background: linear-gradient(180deg, transparent 60%, rgba(217,32,39,0.25) 60%);
  padding: 0 4px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 60px 0;
}
.text-red { color: var(--red); }
.center { text-align: center; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: -0.02em; }

/* ---------- Card Base ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all var(--t) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Feature icon */
.feat-icon {
  width: 56px; height: 56px;
  background: var(--red-tint);
  color: var(--red);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all var(--t) var(--ease-out);
}
.card:hover .feat-icon { background: var(--red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.feat-icon svg { width: 26px; height: 26px; }

/* ---------- About Grid ---------- */
.about-split {
  background: #fff;
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}
.about-visual svg { width: 100%; height: 100%; display: block; }
.about-visual .float-card {
  position: absolute;
  padding: 22px 26px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.about-visual .float-card.tl { top: 30px; left: -30px; }
.about-visual .float-card.br { bottom: 30px; right: -30px; background: var(--red); color: #fff; }
.about-visual .float-card .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.about-visual .float-card .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-highlight .icon {
  width: 44px; height: 44px;
  background: var(--red-tint);
  color: var(--red);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-highlight .icon svg { width: 20px; height: 20px; }
.about-highlight h4 { margin-bottom: 6px; }
.about-highlight p { font-size: 0.88rem; }

/* ---------- Stats Row ---------- */
.stats-row {
  background: var(--bone);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
.stat-tile { text-align: center; }
.stat-tile .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.stat-tile .num small { color: var(--red); font-size: 0.7em; }
.stat-tile .lbl {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--cream); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--t) var(--ease-out);
}
.faq-item:hover { border-color: var(--red); }
.faq-item.active { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t);
}
.faq-q:hover { color: var(--red); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--t) var(--ease-out);
}
.faq-toggle svg { width: 14px; height: 14px; transition: transform var(--t); }
.faq-item.active .faq-toggle {
  background: var(--red);
  color: #fff;
}
.faq-item.active .faq-toggle svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.active .faq-a { max-height: 500px; }
.faq-a p { padding: 0 30px 26px; color: var(--ink-3); font-size: 0.98rem; }

/* ---------- Coverage Map ---------- */
.coverage-section { background: #fff; }
.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  margin-top: 34px;
}
.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform var(--t), padding-left var(--t);
}
.coverage-list li:hover { transform: translateX(4px); color: var(--red); }
.coverage-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--t);
}
.coverage-list li:hover::before { transform: scale(1.5); }
.coverage-map {
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--bone), var(--cream));
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.coverage-map svg { width: 100%; height: 100%; }
.pin-pulse { transform-origin: center; animation: pinPulse 2s ease-in-out infinite; }
@keyframes pinPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}

/* ---------- Values ---------- */
.values-section { background: var(--bone); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.value-card {
  background: #fff;
  padding: 40px 34px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease-out);
  isolation: isolate;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(217,32,39,0.06));
  opacity: 0;
  transition: opacity var(--t);
  z-index: -1;
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.value-card:hover::before { opacity: 1; }
.value-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--red);
  line-height: 0.9;
  margin-bottom: 20px;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.35rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-split-grid,
  .contact-grid,
  .coverage-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .service-row { grid-template-columns: 40px 50px 1fr 40px; }
  .service-row .service-desc { display: none; }
  .portfolio-item.span-4,
  .portfolio-item.span-6,
  .portfolio-item.span-8 { grid-column: span 6; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px;
    gap: 30px;
    z-index: 105;
  }
  .nav-links.mobile-open a { font-size: 1.5rem; font-family: 'Fraunces', serif; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .portfolio-item.span-4,
  .portfolio-item.span-6,
  .portfolio-item.span-8 { grid-column: span 12; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-visual .float-card.tl,
  .about-visual .float-card.br { display: none; }
  .contact-form { padding: 36px 26px; }
  .process-vertical { padding-left: 40px; }
  .process-vertical::before,
  .process-vertical::after { left: 15px; }
  .process-item::before { left: -50px; width: 42px; height: 42px; font-size: 0.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
