/* ---------- Design tokens ---------- */
:root{
  --cream: #FFF4E8;
  --cream-deep: #F7E8D4;
  --coral: #FF6F59;
  --coral-deep: #E8543E;
  --turquoise: #2FD9C4;
  --turquoise-deep: #1FB9A6;
  --plum: #3B1F5C;
  --plum-deep: #2B1547;
  --muted: #6B5A7A;
  --white: #FFFFFF;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --wrap: 1360px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main, .footer{ position: relative; z-index: 1; }

.bg-bubbles{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubble-wrap{ position: absolute; transition: transform 0.6s ease-out; }
.bubble{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 70%, var(--tint), transparent 70%),
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 28%, transparent 55%);
  box-shadow:
    inset -6px -8px 16px rgba(59,31,92,0.08),
    inset 4px 6px 14px rgba(255,255,255,0.6),
    0 8px 20px rgba(59,31,92,0.12);
  animation: bubbleFloat ease-in-out infinite;
}
.bubble::after{
  content: "";
  position: absolute;
  top: 16%;
  left: 22%;
  width: 18%;
  height: 10%;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  transform: rotate(-30deg);
  filter: blur(1px);
}
.bubble--coral{ --tint: rgba(255,111,89,0.32); }
.bubble--turquoise{ --tint: rgba(47,217,196,0.32); }
.bubble--plum{ --tint: rgba(59,31,92,0.24); }

.bubble-wrap--1{ top: 2%; left: 4%; }
.bubble-wrap--1 .bubble{ width: 200px; height: 200px; animation-duration: 17s; }
.bubble-wrap--2{ top: 0%; right: 4%; }
.bubble-wrap--2 .bubble{ width: 260px; height: 260px; animation-duration: 21s; animation-delay: -4s; }
.bubble-wrap--3{ top: 32%; right: 8%; }
.bubble-wrap--3 .bubble{ width: 130px; height: 130px; animation-duration: 19s; animation-delay: -9s; }
.bubble-wrap--4{ top: 48%; left: 2%; }
.bubble-wrap--4 .bubble{ width: 220px; height: 220px; animation-duration: 23s; animation-delay: -2s; }
.bubble-wrap--5{ bottom: 6%; right: 6%; }
.bubble-wrap--5 .bubble{ width: 150px; height: 150px; animation-duration: 18s; animation-delay: -12s; }
.bubble-wrap--6{ bottom: 2%; left: 8%; }
.bubble-wrap--6 .bubble{ width: 190px; height: 190px; animation-duration: 20s; animation-delay: -6s; }
.bubble-wrap--7{ top: 11%; left: 15%; }
.bubble-wrap--7 .bubble{ width: 60px; height: 60px; animation-duration: 14s; animation-delay: -3s; }
.bubble-wrap--8{ top: 17%; right: 17%; }
.bubble-wrap--8 .bubble{ width: 70px; height: 70px; animation-duration: 16s; animation-delay: -8s; }
.bubble-wrap--9{ bottom: 17%; right: 19%; }
.bubble-wrap--9 .bubble{ width: 55px; height: 55px; animation-duration: 15s; animation-delay: -5s; }
.bubble-wrap--10{ top: 6%; left: 47%; }
.bubble-wrap--10 .bubble{ width: 160px; height: 160px; animation-duration: 20s; animation-delay: -7s; }
.bubble-wrap--11{ top: 26%; left: 58%; }
.bubble-wrap--11 .bubble{ width: 90px; height: 90px; animation-duration: 16s; animation-delay: -10s; }

@keyframes bubbleFloat{
  0%, 100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(34px,-40px) scale(1.1); }
  66%{ transform: translate(-28px,30px) scale(0.92); }
}

@media (prefers-reduced-motion: reduce){
  .bubble{ animation: none; }
  .bubble-wrap{ transition: none; }
}

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

h1,h2,h3{
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p{ margin: 0; }
ul{ margin: 0; padding: 0; list-style: none; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus{ left: 0; }

a:focus-visible,
button:focus-visible{
  outline: 2.5px solid var(--plum);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn--coral{ background: var(--coral); color: var(--white); }
.btn--coral:hover{ background: var(--coral-deep); }

.btn--outline{ background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn--outline:hover{ background: var(--plum); color: var(--white); }

.btn--outline-light{ background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn--outline-light:hover{ background: rgba(255,255,255,0.12); }

.btn--lg{ padding: 14px 28px; font-size: 15px; }

/* ---------- Nav ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(120deg, #FFF1EC, #EAFBF8);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(59,31,92,0.08);
}
.nav::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--turquoise), var(--plum), var(--coral));
}
.nav__bubble{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 70%, var(--tint), transparent 70%),
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 28%, transparent 55%);
  box-shadow:
    inset -6px -8px 16px rgba(59,31,92,0.08),
    inset 4px 6px 14px rgba(255,255,255,0.6),
    0 8px 20px rgba(59,31,92,0.12);
  animation: bubbleFloat ease-in-out infinite;
}
.nav__bubble--1{ width: 30px; height: 30px; top: -10px; left: 8%; --tint: rgba(255,111,89,0.32); animation-duration: 11s; }
.nav__bubble--2{ width: 22px; height: 22px; bottom: -7px; right: 16%; --tint: rgba(47,217,196,0.32); animation-duration: 13s; animation-delay: -3s; }

@media (prefers-reduced-motion: reduce){
  .nav__bubble{ animation: none; }
}
.nav__inner{
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.nav__brand{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.nav__mark{ height: 52px; width: auto; }
.nav__word{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--plum);
}
.nav__word-light{ font-weight: 500; opacity: 0.75; }

.nav__links{
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}
.nav__links a:hover{ color: var(--coral); }

.nav__toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span{
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
}

.mobile-menu{
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
}
.mobile-menu a{
  padding: 12px 4px;
  font-weight: 600;
  border-bottom: 1px solid rgba(59,31,92,0.08);
}
.mobile-menu .btn{ margin-top: 12px; align-self: flex-start; }

.nav.is-open .mobile-menu{ display: flex; }

/* ---------- Hero ---------- */
.hero{ padding: 64px 0 40px; }
.hero__inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.eyebrow{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--turquoise-deep);
  margin-bottom: 16px;
}
.hero__title{
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: var(--plum);
}
.hero__sub{
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
}
.hero__actions{
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero__badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.hero__badge-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.hero__badge-pill svg{ flex-shrink: 0; }
.hero__badge-pill:nth-child(1){ background: rgba(255,111,89,0.16); color: var(--coral-deep); }
.hero__badge-pill:nth-child(1) svg{ color: var(--coral-deep); }
.hero__badge-pill:nth-child(2){ background: rgba(47,217,196,0.2); color: var(--turquoise-deep); }
.hero__badge-pill:nth-child(2) svg{ color: var(--turquoise-deep); }
.hero__badge-pill:nth-child(3){ background: rgba(59,31,92,0.1); color: var(--plum); }
.hero__badge-pill:nth-child(3) svg{ color: var(--plum); }
.hero__art{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge{
  width: min(100%, 380px);
  filter: drop-shadow(0 18px 30px rgba(59,31,92,0.15));
}

/* ---------- Section shell ---------- */
.section-title{
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  text-align: center;
}
.section-sub{
  text-align: center;
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

/* ---------- Services ---------- */
.services{ padding: 64px 0; }
.quote-banner{
  position: relative;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, #FFF1EC, #EAFBF8);
  border: 1px solid rgba(59,31,92,0.08);
  opacity: 0;
  transform: scale(0.85) translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.34,1.56,0.64,1), transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.quote-banner.is-visible{
  opacity: 1;
  transform: scale(1) translateY(0);
}
.quote-banner p{ margin: 0; font-size: 15px; color: var(--plum); }
.quote-banner .btn{ flex-shrink: 0; }

.quote-banner__bubble{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 70%, var(--tint), transparent 70%),
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.15) 28%, transparent 55%);
  box-shadow:
    inset -6px -8px 16px rgba(59,31,92,0.08),
    inset 4px 6px 14px rgba(255,255,255,0.6),
    0 8px 20px rgba(59,31,92,0.12);
  animation: bubbleFloat ease-in-out infinite;
}
.quote-banner__bubble--1{ width: 46px; height: 46px; top: -18px; left: 24px; --tint: rgba(255,111,89,0.32); animation-duration: 12s; }
.quote-banner__bubble--2{ width: 34px; height: 34px; bottom: -14px; right: 60px; --tint: rgba(47,217,196,0.32); animation-duration: 14s; animation-delay: -4s; }

@media (prefers-reduced-motion: reduce){
  .quote-banner{ opacity: 1; transform: none; transition: none; }
  .quote-banner__bubble{ animation: none; }
}
.services__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.service-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border-top: 4px solid transparent;
}
.service-card--coral{ background: #FFF1EC; border-top-color: var(--coral); }
.service-card--turquoise{ background: #EAFBF8; border-top-color: var(--turquoise); }

.service-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.service-card--coral .service-card__icon{ background: var(--coral); }
.service-card--turquoise .service-card__icon{ background: var(--turquoise); }
.service-card h3{
  font-size: 21px;
  margin-bottom: 6px;
}
.service-card__pitch{
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
.service-card--coral .service-card__pitch{ color: var(--coral-deep); }
.service-card--turquoise .service-card__pitch{ color: var(--turquoise-deep); }

.service-card li{
  font-size: 14.5px;
  color: var(--muted);
  padding: 7px 0;
  border-top: 1px solid rgba(59,31,92,0.08);
}
.service-card li:first-child{ border-top: none; }

.service-card__cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 700;
  transition: gap 0.15s ease;
}
.service-card--coral .service-card__cta{ color: var(--coral-deep); }
.service-card--turquoise .service-card__cta{ color: var(--turquoise-deep); }
.service-card__cta:hover{ gap: 10px; }

/* ---------- Process ---------- */
.process{ padding: 56px 0; background: var(--cream-deep); }
.process__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process__step{
  position: relative;
  text-align: left;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border-top: 4px solid transparent;
  box-shadow: 0 6px 18px rgba(59,31,92,0.06);
}
.process__step:nth-child(1){ background: #FFF1EC; border-top-color: var(--coral); }
.process__step:nth-child(2){ background: #EAFBF8; border-top-color: var(--turquoise); }
.process__step:nth-child(3){ background: #F3EDFA; border-top-color: var(--plum); }
.process__step:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 41px;
  left: 100%;
  width: 24px;
  border-top: 2px dashed rgba(59,31,92,0.25);
}
.process__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.process__step:nth-child(1) .process__num{ background: var(--coral); }
.process__step:nth-child(2) .process__num{ background: var(--turquoise); color: var(--plum-deep); }
.process__step:nth-child(3) .process__num{ background: var(--plum); }
.process__step h3{ font-size: 18px; margin-bottom: 8px; }
.process__step p{ color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Gallery ---------- */
.gallery{ padding: 64px 0; }
.gallery__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.ba-card{ margin: 0; }
.ba-card__images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 200px;
}
.ba-card__side{
  position: relative;
  overflow: hidden;
  background: #C9BFB0;
}
.ba-card__side img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-card__label{
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(59, 31, 92, 0.72);
  backdrop-filter: blur(2px);
}
.ba-card__side--after .ba-card__label{ background: rgba(47, 217, 196, 0.9); color: var(--plum-deep); }
.ba-card figcaption{
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.ba-card__note{
  font-size: 11px;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  opacity: 0.75;
  white-space: nowrap;
}

/* ---------- Trust strip ---------- */
.trust-strip{
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 18px 24px;
  border-top: 1px solid rgba(59,31,92,0.08);
  border-bottom: 1px solid rgba(59,31,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.trust-strip svg{ color: var(--coral); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band{ background: var(--plum); padding: 56px 0; }
.cta-band__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: clamp(24px, 3vw, 30px); }
.cta-band p{ color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 14.5px; }
.cta-band__actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer{ background: var(--plum-deep); color: rgba(255,255,255,0.85); }
.footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 48px 24px 32px;
}
.footer__brand{ display: flex; align-items: center; gap: 12px; }
.footer__mark{ height: 36px; width: auto; }
.footer__word{ font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 16px; }
.footer__tag{ font-size: 12.5px; color: var(--turquoise); margin-top: 2px; }

.footer__col{ display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer__heading{ font-weight: 700; color: var(--white); margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__col a:hover{ color: var(--turquoise); }

.footer__social{ display: flex; gap: 12px; }
.footer__social a{
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.footer__social a:hover{ border-color: var(--turquoise); color: var(--turquoise); }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .nav__links, .nav__cta{ display: none; }
  .nav__toggle{ display: flex; }

  .hero__inner{ grid-template-columns: 1fr; text-align: center; }
  .hero__sub{ margin-left: auto; margin-right: auto; }
  .hero__actions{ justify-content: center; }
  .hero__badges{ justify-content: center; }
  .hero__art{ order: -1; }
  .hero__badge{ width: min(70%, 260px); }

  .services__grid{ grid-template-columns: 1fr; }
  .process__list{ grid-template-columns: 1fr; }
  .process__step::after{ display: none; }
  .gallery__grid{ grid-template-columns: 1fr; }

  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }

  .cta-band__inner{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px){
  .footer__inner{ grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}


/* ===== Lively SGV visual upgrade ===== */
.hero{ position:relative; overflow:hidden; padding-top:72px; }
.hero::before{
  content:""; position:absolute; inset:0; z-index:-2;
  background:linear-gradient(105deg,rgba(255,244,232,.98) 0%,rgba(255,244,232,.9) 48%,rgba(234,251,248,.75) 100%),url("assets/manicured-backyard.jpg") center/cover;
}
.hero::after{
  content:""; position:absolute; width:430px; height:430px; right:-190px; top:-180px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%,rgba(255,255,255,.85),rgba(47,217,196,.2) 46%,rgba(47,217,196,.02) 72%);
  z-index:-1;
}
.hero-photo-card{position:relative;min-height:470px;border-radius:42% 58% 38% 62% / 46% 42% 58% 54%;overflow:hidden;box-shadow:0 28px 60px rgba(59,31,92,.22);transform-style:preserve-3d;transition:transform .25s ease, border-radius .35s ease}
.hero-photo-card:hover{border-radius:55% 45% 55% 45% / 42% 58% 42% 58%}
.hero-photo-card__image{width:100%;height:100%;min-height:470px;object-fit:cover}
.hero-photo-card__shade{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(30,12,48,.5))}
.hero-photo-card__stamp{position:absolute;left:24px;bottom:24px;right:24px;display:flex;align-items:center;gap:13px;padding:15px 18px;border:1px solid rgba(255,255,255,.55);background:rgba(255,255,255,.82);backdrop-filter:blur(14px);border-radius:22px;color:var(--plum);box-shadow:0 12px 35px rgba(20,10,35,.16)}
.hero-photo-card__stamp span{display:flex;flex-direction:column}.hero-photo-card__stamp strong{font-family:var(--font-display);font-size:18px}.hero-photo-card__stamp small{margin-top:2px;color:var(--muted)}
.hero-photo-card__bubble{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.72);background:rgba(255,255,255,.22);backdrop-filter:blur(3px);box-shadow:inset 4px 5px 12px rgba(255,255,255,.5),0 10px 25px rgba(59,31,92,.12);animation:bubbleFloat 8s ease-in-out infinite}
.hero-photo-card__bubble--1{width:72px;height:72px;right:20px;top:35px}.hero-photo-card__bubble--2{width:38px;height:38px;left:24px;top:75px;animation-delay:-3s}
.service-card,.ba-card,.process__step{transition:transform .22s ease,box-shadow .22s ease}.service-card:hover,.ba-card:hover,.process__step:hover{transform:translateY(-8px);box-shadow:0 20px 45px rgba(59,31,92,.14)}
.local-experts{padding:86px 0;background:linear-gradient(135deg,rgba(47,217,196,.1),rgba(255,255,255,.62),rgba(255,111,89,.09));position:relative;overflow:hidden}
.local-experts::after{content:"SGV";position:absolute;right:-15px;bottom:-58px;font-family:var(--font-display);font-weight:800;font-size:220px;line-height:1;color:rgba(59,31,92,.035);pointer-events:none}
.local-experts__grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:68px;align-items:center}
.local-experts__photo{position:relative;border-radius:34px;overflow:hidden;box-shadow:0 24px 55px rgba(59,31,92,.18);transform:rotate(-2deg)}
.local-experts__photo img{width:100%;height:430px;object-fit:cover;transition:transform .6s ease}.local-experts__photo:hover img{transform:scale(1.05)}
.local-experts__photo-label{position:absolute;left:18px;bottom:18px;background:rgba(255,255,255,.88);backdrop-filter:blur(10px);padding:12px 16px;border-radius:16px;font-weight:700;color:var(--plum)}
.local-experts__photo-label span{display:inline-block;background:var(--coral);color:white;border-radius:999px;padding:5px 9px;margin-right:7px;font-size:11px;text-transform:uppercase;letter-spacing:.05em}
.local-experts__copy>p:not(.eyebrow){color:var(--muted);line-height:1.75;margin-top:20px;max-width:620px}
.city-bubbles{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0}.city-bubbles span{padding:10px 15px;border-radius:999px;background:white;border:1px solid rgba(59,31,92,.1);font-size:13px;font-weight:700;color:var(--plum);box-shadow:0 7px 20px rgba(59,31,92,.07);transition:transform .18s ease,background .18s ease}.city-bubbles span:hover{transform:translateY(-4px) rotate(-1deg);background:var(--turquoise)}
.text-link{font-weight:800;color:var(--coral-deep)}.text-link span{display:inline-block;transition:transform .18s ease}.text-link:hover span{transform:translateX(5px)}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease}.reveal.is-visible{opacity:1;transform:none}
@media(max-width:880px){.hero-photo-card,.hero-photo-card__image{min-height:380px}.local-experts__grid{grid-template-columns:1fr;gap:38px}.local-experts__photo{max-width:650px;margin:auto}.local-experts__photo img{height:360px}}
@media(max-width:520px){.hero{padding-top:42px}.hero-photo-card,.hero-photo-card__image{min-height:320px}.hero-photo-card__stamp{left:14px;right:14px;bottom:14px}.local-experts{padding:62px 0}.local-experts__photo img{height:300px}}


/* ===== Subtler image treatment + service page expansion ===== */
.hero-photo-card{
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid rgba(59,31,92,0.08);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 28px 60px rgba(59,31,92,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-photo-card:hover{
  border-radius: 28px;
  box-shadow: 0 32px 64px rgba(59,31,92,.2);
}
.hero-photo-card__image{
  min-height: 460px;
}
.hero-photo-card__shade{
  background: linear-gradient(180deg, rgba(20,12,35,0.03), rgba(20,12,35,0.48));
}
.hero-photo-card__stamp--subtle{
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 14px 32px rgba(20,10,35,.12);
}
.hero-photo-card__bubble{
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.16);
  box-shadow: inset 2px 2px 8px rgba(255,255,255,.35), 0 8px 18px rgba(59,31,92,.08);
  animation-duration: 10s;
}
.hero-photo-card__bubble--1{ width: 42px; height: 42px; right: 16px; top: 16px; }
.hero-photo-card__bubble--2{ width: 24px; height: 24px; left: 18px; top: 18px; animation-delay: -2s; }

.section-heading-inline{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.section-actions{
  margin-top: 26px;
  display:flex;
  justify-content:center;
}
.services__visuals{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.image-feature-card{
  margin:0;
  border-radius: 24px;
  overflow:hidden;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(59,31,92,0.08);
  box-shadow: 0 18px 40px rgba(59,31,92,0.10);
}
.image-feature-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.image-feature-card__meta{
  padding: 16px 18px 18px;
}
.image-feature-card__meta h3{
  font-size: 20px;
  color: var(--plum);
}
.image-feature-card__meta p{
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.image-feature-card__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(59,31,92,0.08);
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.image-feature-card__tag--after{
  background: rgba(47,217,196,0.16);
  color: var(--turquoise-deep);
}

/* Service page */
.page-hero{
  position: relative;
  overflow: hidden;
  padding: 76px 0 48px;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: linear-gradient(125deg, rgba(255,244,232,.96) 0%, rgba(255,255,255,.92) 48%, rgba(234,251,248,.78) 100%);
}
.page-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items:center;
}
.page-hero__title{
  font-size: clamp(38px, 5vw, 58px);
  color: var(--plum);
}
.page-hero__sub{
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
}
.page-photo-stack{
  position:relative;
  min-height: 430px;
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  border: 1px solid rgba(59,31,92,0.08);
  box-shadow: 0 28px 60px rgba(59,31,92,.16);
}
.page-photo-stack__main{
  width:100%;
  height: 394px;
  object-fit:cover;
  border-radius: 22px;
}
.page-photo-stack__float{
  position:absolute;
  width: 38%;
  left: -12px;
  bottom: 34px;
  height: 180px;
  object-fit:cover;
  border-radius: 18px;
  border: 5px solid #fff;
  box-shadow: 0 18px 36px rgba(59,31,92,.16);
}
.page-photo-stack__badge{
  position:absolute;
  right: 28px;
  bottom: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(59,31,92,.88);
  color:#fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-highlights{
  padding: 0 0 24px;
}
.service-highlights__row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.service-highlights__row span{
  padding: 10px 16px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid rgba(59,31,92,.09);
  box-shadow: 0 8px 20px rgba(59,31,92,.07);
  font-weight: 700;
  font-size: 13px;
}
.service-detail-section{
  padding: 28px 0 74px;
}
.service-detail-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.service-detail-card{
  background:#fff;
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(59,31,92,.08);
  box-shadow: 0 16px 36px rgba(59,31,92,.09);
}
.service-detail-card__image{
  width:100%;
  height: 230px;
  object-fit:cover;
}
.service-detail-card__content{
  padding: 22px 22px 24px;
}
.service-detail-card__content h3{
  font-size: 24px;
  color: var(--plum);
}
.service-detail-card__content p{
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14.5px;
}
.service-detail-card__content ul{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}
.service-detail-card__content li{
  position:relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--plum-deep);
}
.service-detail-card__content li::before{
  content:"";
  position:absolute;
  left:0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius:50%;
  background: var(--coral);
}
.service-detail-card__eyebrow{
  margin:0 0 10px;
  color: var(--turquoise-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gallery__grid--service-page .ba-card__images{
  height: 230px;
}
.service-fit{
  padding: 0 0 70px;
}
.service-fit__box{
  background: linear-gradient(135deg, rgba(59,31,92,.96), rgba(59,31,92,.82));
  border-radius: 28px;
  padding: 34px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:start;
  color:#fff;
}
.service-fit__box .eyebrow,
.service-fit__box .section-title{
  color:#fff;
}
.service-fit__list{
  display:grid;
  gap: 12px;
}
.service-fit__list li{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
}

@media (max-width: 980px){
  .services__visuals,
  .service-detail-grid,
  .page-hero__grid,
  .service-fit__box{
    grid-template-columns: 1fr;
  }
  .page-photo-stack{
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 880px){
  .section-heading-inline{
    align-items:flex-start;
  }
  .hero-photo-card,
  .hero-photo-card__image{
    min-height: 360px;
  }
  .page-photo-stack{
    min-height: auto;
  }
  .page-photo-stack__main{
    height: 340px;
  }
}

@media (max-width: 640px){
  .services__visuals,
  .service-detail-grid{
    gap: 16px;
  }
  .image-feature-card img,
  .service-detail-card__image,
  .gallery__grid--service-page .ba-card__images{
    height: 210px;
  }
  .page-photo-stack{
    padding: 14px;
  }
  .page-photo-stack__main{
    height: 290px;
  }
  .page-photo-stack__float{
    position: static;
    width: 100%;
    height: 160px;
    margin-top: 14px;
    border-width: 0;
  }
  .page-photo-stack__badge{
    right: 20px;
    top: 20px;
    bottom: auto;
  }
  .service-fit__box{
    padding: 26px 22px;
  }
}
