/* =====================================================
   FINE CLEANOUTS — Custom Stylesheet
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --navy:       #12233f;
  --navy-light: #1a3158;
  --navy-dark:  #0c1a2e;
  --gold:       #d4c28d;
  --gold-light: #e8d9a8;
  --gold-dark:  #b8a570;
  --white:      #ffffff;
  --off-white:  #f5f3ef;
  --text-muted: rgba(255,255,255,0.65);
  --text-body:  #2c2c2c;
  --border:     rgba(212, 194, 141, 0.25);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── Typography ── */
.font-serif { font-family: 'Cinzel', 'Playfair Display', Georgia, serif; }

h1, h2, h3 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.gold-rule {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
#announcement-bar {
  background: var(--gold);
  color: var(--navy-dark);
  text-align: center;
  padding: 0.6rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

#announcement-bar a {
  color: var(--navy-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--navy-dark);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

#main-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }

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

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

.nav-brand .brand-main {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.nav-brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

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

/* Mobile menu */
#mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem 1.5rem;
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; }
#mobile-menu li + li { border-top: 1px solid var(--border); }
#mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--gold); }

/* =====================================================
   HERO
   ===================================================== */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,26,46,0.97) 0%, rgba(18,35,63,0.88) 60%, rgba(18,35,63,0.75) 100%);
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
}

/* Subtle geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(212,194,141,0.03) 60px,
      rgba(212,194,141,0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(212,194,141,0.03) 60px,
      rgba(212,194,141,0.03) 61px
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,194,141,0.3);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =====================================================
   SERVICES
   ===================================================== */
#services {
  padding: 6rem 0;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-top: 3px solid var(--navy);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(18,35,63,0.12);
  border-top-color: var(--gold);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--gold); }

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: color 0.3s;
}
.service-card:hover .service-icon svg { color: var(--navy); }

.service-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.service-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* =====================================================
   WHY US / PILLARS
   ===================================================== */
#why-us {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: 'FC';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}

#why-us .section-title { color: var(--white); }
#why-us .section-desc  { color: rgba(255,255,255,0.6); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(212,194,141,0.06);
  border-color: var(--gold);
}

.pillar-number {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}

.pillar h3 {
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.pillar p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =====================================================
   RESULTS BANNER
   ===================================================== */
#results {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.results-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.6);
}

.results-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,26,46,0.6) 0%, rgba(12,26,46,0.85) 100%);
}

.results-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.results-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 3rem;
  display: block;
}

.results-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 3.5rem;
}

.stat {
  padding: 0 3.5rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-num em {
  font-style: normal;
  font-size: 0.65em;
  opacity: 0.8;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(212,194,141,0.3);
  flex-shrink: 0;
}

.results-quote {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  border-top: 1px solid rgba(212,194,141,0.2);
  padding-top: 2.5rem;
}

@media (max-width: 700px) {
  .stat-divider { display: none; }
  .results-stats { gap: 2rem; }
  .stat { padding: 0; }
}

/* =====================================================
   BEFORE / AFTER (legacy — kept for reference)
   ===================================================== */
#before-after {
  padding: 5rem 0;
  background: var(--navy);
}

#before-after .section-title { color: var(--white); }
#before-after .section-desc  { color: rgba(255,255,255,0.6); }

.ba-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.ba-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-label {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
  justify-content: center;
  pointer-events: none;
}

.ba-label-inner {
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(1.1rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.45rem 1.4rem;
  border-radius: 2px;
}

.ba-before {
  left: 0;
}

.ba-before .ba-label-inner {
  background: var(--navy-dark);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.ba-after {
  right: 0;
}

.ba-after .ba-label-inner {
  background: var(--gold);
  color: var(--navy-dark);
  border: 1px solid var(--gold-light);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

/* =====================================================
   ABOUT / TEAM
   ===================================================== */
#about {
  padding: 6rem 0;
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  background: var(--navy);
  border-radius: 2px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 2px;
  transform: translate(12px, 12px);
  pointer-events: none;
  z-index: 0;
}

.about-img-placeholder {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 0.1em;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--navy-dark);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: 'Cinzel', serif;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.about-badge .badge-num {
  font-size: 1.5rem;
  font-weight: 700;
}
.about-badge .badge-text {
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-text h2 { color: var(--navy); margin-bottom: 1rem; }

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text .highlight {
  color: var(--navy);
  font-weight: 600;
}

/* =====================================================
   ABOUT — SOLO LAYOUT
   ===================================================== */
.about-solo {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.about-solo h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.about-solo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-bottom: 2.5rem;
}

.about-solo-body p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.85;
}

.about-solo-body p:first-child {
  grid-column: 1 / -1;
  font-size: 1.05rem;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e2ddd6;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid #e2ddd6;
  border-left: 3px solid var(--gold);
  padding: 0.65rem 1.1rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.credential svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .about-solo-body { grid-template-columns: 1fr; }
  .about-solo-body p:first-child { grid-column: auto; }
}

/* =====================================================
   CONTACT — CTA LAYOUT
   ===================================================== */
#contact {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative;
  text-align: center;
}

.contact-cta {
  max-width: 620px;
  margin: 0 auto 3rem;
}

.contact-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-phone-btn {
  font-size: 1rem;
  padding: 1.1rem 2.75rem;
  letter-spacing: 0.1em;
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}

.contact-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-pill svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-pill a {
  color: inherit;
  transition: color 0.2s;
}
.contact-pill:hover a { color: var(--gold); }

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .about-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  #hamburger        { display: flex; }
  .hero-title       { font-size: 2rem; }
  .hero-trust       { gap: 1.25rem; }
  .about-img-frame::after { display: none; }
}

@media (max-width: 480px) {
  .container        { padding-inline: 1.25rem; }
  .estimate-form    { padding: 1.5rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .pillars-grid     { grid-template-columns: 1fr 1fr; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
}
