:root {
  --bg: #faf7f4;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-soft: #f5f0ea;
  --ink: #1a2f35;
  --muted: #1a2f35;
  --line: rgba(26, 47, 53, 0.14);
  --brand: #6A5FB6;
  --brand-dark: #5449A0;
  --brand-soft: rgba(106, 95, 182, 0.14);
  --shadow: 0 24px 60px rgba(48, 54, 60, 0.1);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 4rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(106, 95, 182, 0.08), transparent 24%),
    linear-gradient(180deg, #f1efee 0%, #ecebea 50%, #e8e6e4 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

a:hover,
a:focus-visible {
  transform: translateY(-1px);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
  background: transparent;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34));
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 18px 40px rgba(48, 54, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-logo img {
  width: 236px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a:not(.button) {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-dark);
  background: rgba(106, 95, 182, 0.09);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.76rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.98rem 1.55rem;
  background: linear-gradient(180deg, rgba(106, 95, 182, 0.88), rgba(84, 73, 160, 0.76));
  color: white;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 16px 30px rgba(106, 95, 182, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, background 320ms ease, border-color 320ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 36px rgba(106, 95, 182, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.44);
  border-color: rgba(106, 95, 182, 0.7);
}

.button-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.34));
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 24px rgba(48, 54, 60, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button-small {
  margin-left: 0.35rem;
  padding: 0.92rem 1.35rem;
  box-shadow: 0 14px 28px rgba(106, 95, 182, 0.18);
}

.hero {
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(250, 247, 244, 0.96) 0%,
    rgba(250, 247, 244, 0.91) 36%,
    rgba(255, 255, 255, 0.6) 56%,
    rgba(255, 255, 255, 0.14) 100%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(320px, 380px);
  gap: 4rem;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-branding {
  display: grid;
  gap: 0.35rem;
}

.hero-script,
.promise-script {
  margin: 0;
  font-family: "Alex Brush", cursive;
  font-size: 2.25rem;
  color: var(--brand);
}

.promise-script {
  font-size: 3.5rem;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.3rem);
  line-height: 1.06;
  max-width: 8.5ch;
}

h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

h3 {
  font-size: 1.42rem;
}

.hero-text,
.section-heading p,
.about-copy p,
.service-card p,
.location-card p,
.contact-grid p,
.site-footer p,
.hero-points li,
.stat-row span,
.footer-links a {
  color: var(--muted);
}

.contact-details p {
  color: var(--brand-dark);
  font-weight: 900;
}

.hero-copy {
  max-width: none;
  width: 100%;
  padding-top: 1.5rem;
}

.hero-text {
  max-width: 34rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.2rem 0 1.9rem;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding-left: 1.6rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--brand);
}

.hero-card {
  display: grid;
  gap: 1.25rem;
  align-self: start;
  width: 100%;
  padding-top: 0.5rem;
}

.stat-card,
.hero-note,
.service-card,
.location-card,
.contact-form,
.quote-panel,
.pillars div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 20px 44px rgba(48, 54, 60, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.stat-card {
  padding: 1.75rem;
}

.logo-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
}

.logo-panel-image {
  width: min(100%, 320px);
  height: auto;
  margin-bottom: 1rem;
}

.stat-label {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

.stat-row strong {
  text-align: center;
  white-space: nowrap;
}

.stat-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.stat-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: var(--ink);
}

.hero-note {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(106, 95, 182, 0.96), rgba(84, 73, 160, 0.96));
  color: white;
}

.hero-note p,
.hero-note a,
.hero-note h2 {
  color: white;
}

.hero-note h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: 2rem;
}


.section {
  padding: 7.5rem 0;
}

.section-alt {
  background: rgba(247, 245, 243, 0.8);
  border-top: 1px solid rgba(26, 47, 53, 0.06);
  border-bottom: 1px solid rgba(26, 47, 53, 0.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading p {
  max-width: 42rem;
}

.service-grid,
.location-grid {
  display: grid;
  gap: 1.65rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.location-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.location-card p + a {
  margin-top: auto;
}

.service-card h3,
.location-card h3 {
  margin-bottom: 0.55rem;
}

.pillars h3 {
  min-height: 51px;
  margin-bottom: 0.55rem;
}


.accent-card {
  background: linear-gradient(180deg, rgba(123, 97, 255, 0.08), rgba(255, 255, 255, 0.95));
}

.text-link,
.contact-details a {
  color: var(--brand-dark);
  font-weight: 900;
}

.location-card h3,
.location-card h3 a,
.location-card .text-link {
  color: var(--ink);
  font-weight: 900;
}

.location-card a:not(.text-link):not(h3 > a) {
  color: var(--brand-dark);
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 0.95rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 3.5rem;
  align-items: stretch;
}

.about-photo {
  display: flex;
  flex-direction: column;
}

.about-photo img {
  display: block;
  flex: 1;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.pillars div {
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pillars p {
  margin-bottom: 0;
}

.quote-panel {
  padding: 2.9rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.62));
}

blockquote {
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card a {
  display: block;
  margin-top: 0.45rem;
}

.contact-details {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.contact-form {
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.62));
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-form label:last-of-type,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 47, 53, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 1rem;
  font: inherit;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(123, 97, 255, 0.18);
  border-color: var(--brand);
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(26, 47, 53, 0.1);
}

.footer-branding {
  display: grid;
  gap: 0.7rem;
}

.footer-logo img {
  width: 260px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--brand);
  transition: color 200ms ease, background 200ms ease;
}

.footer-social a:hover {
  color: var(--brand);
  background: rgba(106, 95, 182, 0.1);
}

.social-icon {
  width: 26px;
  height: 26px;
}

.footer-social-label {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
  margin-right: 0.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .location-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .loc-panel-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 480px;
    height: auto;
  }

  .loc-map-wrap { border-top: 1px solid rgba(26,47,53,0.07); }

  .hero-copy {
    max-width: 100%;
    padding-top: 1rem;
  }

  .section-heading h2,
  .section-heading p {
    max-width: 100%;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0.25rem;
    right: 0.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(26, 47, 53, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-links {
    gap: 0.8rem;
  }

  .brand-logo img,
  .footer-logo img,
  .logo-panel-image {
    width: min(100%, 220px);
  }

  h1 {
    max-width: none;
  }
}



















.service-card,
.location-card,
.quote-panel,
.stat-card,
.hero-note,
.contact-form,
.pillars div {
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms ease, border-color 360ms ease;
}

.service-card:hover,
.location-card:hover,
.quote-panel:hover,
.stat-card:hover,
.hero-note:hover,
.contact-form:hover,
.pillars div:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(48, 54, 60, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(106, 95, 182, 0.45);
}


/* ─── SERVICE CARD ACCORDION ─── */
.card-expand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--brand-dark);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.card-expand:hover {
  color: var(--brand);
}

.card-expand .chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.card-expand[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.card-details {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
  opacity: 0;
}

.card-details.is-open {
  max-height: 600px;
  opacity: 1;
}

.card-details li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.card-details li:first-child {
  margin-top: 0.75rem;
}

.card-details li strong {
  color: var(--ink);
  font-weight: 700;
}

/* ─── WAVE DIVIDERS ─── */
.wave-sep {
  display: block;
  line-height: 0;
  margin: -1px 0;
  pointer-events: none;
}

.wave-sep svg {
  display: block;
  width: 100%;
  height: 52px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brand-dark);
}

.breadcrumb .sep {
  opacity: 0.4;
}

/* ─── LOCATION INFO BLOCK ─── */
.loc-address {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  margin-top: 0.75rem;
}

.loc-address p {
  margin: 0;
}

.loc-phones {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  margin-top: 0.25rem;
}

/* ─── NOISE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ─── NAV SCROLL COMPACT ─── */
.site-header {
  transition: padding 300ms ease;
}

.site-header.scrolled .nav-shell {
  min-height: 64px;
  padding: 0.5rem 1.35rem;
  box-shadow: 0 14px 36px rgba(48, 54, 60, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ─── SERVICE CARD ICONS ─── */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(106, 95, 182, 0.1);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accent-card .card-icon {
  background: rgba(106, 95, 182, 0.18);
}


/* ─── CONTACT SECTION ─── */
#contact {
  background:
    linear-gradient(135deg, rgba(26, 47, 53, 0.68) 0%, rgba(106, 95, 182, 0.32) 100%),
    url('pexels-codioful-7135011.jpg') center / cover no-repeat;
  border-top: none;
  border-bottom: none;
}

#contact .eyebrow,
#contact h2,
#contact > .container > div:first-child > p,
#contact .contact-details p {
  color: rgba(255, 255, 255, 0.9);
}

#contact .contact-details a {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── LOCATION PANEL ─── */
.loc-panel-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 47, 53, 0.08);
  box-shadow: 0 24px 60px rgba(48, 54, 60, 0.1);
  margin-top: 2rem;
}

.loc-sidebar {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  overflow: hidden;
  border-right: 1px solid rgba(26, 47, 53, 0.07);
}

.loc-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.loc-search-icon {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  pointer-events: none;
}

#loc-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid rgba(26, 47, 53, 0.14);
  border-radius: 50px;
  font: inherit;
  font-size: 1rem;
  background: rgba(247, 245, 243, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
}

#loc-search:focus { border-color: var(--brand); }

.loc-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.loc-filter {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(26, 47, 53, 0.12);
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 180ms ease;
}

.loc-filter:hover { border-color: var(--brand); color: var(--brand); }
.loc-filter.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.loc-sidebar-label {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-top: 0.25rem;
}

#loc-entries {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.loc-entry {
  padding: 1.1rem 0.75rem 1.1rem 1rem;
  border-top: 1px solid rgba(26, 47, 53, 0.07);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.loc-entry:first-child { border-top: none; }
.loc-entry:hover { background: rgba(106, 95, 182, 0.06); border-left-color: rgba(106, 95, 182, 0.4); }
.loc-entry.active { background: rgba(106, 95, 182, 0.08); border-left-color: var(--brand); }

.loc-entry h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.loc-entry p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.loc-entry-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.loc-entry-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.loc-entry-phone svg {
  width: 14px;
  height: 14px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.loc-entry-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-dark);
  text-decoration: none;
  white-space: nowrap;
}

.loc-entry-link:hover { text-decoration: underline; }

.loc-map-wrap {
  position: relative;
  overflow: hidden;
}

#locations-map {
  width: 100%;
  height: 100%;
}

.loc-map-card {
  display: none;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 290px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 40px rgba(48, 54, 60, 0.14);
  padding: 1.35rem 1.5rem;
}

.loc-map-card.visible { display: block; }

.loc-map-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.loc-map-card-eyebrow svg {
  width: 15px;
  height: 15px;
  stroke: var(--brand);
  flex-shrink: 0;
}

#loc-map-card-title {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

#loc-map-card-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

#loc-map-card-btn {
  display: block;
  text-align: center;
  width: 100%;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

/* ─── PROMISE SECTION ─── */
.promise-section {
  background:
    linear-gradient(135deg, rgba(106, 95, 182, 0.18) 0%, rgba(26, 47, 53, 0.55) 100%),
    url('pexels-codioful-7130543.jpg') center / cover no-repeat;
}

.quote-panel {
  padding: 3.5rem;
}

/* ─── FOOTER COPYRIGHT ─── */
.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.75;
}

/* ─── FLOATING MOBILE CTA ─── */
.floating-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 30;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 0.88rem 1.4rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(106, 95, 182, 0.4), 0 4px 8px rgba(84, 73, 160, 0.2);
  align-items: center;
  gap: 0.55rem;
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease, opacity 380ms ease;
}

.floating-call svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.floating-call.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-call:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 18px 40px rgba(106, 95, 182, 0.46), 0 6px 12px rgba(84, 73, 160, 0.26);
}

@media (max-width: 960px) {
  .floating-call {
    display: flex;
  }
}
