/* ── TOP BAR ── */
.topbar {
  background: var(--ink, #0A0E1A);
  color: #8A8F9F;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-right a {
  color: #C99A3D;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.topbar-right a:hover { color: #fff; }
@media (max-width: 640px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
}

/* ═════════════════════════════════════════════════════════════
   COLDENHEAT — MODERN EDITION
   Mobile-first · Editorial · Refined
   ═════════════════════════════════════════════════════════════ */

:root {
  /* Brand — refined */
  --navy:        #0D2B5E;
  --navy-deep:   #081B3D;
  --red:         #E24B4A;
  --red-soft:    #FFF1F0;
  --gold:        #C99A3D;
  --gold-soft:   #F8F1DD;

  /* Neutrals — warmer, more refined */
  --ink:         #0A0E1A;
  --graphite:    #1F2433;
  --slate:       #4A5266;
  --stone:       #8A8F9F;
  --mist:        #C7CBD3;
  --whisper:     #ECEEF1;
  --offwhite:    #FBFAF7;
  --paper:       #F4F2ED;

  /* Accents */
  --emerald:     #10B981;

  /* Type — v5 Bold typography on v6 Modern layout */
  --display:     'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --body:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, monospace;

  /* Motion */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — multi-layer, soft */
  --shadow-sm:   0 1px 2px rgba(10,14,26,0.04), 0 1px 1px rgba(10,14,26,0.02);
  --shadow-md:   0 4px 6px -2px rgba(10,14,26,0.05), 0 8px 16px -4px rgba(10,14,26,0.06);
  --shadow-lg:   0 12px 24px -8px rgba(10,14,26,0.08), 0 24px 48px -12px rgba(10,14,26,0.12);
  --shadow-xl:   0 24px 48px -12px rgba(10,14,26,0.12), 0 48px 96px -24px rgba(13,43,94,0.16);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--graphite);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11";
  overflow-x: hidden;
  padding-bottom: 88px; /* reserve space for mobile bottom bar */
}

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

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

/* ─── Container ─── */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .wrap { padding: 0 32px; } }
@media (min-width: 1100px) { .wrap { padding: 0 48px; } }

/* ═════════════════════════════════════════════════════════════
   TOP NOTICE BAR (subtle, not marquee)
   ═════════════════════════════════════════════════════════════ */
.notice {
  background: var(--ink);
  color: var(--whisper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 11px 0;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.notice::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,154,61,0.3) 50%, transparent 100%);
}
.notice-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
}
.notice-pipe {
  margin: 0 14px;
  color: var(--slate);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@media (max-width: 640px) {
  .notice-pipe, .notice-extra { display: none; }
}

/* ═════════════════════════════════════════════════════════════
   NAV
   ═════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(10,14,26,0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.brand-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle at 30% 30%, rgba(201,154,61,0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.brand:hover .brand-mark::after { opacity: 1; }
.brand-mark svg {
  position: relative;
  z-index: 1;
}

.brand-mark svg {
  width: 18px; height: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: none;
}
.brand-name .heat { color: var(--red); }

.brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: none;
  gap: 4px;
  list-style: none;
}

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

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(10,14,26,0.04);
}
.nav-links a.active {
  color: var(--ink);
  background: var(--whisper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--offwhite);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.nav-cta-icon { font-size: 14px; }

@media (max-width: 480px) {
  .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ═════════════════════════════════════════════════════════════
   HERO
   ═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 88px 0 96px; }
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(226,75,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,43,94,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 968px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}

/* Hero badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--paper);
  border: 1px solid rgba(10,14,26,0.06);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-eyebrow-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: -1px;
  font-family: var(--body);
}

.hero-eyebrow strong {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--body);
}

/* Hero headline — the star */
.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(38px, 8.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 24px;
  text-transform: none;
}

.hero-headline em {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}

/* Highlight — solid color background, like a marker */
.hl {
  position: relative;
  display: inline-block;
  padding: 0 0.18em;
  white-space: nowrap;
  z-index: 1;
}
.hl::before {
  content: '';
  position: absolute;
  inset: 0.08em -0.05em 0.05em -0.05em;
  background: var(--gold);
  z-index: -1;
  transform: skew(-3deg);
  border-radius: 3px;
}
.hl.red::before { background: var(--red); }
.hl.red { color: white; }
.hl.gold::before { background: var(--gold); }
.hl.navy::before { background: var(--navy); }
.hl.navy { color: white; }
.hl.ink::before { background: var(--ink); }
.hl.ink { color: var(--gold); }

/* Underline — bottom highlight only, like a manual underline */
.ul {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.ul::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.04em;
  height: 0.32em;
  background: var(--gold);
  z-index: -1;
  transform: skew(-3deg);
}
.ul.red::after { background: var(--red); opacity: 0.85; }
.ul.gold::after { background: var(--gold); }

/* Boxed — outlined box around the word */
.bx {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--red);
}

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 480px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero-lede { font-size: 18px; }
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 600;
}

/* Hero CTAs */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 12px rgba(226,75,74,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226,75,74,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: white;
  color: var(--ink);
  border: 1px solid rgba(10,14,26,0.1);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: rgba(10,14,26,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-arrow {
  width: 16px; height: 16px;
  transition: transform 0.2s var(--ease);
}
.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(2px);
}

/* Hero trust row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
  border: 2px solid var(--offwhite);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-avatar:nth-child(1) { background: linear-gradient(135deg, #FAA41A, #E24B4A); }
.hero-trust-avatar:nth-child(2) { background: linear-gradient(135deg, #4A90E2, #0D2B5E); }
.hero-trust-avatar:nth-child(3) { background: linear-gradient(135deg, #10B981, #059669); }
.hero-trust-avatar:nth-child(4) { background: linear-gradient(135deg, #C99A3D, #8B6914); }

.hero-trust-text {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.4;
}
.hero-trust-text strong { color: var(--ink); font-weight: 600; }

/* Hero visual side — image card */
.hero-visual {
  position: relative;
  display: none;
}

@media (min-width: 968px) {
  .hero-visual { display: block; }
}

.hero-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a72 0%, #0a1d42 100%);
  box-shadow: var(--shadow-xl);
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(250,164,26,0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(226,75,74,0.2), transparent 50%);
}

.hero-img-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.hero-img-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  align-self: flex-start;
}

.hero-img-meta-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}

.hero-img-quote {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 24px;
}
.hero-img-quote .hl.gold { color: var(--ink); }
.hero-img-quote .ul::after { background: var(--gold); height: 0.28em; }

.hero-img-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-img-attr-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  color: white;
  border: 2px solid rgba(255,255,255,0.2);
  letter-spacing: -0.02em;
}
.hero-img-attr-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.hero-img-attr-role {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero floating card */
.hero-float-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(10,14,26,0.06);
}

.hero-float-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(10,14,26,0.06);
  border: 1px solid rgba(10,14,26,0.04);
}

.hero-float-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-float-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════
   LOGOS / TRUST STRIP
   ═════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(10,14,26,0.05);
  border-bottom: 1px solid rgba(10,14,26,0.05);
  background: var(--paper);
}

.trust-strip-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-bottom: 16px;
}

.trust-strip-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .trust-strip-list { gap: 48px; }
}

.trust-brand {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--stone);
  letter-spacing: -0.02em;
  opacity: 0.6;
  transition: all 0.2s;
}
.trust-brand:hover { opacity: 1; color: var(--ink); }

/* ═════════════════════════════════════════════════════════════
   SECTION SHELL
   ═════════════════════════════════════════════════════════════ */
.section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .section { padding: 112px 0; }
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  font-weight: 900;
  color: var(--red);
}

.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 600px;
}

/* ═════════════════════════════════════════════════════════════
   PILLARS — Three principles
   ═════════════════════════════════════════════════════════════ */
.pillars {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.pillars::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, var(--offwhite) 100%);
  pointer-events: none;
  z-index: 1;
}

.pillars::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,154,61,0.08) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}

.pillars-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.pillars .section-eyebrow {
  color: var(--gold);
}
.pillars .section-eyebrow::before {
  background: var(--gold);
}

.pillars-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 16px;
}
.pillars-title em {
  font-style: italic;
  font-weight: 900;
  color: var(--gold);
}
.pillars-title .hl.gold { color: var(--ink); }

.pillars-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
  border-color: rgba(201,154,61,0.2);
}

.pillar-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pillar-num::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pillar-quote {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 14px;
}
.pillar-quote .hl.gold { color: var(--ink); }

.pillar-quote-en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.pillar-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pillar-desc strong { color: white; font-weight: 600; }

/* ═════════════════════════════════════════════════════════════
   SERVICES — Editorial list
   ═════════════════════════════════════════════════════════════ */
.services {
  background: var(--offwhite);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

@media (min-width: 968px) {
  .services-grid {
    grid-template-columns: 380px 1fr;
    gap: 80px;
  }
}

.services-aside { position: sticky; top: 96px; }

.services-cta-card {
  background: white;
  border: 1px solid rgba(10,14,26,0.06);
  border-radius: var(--r-xl);
  padding: 24px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
}
.services-cta-card-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.services-cta-card-text {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10,14,26,0.08);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.service-item:hover {
  padding-left: 8px;
}

.service-item:first-child { padding-top: 0; }
.service-item:last-child { border-bottom: none; }

.service-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--stone);
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
  margin-top: 8px;
}

.service-content { min-width: 0; }

.service-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .service-title { font-size: 28px; }
}

.service-item:hover .service-title { color: var(--red); }

.service-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 540px;
}

.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--whisper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.3s var(--ease);
  color: var(--slate);
}

.service-item:hover .service-arrow {
  background: var(--ink);
  color: white;
  transform: rotate(-45deg);
}

.service-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--slate);
  background: white;
  border: 1px solid rgba(10,14,26,0.08);
  padding: 5px 10px 5px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s var(--ease);
}
.service-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
}
.service-tag.urgent {
  background: var(--red-soft);
  color: var(--red);
  border-color: rgba(226,75,74,0.15);
}
.service-tag.urgent::before {
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}
.service-tag.gold-accent {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: rgba(201,154,61,0.2);
}
.service-tag.gold-accent::before { background: var(--gold); }
.service-item:hover .service-tag {
  transform: translateY(-1px);
}

/* ═════════════════════════════════════════════════════════════
   FOUNDER — Editorial section
   ═════════════════════════════════════════════════════════════ */
.founder {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.founder::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,154,61,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 968px) {
  .founder-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
  }
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(13,43,94,0.85) 0%, rgba(10,14,26,0.95) 100%),
    radial-gradient(circle at 30% 20%, rgba(201,154,61,0.4) 0%, transparent 60%);
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.founder-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
  pointer-events: none;
}

.founder-photo::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201,154,61,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: floaty 8s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -55%) scale(1.05); }
}

.founder-photo-placeholder {
  font-family: var(--display);
  font-size: 80px;
  color: rgba(255,255,255,0.18);
  font-weight: 900;
  letter-spacing: -0.04em;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.founder-photo-caption {
  position: relative;
  z-index: 2;
  background: rgba(10,14,26,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  border-radius: var(--r-md);
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.founder-photo-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--red);
  color: white;
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.founder-stat-card {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: white;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10,14,26,0.06);
  z-index: 3;
}

@media (max-width: 580px) {
  .founder-stat-card {
    right: 20px;
    bottom: 20px;
  }
}

.founder-stat-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.045em;
  font-feature-settings: "tnum";
}
.founder-stat-num em {
  color: var(--red);
  font-style: italic;
  font-weight: 900;
}
.founder-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

.founder-content {}

.founder-quote {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.founder-quote .accent {
  color: var(--red);
  font-style: italic;
}

.founder-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 28px;
}
.founder-bio strong { color: var(--ink); font-weight: 600; }
.founder-bio + .founder-bio { margin-top: -12px; }

.founder-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,14,26,0.1);
}
.founder-sig-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.founder-sig-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════
   REVIEWS — Card stack
   ═════════════════════════════════════════════════════════════ */
.reviews {
  background: var(--offwhite);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(10,14,26,0.06);
  box-shadow: var(--shadow-sm);
}

.reviews-rating-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.045em;
}

.reviews-rating-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.reviews-rating-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.review-card {
  background: white;
  border: 1px solid rgba(10,14,26,0.06);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,14,26,0.1);
}

.review-card-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.review-card-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 24px;
  flex: 1;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(10,14,26,0.06);
}

.review-card-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
}

.review-card-avatar.a { background: linear-gradient(135deg, #FAA41A, #E24B4A); }
.review-card-avatar.b { background: linear-gradient(135deg, #4A90E2, #0D2B5E); }
.review-card-avatar.c { background: linear-gradient(135deg, #10B981, #059669); }
.review-card-avatar.d { background: linear-gradient(135deg, #C99A3D, #8B6914); }
.review-card-avatar.e { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.review-card-avatar.f { background: linear-gradient(135deg, #EC4899, #BE185D); }

.review-card-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}
.review-card-meta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.review-card-google {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--slate);
  background: var(--paper);
  padding: 5px 10px 5px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-card-google svg {
  width: 12px; height: 12px;
}

/* ═════════════════════════════════════════════════════════════
   AREA / CTA — Service area + final push
   ═════════════════════════════════════════════════════════════ */
.area {
  background: linear-gradient(180deg, var(--offwhite) 0%, var(--paper) 100%);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 968px) {
  .area-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.area-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

@media (min-width: 480px) {
  .area-cities { grid-template-columns: repeat(3, 1fr); }
}

.city-pill {
  background: white;
  border: 1px solid rgba(10,14,26,0.08);
  padding: 12px 16px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
}
.city-pill:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-1px);
}
.city-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.area-map {
  aspect-ratio: 1/1;
  background: #e9e6df;
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(10,14,26,0.08);
}

@media (max-width: 968px) {
  .area-map { aspect-ratio: 4/3; }
}

.area-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.98);
}

.area-map-overlay {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  pointer-events: none;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

.area-map-base {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 11px 18px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  pointer-events: auto;
  max-width: 100%;
}

.area-map-base-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,154,61,0.25);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@media (max-width: 480px) {
  .area-map-base {
    font-size: 9.5px;
    padding: 9px 14px;
    letter-spacing: 0.06em;
  }
}

.area-map-pin {
  display: none;
}

/* ═════════════════════════════════════════════════════════════
   FINAL CTA
   ═════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 64px 20px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .final-cta { padding: 96px 32px; }
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(226,75,74,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,154,61,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}
.final-cta-waves svg { width: 100%; height: 80px; }

.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
}
.final-cta-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.final-cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 16px;
}
.final-cta-title em {
  font-style: italic;
  font-weight: 900;
  color: var(--gold);
}
.final-cta-title .hl.gold { color: var(--ink); }

.final-cta-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  color: var(--ink);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.footer-brand .heat { color: var(--red); }

.footer-tagline {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: white; }

/* ═════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR (fixed CTA, mobile only)
   ═════════════════════════════════════════════════════════════ */
.mobile-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: flex;
  gap: 8px;
  background: rgba(10,14,26,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 8px;
  border-radius: 100px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}

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

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 100px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.015em;
  transition: all 0.2s var(--ease);
}

.mobile-bar-btn.call {
  background: var(--red);
}
.mobile-bar-btn.call:active {
  transform: scale(0.97);
}

.mobile-bar-btn.wa {
  background: rgba(255,255,255,0.08);
}
.mobile-bar-btn.wa:active {
  background: rgba(255,255,255,0.15);
}

.mobile-bar-btn.quote {
  background: var(--gold);
  color: var(--ink);
}

.mobile-bar-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* ═════════════════════════════════════════════════════════════
   ANIMATIONS — On scroll reveal
   ═════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

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

/* Hide scrollbar but keep scroll */
::selection { background: var(--red); color: white; }

/* ═════════════════════════════════════════════════════════════
   ANNOUNCE BAR — scrolling marquee (used in all pages except index)
   ═════════════════════════════════════════════════════════════ */
.announce {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(201,154,61,0.15);
}
.announce-track {
  display: inline-flex;
  gap: 48px;
  padding: 10px 0;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.announce-track span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}
.announce:hover .announce-track {
  animation-play-state: paused;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Logo de marca ──────────────────────────────────────────────────────────
   Reemplaza el ícono SVG genérico + el texto "ColdenHeat" que se dibujaban por
   CSS y que no correspondían a la identidad real de la empresa.
   El archivo es 452x142 RGBA (fondo transparente): se fija la ALTURA y el ancho
   se calcula solo, para que nunca se deforme al cambiar el alto. */
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.25s var(--ease);
}
.brand:hover .brand-logo { opacity: 0.82; }
@media (max-width: 640px) {
  .brand-logo { height: 34px; }
}

/* ── Zona de servicio al pie de cada artículo ────────────────────────────────
   Los 10 artículos no enlazaban a ninguna página de ciudad, así que toda la
   autoridad del blog se quedaba sin repartir hacia las páginas locales, que son
   las que traen clientes. Weston va primero y destacado: es la zona principal. */
.article-areas{border:1px solid rgba(10,14,26,.1);border-radius:12px;padding:20px 24px;margin:28px 0;background:#F7F9FC}
.article-areas-label{font-family:var(--mono);font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--stone);display:block;margin-bottom:10px}
.article-areas p{font-size:14.5px;line-height:1.75;color:var(--slate);margin:0}
.article-areas a{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.article-areas a.primary{color:var(--red);font-weight:800}

/* ── Menú móvil ──────────────────────────────────────────────────────────────
   `.nav-links` se ocultaba en móvil y NO había ningún botón que la reabriera:
   desde un teléfono sólo se podía llegar al home, al teléfono y al footer.
   Services, Why Us, Reviews, Blog y las páginas de ciudad quedaban inalcanzables.
   El botón sólo aparece donde la navegación de escritorio desaparece. */
.nav-toggle{display:none;background:none;border:1.5px solid rgba(10,14,26,.15);border-radius:10px;
  width:44px;height:44px;cursor:pointer;align-items:center;justify-content:center;flex-shrink:0;padding:0}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--ink);border-radius:2px;position:relative;transition:background .2s}
.nav-toggle span::before,.nav-toggle span::after{content:'';position:absolute;left:0;width:18px;height:2px;
  background:var(--ink);border-radius:2px;transition:transform .25s var(--ease),top .25s var(--ease)}
.nav-toggle span::before{top:-6px}.nav-toggle span::after{top:6px}
.nav-toggle[aria-expanded="true"] span{background:transparent}
.nav-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg)}

@media (max-width: 968px){
  .nav-toggle{display:flex}
  /* Al abrirse ocupa el ancho completo bajo la barra, en columna y con
     objetivos de 48px de alto: cómodos para el pulgar. */
  .nav-links.open{display:flex !important;flex-direction:column;align-items:stretch;gap:0;
    position:absolute;left:0;right:0;top:100%;background:#fff;
    border-top:1px solid rgba(10,14,26,.08);box-shadow:0 18px 40px rgba(10,14,26,.14);
    padding:8px 0;max-height:calc(100vh - 70px);overflow-y:auto;z-index:60}
  .nav-links.open li{width:100%}
  .nav-links.open li a{display:block;padding:14px 24px;font-size:15px;min-height:48px;
    box-sizing:border-box;border-bottom:1px solid rgba(10,14,26,.05)}
  .nav-links.open li:last-child a{border-bottom:none}
  .nav-inner{position:relative}
}

/* ── Correcciones de móvil ───────────────────────────────────────────────────
   Detectadas renderizando el sitio a ancho de teléfono, no por inspección. */

/* El badge "Available 24/7" iba sobre rgba(255,255,255,0.1): encima de un cielo
   claro quedaba prácticamente invisible. Fondo oscuro sólido y borde tenue. */
.hero-img-meta{background:rgba(10,14,26,.68) !important;color:#fff !important;
  border:1px solid rgba(255,255,255,.22);backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);border-radius:100px}

@media (max-width: 968px){
  /* `.services-aside` era `position:sticky` SIN media query. En escritorio es una
     columna lateral que acompaña el scroll; al colapsar a una sola columna en
     móvil quedaba flotando ENCIMA del listado de servicios y los textos se
     montaban unos sobre otros. En una sola columna no tiene nada a lo que
     acompañar, así que vuelve al flujo normal. */
  .services-aside{position:static !important;top:auto !important}

  /* El bloque visual del hero (foto del dueño, la frase, el badge 24/7 y la
     valoración) estaba OCULTO en móvil. Justo la prueba de confianza que más
     pesa en un teléfono, y era la razón de que la versión móvil se viera vacía
     comparada con la de escritorio. Se muestra apilado bajo el texto. */
  .hero-visual{display:block !important;margin-top:28px}

  /* El botón flotante del widget (bottom:24px) caía justo encima de la barra
     inferior de acciones (alto 60px + 16px de separación): los botones se
     pisaban. Se sube por encima de ella. */
  #flusso-widget-btn{bottom:92px !important}
}

/* Objetivos táctiles: varios botones quedaban en 37px de alto. El mínimo
   recomendado para el pulgar es 44-48px. */
@media (max-width: 768px){
  .coupon-cta,.btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center}
}

/* ── Imagen principal del artículo ───────────────────────────────────────────
   Las imágenes existían solo en Open Graph: se veían al compartir el enlace pero
   NO dentro del artículo. width/height explícitos para que el navegador reserve
   el espacio y el texto no salte cuando la imagen termina de cargar (CLS). */
.article-hero-img{display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;
  border-radius:14px;margin:0 0 32px;background:#EEF2F7}

/* ── Salto al contenido (accesibilidad) ──────────────────────────────────────
   Quien navega con teclado o lector de pantalla tenía que recorrer todo el menú
   en CADA página antes de llegar al contenido. Este enlace es el primer foco de
   la página: invisible hasta que se tabula, y entonces aparece. */
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;background:var(--ink);color:#fff;
  padding:12px 20px;border-radius:0 0 10px 0;font-weight:700;font-size:14px;text-decoration:none}
.skip-link:focus{left:0}
/* Foco visible y consistente: sin esto, quien navega con teclado no sabe dónde está. */
a:focus-visible,button:focus-visible{outline:3px solid var(--gold);outline-offset:2px;border-radius:4px}

/* ── El documento debe ocupar SIEMPRE el ancho del dispositivo ───────────────
   Se detectó que la página se maquetaba a 375px dentro de una ventana de 446px:
   quedaba una franja muerta a la derecha y la barra inferior fija (que se
   posiciona contra la ventana, no contra el contenido) sobresalía del resto.
   Esto lo fuerza a coincidir en cualquier ancho de pantalla. */
html{width:100%;max-width:100%;overflow-x:hidden}
body{width:100%;max-width:100%;min-width:0;overflow-x:hidden;position:relative}
/* Ningún bloque puede ser más ancho que su contenedor. */
img,video,iframe,table{max-width:100%}
.wrap{box-sizing:border-box}

/* ── Páginas de servicio ─────────────────────────────────────────────────────
   Estructura de lectura: intro, lo que incluye, cómo trabajamos y cierre. */
.svc{padding:64px 0 88px;background:#fff}
.svc .wrap{max-width:860px}
.svc h2{font-family:var(--display);font-weight:900;font-size:clamp(26px,3.4vw,36px);letter-spacing:-.03em;color:var(--ink);margin:48px 0 16px}
.svc h2:first-of-type{margin-top:0}
.svc h3{font-family:var(--display);font-weight:800;font-size:18px;color:var(--ink);margin:28px 0 8px}
.svc p,.svc li{font-size:16.5px;line-height:1.75;color:var(--slate)}
.svc p{margin-bottom:16px}
.svc ul{margin:0 0 20px 22px}.svc li{margin-bottom:9px}
.svc strong{color:var(--ink);font-weight:700}
.svc-grid{display:grid;gap:16px;margin:24px 0 32px}
@media(min-width:700px){.svc-grid{grid-template-columns:1fr 1fr}}
.svc-card{border:1px solid rgba(10,14,26,.1);border-radius:12px;padding:20px 22px;background:#F7F9FC}
.svc-card h3{margin:0 0 6px;font-size:16px}
.svc-card p{font-size:14.5px;margin:0;line-height:1.65}
.svc-note{background:#FFFBEB;border:1px solid #FDE68A;border-radius:12px;padding:18px 22px;margin:24px 0}
.svc-note p{margin:0;color:#78350F;font-size:15.5px}
.svc-cta{background:var(--ink);border-radius:16px;padding:32px 34px;margin-top:52px;text-align:center}
.svc-cta h2{color:#fff;margin:0 0 10px;font-size:26px}
.svc-cta p{color:rgba(255,255,255,.75);margin-bottom:22px}
.svc-cta .btn-red{background:var(--red);color:#fff;padding:15px 30px;border-radius:10px;font-weight:800;display:inline-block;text-decoration:none;min-height:48px}
.svc-cta .svc-cta-alt{display:block;margin-top:14px;color:var(--gold);font-size:14px}
.svc-areas{border-top:1px solid rgba(10,14,26,.08);margin-top:44px;padding-top:22px;font-size:14.5px;color:var(--slate)}
.svc-areas a{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px}
.svc-areas a.primary{color:var(--red);font-weight:800}

/* ── Selector de idioma ──────────────────────────────────────────────────────
   Va junto al teléfono en la barra de navegación. Discreto pero siempre visible:
   quien busca en español debe poder cambiar sin buscarlo. */
.lang-switch{display:inline-flex;align-items:center;gap:6px;margin-right:10px;
  font-family:var(--mono);font-size:12px;font-weight:600;letter-spacing:.06em;
  border:1.5px solid rgba(10,14,26,.14);border-radius:100px;padding:7px 12px;
  color:var(--slate);text-decoration:none;white-space:nowrap;min-height:38px;
  transition:border-color .2s,color .2s}
.lang-switch:hover{border-color:var(--navy);color:var(--navy)}
.lang-switch .flag{font-size:13px}
@media (max-width:520px){.lang-switch{padding:7px 10px;margin-right:6px}.lang-switch .lang-word{display:none}}

/* ── Tarjetas de servicio del home, ahora clickeables ────────────────────────
   Antes eran un <li> con una flecha decorativa y ningún enlace: parecían
   clickeables y no llevaban a ninguna parte. El <a> hereda el grid del <li>
   para que la maquetación no cambie. */
.service-link{display:grid;grid-template-columns:subgrid;grid-column:1 / -1;
  gap:inherit;align-items:start;text-decoration:none;color:inherit}
@supports not (grid-template-columns: subgrid){
  .service-link{display:contents}
}
.service-item:hover .service-arrow{background:var(--red);color:#fff;border-color:var(--red)}
.service-link:focus-visible{outline:3px solid var(--gold);outline-offset:4px;border-radius:8px}

/* Enlace "Ver detalle" al pie de cada bloque de la página de servicios: sin él,
   las 5 páginas de detalle solo eran alcanzables desde el pie de página. */
.service-more{display:inline-flex;align-items:center;gap:7px;margin-top:18px;
  font-family:var(--display);font-size:14px;font-weight:800;color:var(--navy);
  text-decoration:none;border-bottom:2px solid rgba(13,43,94,.18);padding-bottom:2px;
  transition:color .2s,border-color .2s;min-height:44px}
.service-more:hover{color:var(--red);border-color:var(--red)}

/* Foto real del dueño en la tarjeta del fundador (why-us): reemplaza el
   placeholder de iniciales "JL". z-index 0 la deja debajo de la textura
   diagonal (::before), del badge (z-3) y del pie de foto (z-2). */
.founder-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
}

/* Foto real en las tarjetas de "artículos relacionados" al pie de cada post.
   Antes solo mostraban un degradado con un glifo grande; la imagen de cada
   artículo ya existía en blog/img/, así que se usa esa. El degradado queda
   debajo como respaldo mientras la foto carga. */
.related-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.related-card-img .related-card-tag { z-index: 2; }
