/* RINELLI SERVICES - Shared Styles */

:root {
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-warm: #1F1B17;
  --orange: #F26C1F;
  --orange-bright: #FF8838;
  --orange-deep: #D9591A;
  --cream: #F9F5EE;
  --steel: #2A2724;
  --steel-light: #3D3833;
  --gray: #8A847C;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

.font-display { font-family: 'Big Shoulders Display', sans-serif; letter-spacing: -0.01em; }
.font-archivo { font-family: 'Archivo', sans-serif; }

/* === INTRO LOADER === */
.intro-loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.intro-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 70%);
          mask-image: radial-gradient(circle at center, black 20%, transparent 70%);
}
.intro-logo {
  width: 240px; height: 240px;
  opacity: 0; transform: scale(0.3);
  filter: drop-shadow(0 0 50px rgba(242,108,31,0.5));
}
.intro-rings {
  position: absolute;
  width: 600px; height: 600px;
  border: 1px solid rgba(242,108,31,0.15);
  border-radius: 50%;
  opacity: 0;
}
.intro-rings.r2 { width: 800px; height: 800px; border-color: rgba(242,108,31,0.08); }
.intro-rings.r3 { width: 1000px; height: 1000px; border-color: rgba(242,108,31,0.04); }
.intro-slogan {
  position: absolute;
  bottom: 18%;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  text-align: center;
  opacity: 0;
  padding: 0 1rem;
}
.intro-slogan .accent { color: var(--orange-bright); }
.intro-progress {
  position: absolute;
  bottom: 8%;
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.intro-progress::after {
  content: ''; display: block;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-bright) 50%, var(--orange) 100%);
  transform: translateX(-100%);
  animation: progress 2.6s ease-in-out forwards;
}
@keyframes progress { to { transform: translateX(0); } }

/* === NAVIGATION === */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s ease;
  padding: 1.5rem 0;
}
.nav-wrap.solid {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(242,108,31,0.15);
}
.nav-wrap.always-solid {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242,108,31,0.15);
}
.nav-link {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--orange-bright);
  transition: width 0.35s ease;
}
.nav-link:hover, .nav-link.active { color: var(--orange-bright); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--orange);
  color: white;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid var(--orange);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange-bright);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(242,108,31,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent;
  color: var(--cream);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid rgba(249,245,238,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.btn-ghost.dark { color: var(--black); border-color: rgba(0,0,0,0.2); }
.btn-ghost.dark:hover { border-color: var(--orange); color: var(--orange); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--black);
  color: white;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

/* === SHARED SECTION STYLES === */
.section { padding: 7rem 0; position: relative; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-title .accent { color: var(--orange); }

/* === HOME HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  overflow: hidden;
  display: flex; align-items: center;
  padding-top: 6rem;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,31,0.18) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow.left { top: -200px; left: -200px; }
.hero-glow.right { bottom: -300px; right: -200px; background: radial-gradient(circle, rgba(255,136,56,0.12) 0%, transparent 60%); }

.hero-eyebrow, .page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-bright);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(242,108,31,0.3);
  border-radius: 100px;
  background: rgba(242,108,31,0.05);
  backdrop-filter: blur(10px);
}
.hero-eyebrow::before, .page-hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange-bright); border-radius: 50%;
  box-shadow: 0 0 12px var(--orange-bright);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-transform: uppercase;
}
.hero-headline .accent {
  color: var(--orange-bright);
  position: relative;
  display: inline-block;
}
.hero-headline .accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em; left: 0; right: 0;
  height: 0.12em;
  background: var(--orange-bright);
  opacity: 0.25;
  filter: blur(8px);
}
.hero-strike {
  position: relative; display: inline-block;
  color: var(--gray);
}
.hero-strike::after {
  content: ''; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 6px;
  background: var(--orange-bright);
  transform: rotate(-2deg);
  box-shadow: 0 0 20px rgba(242,108,31,0.6);
}
.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(249,245,238,0.7);
  max-width: 540px;
  font-weight: 400;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(249,245,238,0.1);
}
.stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.5);
  margin-top: 0.5rem;
}
.hero-logo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-rings {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242,108,31,0.15);
  animation: rotate 40s linear infinite;
}
.hero-logo-rings.r1 { width: 110%; height: 110%; }
.hero-logo-rings.r2 { width: 130%; height: 130%; border-color: rgba(242,108,31,0.08); animation-direction: reverse; animation-duration: 60s; }
.hero-logo-rings.r3 { width: 150%; height: 150%; border-color: rgba(242,108,31,0.04); animation-duration: 80s; }
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-logo-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 60px rgba(242,108,31,0.3));
  position: relative;
  z-index: 2;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--black);
  color: var(--cream);
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 80%);
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,31,0.15) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  top: -200px; right: -100px;
}
.page-hero-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.page-hero-title .accent { color: var(--orange-bright); }
.page-hero-sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(249,245,238,0.7);
  max-width: 600px;
  margin-top: 1.5rem;
}
.page-hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,245,238,0.5);
  margin-bottom: 1.5rem;
}
.page-hero-breadcrumb a { color: rgba(249,245,238,0.5); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--orange-bright); }
.page-hero-breadcrumb .sep { color: var(--orange); }

/* === TICKER === */
.ticker {
  background: var(--black-soft);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(242,108,31,0.15);
  border-bottom: 1px solid rgba(242,108,31,0.15);
}
.ticker-track {
  display: flex; gap: 4rem;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4rem;
}
.ticker-item .accent { color: var(--orange-bright); }
.ticker-dot { width: 8px; height: 8px; background: var(--orange-bright); border-radius: 50%; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* === DUO SECTION (Husband + Wife) === */
.duo-section {
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.duo-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
}
.duo-mega {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.duo-mega .plus {
  color: var(--orange-bright);
  font-size: 0.85em;
  vertical-align: 0.05em;
  display: inline-block;
  margin: 0 0.05em;
}

/* === SERVICES (preview cards on home) === */
.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(242,108,31,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { transform: rotate(8deg) scale(1.05); }
.service-card:hover .service-arrow {
  background: var(--orange);
  color: white;
  transform: translate(4px, -4px);
}
.service-icon {
  width: 90px; height: 90px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1.5rem;
}
.service-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}
.service-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease;
  color: var(--steel);
}

/* === SERVICES DETAIL (services.html) === */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.85;
  color: var(--orange);
  letter-spacing: -0.04em;
  -webkit-text-stroke: 0;
}
.service-detail-num.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.service-detail-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
}
.service-detail-icon {
  width: 130px; height: 130px;
  filter: drop-shadow(0 10px 30px rgba(242,108,31,0.2));
  transition: transform 0.4s ease;
}
.service-detail:hover .service-detail-icon { transform: rotate(-5deg) scale(1.05); }
.service-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
}
.service-detail-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--steel);
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 2px;
  background: var(--orange);
}
@media (max-width: 768px) {
  .service-detail-list { grid-template-columns: 1fr; }
}

/* === WHY CHOOSE === */
.why-card {
  padding: 2rem;
  background: white;
  border-left: 3px solid var(--orange);
  transition: all 0.3s;
}
.why-card:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateX(8px);
}
.why-card:hover .why-num { color: var(--orange-bright); }
.why-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange);
  transition: color 0.3s;
}
.why-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 1rem;
}

/* === TRUSTED BY (partner logos) === */
.trust-section {
  background: var(--black);
  color: var(--cream);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(242,108,31,0.1);
  border-bottom: 1px solid rgba(242,108,31,0.1);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(242,108,31,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(242,108,31,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.trust-section .section-eyebrow { color: var(--orange-bright); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
  position: relative; z-index: 1;
}
.partner-logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}
.partner-logo-link:hover .partner-logo {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
  .partner-logo { height: 48px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .partner-logo { height: 42px; }
}

/* === TESTIMONIALS === */
.testimonials {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-warm) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(242,108,31,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(242,108,31,0.06) 0%, transparent 40%);
}
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  height: 100%;
  display: flex; flex-direction: column;
}
.testi-card:hover {
  border-color: rgba(242,108,31,0.4);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.05);
}
.testi-quote {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--orange-bright);
  font-family: serif;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.testi-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(249,245,238,0.85);
  flex: 1;
}
.testi-author {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-transform: uppercase;
}
.testi-loc {
  font-size: 0.8rem;
  color: var(--orange-bright);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.stars { color: var(--orange-bright); letter-spacing: 0.15em; font-size: 0.95rem; }

/* === LIVE GOOGLE REVIEWS === */
.live-reviews-summary {
  margin-bottom: 3rem;
}
.live-reviews-summary-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.live-reviews-google-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.live-reviews-google-icon svg { width: 100%; height: 100%; }
.live-reviews-summary-text { flex: 1; min-width: 180px; }
.live-reviews-rating-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}
.live-reviews-rating-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1;
}
.live-reviews-stars {
  color: #FBBC04;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.live-reviews-count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}
.live-reviews-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-bright);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--orange-bright);
  transition: all 0.25s ease;
}
.live-reviews-view-all:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}
.live-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  background: rgba(0,0,0,0.04);
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.testi-card .live-review-badge { /* on dark testimonial cards */
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
  .live-reviews-summary-inner { padding: 1.25rem 1.25rem; }
  .live-reviews-rating-num { font-size: 1.5rem; }
}

/* === CTA === */
.cta {
  background: var(--orange);
  color: var(--black);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 12px);
}
.cta-mega {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* === ABOUT VALUES === */
.value-card {
  padding: 2.5rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.value-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.value-card:hover::before { transform: scaleX(1); }
.value-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.value-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
}
.value-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  border-left: 2px solid rgba(242,108,31,0.2);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.85rem; top: 0.5rem;
  width: 14px; height: 14px;
  background: var(--orange);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(242,108,31,0.2);
}
.timeline-year {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
}
.timeline-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.timeline-text {
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* === BIG STATS === */
.big-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid rgba(0,0,0,0.08);
}
.big-stat {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: background 0.3s;
}
.big-stat:last-child { border-right: none; }
.big-stat:hover { background: var(--black); color: var(--cream); }
.big-stat:hover .big-stat-num { color: var(--orange-bright); }
.big-stat-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
}
.big-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .big-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .big-stat:last-child { border-bottom: none; }
}

/* === GALLERY === */
.gallery-filter {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: white;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--steel);
  cursor: pointer;
  transition: all 0.4s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}
.gallery-item-cat {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
}
.gallery-item-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
  line-height: 1.1;
}
/* Placeholder gradient backgrounds for gallery */
.gallery-bg-1 { background: linear-gradient(135deg, #2A2724 0%, #444 50%, #2A2724 100%); }
.gallery-bg-2 { background: linear-gradient(135deg, #1F1B17 0%, #F26C1F 200%); }
.gallery-bg-3 { background: linear-gradient(135deg, #444 0%, #2A2724 100%); }
.gallery-bg-4 { background: linear-gradient(45deg, #1A1A1A 0%, #F26C1F 250%); }
.gallery-bg-5 { background: linear-gradient(135deg, #2A2724 0%, #555 100%); }
.gallery-bg-6 { background: linear-gradient(225deg, #1F1B17 0%, #444 100%); }
.gallery-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  opacity: 0.4;
  transition: all 0.4s;
}
.gallery-item:hover .gallery-icon { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }

/* === BEFORE/AFTER SLIDER === */
.ba-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(242,108,31,0.25);
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #2A2724;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  background-color: #2A2724;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ba-before {
  /* visible portion controlled by clip-path; image itself stays full size */
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  will-change: left;
}
.ba-handle-grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  color: var(--black);
  pointer-events: none;
}
.ba-handle-grip svg { width: 22px; height: 22px; }
.ba-slider.ba-dragging .ba-handle-grip {
  background: var(--orange);
  color: white;
  transition: background 0.15s ease, color 0.15s ease;
}
.ba-label {
  position: absolute;
  top: 1rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.55);
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-card-meta {
  padding: 1.25rem 1.5rem 1.5rem;
}
.ba-card-cat {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.ba-card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.15;
  margin-top: 0.45rem;
}
/* Fallback gradients shown while images aren't uploaded yet */
.ba-fb-1 { background-image: linear-gradient(135deg, #2A2724 0%, #444 50%, #2A2724 100%); }
.ba-fb-2 { background-image: linear-gradient(135deg, #1F1B17 0%, #F26C1F 200%); }
.ba-fb-3 { background-image: linear-gradient(135deg, #444 0%, #2A2724 100%); }
.ba-fb-4 { background-image: linear-gradient(45deg, #1A1A1A 0%, #F26C1F 250%); }
.ba-fb-5 { background-image: linear-gradient(135deg, #2A2724 0%, #555 100%); }
.ba-fb-6 { background-image: linear-gradient(225deg, #1F1B17 0%, #444 100%); }
@media (max-width: 768px) {
  .ba-slider { aspect-ratio: 4 / 5; }
  .ba-handle-grip { width: 40px; height: 40px; }
}

/* === CONTACT FORM === */
.contact-form {
  background: white;
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--black);
  transition: all 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(242,108,31,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
}

.contact-info-card {
  background: var(--black);
  color: var(--cream);
  padding: 2.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange);
  transition: all 0.3s;
}
.contact-info-card:hover { transform: translateX(6px); border-color: var(--orange-bright); }
.contact-info-label {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.5rem;
}
.contact-info-value {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.contact-info-sub {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* === SERVICE AREA === */
.area-card {
  padding: 2rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.area-card:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.area-card:hover .area-name { color: var(--orange-bright); }
.area-card:hover .area-icon { background: var(--orange); }
.area-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all 0.3s;
}
.area-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  transition: color 0.3s;
}
.area-state {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 1.5rem;
}
.footer-link {
  display: block;
  color: rgba(249,245,238,0.7);
  padding: 0.4rem 0;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-link:hover { color: var(--orange-bright); }

/* === FLOATING CALL BUTTON === */
.float-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  background: var(--orange);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(242,108,31,0.4);
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.float-call.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-call:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 40px rgba(242,108,31,0.6); }
.float-call-pulse {
  position: absolute; inset: 0;
  border-radius: 100px;
  border: 2px solid var(--orange-bright);
  animation: callPulse 2s infinite;
}
@keyframes callPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* SAFETY: article body must never be hidden by reveal animation
   (long articles can fail to trigger IntersectionObserver) */
.article-body.reveal { opacity: 1 !important; transform: none !important; }


/* === MOBILE === */
.mobile-toggle { display: none; }
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: flex; }
  .float-call { bottom: 1rem; right: 1rem; padding: 0.75rem 1.2rem; font-size: 0.85rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 8rem 0 4rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.25rem;
  padding: 6rem 1.5rem 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  font-size: 1.6rem;
  text-align: center;
}
/* Mobile sub-menu (Services dropdown rendered as nested list on mobile) */
.mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: -0.4rem;
  padding: 0.5rem 0 0.25rem;
}
.mobile-sub-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.mobile-sub-link:hover { color: var(--orange-bright); }
.mobile-sub-link svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.mobile-sub-link.mobile-sub-all {
  color: var(--orange-bright);
  padding-top: 0.55rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn-primary { align-self: center; }

/* === BLOG HUB === */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.blog-cat {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: white;
  color: var(--steel);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.blog-cat:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.blog-cat.active {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: rgba(242,108,31,0.3);
}
.blog-card-image {
  aspect-ratio: 4/3;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.4) 100%);
  transition: opacity 0.4s;
}
.blog-card:hover .blog-card-image-bg {
  transform: scale(1.06);
}
.blog-card-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.blog-card-cat-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--orange);
  color: white;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  z-index: 2;
}
.blog-card-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card-date {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-title {
  color: var(--orange);
}
.blog-card-excerpt {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: auto;
}
.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-card-meta-dot {
  color: var(--orange);
}

/* Featured (first) blog card */
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}
@media (max-width: 768px) {
  .blog-card-featured { grid-template-columns: 1fr; }
}
.blog-card-featured .blog-card-image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}
.blog-card-featured .blog-card-content {
  padding: 3rem 2.5rem;
  justify-content: center;
}
.blog-card-featured .blog-card-title {
  font-size: 2.4rem;
  line-height: 1.05;
}
.blog-card-featured-tag {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.blog-card-featured .blog-card-excerpt {
  font-size: 1.05rem;
}

/* === BLOG ARTICLE === */
.article-hero {
  background: var(--black);
  color: var(--cream);
  padding: 9rem 0 0;
  position: relative;
  overflow: hidden;
}
.article-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, black 10%, transparent 70%);
          mask-image: radial-gradient(ellipse at 30% 30%, black 10%, transparent 70%);
}
.article-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,31,0.15) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  top: -150px; right: -100px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.article-meta-cat {
  background: var(--orange);
  color: white;
  padding: 0.4rem 1rem;
}
.article-meta-date,
.article-meta-read {
  color: rgba(249,245,238,0.6);
}
.article-meta-dot {
  color: var(--orange-bright);
}
.article-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  max-width: 900px;
}
.article-title .accent { color: var(--orange-bright); }
.article-subtitle {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(249,245,238,0.75);
  max-width: 720px;
  margin-top: 1.5rem;
}
.article-hero-image-wrap {
  margin-top: 3.5rem;
  margin-bottom: -8rem;
  position: relative;
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.article-hero-image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .article-hero-image-wrap {
    margin-bottom: -4rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .article-hero-image-wrap { margin-bottom: -4rem; }
}

/* === ARTICLE BODY === */
.article-body {
  max-width: 760px;
  margin: 12rem auto 0;
  padding: 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--steel);
}
@media (max-width: 768px) {
  .article-body { margin-top: 8rem; }
}
.article-body p {
  margin-bottom: 1.5rem;
}
.article-body p.lede {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--black);
  font-weight: 500;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.article-body h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.article-body h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 1rem;
}
.article-body h3 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article-body strong {
  color: var(--black);
  font-weight: 600;
}
.article-body a {
  color: var(--orange);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.article-body a:hover { opacity: 0.65; }
.article-body ul, .article-body ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}
.article-body li {
  margin-bottom: 0.65rem;
  position: relative;
  padding-left: 0.5rem;
}
.article-body ul li::marker {
  color: var(--orange);
  font-weight: bold;
}
.article-body ol li::marker {
  color: var(--orange);
  font-weight: bold;
}
.article-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--black);
  font-style: normal;
}
.article-body blockquote cite {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.75rem;
}
.article-body figure {
  margin: 2.5rem -2rem;
}
@media (max-width: 768px) {
  .article-body figure { margin: 2rem 0; }
}
.article-body figure img {
  width: 100%;
  display: block;
}
.article-body figcaption {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  font-style: italic;
  margin-top: 0.85rem;
}

/* Numbered "5 Signs" type list - special styling */
.signs-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.signs-list > li {
  padding: 0;
  margin: 0 0 2.5rem 0;
  border-left: 3px solid var(--orange);
  padding-left: 1.5rem;
  list-style: none;
}
.signs-list > li::marker { display: none; }
.signs-list > li::before { display: none; }
.signs-list .sign-number {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.signs-list .sign-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.85rem;
}

/* === Article CTA box (in-content) === */
.article-cta-box {
  background: var(--black);
  color: var(--cream);
  padding: 2.5rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
/* Reset article-body link styles for the CTA button */
.article-body .article-cta-box .btn-primary,
.article-body a.btn-primary {
  color: white !important;
  border-bottom: 0 !important;
  text-decoration: none !important;
}
.article-body .article-cta-box .btn-primary:hover,
.article-body a.btn-primary:hover {
  color: white !important;
  opacity: 1 !important;
}
.article-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}
.article-cta-box-eyebrow {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.6rem;
  position: relative; z-index: 1;
}
.article-cta-box-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
/* Isolate CTA box headings from article-body global heading styles */
.article-body .article-cta-box-title,
.article-body h3.article-cta-box-title {
  color: var(--cream) !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 1rem !important;
}
.article-body .article-cta-box h2::before,
.article-body .article-cta-box h3::before {
  display: none !important;
}
.article-cta-box-text {
  color: rgba(249,245,238,0.75);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.article-cta-box .btn-primary {
  position: relative; z-index: 1;
}

/* === Author footer === */
.article-author {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 2.5rem;
  margin-top: 4rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.article-author-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--orange);
}
.article-author-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}
.article-author-title {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.article-author-bio {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* === Related articles === */
.related-section {
  background: var(--cream);
  padding: 5rem 0;
  margin-top: 5rem;
}

/* === LOCATIONS HUB === */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
}
.location-card {
  position: relative;
  background: var(--black);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: block;
  min-height: 320px;
}
.location-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(31,27,23,0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s;
}
.location-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 70%);
          mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 70%);
  z-index: 2;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.location-card:hover::before {
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(242,108,31,0.25) 100%);
}
.location-card-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.location-card-eyebrow {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.75rem;
}
.location-card-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.location-card-state {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--orange-bright);
  margin-top: 0.4rem;
}
.location-card-zips {
  font-size: 0.85rem;
  color: rgba(249,245,238,0.6);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.location-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-top: 2rem;
  transition: gap 0.3s;
}
.location-card:hover .location-card-cta { gap: 0.85rem; }
.location-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--orange);
  color: white;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  z-index: 3;
}

/* === ZIP CODES STRIP === */
.zip-strip {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 3rem 0;
}
.zip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.zip-item {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 1.25rem;
  text-align: center;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--steel);
  transition: all 0.25s;
}
.zip-item:hover {
  background: var(--black);
  color: var(--orange-bright);
  border-color: var(--black);
  transform: translateY(-2px);
}

/* === WHY THIS LOCATION === */
.why-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .why-location-grid { grid-template-columns: 1fr; }
}
.why-location-item {
  background: white;
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.why-location-item:hover {
  background: var(--cream);
}
.why-location-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.why-location-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.15;
}
.why-location-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 0.85rem;
}

/* === MAP SECTION === */
.map-wrap {
  position: relative;
  background: var(--black);
  overflow: hidden;
}
.map-iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  filter: grayscale(0.3) brightness(0.95) contrast(1.05);
}
@media (max-width: 768px) {
  .map-iframe { height: 340px; }
}

/* === LOCATION SERVICES MINI === */
.loc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.loc-service-card {
  background: white;
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  position: relative;
}
.loc-service-card:hover {
  background: var(--black);
  color: var(--cream);
  transform: translateX(4px);
  border-color: var(--black);
}
.loc-service-card:hover .loc-service-name { color: var(--cream); }
.loc-service-card:hover .loc-service-desc { color: rgba(249,245,238,0.7); }
.loc-service-card:hover .loc-service-arrow {
  background: var(--orange);
  color: white;
  transform: translate(2px, -2px);
}
.loc-service-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
}
.loc-service-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s;
}
.loc-service-desc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
  transition: color 0.3s;
}
.loc-service-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}

/* === ABOUT PORTRAIT FRAME === */
.about-portrait-frame {
  position: relative;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-portrait-img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-portrait-frame:hover .about-portrait-img {
  transform: scale(1.03);
}
.about-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 2rem;
  z-index: 2;
  border-left: 3px solid var(--orange-bright);
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
.about-portrait-names {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.about-portrait-role {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-top: 0.5rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-portrait-names { font-size: 1.5rem; }
  .about-portrait-caption { padding: 1.25rem 1.5rem; margin-left: 1rem; margin-bottom: 1rem; }
}

/* === DROPDOWN NAVIGATION === */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(242,108,31,0.2);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
  margin-top: 0.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.nav-dropdown-link:hover {
  background: rgba(242,108,31,0.1);
  color: var(--orange-bright);
  border-left-color: var(--orange-bright);
}
.nav-dropdown-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}
.nav-dropdown-link:hover svg { opacity: 1; }
.nav-dropdown-divider {
  height: 1px;
  background: rgba(242,108,31,0.15);
  margin: 0.5rem 1rem;
}
.nav-dropdown-all {
  font-size: 0.75rem;
  color: var(--orange-bright);
  letter-spacing: 0.15em;
}
.nav-dropdown-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.3s;
  font-size: 0.7rem;
}
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }

/* === SERVICE PAGE HERO (with image) === */
.service-page-hero {
  background: var(--black);
  color: var(--cream);
  padding: 9rem 0 0;
  position: relative;
  overflow: hidden;
}
.service-page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 70%);
          mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 70%);
}
.service-page-hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,31,0.18) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  top: -150px; right: -100px;
}
.service-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.service-hero-image-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.service-hero-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.4) 70%, var(--black) 100%);
  pointer-events: none;
}
/* Placeholder for hero when no image yet */
.service-hero-placeholder {
  background: linear-gradient(135deg, #1F1B17 0%, #2A2724 50%, #1F1B17 100%);
  position: relative;
  overflow: hidden;
}
.service-hero-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(242,108,31,0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 30px);
}
.service-hero-placeholder-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  opacity: 0.4;
  filter: drop-shadow(0 10px 40px rgba(242,108,31,0.3));
}

/* === WHAT WE DO (service items) === */
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .what-we-do-grid { grid-template-columns: 1fr; }
}
.wwd-item {
  background: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s;
  position: relative;
}
.wwd-item:hover {
  background: var(--cream);
}
.wwd-item:hover .wwd-arrow {
  background: var(--orange);
  color: white;
  transform: translate(2px, -2px);
}
.wwd-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.wwd-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}
.wwd-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}
.wwd-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.3s;
  align-self: flex-start;
}
.wwd-cta:hover { gap: 0.7rem; }
.wwd-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 32px; height: 32px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s ease;
  color: var(--steel);
}

/* === HOW WE WORK (process steps) === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-grid::before { display: none; }
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
@media (max-width: 900px) {
  .process-step { text-align: left; padding-left: 5rem; min-height: 80px; }
}
.process-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  width: 76px; height: 76px;
  margin: 0 auto 1.5rem;
  background: var(--cream);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--orange);
  border-radius: 50%;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .process-num {
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    margin: 0;
    font-size: 1.5rem;
  }
}
.process-step:hover .process-num {
  background: var(--orange);
  color: white;
  transform: scale(1.1);
}
.process-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
}
.process-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* === BEFORE/AFTER === */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
}
.before-after-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s;
}
.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,0.1);
  aspect-ratio: 2/1;
}
.before-after-img {
  position: relative;
  overflow: hidden;
}
.before-after-img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.before-after-img-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(10,10,10,0.85);
  color: var(--cream);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  z-index: 2;
}
.before-after-img-label.after {
  background: var(--orange);
  color: white;
}
.before-after-info {
  padding: 1.25rem 1.5rem;
}
.before-after-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
}
.before-after-loc {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.25rem;
}
/* Placeholder gradients for before/after */
.ba-bg-1 { background: linear-gradient(135deg, #444 0%, #2A2724 100%); }
.ba-bg-2 { background: linear-gradient(135deg, #1F1B17 0%, #555 100%); }
.ba-bg-3 { background: linear-gradient(135deg, #2A2724 0%, #5A4A3A 100%); }

/* === TOOLS WE USE === */
.tools-section {
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.tools-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,108,31,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,108,31,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.tool-item {
  background: var(--black-soft);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.tool-item:hover {
  background: var(--black-warm);
}
.tool-item:hover .tool-icon { color: var(--orange-bright); transform: scale(1.1); }
.tool-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
  display: inline-block;
  transition: all 0.3s;
}
.tool-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
}
.tool-desc {
  color: rgba(249,245,238,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* === MID-PAGE CTA STRIP === */
.mid-cta {
  background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 12px);
}
.mid-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .mid-cta-grid { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
}
.mid-cta-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* === SEO/OUTRO RICH TEXT === */
.outro-text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
}
.outro-text p { margin-bottom: 1.25rem; }
.outro-text strong { color: var(--black); font-weight: 600; }
.outro-text a {
  color: var(--orange);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.outro-text a:hover { opacity: 0.7; }


/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================ */

/* Tablets and below */
@media (max-width: 900px) {
  /* Nav adjustments */
  .nav-wrap { padding: 1rem 0; }
  .nav-wrap.solid, .nav-wrap.always-solid { padding: 0.7rem 0; }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  /* === HERO (home) === */
  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .hero-headline {
    font-size: clamp(2.6rem, 11vw, 4rem);
    line-height: 0.95;
  }
  .hero-strike::after { height: 4px; }
  .hero-subhead {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 2rem;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    margin-top: 0.3rem;
  }
  .hero-logo-img {
    max-width: 280px;
    margin: 2.5rem auto 0;
  }
  .hero-logo-rings.r1 { width: 105%; height: 105%; }
  .hero-logo-rings.r2 { width: 115%; height: 115%; }
  .hero-logo-rings.r3 { width: 125%; height: 125%; }

  /* === PAGE HERO (inner pages) === */
  .page-hero { padding: 6.5rem 0 3rem; }
  .page-hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 0.95;
  }
  .page-hero-sub { font-size: 1rem; margin-top: 1rem; }
  .page-hero-breadcrumb { font-size: 0.7rem; margin-bottom: 1rem; }
  .page-hero-eyebrow, .hero-eyebrow {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
    letter-spacing: 0.15em;
  }

  /* === SECTIONS === */
  .section { padding: 3.5rem 0; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); }
  .section-eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }

  /* === DUO SECTION === */
  .duo-mega {
    font-size: clamp(2.8rem, 14vw, 5.5rem);
    line-height: 0.9;
  }

  /* === SERVICE CARDS (home) === */
  .service-card { padding: 2rem 1.5rem; }
  .service-icon { width: 70px; height: 70px; }
  .service-name { font-size: 1.35rem; margin-top: 1.2rem; }
  .service-desc { font-size: 0.9rem; }
  .service-arrow { width: 32px; height: 32px; top: 1.2rem; right: 1.2rem; }

  /* === SERVICE DETAIL (services.html) === */
  .service-detail { padding: 2.5rem 0; }
  .service-detail-num {
    font-size: clamp(3.5rem, 16vw, 5.5rem);
    line-height: 1;
  }
  .service-detail-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-top: 0.5rem;
  }
  .service-detail-icon { width: 90px; height: 90px; }
  .service-detail-list { gap: 0.5rem; font-size: 0.9rem; }
  .service-detail-list li { font-size: 0.9rem; }

  /* === WHY CARDS === */
  .why-card { padding: 1.5rem; }
  .why-num { font-size: 2.6rem; }
  .why-title { font-size: 1.2rem; }

  /* === BIG STATS === */
  .big-stat { padding: 2rem 1rem; }
  .big-stat-num { font-size: 2.8rem; }
  .big-stat-label { font-size: 0.65rem; letter-spacing: 0.2em; }

  /* === VALUE CARDS (about) === */
  .value-card { padding: 2rem 1.5rem; }
  .value-title { font-size: 1.3rem; }

  /* === TIMELINE === */
  .timeline { padding-left: 1.5rem; }
  .timeline-item { padding-bottom: 2rem; }
  .timeline-item::before { left: -1.85rem; width: 12px; height: 12px; }
  .timeline-year { font-size: 1.7rem; }
  .timeline-title { font-size: 1.1rem; }

  /* === TICKER === */
  .ticker { padding: 1rem 0; }
  .ticker-item { font-size: 1rem; gap: 2.5rem; }
  .ticker-track { gap: 2.5rem; }

  /* === TESTIMONIALS === */
  .testi-card { padding: 2rem 1.5rem; }
  .testi-text { font-size: 0.95rem; }
  .testi-name { font-size: 1rem; }

  /* === GALLERY === */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .gallery-item-title { font-size: 1rem; }
  .gallery-item-cat { font-size: 0.6rem; }
  .gallery-icon { width: 60px; height: 60px; }
  .gallery-filter { gap: 0.5rem; margin-bottom: 2rem; }
  .filter-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.08em;
  }

  /* === CONTACT FORM === */
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-input, .form-select, .form-textarea {
    font-size: 0.95rem;
    padding: 0.75rem 0.9rem;
  }
  .contact-info-card { padding: 1.5rem; }
  .contact-info-value { font-size: 1.2rem; }

  /* === FAQ === */
  .faq-question { font-size: 1rem; padding: 1.2rem 0; }

  /* === SERVICE AREA === */
  .area-card { padding: 1.5rem 1rem; }
  .area-name { font-size: 1.1rem; }

  /* === CTA === */
  .cta { padding: 4rem 0; }
  .cta-mega {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
    line-height: 0.95;
  }

  /* === BUTTONS === */
  .btn-primary, .btn-ghost {
    font-size: 0.95rem;
    padding: 0.85rem 1.4rem;
    gap: 0.5rem;
  }
  .btn-cta {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  /* === TRUST GRID === */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .trust-badge { padding: 1rem 0.5rem; }
  .trust-name { font-size: 0.75rem; line-height: 1.3; }

  /* === FOOTER === */
  footer { padding: 3rem 0 1.5rem; }
  .footer-title { font-size: 0.85rem; margin-bottom: 1rem; }
  .footer-link { font-size: 0.9rem; padding: 0.3rem 0; }

  /* === FLOATING CALL === */
  .float-call {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .float-call svg { width: 16px; height: 16px; }

  /* Add bottom padding to body so floating button doesn't cover content */
  footer { padding-bottom: 4.5rem; }

  /* === INTRO LOADER === */
  .intro-logo { width: 160px; height: 160px; }
  .intro-rings { width: 320px; height: 320px; }
  .intro-rings.r2 { width: 420px; height: 420px; }
  .intro-rings.r3 { width: 520px; height: 520px; }
  .intro-slogan { font-size: 1.2rem; padding: 0 1.5rem; bottom: 22%; }
}

/* Small phones (<= 480px) */
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .duo-mega { font-size: 2.6rem; }
  .cta-mega { font-size: 2.3rem; }
  .section-title { font-size: 1.85rem; }
  .page-hero-title { font-size: 2.3rem; }

  .hero-stats { gap: 0.75rem; }
  .stat-num { font-size: 1.3rem; }

  .service-detail-num { font-size: 3.2rem; }
  .service-detail-title { font-size: 1.6rem; }

  .gallery-grid { grid-template-columns: 1fr; }

  /* Hide call-now text on smallest screens, just show icon */
  .float-call > span:not(.float-call-pulse) {
    font-size: 0.75rem;
  }

  /* Stack form rows tighter */
  .form-row { gap: 0.5rem; }
  .form-group { margin-bottom: 1.2rem; }

  /* Trust grid: single column on tiny */
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* Very tiny phones (<= 360px) */
@media (max-width: 360px) {
  .hero-headline { font-size: 2.1rem; }
  .duo-mega { font-size: 2.3rem; }
  .cta-mega { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }
  .page-hero-title { font-size: 2rem; }

  /* Brand text in nav: hide subtitle */
  nav .font-display:nth-of-type(2) { display: none; }
}


/* ===== ARTICLE TABLE (for blog Quick Reference sections) ===== */
.article-table-wrap {
  margin: 2.5rem 0;
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(31, 27, 23, 0.1);
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
}
.article-table thead {
  background: var(--black, #1F1B17);
  color: #fff;
}
.article-table thead th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}
.article-table tbody tr {
  border-bottom: 1px solid rgba(31, 27, 23, 0.08);
  transition: background 0.15s;
}
.article-table tbody tr:last-child { border-bottom: none; }
.article-table tbody tr:hover { background: rgba(242, 108, 31, 0.04); }
.article-table tbody td {
  padding: 0.9rem 1.25rem;
  vertical-align: middle;
  line-height: 1.5;
}
.article-table tbody td:first-child { font-weight: 600; }
.article-table tbody td:last-child {
  text-align: right;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--orange, #F26C1F);
}
@media (max-width: 640px) {
  .article-table thead th,
  .article-table tbody td {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }
}
