/* ==========================================================
   A CUT ABOVE ROOFING — SHARED DESIGN SYSTEM
   v3.0 — Multi-page site
   ========================================================== */

:root {
  /* Palette pulled from the logo */
  --navy: #0a1f3d;
  --navy-deep: #061431;
  --navy-soft: #1a3358;
  --crimson: #c8162a;
  --crimson-deep: #9e1020;
  --crimson-soft: #e63946;
  --chrome: #8a95a5;
  --chrome-light: #d4d9e0;
  --ink: #0d1420;
  --slate: #4a5468;
  --gray: #7a8494;
  --cream: #fafbfc;
  --off-white: #f4f6f9;
  --warm-bg: #f7f4ee;
  --white: #ffffff;
  --line: rgba(10, 31, 61, 0.1);
  --line-strong: rgba(10, 31, 61, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', Georgia, serif; font-variation-settings: "SOFT" 50, "WONK" 0; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ TICKER ============ */
.ticker {
  background: var(--navy);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--crimson);
}
.ticker-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 50px; }
.ticker-track span::before {
  content: "◆";
  color: var(--crimson-soft);
  font-size: 8px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  padding: 16px 0;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img {
  height: 54px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--crimson); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.1;
}
.nav-phone .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--crimson);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.nav-phone .num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--crimson);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--crimson);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 0;
}
.btn:hover { border-color: var(--navy); }
.btn:hover::before { transform: translateY(0); }
.btn span { position: relative; z-index: 1; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-outline::before { background: var(--navy); }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline:hover span { color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost::before { background: var(--white); }
.btn-ghost:hover { border-color: var(--white); }
.btn-ghost:hover span { color: var(--navy); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light::before { background: var(--navy); }
.btn-light:hover { border-color: var(--navy); }
.btn-light:hover span { color: var(--white); }
.btn-dark-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-dark-outline::before { background: var(--white); }
.btn-dark-outline:hover { border-color: var(--white); }
.btn-dark-outline:hover span { color: var(--crimson); }

/* ============ EVERY TIME STAMP — Brand Motif ============ */
.every-time-stamp {
  width: 140px;
  height: 140px;
  position: relative;
  display: inline-block;
  color: var(--crimson);
}
.every-time-stamp svg {
  width: 100%;
  height: 100%;
  animation: stampRotate 30s linear infinite;
}
@keyframes stampRotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.every-time-stamp .center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--crimson);
  text-align: center;
}
.every-time-stamp .center::before {
  content: '✓';
  font-size: 28px;
  margin-bottom: 4px;
  font-style: normal;
}
@media (max-width: 640px) {
  .every-time-stamp { width: 100px; height: 100px; }
  .every-time-stamp .center { font-size: 16px; }
  .every-time-stamp .center::before { font-size: 22px; margin-bottom: 2px; }
}

/* ============ SECTION BASE ============ */
section { position: relative; }
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-bottom: 60px;
}
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--crimson);
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: "SOFT" 50, "WONK" 0;
  max-width: 820px;
}
.section-title .italic { font-style: italic; color: var(--crimson); font-weight: 400; }

/* ============ DRAWN ROOF DIVIDER ============ */
.roof-divider {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.roof-divider svg {
  width: 100%;
  max-width: 800px;
  height: 60px;
  color: var(--crimson);
}
.roof-divider svg path {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawRoof 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes drawRoof {
  to { stroke-dashoffset: 0; }
}

/* ============ MARQUEE OF LOCATIONS ============ */
.location-marquee {
  background: var(--warm-bg);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.location-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.location-marquee-track span::after {
  content: '✦';
  color: var(--crimson);
  font-size: 18px;
  font-style: normal;
}

/* ============ PAGE HEADER (for inner pages) ============ */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 22, 42, 0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200, 22, 42, 0.08), transparent 50%);
  pointer-events: none;
}
.page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.page-breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--crimson-soft); }
.page-breadcrumb .sep { color: var(--crimson-soft); }
.page-breadcrumb .current { color: var(--white); }

.page-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  font-variation-settings: "SOFT" 50, "WONK" 1;
  margin-bottom: 28px;
  max-width: 1100px;
}
.page-title .italic { font-style: italic; color: var(--crimson-soft); font-weight: 400; }
.page-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  font-weight: 300;
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 3px solid var(--crimson);
}
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 340px;
}
.footer-brand .license {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--crimson-soft);
  text-transform: uppercase;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson-soft);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--crimson-soft); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 20px;
}

/* ============ STICKY MOBILE CALL ============ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--crimson);
  color: var(--white);
  padding: 16px;
  text-align: center;
  text-decoration: none;
  z-index: 200;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(200, 22, 42, 0.5);
}

/* ============ FINAL CTA (used on multiple pages) ============ */
.final-cta {
  padding: 160px 0;
  background: var(--crimson);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 50%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.final-cta .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.final-cta .tag::before, .final-cta .tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 32px;
  font-variation-settings: "SOFT" 50, "WONK" 1;
}
.final-cta h2 .italic { font-style: italic; color: #ffd4d9; }
.final-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FADE-IN ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BRAND MARK CARDS (OC + GAF placeholder) ============ */
.brand-mark {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  text-align: center;
  line-height: 1.1;
  min-width: 90px;
}
.oc-mark .brand-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: #d6166a;
  letter-spacing: -0.01em;
}
.oc-mark .brand-cert {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
  font-weight: 600;
}
.gaf-mark {
  background: var(--navy);
  border-color: var(--navy);
}
.gaf-mark .brand-acronym {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.gaf-mark .brand-cert {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-weight: 600;
}

/* ============ CHATBOT WIDGET ============ */
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(200, 22, 42, 0.45), 0 4px 8px rgba(0,0,0,0.1);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.chat-btn:hover { transform: scale(1.08); background: var(--crimson-deep); }
.chat-btn .chat-icon-close { display: none; }
.chat-btn.open .chat-icon-open { display: none; }
.chat-btn.open .chat-icon-close { display: block; }
.chat-btn.open { background: var(--navy); }
.chat-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--crimson);
  opacity: 0.6;
  animation: chatPulse 2s ease-out infinite;
  pointer-events: none;
}
.chat-btn.open .chat-pulse { display: none; }
@keyframes chatPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.chat-panel {
  position: fixed;
  bottom: 110px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: 600px;
  height: 540px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(10, 31, 61, 0.25), 0 4px 12px rgba(0,0,0,0.1);
  z-index: 299;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  border: 1px solid var(--line);
}
.chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.chat-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
}
.chat-header-avatar::before {
  content: 'A';
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
}
.avatar-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--navy);
}
.chat-header-text { flex: 1; min-width: 0; }
.chat-header-name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.chat-header-status {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 6px;
  display: flex;
  transition: color 0.2s;
}
.chat-close:hover { color: var(--white); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  background: var(--off-white);
}
.chat-msg { margin-bottom: 14px; }
.chat-msg-bot { margin-right: 40px; }
.chat-msg-bubble {
  display: inline-block;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 4px 16px 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(10, 31, 61, 0.06);
  border: 1px solid var(--line);
}
.chat-msg-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-top: 6px;
  margin-left: 4px;
  text-transform: uppercase;
}
.chat-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding-left: 0;
  align-items: flex-start;
}
.chat-chip {
  background: var(--white);
  border: 1px solid var(--crimson);
  color: var(--crimson);
  padding: 10px 16px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.chat-chip:hover {
  background: var(--crimson);
  color: var(--white);
}

.chat-input-row {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
}
.chat-input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: 22px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--crimson); background: var(--white); }
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { background: var(--crimson-deep); }
.chat-footer {
  padding: 10px 16px;
  text-align: center;
  font-size: 11px;
  color: var(--gray);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.chat-footer a { color: var(--crimson); text-decoration: none; font-weight: 500; }

@media (max-width: 640px) {
  .chat-btn { bottom: 84px; right: 16px; width: 54px; height: 54px; }
  .chat-panel {
    bottom: 150px;
    right: 16px;
    left: 16px;
    width: auto;
    height: calc(100vh - 240px);
    max-height: 540px;
  }
  .sticky-call { padding: 14px; font-size: 12px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; gap: 16px; height: 64px; }
  .nav-brand img { height: 38px; }
  .nav-phone { display: none; }
  .section-inner, .footer-inner, .page-header-inner, .final-cta-inner { padding: 0 20px; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 36px;
  }
  .section-title { font-size: 32px !important; line-height: 1.05 !important; }
  .section-tag { font-size: 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .sticky-call { display: block; }
  body { padding-bottom: 72px; }
  .page-header { padding: 50px 0 40px; }
  .page-title { font-size: 38px !important; line-height: 1.05 !important; }
  .page-subtitle { font-size: 15px !important; }
  .final-cta { padding: 60px 0; }
  .final-cta h2 { font-size: 32px !important; line-height: 1.05 !important; }
  .final-cta-row { flex-direction: column; gap: 12px; }
  .final-cta-row .btn { width: 100%; justify-content: center; }
  /* Tame oversized headlines globally */
  h1, h2, h3 { word-break: break-word; }
  /* Mobile-tame ticker */
  .ticker { font-size: 10px; }
  /* Mobile-tame location marquee */
  .location-marquee { padding: 16px 0; }
  .location-marquee-track span { font-size: 14px; padding: 0 14px; }
}
