/*
Theme Name: New Ohms
Theme URI: https://newohms.com
Author: New Ohms
Description: Custom theme for New Ohms, certified residential electricians. Converted from the original React/Lovable build.
Version: 1.0.0
Text Domain: new-ohms
*/

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: #f7f7f5;
  color: #1a1a1a;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: #e85d20;
  letter-spacing: 0.01em;
  margin: 0;
}

main { display: block; min-height: 60vh; }

/* ==========================================================================
   2. LAYOUT HELPERS
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 60px 0; position: relative; }
.bg-light { background-color: #f7f7f5; }
.bg-dark { background-color: #0f0f0f; }
.bg-darker { background-color: #0d0d0d; }
.bg-orange { background-color: #e85d20; }
.text-center { text-align: center; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .grid-2.layout-reverse .col-content { order: 2; }
  .grid-2.layout-reverse .col-photo { order: 1; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }

/* ==========================================================================
   3. SECTION LABEL
   ========================================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e85d20;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-label.in-view { opacity: 1; transform: translateY(0); }
.section-label-line { display: inline-block; width: 20px; height: 2px; background-color: #e85d20; }

.section-heading {
  margin-top: 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  max-width: 760px;
}
.section-heading.center { margin-left: auto; margin-right: auto; }
.section-subtext {
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #6b6b6b;
  max-width: 560px;
}
.section-subtext.on-dark { color: rgba(255,255,255,0.55); }
.heading-block.center { display: flex; flex-direction: column; align-items: center; text-align: center; }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ==========================================================================
   4. NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, border-color 0.3s;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background-color: #0f0f0f;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: none; align-items: center; gap: 36px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link-fancy {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.nav-link-fancy::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 1px; width: 100%;
  background-color: #e85d20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link-fancy:hover { color: #fff; }
.nav-link-fancy:hover::after,
.nav-link-fancy.is-active::after { transform: scaleX(1); }
.nav-link-fancy.is-active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .nav-right { gap: 20px; } }
.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}
@media (min-width: 640px) { .nav-phone { display: flex; } }
.nav-cta {
  background-color: #e85d20;
  color: #fff;
  border-radius: 3px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 768px) { .nav-cta { padding: 12px 24px; } }

.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  color: #fff;
}
@media (min-width: 768px) { .nav-burger { display: none; } }
.nav-burger svg { width: 24px; height: 24px; }

.mobile-panel {
  display: none;
  background-color: #0f0f0f;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .mobile-panel { display: none !important; } }
.site-header.menu-open .mobile-panel { display: block; }
.mobile-panel nav { display: flex; flex-direction: column; }
.mobile-panel .mobile-link {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 16px 24px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.mobile-panel .mobile-link.is-active { color: #e85d20; }
.mobile-panel-foot { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 16px; }
.mobile-panel-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #e85d20;
}
.mobile-panel-cta {
  background-color: #e85d20; color: #fff; border-radius: 3px;
  padding: 14px 24px; text-align: center;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
}
.mobile-backdrop {
  display: none;
  position: fixed; inset: 0; top: 76px;
  background-color: rgba(0,0,0,0.4);
  z-index: -1;
}
.site-header.menu-open .mobile-backdrop { display: block; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s;
  cursor: pointer;
}
.btn-primary { background-color: #e85d20; color: #fff; }
.btn-primary:hover { transform: scale(1.03); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  background: transparent;
}
.btn-outline:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(232,93,32,0.4); }
.btn-outline-light { border: 1px solid #e0e0db; color: #1a1a1a; background: transparent; }
.btn-outline-orange { border: 1px solid #e85d20; color: #e85d20; background: transparent; }
.btn-outline-orange:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(232,93,32,0.4); }
.btn-white { background-color: #fff; color: #e85d20; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; padding: 16px 40px; }
.btn-white:hover { transform: scale(1.02); background-color: rgba(255,255,255,0.9); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.btn-block { display: block; width: 100%; text-align: center; }

.btn-shimmer { position: relative; overflow: hidden; isolation: isolate; }
.btn-shimmer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  background-size: 220% 100%;
  background-position: -120% 0;
  pointer-events: none;
  transition: background-position 0.6s ease;
}
.btn-shimmer:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 0 30px rgba(232,93,32,0.5), 0 4px 20px rgba(0,0,0,0.3);
}
.btn-shimmer:hover::after { background-position: 220% 0; }

.text-link-orange {
  color: #e85d20;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

/* ==========================================================================
   6. HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 128px 24px 80px;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(232,93,32,0.22) 0%, rgba(232,93,32,0.10) 35%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 85% 55%, rgba(232,93,32,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 5% 10%, rgba(0,0,0,0.8) 0%, transparent 60%);
  box-shadow: inset 0 0 120px rgba(0,0,0,0.7), inset 0 0 60px rgba(0,0,0,0.4);
}
@media (min-width: 1024px) { .hero { padding: 48px 24px; } }
.hero-circuit {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-repeat: repeat; background-size: 80px 80px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(232,93,32,0.06)' stroke-width='0.5'%3E%3Cpath d='M0 20 L30 20 L30 50 L60 50 L60 80'/%3E%3Cpath d='M20 0 L20 30 L50 30 L50 60 L80 60'/%3E%3Cpath d='M0 70 L15 70 L15 55'/%3E%3Cpath d='M70 0 L70 15 L55 15'/%3E%3C/g%3E%3Cg fill='rgba(232,93,32,0.08)'%3E%3Ccircle cx='30' cy='20' r='1.5'/%3E%3Ccircle cx='30' cy='50' r='1.5'/%3E%3Ccircle cx='60' cy='50' r='1.5'/%3E%3Ccircle cx='20' cy='30' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1.5'/%3E%3Ccircle cx='50' cy='60' r='1.5'/%3E%3Ccircle cx='15' cy='70' r='1.5'/%3E%3Ccircle cx='15' cy='55' r='1.5'/%3E%3Ccircle cx='70' cy='15' r='1.5'/%3E%3Ccircle cx='55' cy='15' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-scanlines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
}
.float-shape { position: absolute; pointer-events: none; animation: float-y 5s ease-in-out infinite; }
@keyframes float-y { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(0); } }
.hero-chevron { position: absolute; top: 50%; right: 18%; transform: translateY(-50%); opacity: 0.08; pointer-events: none; }
.hero-ring, .hero-ring-lg { position: absolute; top: 50%; right: 10%; pointer-events: none; transform: translate(50%, -50%); }
@keyframes hero-spin-cw { from { transform: translate(50%, -50%) rotate(0deg); } to { transform: translate(50%, -50%) rotate(360deg); } }
.hero-ring { animation: hero-spin-cw 40s linear infinite; }
.hero-ring-lg { animation: hero-spin-cw 60s linear infinite; }
.hero-dotgrid { position: absolute; bottom: 40px; left: 40px; pointer-events: none; }
.hero-omega {
  position: absolute;
  top: 50%; right: -2%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(380px, 55vw, 680px);
  color: rgba(232,93,32,0.1);
  text-shadow: 0 0 80px rgba(232,93,32,0.15);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 1280px; width: 100%; margin: 0 auto; display: flex; align-items: center; }
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(232,93,32,0.4);
  background-color: rgba(232,93,32,0.1);
  color: #e85d20;
  padding: 7px 14px; border-radius: 3px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  opacity: 0; transform: translateY(40px);
  filter: blur(8px);
  animation: hero-in 0.8s 0s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-heading {
  margin-top: 24px; color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(52px, 7vw, 88px); line-height: 1; text-transform: uppercase;
  opacity: 0; transform: translateY(40px);
  filter: blur(8px);
  animation: hero-in 0.8s 0.1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-rule {
  width: 80px; height: 3px; background-color: #e85d20; margin: 16px 0 24px;
  transform: scaleX(0); transform-origin: left;
  animation: hero-rule-in 0.6s 0.4s ease-out forwards;
}
@keyframes hero-rule-in { to { transform: scaleX(1); } }
.hero-subtext {
  font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 500px;
  opacity: 0; transform: translateY(40px); filter: blur(8px);
  animation: hero-in 0.8s 0.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-actions {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0; transform: translateY(40px); filter: blur(8px);
  animation: hero-in 0.8s 0.45s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-trust {
  margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; transform: translateY(40px); filter: blur(8px);
  animation: hero-in 0.8s 0.55s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes hero-in { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.trust-pill {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 8px 16px;
  font-size: 12px; color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif;
}

/* ==========================================================================
   7. STATS BAR
   ========================================================================== */
.stats-bar { background-color: #e85d20; padding: 12px 24px; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-parallelogram {
  position: relative; clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  background: rgba(0,0,0,0.15);
  padding: 48px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.stat-ghost-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 120px; line-height: 1;
  color: rgba(255,255,255,0.05); pointer-events: none; user-select: none;
}
.stat-value {
  position: relative; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 40px; color: #fff; line-height: 1;
}
.stat-label {
  position: relative; margin-top: 8px; font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.8);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ==========================================================================
   8. ABOUT SNIPPET (homepage)
   ========================================================================== */
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 3;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-rating-badge {
  position: absolute; right: -10px; bottom: -28px;
  background-color: #0f0f0f; padding: 20px 24px; border-radius: 3px; min-width: 160px;
}
.about-rating-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 44px; color: #e85d20; line-height: 1; }
.about-rating-label { color: #fff; font-family: 'Inter', sans-serif; font-size: 12px; margin-top: 4px; }
.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist-item { display: flex; align-items: center; gap: 12px; font-family: 'Inter', sans-serif; font-size: 14px; }
.checklist-item.on-dark { color: rgba(255,255,255,0.75); align-items: flex-start; }
.checklist-item svg { flex-shrink: 0; }
.checklist-item:not(.on-dark) { color: #1a1a1a; }

/* ==========================================================================
   9. ICONS (hex / shield / diamond)
   ========================================================================== */
.icon-hex {
  position: relative; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
}
.icon-hex::before {
  content: ""; position: absolute; inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(232,93,32,0.35); transition: background 0.3s ease;
}
.icon-hex::after {
  content: ""; position: absolute; inset: 1.5px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #f7f7f5; transition: background 0.3s ease;
}
.icon-hex > * { position: relative; z-index: 2; transition: transform 0.3s ease; }
.icon-hex:hover::after { background: rgba(232,93,32,0.08); }
.icon-hex:hover::before { background: #e85d20; }
.icon-hex:hover > * { transform: scale(1.1); }
.icon-hex.on-dark::after { background: #0f0f0f; }

.icon-shield {
  position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
}
.icon-shield::before {
  content: ""; position: absolute; inset: 0;
  clip-path: polygon(50% 0%, 100% 20%, 100% 60%, 50% 100%, 0% 60%, 0% 20%);
  background: rgba(232,93,32,0.25);
}
.icon-shield::after {
  content: ""; position: absolute; inset: 1px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 60%, 50% 100%, 0% 60%, 0% 20%);
  background: #141414;
}
.icon-shield > * { position: relative; z-index: 2; }

.icon-diamond {
  width: 54px; height: 54px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  background: rgba(232,93,32,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 20px rgba(232,93,32,0.15);
}
.svc-card:hover .icon-diamond { background: rgba(232,93,32,0.2); transform: scale(1.15); box-shadow: 0 0 28px rgba(232,93,32,0.3); }

/* ==========================================================================
   10. WHY CHOOSE US / VALUES
   ========================================================================== */
.feature-title {
  margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 24px;
  text-transform: uppercase; color: #1a1a1a; line-height: 1.15;
}
.feature-text { margin-top: 12px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: #6b6b6b; }

.value-card {
  background-color: #141414; border: 1px solid rgba(255,255,255,0.08); border-top: 3px solid #e85d20;
  border-radius: 3px; padding: 32px;
}
.values-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-title { margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 26px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.value-text { margin-top: 12px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   11. SERVICE CARDS (homepage grid + related)
   ========================================================================== */
.svc-card {
  position: relative; display: block; height: 100%;
  background-color: #141414; border: 0.5px solid rgba(255,255,255,0.08); border-radius: 3px;
  padding: 28px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 96% 100%, 0 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 4px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.svc-card::before, .svc-card::after { content: ""; position: absolute; background-color: #e85d20; pointer-events: none; z-index: 2; }
.svc-card::before { top: 0; left: 0; height: 2px; width: 100%; }
.svc-card::after { top: 0; left: 0; width: 2px; height: 40px; }
.svc-card:hover {
  transform: translateY(-4px); border-color: rgba(232,93,32,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 -1px 20px rgba(232,93,32,0.18), 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(232,93,32,0.12);
}
.svc-card-title { margin-top: 24px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; color: #fff; line-height: 1.1; }
.svc-card-body { margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.svc-card-link { margin-top: 24px; display: inline-block; color: #e85d20; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; }

.related-card {
  position: relative; display: block; height: 100%;
  background-color: #fff; border: 0.5px solid rgba(0,0,0,0.08); border-radius: 3px; padding: 28px; overflow: hidden;
  transition: transform 0.3s ease;
}
.related-card:hover { transform: translateY(-4px); }
.related-card .bar { position: absolute; top: 0; left: 0; height: 3px; width: 0; background-color: #e85d20; transition: width 0.3s ease; }
.related-card:hover .bar { width: 100%; }
.related-card-title { margin-top: 24px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; color: #1a1a1a; line-height: 1.1; }
.related-card-body { margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: #6b6b6b; }

/* ==========================================================================
   12. REVIEWS
   ========================================================================== */
.review-card {
  background-color: #141414; border: 0.5px solid rgba(255,255,255,0.08); border-radius: 3px; padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06); }
.review-stars { color: #e85d20; font-size: 14px; letter-spacing: 1px; }
.review-quote { margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; font-style: italic; color: rgba(255,255,255,0.7); }
.review-divider { margin: 20px 0; height: 1px; background-color: rgba(255,255,255,0.06); }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
}
.review-name { color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; }
.review-source { color: rgba(255,255,255,0.4); font-family: 'Inter', sans-serif; font-size: 11px; }

/* ==========================================================================
   13. CTA STRIP
   ========================================================================== */
.cta-strip { position: relative; overflow: hidden; padding: 80px 24px; text-align: center; background-color: #e85d20; }
.cta-strip-inner { position: relative; max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-strip-label { color: rgba(255,255,255,0.75); text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em; font-family: 'Inter', sans-serif; font-weight: 600; }
.cta-strip-heading {
  margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(40px, 5vw, 72px); color: #fff; text-transform: uppercase; line-height: 1;
}
.cta-strip .deco { position: absolute; pointer-events: none; }
.cta-strip .deco-tri { left: -60px; top: 50%; transform: translateY(-50%) rotate(15deg); opacity: 0.06; }
.cta-strip .deco-circle { right: -150px; top: 50%; transform: translateY(-50%); opacity: 0.05; }

/* ==========================================================================
   14. SERVICE BLOCK (full detail sections)
   ========================================================================== */
.svc-block { padding: 112px 0; position: relative; overflow: hidden; }
.svc-image-frame {
  position: relative; width: 100%; overflow: hidden; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 96% 100%, 0 100%);
  box-shadow: 8px 8px 0px rgba(232,93,32,0.15), 16px 16px 0px rgba(232,93,32,0.07), 0 20px 60px rgba(0,0,0,0.4);
  background-color: #e0e0db;
}
.svc-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.svc-shape-1 { clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%); }
.svc-shape-2 { clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%); }
.svc-shape-3 { clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 5%); }
.svc-shape-4 { clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 6% 100%, 0 94%); }
.svc-shape-5 { clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%, 0 88%); }
.svc-shape-6 { clip-path: polygon(6% 0, 100% 0, 100% 94%, 94% 100%, 0 100%, 0 6%); }
.svc-shape-7 { clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%); }

.svc-title { margin-top: 20px; font-size: clamp(36px, 4vw, 52px); line-height: 1.05; }
.svc-paragraph { margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.8; }
.svc-paragraph.on-dark { color: rgba(255,255,255,0.6); }
.svc-paragraph:not(.on-dark) { color: #6b6b6b; }
.svc-included-label {
  margin-top: 32px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #6b6b6b;
}
.svc-included-label.on-dark { color: rgba(255,255,255,0.5); }
.svc-included-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.svc-included-item { display: flex; align-items: flex-start; gap: 12px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; }
.svc-included-item.on-dark { color: rgba(255,255,255,0.75); }
.svc-included-item:not(.on-dark) { color: #1a1a1a; }
.svc-included-item svg { margin-top: 2px; flex-shrink: 0; }
.svc-actions { margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.svc-view-details { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; border-bottom: 1px solid #e85d20; padding-bottom: 2px; }
.svc-view-details.on-dark { color: #fff; }
.svc-view-details:not(.on-dark) { color: #1a1a1a; }

.dark-section-shape { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dark-section-shape::after {
  content: ""; position: absolute; right: 0; top: 0; width: 50%; height: 100%;
  clip-path: polygon(0 30%, 40% 0, 40% 70%, 0 100%); background: rgba(232,93,32,0.02);
}
.light-section-circle {
  position: absolute; right: -300px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%; background: rgba(232,93,32,0.03); pointer-events: none;
}

/* ==========================================================================
   15. EXPANDED DETAIL / MINI FAQ / FAQ ACCORDIONS
   ========================================================================== */
.expanded-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .expanded-grid { grid-template-columns: 1fr 1fr; } }
.expanded-item h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; color: #1a1a1a; line-height: 1.4; text-transform: none; }
.expanded-item p { margin-top: 12px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.8; color: #6b6b6b; }

.faq-list { margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left;
  padding: 24px 0; gap: 24px; background: transparent; border: none;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; color: #fff;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; color: #e85d20; }
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.is-open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding-bottom: 24px; padding-right: 40px; font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   16. ABOUT PAGE — STORY / MEET LEE / VALUES
   ========================================================================== */
.story-photo-stack { position: relative; width: 100%; aspect-ratio: 4 / 3; margin-bottom: 72px; isolation: isolate; }
.story-photo-main {
  position: absolute; inset: 0; overflow: hidden; border-radius: 4px;
  transform: rotate(-1.5deg); filter: drop-shadow(4px 4px 0px rgba(232,93,32,0.2)); transition: transform 0.4s ease;
}
.story-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-photo-stack:hover .story-photo-main { transform: rotate(0deg); }
.story-photo-sub {
  position: absolute; right: -40px; bottom: -40px; width: 45%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px;
  border: 4px solid #f7f7f5; box-shadow: 0 18px 42px rgba(0,0,0,0.24); transform: rotate(1deg); transition: transform 0.4s ease; z-index: 2;
}
.story-photo-sub img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-photo-stack:hover .story-photo-sub { transform: rotate(0deg); }
.story-est-badge {
  position: absolute; left: 0; bottom: -16px; background-color: #e85d20; color: #fff; padding: 10px 16px; border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 20px; line-height: 1; text-transform: uppercase; white-space: nowrap; z-index: 3;
}
@media (max-width: 767px) {
  .story-photo-stack { margin: 36px 16px 56px 0; }
  .story-photo-sub { right: -16px; bottom: -24px; width: 42%; box-shadow: 0 14px 30px rgba(0,0,0,0.22); }
  .story-est-badge { left: 8px !important; bottom: -14px !important; padding: 9px 12px !important; font-size: 16px !important; }
}
@media (min-width: 768px) and (max-width: 1279px) { .story-photo-sub { right: 0; } }
@media (min-width: 768px) and (max-width: 900px) { .story-photo-sub { width: calc(36% - 8px); } }

.hex-frame { position: relative; width: 100%; max-width: 480px; aspect-ratio: 1 / 1; margin: 0 auto; }
.hex-frame .hex-outer, .hex-frame .hex-inner { position: absolute; inset: 0; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.hex-frame .hex-outer { background: #e85d20; }
.hex-frame .hex-inner { inset: 3px; background: #0f0f0f; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hex-frame .hex-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hex-frame .hex-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #e85d20; z-index: 3; }
.hex-frame .hex-dot.top { top: -4px; left: 50%; transform: translateX(-50%); }
.hex-frame .hex-dot.bl { bottom: -4px; left: 25%; transform: translateX(-50%); }
.hex-frame .hex-dot.br { bottom: -4px; right: 25%; transform: translateX(50%); }
.lee-name-pill {
  margin-top: 32px; display: inline-block; background: rgba(232,93,32,0.1); border: 1px solid rgba(232,93,32,0.3);
  border-radius: 20px; padding: 6px 16px; color: #e85d20; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
}
.lee-col-left { display: flex; flex-direction: column; align-items: center; }
.lee-pill { border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 6px 14px; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); }
.lee-pills { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.lee-paragraph { margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   17. CONTACT
   ========================================================================== */
.contact-detail-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon-box { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 40px; height: 40px; background-color: rgba(232,93,32,0.1); border-radius: 3px; }
.contact-detail-main { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: #1a1a1a; }
.contact-detail-sub { font-family: 'Inter', sans-serif; font-size: 13px; color: #6b6b6b; margin-top: 2px; white-space: pre-line; line-height: 1.6; }
.area-pill { border: 1px solid #e0e0db; padding: 8px 14px; border-radius: 20px; font-family: 'Inter', sans-serif; font-size: 13px; color: #555; display: inline-block; }
.areas-heading { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: #6b6b6b; }

.contact-card {
  background-color: #fff; border: 1px solid #e0e0db; border-radius: 4px; padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  clip-path: polygon(0 0, 97% 0, 100% 3%, 100% 100%, 3% 100%, 0 97%);
}
.contact-card h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; color: #1a1a1a; text-transform: none; }
.contact-card > p { font-family: 'Inter', sans-serif; font-size: 13px; color: #6b6b6b; margin-top: 6px; }
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field {
  background-color: #f7f7f5; border: 1px solid #e0e0db; border-radius: 3px; padding: 14px 16px;
  color: #1a1a1a; font-family: 'Inter', sans-serif; font-size: 14px; width: 100%; outline: none; transition: border-color 0.2s;
}
.field:focus { border-color: #e85d20; }
.field-dark { background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: #fff; }
.field-dark::placeholder { color: rgba(255,255,255,0.3); }
.field-error { margin-top: 4px; font-size: 12px; color: #e85d20; }
.field-note { text-align: center; font-family: 'Inter', sans-serif; font-size: 13px; color: #6b6b6b; margin-top: 16px; }
.form-success {
  padding: 32px; text-align: center; border: 1px solid rgba(232,93,32,0.3); border-radius: 3px; background-color: rgba(232,93,32,0.05);
}
.form-success-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; color: #e85d20; text-transform: uppercase; }
.form-success p { margin-top: 8px; font-family: 'Inter', sans-serif; font-size: 14px; color: #6b6b6b; }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer { background-color: #0d0d0d; color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 80px 24px 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(12, 1fr); } }
.footer-col-brand { grid-column: span 4; }
.footer-col-services { grid-column: span 3; }
.footer-col-areas { grid-column: span 2; }
.footer-col-contact { grid-column: span 3; }
.footer-logo img { height: 48px; width: auto; }
.footer-tagline { margin-top: 20px; max-width: 320px; color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.6; }
.footer-social { margin-top: 24px; display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; transition: color 0.2s;
}
.footer-social a:hover { color: #e85d20; }
.footer-col h4 { margin-bottom: 20px; font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-link, .footer-col-areas div { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35); display: block; padding: 4px 0; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.footer-contact-row svg { margin-top: 3px; flex-shrink: 0; }
.footer-bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ==========================================================================
   19. EMERGENCY BANNER
   ========================================================================== */
.emergency-banner { padding: 0 24px; background-color: #0f0f0f; }
.emergency-inner { max-width: 1280px; margin: 0 auto; padding: 60px 0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 32px; text-align: center; }
@media (min-width: 768px) { .emergency-inner { flex-direction: row; text-align: left; } }
.emergency-left { display: flex; flex-direction: column; align-items: center; gap: 20px; }
@media (min-width: 768px) { .emergency-left { flex-direction: row; } }
.emergency-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 56px; height: 56px; background-color: rgba(232,93,32,0.1); border-radius: 3px; }
.emergency-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 32px; color: #e85d20; text-transform: uppercase; line-height: 1.1; }
.emergency-text { margin-top: 4px; font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,0.55); }
.emergency-call-btn {
  display: inline-flex; align-items: center; gap: 12px; background-color: #e85d20; color: #fff;
  padding: 16px 32px; border-radius: 3px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700;
}
.emergency-call-btn:hover { box-shadow: 0 0 20px rgba(232,93,32,0.4); transform: scale(1.03); }

/* ==========================================================================
   20. PAGE HERO (about/services/contact)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 160px 24px 80px; background-color: #0f0f0f; min-height: 50vh;
}
.page-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 50%, rgba(232,93,32,0.07), transparent 60%); }
.page-hero-omega {
  position: absolute; top: 50%; right: -2%; transform: translateY(-50%); pointer-events: none; user-select: none;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(300px, 45vw, 600px); color: rgba(232,93,32,0.06); line-height: 1;
}
.page-hero-inner { position: relative; max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.page-hero-title { margin-top: 24px; font-size: clamp(52px, 6vw, 80px); line-height: 1; }
.page-hero-subtext { margin-top: 24px; font-family: 'Inter', sans-serif; font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 620px; }

/* ==========================================================================
   21. NOT FOUND
   ========================================================================== */
.not-found-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 0 24px; text-align: center; }
.not-found-wrap h1 { font-size: 72px; }
.not-found-wrap h2 { margin-top: 16px; font-size: 22px; color: #1a1a1a; text-transform: none; }
.not-found-wrap p { margin-top: 8px; font-size: 14px; color: #6b6b6b; font-family: 'Inter', sans-serif; }

/* ==========================================================================
   22. RESPONSIVE TWEAKS
   ========================================================================== */
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 767px) {
  .footer-col-brand, .footer-col-services, .footer-col-areas, .footer-col-contact { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
