@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --red:        #9B0000;
  --red-mid:    #B91C1C;
  --red-hi:     #EF4444;
  --black:      #080808;
  --ink:        #111111;
  --ink2:       #1C1C1C;
  --chalk:      #F2EDE6;
  --chalk-dim:  #B0A89F;
  --gold:       #C9A84C;
  --cream-gold: #E8D5A3;
  --white:      #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--black);
  color: var(--chalk);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 8000;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,0,0,.22);
  transition: height .3s, border-color .3s;
}
.nav.scrolled { height: 62px; border-color: rgba(155,0,0,.48); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height .3s;
}
.nav.scrolled .nav-logo img { height: 44px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 3px;
  color: var(--chalk);
  line-height: 1;
}
.nav-logo-tag {
  font-size: .46rem;
  letter-spacing: 4px;
  color: var(--cream-gold);
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; color: var(--chalk-dim);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--red-mid); transition: width .3s;
}
.nav-links a:hover { color: var(--chalk); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 9px 22px !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-mid) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--chalk); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,30,32,.96) 0%,
    rgba(22,22,24,.94) 60%,
    rgba(16,16,18,.92) 100%
  );
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  flex-direction: column;
  gap: 0;
  z-index: 7990;
  padding: 8px 0 12px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(242,237,230,.8);
  transition: color .15s, background .15s, padding-left .15s;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--red-mid);
  margin: 6px 20px 4px;
  padding: 12px 20px;
  border: 1px solid rgba(155,0,0,.35);
  text-align: center;
  letter-spacing: 2.5px;
}
.mobile-menu a:hover { color: var(--chalk); background: rgba(255,255,255,.04); padding-left: 36px; }
.mobile-menu a:last-child:hover { background: rgba(155,0,0,.15); padding-left: 20px; color: var(--chalk); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 74px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(108deg, rgba(8,8,8,.86) 0%, rgba(8,8,8,.4) 52%, rgba(8,8,8,.88) 100%),
    url('https://images.unsplash.com/photo-1474511320723-9a56873867b5?w=1920&q=85') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 8% 55%, rgba(155,0,0,.18) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 52px 110px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: .62rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--cream-gold); font-weight: 500; margin-bottom: 22px;
  opacity: 0; animation: riseIn .7s .1s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--cream-gold); }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
  font-weight: 700; line-height: 1.0; color: var(--chalk); margin-bottom: 26px;
  opacity: 0; animation: riseIn .8s .2s forwards;
}
.hero-h1 em { font-style: italic; color: var(--red-mid); }
.hero-sub {
  max-width: 490px; color: var(--chalk-dim); font-size: 1rem;
  line-height: 1.85; margin-bottom: 38px;
  opacity: 0; animation: riseIn .8s .35s forwards;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: riseIn .8s .45s forwards; }

.hero-cards { display: flex; flex-direction: column; gap: 16px; opacity: 0; animation: riseIn .9s .55s forwards; }
.hero-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(155,0,0,.2);
  padding: 22px 26px; display: flex; align-items: center; gap: 22px;
  position: relative; overflow: hidden;
  transition: border-color .3s, background .3s;
}
.hero-card:hover { border-color: rgba(155,0,0,.48); background: rgba(155,0,0,.06); }
.hero-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); }
.hero-card-icon { width: 40px; height: 40px; border: 1px solid rgba(155,0,0,.32); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; letter-spacing: 2px; color: var(--chalk); line-height: 1; }
.hero-card-label { font-size: .63rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--chalk-dim); margin-top: 3px; }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: none; border: none; padding: 12px 20px;
  cursor: pointer; color: rgba(242,237,230,.55);
  font-size: .52rem; letter-spacing: 3px; text-transform: uppercase;
  transition: color .25s;
  z-index: 3;
}
.scroll-cue:hover { color: var(--cream-gold); }
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(232,213,163,.5));
}
.scroll-cue-chevron {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.scroll-cue-chevron span {
  display: block;
  width: 12px; height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: chevronDrop 1.6s ease-in-out infinite;
}
.scroll-cue-chevron span:nth-child(2) { animation-delay: .2s; opacity: .6; }
@keyframes chevronDrop {
  0%,100% { opacity: .4; transform: rotate(45deg) translateY(-3px); }
  50%      { opacity: 1;  transform: rotate(45deg) translateY(3px); }
}

/* ── TICKER ── */
.ticker { background: var(--red); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 28px; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 4px; color: rgba(255,255,255,.88); flex-shrink: 0; }
.ticker-dot { width: 3px; height: 3px; background: rgba(255,255,255,.4); border-radius: 50%; }

/* ── SECTION SCAFFOLDING ── */
.section { padding: 104px 52px; max-width: 1280px; margin: 0 auto; }
.section-full { padding: 104px 52px; }
.section-dark  { background: var(--ink); }
.section-dark2 { background: var(--ink2); }
.section-black { background: var(--black); }

.eyebrow { display: flex; align-items: center; gap: 12px; font-size: .6rem; letter-spacing: 5px; text-transform: uppercase; color: var(--cream-gold); font-weight: 500; margin-bottom: 14px; }
.eyebrow::before { content: ''; display: block; width: 26px; height: 1px; background: var(--cream-gold); }
.heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.1rem, 4vw, 3.7rem); font-weight: 700; line-height: 1.08; color: var(--chalk); margin-bottom: 20px; }
.heading em { font-style: italic; color: var(--red-mid); }
.body-text { color: var(--chalk-dim); font-size: .95rem; line-height: 1.88; max-width: 580px; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: .7rem; letter-spacing: 2.5px; text-transform: uppercase; padding: 15px 34px; border: none; cursor: pointer; transition: all .25s; position: relative; overflow: hidden; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red::before { content: ''; position: absolute; inset: 0; background: var(--red-mid); transform: translateX(-100%); transition: transform .3s; }
.btn-red:hover::before { transform: translateX(0); }
.btn-red span { position: relative; z-index: 1; }
.btn-ghost { background: transparent; color: var(--chalk); border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.04); }
.btn-white { background: var(--chalk); color: var(--red); }
.btn-white:hover { background: var(--white); }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.08); transition: transform .9s ease; }
.about-img:hover img { transform: scale(1.03); }
.about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,8,8,.04) 55%, var(--ink) 100%); }
.about-copy { background: var(--ink); padding: 68px 58px; display: flex; flex-direction: column; justify-content: center; }
.about-copy .body-text { margin-bottom: 16px; }
.credential-pill { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; padding: 10px 20px; border: 1px solid rgba(201,168,76,.3); color: var(--cream-gold); font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; width: fit-content; }
.credential-pill::before { content: ''; display: block; width: 7px; height: 7px; background: var(--cream-gold); border-radius: 50%; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 2px; margin-top: 56px; background: rgba(155,0,0,.1); border: 1px solid rgba(155,0,0,.1); }
.svc-card {
  background: var(--ink);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: background .35s ease, box-shadow .35s ease, transform .25s ease;
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red) 0%, #7a0000 100%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cream-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: 1;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(155,0,0,.35), 0 4px 16px rgba(0,0,0,.4);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after { transform: scaleX(1); }

/* all child content sits above the pseudo bg */
.svc-card > * { position: relative; z-index: 2; }

.svc-icon-box {
  width: 44px; height: 44px;
  border: 1px solid rgba(155,0,0,.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: border-color .35s, background .35s;
}
.svc-card:hover .svc-icon-box {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
}
.svc-icon-box svg { width: 22px; height: 22px; transition: filter .35s; }
.svc-card:hover .svc-icon-box svg { filter: brightness(0) invert(1); }

.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem; font-weight: 700;
  color: var(--chalk); margin-bottom: 10px; line-height: 1.2;
  transition: color .35s;
}
.svc-card:hover .svc-name { color: var(--white); }

.svc-desc {
  font-size: .85rem; color: var(--chalk-dim); line-height: 1.78;
  transition: color .35s;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,.8); }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cream-gold); font-weight: 700;
  transition: color .35s, gap .25s;
}
.svc-card:hover .svc-link { color: var(--white); gap: 10px; }
.svc-link:hover { color: var(--chalk); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card {
  background: linear-gradient(145deg, rgba(232,213,163,.07) 0%, rgba(232,213,163,.03) 100%);
  border: 1px solid rgba(232,213,163,.18);
  padding: 40px 34px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s ease, background .4s ease, transform .3s ease, box-shadow .4s ease;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cream-gold), transparent);
  opacity: 0;
  transition: opacity .4s ease;
}
.testi-card:hover {
  background: linear-gradient(145deg, rgba(232,213,163,.13) 0%, rgba(232,213,163,.06) 100%);
  border-color: rgba(232,213,163,.38);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(232,213,163,.1);
}
.testi-card:hover::before { opacity: 1; }

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: .75;
  color: var(--cream-gold);
  opacity: .22;
  margin-bottom: -4px;
  display: block;
}
.testi-stars {
  color: var(--red-mid);
  letter-spacing: 4px;
  font-size: .78rem;
  margin-bottom: 16px;
  display: block;
}
.testi-text {
  font-size: .88rem;
  color: var(--chalk-dim);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(232,213,163,.1);
  padding-bottom: 24px;
}
.testi-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--chalk);
  letter-spacing: .5px;
}
.testi-loc {
  font-size: .58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-top: 5px;
  opacity: .75;
}

/* ── CTA BAND ── */
.cta-band { background: var(--red); padding: 76px 52px; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position: relative; max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 700; color: var(--white); line-height: 1.1; }
.cta-sub { color: rgba(255,255,255,.72); margin-top: 10px; font-size: .95rem; }
.cta-right { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta-phone { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 3px; color: var(--white); transition: opacity .2s; }
.cta-phone:hover { opacity: .8; }

/* ── AREAS ── */
.areas-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 52px; }
.area-col h3 { font-family: 'Bebas Neue', sans-serif; font-size: .95rem; letter-spacing: 4px; color: var(--cream-gold); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,.25); }
.area-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.area-list li { color: var(--chalk-dim); font-size: .9rem; display: flex; align-items: center; gap: 12px; }
.area-list li::before { content: '—'; color: var(--red); font-size: .7rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { margin-top: 74px; min-height: 44vh; display: flex; align-items: flex-end; padding-bottom: 60px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(25%) contrast(1.05); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,8,8,.42) 0%, rgba(8,8,8,.9) 100%); }
.page-hero-overlay::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 90% at 0% 100%, rgba(155,0,0,.18) 0%, transparent 55%); }
.page-hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 52px; width: 100%; }
.page-hero-content .heading { font-size: clamp(2.5rem, 5.5vw, 4.8rem); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: 80px; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--chalk-dim); margin-bottom: 8px; }
.form-field { width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); color: var(--chalk); padding: 14px 16px; font-family: 'DM Sans', sans-serif; font-size: .92rem; outline: none; transition: border-color .2s, background .2s; -webkit-appearance: none; border-radius: 0; }
.form-field::placeholder { color: rgba(176,168,159,.38); }
.form-field:focus { border-color: var(--red-mid); background: rgba(155,0,0,.05); }
.form-field option { background: var(--ink); }
textarea.form-field { min-height: 135px; resize: vertical; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.check-item { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.check-item input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--red); flex-shrink: 0; }
.check-item span { font-size: .82rem; color: var(--chalk-dim); }
.submit-btn { width: 100%; padding: 18px; font-size: .75rem; letter-spacing: 2.5px; margin-top: 6px; }
.form-note { text-align: center; color: rgba(176,168,159,.45); font-size: .72rem; margin-top: 14px; line-height: 1.65; }
.form-note a { color: var(--red-mid); }
.urgency-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.3); padding: 8px 18px; font-size: .62rem; letter-spacing: 2.5px; text-transform: uppercase; color: #4ade80; font-weight: 700; margin-bottom: 28px; animation: pulse-badge 2.8s ease-in-out infinite; }
.urgency-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: blink 1.3s ease-in-out infinite; box-shadow: 0 0 6px #22c55e; }
@keyframes pulse-badge { 0%,100%{ opacity:1; } 50%{ opacity:.65; } }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:.15; } }
.contact-detail { border-left: 2px solid var(--red); padding: 18px 22px; background: rgba(155,0,0,.05); margin-bottom: 12px; transition: background .3s; }
.contact-detail:hover { background: rgba(155,0,0,.1); }
.detail-label { font-size: .56rem; letter-spacing: 4px; text-transform: uppercase; color: var(--cream-gold); font-weight: 700; margin-bottom: 5px; }
.detail-val { color: var(--chalk); font-size: .95rem; }
.detail-val a { transition: color .2s; }
.detail-val a:hover { color: var(--red-mid); }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: .7rem; color: var(--chalk-dim); }
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-badge strong { color: var(--chalk); }

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.value-card { border: 1px solid rgba(155,0,0,.16); padding: 38px 30px; text-align: center; transition: border-color .3s, background .3s; }
.value-card:hover { border-color: rgba(155,0,0,.45); background: rgba(155,0,0,.04); }
.value-icon-box { width: 48px; height: 48px; border: 1px solid rgba(155,0,0,.26); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-icon-box svg { width: 24px; height: 24px; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.28rem; font-weight: 700; color: var(--chalk); margin-bottom: 10px; }
.value-desc { font-size: .85rem; color: var(--chalk-dim); line-height: 1.78; }

/* ── RATINGS ── */
.rating-summary { display: flex; align-items: center; gap: 52px; margin-bottom: 56px; flex-wrap: wrap; }
.rating-big-num { font-family: 'Bebas Neue', sans-serif; font-size: 6.5rem; color: var(--chalk); line-height: 1; }
.rating-stars-lg { color: var(--red-mid); font-size: 1.3rem; letter-spacing: 4px; }
.rating-label { color: var(--cream-gold); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; margin-top: 6px; }
.rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 10px; }
.rbar { display: flex; align-items: center; gap: 14px; }
.rbar-stars { color: var(--red-mid); font-size: .74rem; width: 72px; flex-shrink: 0; }
.rbar-track { flex: 1; height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.rbar-fill { height: 100%; background: var(--red); border-radius: 2px; }
.rbar-pct { color: var(--chalk-dim); font-size: .72rem; width: 32px; text-align: right; flex-shrink: 0; }

/* ── FOOTER ── */
.footer { background: var(--ink); border-top: 1px solid rgba(155,0,0,.22); padding: 68px 52px 32px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 28px; }
.footer-logo img { height: 70px; width: auto; object-fit: contain; }
.footer-brand p { color: var(--chalk-dim); font-size: .87rem; line-height: 1.82; margin-top: 16px; max-width: 300px; }
.footer-col-title { font-family: 'Bebas Neue', sans-serif; font-size: .92rem; letter-spacing: 4px; color: var(--cream-gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: var(--chalk-dim); font-size: .87rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--red-mid); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; color: var(--chalk-dim); font-size: .87rem; margin-bottom: 11px; }
.footer-contact-row a { color: var(--chalk-dim); transition: color .2s; }
.footer-contact-row a:hover { color: var(--red-mid); }
.footer-bottom { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.2); font-size: .7rem; letter-spacing: 1px; flex-wrap: wrap; gap: 8px; }

/* ── ANIMATIONS ── */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* ── RESPONSIVE ── */
/* ── TABLET ── */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 28px 80px; gap: 36px; }
  .hero-h1 { font-size: clamp(3rem, 8vw, 5rem); }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 140px; }
  .about-split { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .about-copy { padding: 48px 36px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 64px; }
  .nav.scrolled { height: 56px; }
  .nav-logo-img { height: 48px; }
  .nav.scrolled .nav-logo-img { height: 40px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* hero — full bleed image, shorter on mobile */
  .hero { min-height: 100svh; }
  .hero-bg {
    background-position: 65% center;
    background:
      linear-gradient(to bottom, rgba(8,8,8,.7) 0%, rgba(8,8,8,.5) 40%, rgba(8,8,8,.88) 100%),
      url('https://images.unsplash.com/photo-1474511320723-9a56873867b5?w=1000&q=80') 65% center / cover no-repeat;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 24px 90px;
    gap: 28px;
    padding-top: calc(64px + 28px);
  }
  .hero-h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); line-height: 1.0; margin-bottom: 18px; }
  .hero-sub { font-size: .92rem; margin-bottom: 28px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 16px 20px; }
  .hero-cards { flex-direction: column; gap: 10px; }
  .hero-card { padding: 16px 18px; gap: 14px; }
  .hero-card-num { font-size: 1.9rem; }

  /* scroll cue — bigger tap target on mobile */
  .scroll-cue { bottom: 20px; }
  .scroll-cue-line { height: 36px; }

  /* sections */
  .section { padding: 56px 20px; }
  .section-full { padding: 56px 20px; }
  .cta-band { padding: 48px 20px; }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-right { align-items: flex-start; width: 100%; }
  .cta-right .btn-white { width: 100%; text-align: center; padding: 16px; }
  .cta-phone { font-size: 2rem; }
  .cta-heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* about */
  .about-split { grid-template-columns: 1fr; }
  .about-img { min-height: 260px; }
  .about-copy { padding: 40px 20px; }
  .about-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--ink) 100%); }

  /* services */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .svc-card { padding: 28px 24px; }

  /* testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 28px 22px; }
  .rating-summary { gap: 20px; }
  .rating-big-num { font-size: 5rem; }

  /* areas */
  .areas-cols { grid-template-columns: 1fr; gap: 28px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 44px 20px 100px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; font-size: .65rem; }
  .footer-logo-img { height: 60px; }

  /* page hero */
  .page-hero { min-height: 35vh; padding-bottom: 40px; }
  .page-hero-content { padding: 0 20px; }
  .page-hero-content .heading { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* headings */
  .heading { font-size: clamp(1.8rem, 8vw, 3rem); }

  /* sidebar tab — right side pop-out square on mobile */
  .sidebar-tab {
    writing-mode: horizontal-tb !important;
    rotate: 0deg !important;
    left: auto !important;
    right: 0 !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    border-radius: 8px 0 0 8px !important;
    padding: 14px 12px !important;
    flex-direction: column !important;
    gap: 8px !important;
    font-size: .56rem !important;
    letter-spacing: 2px !important;
    box-shadow: -4px 0 20px rgba(155,0,0,.5) !important;
  }
  .sidebar-tab .tab-icon { rotate: 0deg !important; width: 18px !important; height: 18px !important; }
  .sidebar-tab .tab-label { writing-mode: vertical-rl; text-orientation: mixed; rotate: 180deg; letter-spacing: 2.5px; font-size: .55rem; }

  .sidebar { width: 92vw; max-width: 380px; border-right: none; border-top: none; border-left: 1px solid rgba(232,213,163,.15); left: auto; right: 0; transform: translateX(100%); }
  .sidebar.open { transform: translateX(0); }

  .mobile-menu { top: 64px; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 390px) {
  .hero-h1 { font-size: 2.6rem; }
  .hero-actions .btn { font-size: .65rem; padding: 14px 16px; }
  .hero-card-num { font-size: 1.7rem; }
  .svc-name { font-size: 1.15rem; }
}

/* ════════════════════════════════
   NAV LOGO — REAL IMAGE
════════════════════════════════ */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  transition: height .3s, opacity .2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.nav.scrolled .nav-logo-img { height: 48px; }
.nav-logo:hover .nav-logo-img { opacity: .88; }

/* footer logo */
.footer-logo { margin-bottom: 4px; }
.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.5));
  opacity: .92;
}

/* ════════════════════════════════
   FIXED SIDEBAR — LEFT SIDE
════════════════════════════════ */
.sidebar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 8500;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.sidebar-overlay.active { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-right: 1px solid rgba(232,213,163,.18);
  z-index: 8600;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: 20px 0 80px rgba(0,0,0,.7);
}
.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  padding: 30px 28px 22px;
  border-bottom: 1px solid rgba(232,213,163,.12);
  flex-shrink: 0;
  background: rgba(155,0,0,.08);
}
.sidebar-eyebrow {
  font-size: .58rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--cream-gold); font-weight: 500; margin-bottom: 5px;
}
.sidebar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--chalk); line-height: 1.1;
}
.sidebar-close {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: var(--chalk-dim); cursor: pointer;
  width: 36px; height: 36px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  transition: background .2s, color .2s;
}
.sidebar-close:hover { background: rgba(155,0,0,.4); color: var(--chalk); }

.sidebar-body {
  flex: 1; overflow-y: auto; padding: 26px 28px 36px;
  scrollbar-width: thin; scrollbar-color: rgba(155,0,0,.4) transparent;
}
.sidebar-body::-webkit-scrollbar { width: 4px; }
.sidebar-body::-webkit-scrollbar-track { background: transparent; }
.sidebar-body::-webkit-scrollbar-thumb { background: rgba(155,0,0,.4); border-radius: 2px; }
.sidebar-body .form-group { margin-bottom: 14px; }
.sidebar-body .form-label { margin-bottom: 6px; font-size: .58rem; }
.sidebar-body .form-field { padding: 12px 14px; font-size: .88rem; }

/* ── SIDEBAR TAB — LEFT SIDE DESKTOP, RIGHT SIDE MOBILE ── */
.sidebar-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  rotate: 180deg;
  background: linear-gradient(to top, var(--red) 0%, #c0392b 100%);
  color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 32px 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .7rem;
  letter-spacing: 3.5px; text-transform: uppercase;
  z-index: 8400;
  border-radius: 0 8px 8px 0;
  box-shadow: 5px 0 30px rgba(155,0,0,.5), 3px 0 10px rgba(0,0,0,.5);
  white-space: nowrap;
  transition: background .25s, padding .25s, box-shadow .25s, opacity .3s;
}
.sidebar-tab:hover {
  background: linear-gradient(to top, var(--red-mid) 0%, #e74c3c 100%);
  padding: 32px 19px;
  box-shadow: 8px 0 40px rgba(155,0,0,.65), 4px 0 14px rgba(0,0,0,.6);
}
.sidebar-tab .tab-icon { flex-shrink: 0; width: 16px; height: 16px; }
.sidebar-tab .tab-label { letter-spacing: 3px; }
.sidebar.open ~ .sidebar-tab { opacity: 0; pointer-events: none; }

/* ── HAMBURGER PAGE OVERLAY ── */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.0);
  z-index: 7980;
  backdrop-filter: blur(0px);
  transition: background .4s ease, backdrop-filter .4s ease;
}
.mobile-menu-overlay.active {
  display: block;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
}

/* ════════════════════════════════
   PHONE / CALL STYLES
════════════════════════════════ */

/* Nav phone link */
.nav-phone {
  display: flex !important;
  align-items: center;
  color: var(--cream-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  font-size: .72rem !important;
  transition: color .2s, opacity .2s !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white) !important; opacity: 1 !important; }
.nav-phone::after { display: none !important; }

/* Hero call button — primary CTA */
.btn-call {
  background: var(--white);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,255,255,.15);
}
.btn-call:hover {
  background: var(--chalk);
  box-shadow: 0 6px 30px rgba(255,255,255,.25);
}
.btn-call span { position: relative; z-index: 1; }

/* Hero tag under buttons */
.hero-call-tag {
  margin-top: 14px;
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,213,163,.55);
  opacity: 0;
  animation: riseIn .8s .55s forwards;
}

/* Service card "or call" micro link */
.svc-call {
  display: block;
  margin-top: 6px;
  font-size: .65rem;
  color: rgba(176,168,159,.45);
  letter-spacing: .5px;
  transition: color .25s;
  text-decoration: none;
}
.svc-card:hover .svc-call { color: rgba(255,255,255,.5); }
.svc-call:hover { color: var(--cream-gold) !important; }

/* CTA band phone number */
.cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--white);
  transition: opacity .2s, letter-spacing .2s;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.cta-phone:hover { opacity: .85; letter-spacing: 3px; }

/* Mobile menu call link */
.mobile-call-link {
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 14px 28px !important;
  margin: 4px 20px 8px !important;
  border-radius: 2px;
  font-size: .75rem !important;
  letter-spacing: 2px !important;
  justify-content: center;
  display: flex !important;
  align-items: center;
}
.mobile-call-link:hover { background: var(--red-mid) !important; padding-left: 28px !important; }

/* ════════════════════════════════
   STICKY BOTTOM CALL BAR (mobile)
════════════════════════════════ */
.sticky-call-bar {
  display: none; /* desktop: hidden */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--black);
  border-top: 2px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,.6);
}
.sticky-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: background .2s;
}
.sticky-call-btn:hover { background: var(--red-mid); }
.sticky-call-label {
  font-size: .58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1;
}
.sticky-call-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-top: 2px;
}
.sticky-form-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 20px;
  background: var(--ink2);
  color: var(--chalk-dim);
  text-decoration: none;
  font-size: .56rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,.06);
  min-width: 72px;
  transition: background .2s, color .2s;
}
.sticky-form-btn:hover { background: var(--ink); color: var(--chalk); }

@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
    align-items: stretch;
  }
  /* push footer above sticky bar */
  .footer { padding-bottom: 80px; }
  /* ensure sidebar tab doesn't clash */
  .sidebar-tab { bottom: 70px !important; top: auto !important; transform: none !important; }
}


/* ════════════════════════════════
   LAUNCH POPUP
════════════════════════════════ */
.launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4,4,4,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
  transition: opacity .6s ease, visibility .6s;
}
.launch-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.launch-modal {
  background: var(--ink);
  border: 1px solid rgba(232,213,163,.18);
  max-width: 460px;
  width: 100%;
  padding: 48px 44px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 0 1px rgba(155,0,0,.15);
  animation: modalIn .5s cubic-bezier(.2,0,.2,1) forwards;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* top red accent line */
.launch-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), var(--cream-gold), var(--red), transparent);
}

.launch-logo-wrap {
  margin: 0 auto 20px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(155,0,0,.3));
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,0,0,.12);
  border: 1px solid rgba(155,0,0,.35);
  color: var(--cream-gold);
  font-size: .58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.launch-badge-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px #22c55e;
  animation: blink 1.3s ease-in-out infinite;
}

/* Countdown timer */
.launch-countdown-label {
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-bottom: 18px;
  opacity: .8;
}

.launch-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(155,0,0,.1);
  border: 1px solid rgba(155,0,0,.25);
  padding: 14px 18px 10px;
  min-width: 78px;
}

.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--chalk);
  line-height: 1;
  letter-spacing: 2px;
  transition: color .3s;
}

.countdown-num.tick { color: var(--red-mid); }

.countdown-unit {
  font-size: .5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-top: 5px;
  opacity: .7;
}

.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red-mid);
  opacity: .5;
  margin-bottom: 14px;
  line-height: 1;
}

.launch-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.1;
  margin-bottom: 8px;
}

.launch-sub {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-bottom: 22px;
}

.launch-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,213,163,.4), transparent);
  margin: 0 auto 20px;
}

.launch-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--chalk-dim);
  margin-bottom: 28px;
  font-style: normal;
}
.launch-tagline em { font-style: italic; color: var(--red-mid); }

.launch-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 16px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(155,0,0,.35);
  animation: callPulse 2.5s ease-in-out infinite;
}
.launch-call:hover {
  background: var(--red-mid);
  box-shadow: 0 6px 28px rgba(155,0,0,.5);
  animation: none;
}
@keyframes callPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(155,0,0,.35); }
  50%      { box-shadow: 0 4px 36px rgba(155,0,0,.65); }
}

/* launch-enter removed */

.launch-note {
  font-size: .6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(176,168,159,.35);
}

/* ════════════════════════════════
   MOBILE: CALL-ONLY OPTIMIZATIONS
════════════════════════════════ */
@media (max-width: 768px) {
  /* Hide form button in hero on mobile — call is primary */
  .hero-actions .btn-ghost { display: none; }

  /* Make call button full width on mobile */
  .hero-actions .btn-call {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: .78rem;
  }

  /* Hide sidebar form trigger tab on mobile — sticky bar handles it */
  .sidebar-tab { display: none !important; }

  /* Sticky call bar always visible on mobile */
  .sticky-call-bar { display: flex !important; }

  /* Nav phone — show on mobile (hide text on very small screens) */
  .nav-phone { display: none !important; }

  /* Launch modal tighter on mobile */
  .launch-modal { padding: 36px 28px 32px; }
  .launch-title { font-size: 2rem; }
  .launch-logo-wrap { width: 100px; height: 100px; }
  .launch-call { font-size: 1.3rem; }

  /* Remove any popup/tooltip that might appear on form elements */
  input, select, textarea, button {
    -webkit-tap-highlight-color: transparent;
  }

  /* Make ALL phone links obviously tappable on mobile */
  a[href^="tel"] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    min-width: 44px;
  }
}


/* ════════════════════════════════
   HERO CALL BLOCK
════════════════════════════════ */
.hero-call-block {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--red);
  padding: 18px 24px;
  text-decoration: none;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 32px rgba(155,0,0,.4);
  animation: callPulse 2.5s ease-in-out infinite;
}
.hero-call-block:hover {
  background: var(--red-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(155,0,0,.55);
  animation: none;
}
.hero-call-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-call-text { display: flex; flex-direction: column; flex: 1; }
.hero-call-label {
  font-size: .6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 3px;
}
.hero-call-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.hero-call-arrow {
  font-size: 2.5rem;
  color: rgba(255,255,255,.4);
  line-height: 1;
}

.hero-secondary {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn .8s .55s forwards;
}
.hero-divider {
  color: var(--chalk-dim);
  font-size: .75rem;
  opacity: .5;
}

/* ════════════════════════════════
   CALL BAND (below ticker)
════════════════════════════════ */
.call-band {
  background: var(--ink2);
  border-top: 1px solid rgba(155,0,0,.2);
  border-bottom: 1px solid rgba(155,0,0,.2);
  padding: 20px 52px;
}
.call-band-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.call-band-left { display: flex; align-items: center; gap: 16px; }
.call-band-pulse {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.4);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.call-band-tag {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 3px;
}
.call-band-main {
  color: var(--chalk-dim);
  font-size: .92rem;
}
.call-band-main strong { color: var(--chalk); }
.call-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(155,0,0,.3);
}
.call-band-btn:hover { background: var(--red-mid); box-shadow: 0 4px 24px rgba(155,0,0,.5); }

/* ════════════════════════════════
   MID-SERVICE CALL CTA
════════════════════════════════ */
.mid-cta {
  margin-top: 48px;
  background: rgba(155,0,0,.08);
  border: 1px solid rgba(155,0,0,.25);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta-label {
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-bottom: 6px;
}
.mid-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chalk);
}
.mid-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(155,0,0,.35);
}
.mid-cta-btn:hover { background: var(--red-mid); }

/* ════════════════════════════════
   ABOUT CALL LINK
════════════════════════════════ */
.about-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--cream-gold);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color .2s, gap .2s;
  border-bottom: 1px solid rgba(232,213,163,.25);
  padding-bottom: 4px;
}
.about-call:hover { color: var(--chalk); gap: 14px; border-color: rgba(242,237,230,.4); }

/* ════════════════════════════════
   BIG CALL CTA SECTION
════════════════════════════════ */
.big-call-cta {
  background: var(--black);
  padding: 96px 52px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(155,0,0,.2);
  border-bottom: 1px solid rgba(155,0,0,.2);
}
.big-call-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(155,0,0,.07) 0%, transparent 70%);
}
.big-call-inner { position: relative; max-width: 640px; margin: 0 auto; }
.big-call-eyebrow {
  font-size: .62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream-gold);
  margin-bottom: 16px;
}
.big-call-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.0;
  margin-bottom: 20px;
}
.big-call-sub {
  color: var(--chalk-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.big-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 22px 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 40px rgba(155,0,0,.45);
  animation: callPulse 2.5s ease-in-out infinite;
}
.big-call-btn:hover {
  background: var(--red-mid);
  transform: translateY(-3px);
  box-shadow: 0 14px 50px rgba(155,0,0,.6);
  animation: none;
}
.big-call-alt {
  color: var(--chalk-dim);
  font-size: .82rem;
  margin-top: 20px;
}
.big-call-areas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: .65rem;
  letter-spacing: 1.5px;
  color: rgba(176,168,159,.4);
  text-transform: uppercase;
}

/* ════════════════════════════════
   FOOTER PHONE LINK
════════════════════════════════ */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--cream-gold);
  text-decoration: none;
  transition: color .2s;
}
.footer-phone:hover { color: var(--white); }

/* ════════════════════════════════
   MOBILE OVERRIDES FOR CALL ELEMENTS
════════════════════════════════ */
@media (max-width: 768px) {
  .hero-call-block { padding: 16px 18px; gap: 14px; }
  .hero-call-icon { width: 44px; height: 44px; }
  .hero-call-num { font-size: 1.6rem; }
  .hero-secondary { justify-content: center; }
  .hero-secondary .btn { flex: 1; text-align: center; }

  .call-band { padding: 18px 20px; }
  .call-band-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .call-band-btn { width: 100%; justify-content: center; font-size: 1.2rem; }

  .mid-cta { flex-direction: column; padding: 24px 20px; }
  .mid-cta-btn { width: 100%; justify-content: center; }

  .big-call-cta { padding: 72px 20px; }
  .big-call-btn { width: 100%; font-size: 1.8rem; padding: 18px 24px; }
  .big-call-areas { gap: 6px; }
}

