/* ============ M&A Precision Mechanical — Landing Page ============ */
:root {
  --bg: #0A0A0A;
  --surface: #121212;
  --surface-2: #1A1A1A;
  --border: #2A2A2A;
  --red: #E10600;
  --red-hover: #FF1E18;
  --grey: #8C92AC;
  --text: #FFFFFF;
  --text-secondary: #A0A0A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #2A2A2A; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

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

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.font-display, h1, h2, h3 { font-family: 'Outfit', sans-serif; }
.text-red { color: var(--red); }
.icon { flex-shrink: 0; }
.icon-red { color: var(--red); }
.icon-grey { color: var(--text-secondary); }

/* ---------- Shared ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow-line { width: 2.5rem; height: 2px; background: var(--red); display: inline-block; }
.eyebrow-center { justify-content: center; }

.section-heading {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: 2.25rem;
}
@media (min-width: 640px) { .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3.75rem; } }

.section-lede {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 28rem;
}

.text-gradient-silver {
  background: linear-gradient(180deg, #ffffff 0%, #8C92AC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-phone-link:hover .text-gradient-silver {
  background: linear-gradient(180deg, #ffffff 0%, #E10600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
}

.noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Animations ---------- */
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.6); }
  50% { box-shadow: 0 0 0 14px rgba(225, 6, 0, 0); }
}
.pulse-red { animation: pulse-red 2s infinite; }

@keyframes loader-bar-anim {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.7s ease-out both; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.cursor-blink { animation: blink 1s step-end infinite; color: var(--red); margin-left: 0.25rem; }

@keyframes orb-float-anim {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}
.orb-float { animation: orb-float-anim 8s ease-in-out infinite; }

/* ---------- Buttons ---------- */
.btn-sharp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  border: none;
}
.btn-sharp-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px rgba(225, 6, 0, 0.4);
}
.btn-sharp-primary:hover {
  background: var(--red-hover);
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.7);
  transform: translateY(-2px);
}
.btn-header { font-size: 0.75rem; padding: 0.7rem 1.4rem; display: none; }
.btn-footer { font-size: 0.75rem; padding: 0.75rem 1.5rem; margin-top: 1.5rem; }
.btn-hero { font-size: 1rem; padding: 1.25rem 2.5rem; }
@media (min-width: 640px) {
  .btn-hero { font-size: 1.125rem; }
  .btn-header { display: inline-flex; }
}

.icon-rotate { transition: transform 0.25s ease; }
a:hover .icon-rotate { transform: rotate(12deg); }
.icon-arrow { transition: transform 0.25s ease; }
a:hover .icon-arrow { transform: translateX(4px); }

.link-underline { position: relative; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.3s ease;
}
.link-underline:hover::after { width: 100%; }

/* ---------- Loading screen ---------- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-logo {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(225, 6, 0, 0.5));
}
.loading-track {
  margin-top: 2rem;
  width: 12rem;
  height: 2px;
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.loader-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--red);
  animation: loader-bar-anim 1.6s ease-in-out infinite;
}
.loading-text {
  margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo {
  height: 3rem;
  width: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(225, 6, 0, 0.4));
}
.brand-text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 640px) { .brand-text { display: flex; } }
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.25rem;
}

.nav { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.nav-link:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.header-phone:hover { color: var(--red); }
@media (min-width: 640px) { .header-phone { display: inline-flex; } }

.mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu.open { display: none; } }
.mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.btn-mobile-call { font-size: 0.875rem; align-self: flex-start; margin-top: 0.5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay-x {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A0A0A, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.3));
}
.hero-overlay-y {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A, transparent, rgba(10, 10, 10, 0.4));
}

.hero-accent-bar {
  display: none;
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  background: var(--red);
}
@media (min-width: 768px) { .hero-accent-bar { display: block; } }

.hero-logo-glow {
  display: none;
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
}
@media (min-width: 1024px) { .hero-logo-glow { display: block; } }
.hero-logo-glow img { width: 520px; height: 520px; object-fit: contain; }
.hero-logo-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.4), transparent 60%);
  filter: blur(64px);
}

.hero-content { position: relative; z-index: 10; width: 100%; max-width: 80rem; }
.hero-content > * { max-width: 48rem; }
.hero .eyebrow { font-size: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .hero .eyebrow { font-size: 0.875rem; } }

.hero-headline {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: 44px;
}
@media (min-width: 640px) { .hero-headline { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-headline { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero-headline { font-size: 6rem; } }

.hero-services {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.hero-service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media (min-width: 640px) { .hero-service { font-size: 1rem; } }
.dot { color: var(--red); font-size: 1.125rem; }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  line-height: 1.65;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-phone-block {
  margin-top: 3rem;
  display: inline-block;
  border-left: 2px solid var(--red);
  padding-left: 1.25rem;
}
.hero-phone-label {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.hero-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  display: inline-block;
  margin-top: 0.25rem;
}
@media (min-width: 640px) { .hero-phone { font-size: 1.875rem; } }
.hero-phone:hover { color: var(--red); }

.hero-marquee {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  z-index: 5;
}
@media (min-width: 768px) { .hero-marquee { display: block; } }
.hero-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Services ---------- */
.services {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
}
@media (min-width: 1024px) { .services { padding: 8rem 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(225, 6, 0, 0.08));
  transition: height 0.4s ease;
}
.svc-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(225, 6, 0, 0.4);
}
.svc-card:hover::before { height: 100%; }

.svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.svc-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.svc-card:hover .svc-icon-box {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.1);
  color: var(--red);
}
.svc-num {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.svc-title {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.svc-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.svc-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s ease;
}
.svc-card:hover .svc-cta { color: var(--red); }

/* ---------- About ---------- */
.about {
  position: relative;
  padding: 6rem 0;
  background: var(--surface);
  overflow: hidden;
}
@media (min-width: 1024px) { .about { padding: 8rem 0; } }

.about-orb {
  position: absolute;
  top: -8rem;
  left: -8rem;
  width: 420px;
  height: 420px;
  background: rgba(225, 6, 0, 0.15);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}
@media (min-width: 640px) { .about-lead { font-size: 1.125rem; } }
.about-copy {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.pillars {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 1.25rem;
  transition: border-color 0.25s ease;
}
.pillar:hover { border-color: var(--red); }
.pillar h3 {
  margin-top: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
}
.pillar p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}
.trust-list .icon { margin-top: 0.125rem; }
.trust-list span { font-size: 0.875rem; }

.about-media { position: relative; }
.about-img-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.7s ease;
}
.about-img-frame:hover img { filter: grayscale(0); }
.about-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0A0A0A, transparent, transparent);
}
.about-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.caption-eyebrow {
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
}
.caption-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  letter-spacing: -0.02em;
}

.corner { position: absolute; width: 3rem; height: 3rem; }
.corner-tl { top: -0.75rem; left: -0.75rem; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.corner-br { bottom: -0.75rem; right: -0.75rem; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.corner-tr { top: -0.75rem; right: -0.75rem; border-top: 2px solid var(--red); border-right: 2px solid var(--red); }
.corner-bl { bottom: -0.75rem; left: -0.75rem; border-bottom: 2px solid var(--red); border-left: 2px solid var(--red); }

/* ---------- Contact ---------- */
.contact {
  position: relative;
  padding: 6rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) { .contact { padding: 8rem 0; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.contact-phone-link { display: block; margin-top: 2.5rem; }
.contact-phone-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.contact-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 3rem;
}
@media (min-width: 640px) { .contact-phone { font-size: 3.75rem; } }
@media (min-width: 1024px) { .contact-phone { font-size: 4.5rem; } }

.info-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
.info-card {
  display: block;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
  transition: border-color 0.25s ease;
  height: 100%;
}
.info-card:hover { border-color: var(--red); }
.info-label {
  margin-top: 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.info-value {
  margin-top: 0.25rem;
  font-weight: 500;
  word-break: break-word;
}

.contact-media { position: relative; }
.contact-map-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.contact-map-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, #0A0A0A);
}
.map-pin-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-pin-glow {
  position: absolute;
  top: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--red);
  filter: blur(32px);
  opacity: 0.6;
}
.map-pin {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
.map-pin-title {
  margin-top: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.875rem;
}
.map-pin-sub {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ---------- Google CTA ---------- */
.google-cta {
  position: relative;
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.google-cta-inner {
  max-width: 56rem;
  text-align: center;
}
.google-heading {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.15;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .google-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .google-heading { font-size: 3rem; } }

.google-search-box {
  margin: 2.5rem auto 0;
  max-width: 42rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  text-align: left;
  transition: border-color 0.25s ease;
}
.google-search-box:hover { border-color: var(--red); }
.google-query {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media (min-width: 640px) { .google-query { font-size: 1.125rem; } }
.google-search-action {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
@media (min-width: 640px) { .google-search-action { display: inline-flex; } }
.google-search-box:hover .google-search-action { color: var(--red); }

.google-rating-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.stars { display: flex; align-items: center; gap: 0.25rem; }
.rating-text { color: rgba(255, 255, 255, 0.7); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }

.footer-logo { height: 3.5rem; width: 3.5rem; object-fit: contain; }
.footer-desc {
  margin-top: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 28rem;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--red); }

.footer-contact ul { display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact .icon { margin-top: 0.125rem; }
.footer-contact a { transition: color 0.2s ease; word-break: break-all; }
.footer-contact a:hover { color: var(--red); }
.footer-muted { color: var(--text-secondary); }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-tagline { letter-spacing: 0.25em; text-transform: uppercase; }

/* ---------- Floating call ---------- */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 25px rgba(225, 6, 0, 0.6);
}
@media (min-width: 768px) { .floating-call { display: none; } }
