/* ============================================================
   Bloomfield's Chimney Inspection — main.css
   Theme: Solar Flare | Palette: #1a1005 + #06b6d4
   Fonts: Bricolage Grotesque (heads) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --bg:        #0d0b0a;
  --bg-soft:   #1a1412;
  --bg-card:   #261c18;
  --accent:    #ef4444;
  --accent-dim:#b91c1c;
  --accent-glow: rgba(239, 68, 68, 0.4);
  --text:      #fef2f2;
  --text-muted:#a8a29e;
  --white:     #ffffff;
  --border:    rgba(239, 68, 68, 0.18);
  --glass:     rgba(239, 68, 68, 0.06);
  --glass-border: rgba(239, 68, 68, 0.22);
  --radius:    14px;
  --radius-lg: 24px;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #fee2e2; }
img { max-width: 100%; display: block; }

/* ─── Utility ───────────────────────────────────────────── */
.accent { color: var(--accent); }
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #020617;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #fee2e2;
  color: #020617;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 0.8rem 1.9rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #020617;
  transform: translateY(-2px);
}

/* ─── Cursor Micro-particle Trail ───────────────────────── */
.particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  animation: particle-fade 0.8s ease forwards;
}
@keyframes particle-fade {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.1) translateY(-10px); }
}

/* ─── ANNOUNCEMENT BAR + NAVBAR ─────────────────────────── */
#announce-bar {
  background: var(--accent);
  color: #020617;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1100;
}
#announce-bar a {
  color: #020617;
  font-weight: 800;
  border-bottom: 2px solid rgba(0,0,0,0.25);
  padding-bottom: 1px;
}
#announce-bar a:hover { opacity: 0.75; }

#main-nav {
  background: rgba(13, 11, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow 0.3s;
}
#main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(239, 68, 68, 0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
/* ─── LOGO — Modern Lockup ───────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.nav-logo:hover { opacity: 1; transform: none; }
.nav-logo-img-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(239, 68, 68,0.35);
  box-shadow: 0 0 18px rgba(239, 68, 68,0.25), inset 0 0 12px rgba(239, 68, 68,0.08);
  transition: var(--transition);
  background: rgba(239, 68, 68,0.06);
}
.nav-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: brightness(1.1) saturate(1.2);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img-wrap {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(239, 68, 68,0.5), inset 0 0 16px rgba(239, 68, 68,0.12);
}
.nav-logo:hover .nav-logo-img-wrap img { transform: scale(1.05); }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(239, 68, 68,0.3);
  margin-left: 0.85rem;
  gap: 0.05rem;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}
.nav-logo-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.nav-logo:hover .nav-logo-name::after { width: 100%; }
.nav-logo-accent { color: var(--accent); }
.nav-logo-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-logo-tag .logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00ff9d;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
/* Pulsing Status Badge (Logo Treatment #2) */
.logo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff9d;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,147,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(76,175,147,0); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  background: var(--glass);
  color: var(--accent);
}
.nav-cta-btn {
  background: var(--accent) !important;
  color: #020617 !important;
  font-weight: 800 !important;
  padding: 0.55rem 1.4rem !important;
}
.nav-cta-btn:hover {
  background: #fee2e2 !important;
  transform: scale(1.03);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 11, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1040;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay ul { list-style: none; text-align: center; }
.nav-overlay ul li { margin: 1rem 0; }
.nav-overlay ul a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
}
.nav-overlay ul a:hover { color: var(--accent); }
.overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.overlay-close:hover { color: var(--accent); transform: rotate(90deg); }
.overlay-phone {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

/* ─── HERO — Card-Stack Fan-Out (#11) ─────────────────── */
#hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-chimney.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 40%, rgba(239, 68, 68, 0.1) 100%);
}
/* Aura orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  width: fit-content;
}
.hero-badge::before {
  /* icon now in HTML — no pseudo-element needed */
  content: none;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: revealText 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes revealText {
  0% { transform: translateY(40px); opacity: 0; filter: blur(10px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
  text-shadow: 0 0 25px rgba(239, 68, 68, 0.3);
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  max-width: 480px;
  animation: revealText 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.2s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: revealText 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
  opacity: 0;
}
.hero-hours {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.hero-hours span { color: var(--text); font-weight: 600; }

/* Card-Stack Fan-Out — Enhanced */
.hero-cards {
  position: relative;
  height: 500px;
  perspective: 1400px;
}
.fan-card {
  position: absolute;
  width: 100%;
  max-width: 360px;
  background: linear-gradient(
    145deg,
    rgba(38, 28, 24, 0.95) 0%,
    rgba(26, 20, 18, 0.85) 100%
  );
  border: 1px solid rgba(239, 68, 68,0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 0;
  transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.45),
    0 0 0 1px rgba(239, 68, 68, 0.1),
    0 1px 0 rgba(255,255,255,0.08) inset;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}
/* Amber top-accent line */
.fan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  transition: opacity 0.3s;
  z-index: 2;
}
/* Radial hover glow */
.fan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(239, 68, 68,0.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.fan-card:hover::before { opacity: 1; }
.fan-card:hover::after  { opacity: 1; }
.fan-card-1 {
  left: 0; top: 30px;
  transform: rotate(-9deg) translateX(-20px) translateY(8px);
  z-index: 1;
  filter: brightness(0.95);
}
.fan-card-2 {
  left: 20px; top: 14px;
  transform: rotate(-3deg) translateY(4px);
  z-index: 2;
  filter: brightness(0.98);
}
.fan-card-3 {
  left: 36px; top: 0;
  transform: rotate(2deg);
  z-index: 3;
  filter: brightness(1);
}
/* Hover fan-out */
.hero-cards:hover .fan-card-1 {
  transform: rotate(-18deg) translateX(-95px) translateY(40px) scale(0.95);
  filter: brightness(0.9);
  box-shadow: -20px 20px 40px rgba(0,0,0,0.5);
}
.hero-cards:hover .fan-card-2 {
  transform: rotate(0deg) translateY(-20px) scale(1.02);
  filter: brightness(1);
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
}
.hero-cards:hover .fan-card-3 {
  transform: rotate(18deg) translateX(90px) translateY(40px) scale(0.95);
  filter: brightness(0.95);
  box-shadow: 20px 20px 40px rgba(0,0,0,0.5);
}
/* Fan card active — clicked to front */
.fan-card.fan-active {
  z-index: 10 !important;
  transform: rotate(0deg) translateY(-22px) scale(1.04) !important;
  border-color: var(--accent) !important;
  box-shadow:
    0 24px 64px rgba(239, 68, 68, 0.35),
    0 0 0 1px rgba(239, 68, 68, 0.4),
    0 1px 0 rgba(255,255,255,0.1) inset !important;
  filter: brightness(1) !important;
}
.fan-card.fan-active::before { opacity: 1 !important; }
.fan-card.fan-active::after  { opacity: 1 !important; }

/* ─── Card Inner Layout ───────────────────────────── */
.fan-card-body {
  padding: 1.6rem 1.6rem 0;
  position: relative;
  z-index: 2;
}
.fan-card-footer {
  padding: 0.9rem 1.6rem 1.4rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(239, 68, 68,0.12);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fan-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68,0.12);
  border: 1px solid rgba(239, 68, 68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.fan-card:hover .fan-card-icon,
.fan-card.fan-active .fan-card-icon {
  background: rgba(239, 68, 68,0.2);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(239, 68, 68,0.2);
}
.fan-card-icon i {
  font-size: 1.3rem;
  color: var(--accent);
}
.fan-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.fan-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.fan-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239, 68, 68,0.13);
  border: 1px solid rgba(239, 68, 68,0.3);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.fan-card-cta:hover,
.fan-card.fan-active .fan-card-cta {
  background: var(--accent);
  color: #020617;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}
.fan-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fan-card-img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: block;
  border: 1px solid rgba(239, 68, 68,0.12);
}

/* ─── ABOUT — Glassmorphism Detail Grid (#5) ─────────────── */
#about {
  padding: 6rem 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'BLOOMFIELD\'S';
  position: absolute;
  font-family: var(--font-head);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(239, 68, 68,0.03);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.02em;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: brightness(0.9) saturate(1.1);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #020617;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  line-height: 1.3;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
  z-index: 2;
}
.about-img-badge strong { font-size: 2rem; display: block; line-height: 1; }
.about-content { display: block; }
.about-content .section-title { margin-bottom: 1rem; }
.about-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
/* 2x2 Glass tiles grid */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.usp-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.usp-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(239, 68, 68, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.usp-tile:hover::after { transform: translateX(100%); }
.usp-tile:hover {
  border-color: var(--accent);
  background: rgba(38, 28, 24, 1);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(239, 68, 68, 0.1);
}
.usp-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
  line-height: 1;
}
.usp-icon i {
  font-size: 1.6rem;
  color: var(--accent);
}
.usp-tile h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.usp-tile p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── SERVICES — Dynamic Selection List (#13) ───────────── */
#services {
  padding: 6rem 0;
  background: var(--bg);
}
.svc-select-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.svc-select-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.svc-select-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
/* Two-column layout */
.svc-select-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
/* Left nav */
.svc-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-nav-track {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(239, 68, 68,0.1);
  border-radius: 3px;
}
.svc-nav-indicator {
  position: absolute;
  left: 0;
  width: 3px;
  height: calc(100% / 6);
  background: var(--accent);
  border-radius: 3px;
  top: 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(239, 68, 68,0.6);
}
.svc-nav-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem 1rem 1.5rem;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.28s ease;
  border-radius: 0 10px 10px 0;
  color: var(--text-muted);
}
.svc-nav-item:hover {
  background: rgba(239, 68, 68,0.06);
  color: var(--text);
}
.svc-nav-item.active {
  background: rgba(239, 68, 68,0.1);
  border-left-color: var(--accent);
  color: var(--text);
}
.svc-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(239, 68, 68,0.08);
  border: 1px solid rgba(239, 68, 68,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--text-muted);
}
.svc-nav-item.active .svc-nav-icon,
.svc-nav-item:hover .svc-nav-icon {
  background: rgba(239, 68, 68,0.18);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(239, 68, 68,0.2);
}
.svc-nav-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.svc-nav-arrow {
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s;
  color: var(--accent);
}
.svc-nav-item.active .svc-nav-arrow,
.svc-nav-item:hover .svc-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Right panels */
.svc-panels { position: relative; }
.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--glass);
  border: 1px solid rgba(239, 68, 68,0.15);
  border-radius: 20px;
  overflow: hidden;
  animation: panelIn 0.4s ease;
}
.svc-panel.active { display: grid; }
@keyframes panelIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}
.svc-panel-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-panel:hover .svc-panel-img img { transform: scale(1.04); }
.svc-panel-body {
  padding: 2.5rem 2rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(239, 68, 68,0.12);
  border: 1px solid rgba(239, 68, 68,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--accent);
}
.svc-panel-body h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.svc-panel-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.svc-features li i {
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}


/* ─── DETAIL SECTIONS ───────────────────────────────────── */
/* Shared */
.detail-section {
  padding: 5.5rem 0;
}
.detail-section:nth-of-type(odd) { background: var(--bg-soft); }
.detail-section:nth-of-type(even) { background: var(--bg); }

.detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Detail #1 — Aura-Glow Content Stack */
.detail-aura {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.detail-aura-img {
  position: relative;
}
.detail-aura-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
.aura-ring {
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--radius-lg) + 20px);
  background: radial-gradient(ellipse at center,
    rgba(239, 68, 68,0.2) 0%, transparent 70%);
  animation: aura-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes aura-pulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}
.detail-aura-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.detail-aura-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Detail #2 — Magazine Editorial (reversed) */
.detail-editorial {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.detail-editorial-text { display: block; }
.editorial-dropcap::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 0.75;
  margin-right: 0.15rem;
  margin-top: 0.1rem;
}
.detail-editorial-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  clear: both;
}
.detail-editorial-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.bullet-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.bullet-list li::before {
  content: '▸';
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-editorial-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
}

/* Detail #3 — 3D Flip Card */
.detail-flip-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.flip-card-container {
  perspective: 1200px;
  height: 420px;
}
.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.flip-card-container:hover .flip-card { transform: rotateY(180deg); }
.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.flip-front { display: block; }
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-front::after {
  content: 'Hover to Reveal →';
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(13, 11, 10, 0.8);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}
.flip-back {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}
.flip-back h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.flip-back p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.detail-flip-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.detail-flip-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ─── 4-STEP PROCESS ───────────────────────────────────── */
#process {
  padding: 5.5rem 0;
  background: var(--bg);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.4;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-num {
  border-color: var(--accent);
  background: rgba(239, 68, 68,0.1);
  box-shadow: 0 0 25px rgba(239, 68, 68,0.3);
  transform: scale(1.08);
}
.step-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── CTA STRIPS ─────────────────────────────────────────── */
/* CTA Strip #1 — Slanted Speed-Line */
.cta-strip-speed {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: var(--accent);
}
.cta-strip-speed::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px,
    transparent 18px,
    rgba(0,0,0,0.07) 18px,
    rgba(0,0,0,0.07) 20px
  );
  pointer-events: none;
}
.cta-strip-speed .strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.cta-strip-speed h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #020617;
  line-height: 1.1;
}
.cta-strip-speed p {
  color: rgba(13, 11, 10, 0.75);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}
.cta-strip-phone {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #020617;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

/* CTA Strip #2 — Bento-Strip */
.cta-strip-bento {
  padding: 3rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-bento .bento-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.5fr;
  gap: 0;
}
.bento-cell {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bento-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}
.bento-urgency {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.bento-cell h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}
.bento-cell p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ─── SERVICE AREA — Pulse-Indicator Tiles (#14) ─────────── */
#service-area {
  padding: 6rem 0;
  background: var(--bg-soft);
}
.area-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.area-header {
  text-align: center;
  margin-bottom: 3rem;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.area-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.area-chip:hover {
  background: rgba(239, 68, 68,0.12);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-chip 2.2s ease-in-out infinite;
}
.area-chip:nth-child(odd) .chip-dot { animation-delay: 0.3s; }
.area-chip:nth-child(3n) .chip-dot { animation-delay: 0.6s; }
@keyframes pulse-chip {
  0%,100% { box-shadow: 0 0 0 0 rgba(239, 68, 68,0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(239, 68, 68,0); }
}

/* ─── FAQ — Modular Glass Tiles (#1) ────────────────────── */
#faq {
  padding: 6rem 0;
  background: var(--bg);
}
.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.faq-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  position: relative;
}
.faq-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.faq-tile.active {
  background: rgba(38, 28, 24, 0.8);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.15);
}
.faq-tile:nth-child(5) {
  grid-column: 1 / -1;
}
.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-tile.active .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.faq-tile.active .faq-a {
  max-height: 200px;
  padding-top: 1rem;
}

/* ─── CONTACT — Cinematic Letterbox Map (#3) ────────────── */
#contact {
  padding: 6rem 0;
  background: var(--bg-soft);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.contact-top-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.contact-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.contact-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.contact-node-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}
.contact-node:hover .contact-node-icon {
  border-color: var(--accent);
  background: rgba(239, 68, 68,0.1);
}
.contact-node-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-node-value {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
/* Letterbox map wrapper */
.map-letterbox {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.map-letterbox::before,
.map-letterbox::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 50px;
  z-index: 2;
  pointer-events: none;
}
.map-letterbox::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-soft), transparent);
}
.map-letterbox::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-soft), transparent);
}
.map-letterbox iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(30%) brightness(0.8) contrast(1.1);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: #020100;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.2rem;
  text-decoration: none;
}
.footer-brand-img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(239, 68, 68,0.3);
  box-shadow: 0 0 16px rgba(239, 68, 68,0.2);
  background: rgba(239, 68, 68,0.05);
}
.footer-brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}
.footer-brand-text {
  padding-left: 0.8rem;
  border-left: 2px solid rgba(239, 68, 68,0.25);
  margin-left: 0.8rem;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  display: block;
}
.footer-brand-name span { color: var(--accent); }
.footer-brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.footer-desc {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.footer-phone-link {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}
.footer-phone-link:hover { color: #ffc15e; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-address {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  font-style: normal;
}
.footer-address strong { color: var(--text); display: block; margin-bottom: 0.3rem; }
.footer-hours {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-hours span { color: var(--text); font-weight: 600; }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-tagline span { color: var(--accent); font-weight: 700; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-cards { height: 280px; margin-top: 2rem; display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-badge { right: 0; bottom: -15px; }
  /* Services: stack nav above panel */
  .svc-select-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-nav-track { display: none; }
  .svc-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .svc-nav-item { flex: 1 1 auto; min-width: 140px; border-left: none; border-bottom: 2px solid transparent; border-radius: 10px; padding: 0.7rem 0.9rem; }
  .svc-nav-item.active { border-bottom-color: var(--accent); border-left: none; }
  .svc-nav-arrow { display: none; }
  .svc-panel { grid-template-columns: 1fr; }
  .svc-panel-img { min-height: 220px; }
  .svc-panel-body { padding: 1.5rem; }
  .detail-aura { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .detail-editorial { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .detail-editorial-img { order: -1; }
  .detail-flip-wrap { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .flip-card-container { height: 360px; max-width: 500px; margin: 0 auto; }
  .detail-flip-text { display: flex; flex-direction: column; align-items: center; }
  .bullet-list { display: inline-block; text-align: left; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-tile:nth-child(5) { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-strip-bento .bento-inner { grid-template-columns: 1fr; }
  .bento-cell:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .usp-grid { grid-template-columns: 1fr; }
  .svc-panel-body h3 { font-size: 1.2rem; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-top-bar { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-speed .strip-inner { flex-direction: column; text-align: center; }
  .detail-aura-img img,
  .detail-editorial-img img { height: 280px; }
  .flip-card-container { height: 320px; }
  .editorial-dropcap::first-letter { font-size: 3.5rem; }
  #announce-bar { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .hero-container { padding-top: 2rem; }
}
