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

:root {
  /* Brand Magenta (from logo) */
  --magenta-900: #7B0E3A;
  --magenta-800: #9C1249;
  --magenta-700: #B5154D;
  --magenta-600: #D6186E;
  --magenta-500: #E82A80;
  --magenta-400: #F04D99;
  --magenta-300: #F57DB5;
  --magenta-200: #FACDD9;
  --magenta-100: #FDE8EF;
  --magenta-50:  #FFF5F8;

  /* Gold (awards) */
  --gold-500: #D4A830;
  --gold-400: #E8C24A;
  --gold-100: #FEF9EC;

  /* Warm Neutrals */
  --slate-900: #1A1523;
  --slate-800: #2D2638;
  --slate-700: #3F3752;
  --slate-600: #585068;
  --slate-500: #756D85;
  --slate-400: #9E97AC;
  --slate-300: #CBC6D4;
  --slate-200: #E8E4ED;
  --slate-100: #F5F3F7;
  --white:     #FFFFFF;

  /* Semantic */
  --color-primary:     var(--magenta-600);
  --color-primary-dk:  var(--magenta-700);
  --color-primary-lt:  var(--magenta-100);
  --color-bg:          var(--white);
  --color-surface:     var(--magenta-50);
  --color-text:        var(--slate-800);
  --color-text-muted:  var(--slate-600);
  --color-border:      var(--slate-200);

  /* Typography */
  --font-heading: 'Figtree', system-ui, sans-serif;
  --font-body:    'Noto Sans', system-ui, sans-serif;

  /* Spacing */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px;  --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radii */
  --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,21,35,.06), 0 1px 2px rgba(26,21,35,.04);
  --shadow-md: 0 4px 16px rgba(26,21,35,.07), 0 2px 6px rgba(26,21,35,.04);
  --shadow-lg: 0 10px 40px rgba(26,21,35,.09), 0 4px 12px rgba(26,21,35,.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  padding-top: 62px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Skip Link ────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: var(--sp-4);
  background: var(--color-primary); color: var(--white);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-sm);
  font-family: var(--font-heading); font-weight: 600;
  z-index: 1000; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: var(--sp-4); }

/* ─── Navigation ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
}
.nav {
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-3) var(--sp-4);
  transition: box-shadow .3s ease;
}
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(26,21,35,.08);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
}
.nav__logo {
  display: flex; align-items: center; gap: var(--sp-3);
  text-decoration: none;
}
.nav__logo img { height: 44px; width: auto; object-fit: contain; }
.nav__links { display: flex; gap: var(--sp-6); list-style: none; }
.nav__links a {
  font-family: var(--font-heading); font-weight: 500; font-size: 15px;
  color: var(--slate-700); text-decoration: none;
  padding: var(--sp-2) 0; position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--color-primary);
  border-radius: 1px; transition: width .25s ease;
}
.nav__links a:hover { color: var(--color-primary); }
.nav__links a:hover::after { width: 100%; }
.nav__links a:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; border-radius: 3px; }

/* Mobile menu toggle */
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: var(--sp-2); color: var(--slate-700);
}
.nav__toggle svg line { transition: transform .2s ease, opacity .2s ease; transform-origin: center; }
.nav__toggle--open svg line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle--open svg line:nth-child(2) { opacity: 0; }
.nav__toggle--open svg line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--color-primary); color: var(--white);
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  padding: var(--sp-2) var(--sp-5); border-radius: var(--r-full);
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.nav__cta:hover { background: var(--color-primary-dk); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.nav__cta:active { transform: translateY(0); }
.nav__cta:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

@media (max-width: 767px) {
  .nav__inner { gap: var(--sp-2); }
  .nav__toggle { display: block; order: -1; }
  .nav__logo { flex: 1; min-width: 0; }
  .nav__logo img { height: 36px; }
  .nav__cta { padding: var(--sp-2) var(--sp-3); font-size: 13px; flex-shrink: 0; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--white);
    padding: var(--sp-4) var(--sp-6); gap: var(--sp-1);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: var(--sp-3) 0; }
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--magenta-50) 0%, var(--white) 50%, var(--gold-100) 100%);
  padding: var(--sp-20) var(--sp-4) var(--sp-24);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(214,24,110,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--sp-12);
  align-items: center;
}
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1fr 1fr; } }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--gold-100); border: 1.5px solid var(--gold-400);
  color: #92640C; font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  margin-bottom: var(--sp-5); width: fit-content;
}
.hero__title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1; color: var(--slate-900);
  margin-bottom: var(--sp-5); letter-spacing: -0.02em;
}
.hero__title .accent { color: var(--color-primary); }
.hero__sub {
  font-size: 1.125rem; color: var(--slate-700); line-height: 1.7;
  max-width: 54ch; margin-bottom: var(--sp-8);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ─── Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  background: var(--color-primary); color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--r-full);
  text-decoration: none; border: none; cursor: pointer; min-height: 52px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 4px 20px rgba(214,24,110,.25);
}
.btn-primary:hover { background: var(--color-primary-dk); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(214,24,110,.3); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  background: transparent; color: var(--color-primary);
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--r-full);
  text-decoration: none; cursor: pointer; min-height: 52px;
  border: 2px solid var(--color-primary);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn-outline:hover { background: var(--color-primary); color: var(--white); transform: translateY(-2px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

.btn-white {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  background: var(--white); color: var(--magenta-800);
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--r-full);
  text-decoration: none; cursor: pointer; min-height: 52px; border: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--magenta-50); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,.2); }
.btn-white:active { transform: translateY(0); }
.btn-white:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  background: transparent; color: var(--white);
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--r-full);
  text-decoration: none; cursor: pointer; min-height: 52px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }
.btn-ghost:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

/* ─── Hero Visual ──────────────────────────────────────── */
.hero__visual { display: flex; justify-content: center; }
.hero__logo-display {
  position: relative; background: var(--white);
  border-radius: var(--r-xl); padding: var(--sp-12);
  box-shadow: var(--shadow-lg); border: 1px solid var(--magenta-100);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6);
}
.hero__logo-display img { width: 100%; max-width: 280px; height: auto; object-fit: contain; }

.award-badges { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }
.award-badge {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-1);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #5C3800; border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-heading); font-weight: 700; text-align: center;
  box-shadow: 0 2px 10px rgba(212,168,48,.3);
}
.award-badge__year  { font-size: 11px; font-weight: 500; opacity: .8; }
.award-badge__label { font-size: 12px; font-weight: 700; line-height: 1.2; }

/* ─── Trust Bar ────────────────────────────────────────── */
.trust-bar {
  background: var(--magenta-800);
  color: var(--white); padding: var(--sp-8) var(--sp-4);
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: var(--sp-8);
  justify-content: center; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-heading); font-weight: 500; font-size: 15px;
}
.trust-item svg { color: var(--magenta-300); flex-shrink: 0; }

/* ─── Section Base ─────────────────────────────────────── */
.section { padding: var(--sp-20) var(--sp-4); }
.section--alt { background: var(--magenta-50); }
.section__inner { max-width: 1200px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: var(--sp-12); }
.section__eyebrow {
  display: inline-block; font-family: var(--font-heading); font-weight: 600;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--sp-3);
}
.section__title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--slate-900); line-height: 1.2; margin-bottom: var(--sp-4);
}
.section__desc {
  font-size: 1.0625rem; color: var(--slate-600); max-width: 58ch;
  margin: 0 auto; line-height: 1.7;
}

/* ─── Services Grid ────────────────────────────────────── */
.services-grid {
  display: grid; gap: var(--sp-5); grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--color-border); padding: var(--sp-8) var(--sp-6);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--magenta-200); }
.service-card__icon {
  width: 52px; height: 52px; background: var(--magenta-50); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-5); color: var(--color-primary);
  transition: background .25s ease;
}
.service-card:hover .service-card__icon { background: var(--magenta-100); }
.service-card__title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem;
  color: var(--slate-900); margin-bottom: var(--sp-2);
}
.service-card__desc { font-size: .9375rem; color: var(--slate-600); line-height: 1.65; }

/* ─── Why Choose Us ────────────────────────────────────── */
.why-grid { display: grid; gap: var(--sp-10); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-text .section__eyebrow,
.why-text .section__title,
.why-text .section__desc { text-align: left; max-width: unset; }
.why-list { list-style: none; margin-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-5); }
.why-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.why-item__icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--magenta-50); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary); margin-top: 2px;
  transition: background .25s ease;
}
.why-item:hover .why-item__icon { background: var(--magenta-100); }
.why-item__body h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--slate-900); margin-bottom: var(--sp-1); }
.why-item__body p  { font-size: .9375rem; color: var(--slate-600); line-height: 1.65; }

.why-award-card {
  background: var(--white); border-radius: var(--r-xl); border: 1px solid var(--magenta-100);
  padding: var(--sp-10) var(--sp-8); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-6); text-align: center;
}
.why-award-card__trophies { display: flex; gap: var(--sp-4); }
.trophy { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.trophy__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border-radius: var(--r-full); display: flex; align-items: center; justify-content: center;
  color: #5C3800; box-shadow: 0 4px 16px rgba(212,168,48,.3);
}
.trophy__year { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--slate-700); }
.why-award-card__headline { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--slate-900); }
.why-award-card__headline span { color: var(--gold-500); }
.why-award-card__sub { font-size: .9375rem; color: var(--slate-600); max-width: 34ch; }
.stars { display: flex; gap: var(--sp-1); color: var(--gold-400); }

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--color-border);
  padding: var(--sp-8) var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card__stars { display: flex; gap: 3px; color: var(--gold-400); }
.testimonial-card__quote { font-size: 1rem; color: var(--slate-700); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: var(--r-full); background: var(--magenta-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--magenta-800);
}
.testimonial-card__name { font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; color: var(--slate-900); }
.testimonial-card__location { font-size: .8125rem; color: var(--slate-500); }

/* ─── CTA / Contact ────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--magenta-800) 0%, var(--magenta-700) 50%, var(--magenta-900) 100%);
  padding: var(--sp-20) var(--sp-4); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,.04); top: -200px; right: -200px; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); bottom: -150px; left: -100px; pointer-events: none;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; gap: var(--sp-12); grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1fr 1fr; } }

.cta-text { color: var(--white); }
.cta-text .section__eyebrow { color: var(--magenta-300); }
.cta-text .section__title { color: var(--white); text-align: left; }
.cta-text .section__desc  { color: rgba(255,255,255,.8); text-align: left; max-width: unset; }
.cta-buttons { margin-top: var(--sp-8); display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.contact-cards { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px); border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6); display: flex; align-items: center; gap: var(--sp-4);
  color: var(--white); text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}
.contact-card:hover { background: rgba(255,255,255,.18); transform: translateX(4px); }
.contact-card:focus-visible { outline: 3px solid var(--magenta-300); outline-offset: 3px; border-radius: var(--r-lg); }
.contact-card__icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,255,255,.15); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--magenta-300);
}
.contact-card__label { font-size: 12px; color: rgba(255,255,255,.65); font-family: var(--font-heading); font-weight: 500; }
.contact-card__value { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--white); }

/* ─── Info Bar ─────────────────────────────────────────── */
.info-bar {
  background: var(--magenta-800); color: var(--white);
  padding: var(--sp-3) var(--sp-4);
}
.info-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-8);
  justify-content: center; align-items: center;
}
.info-bar__item {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-heading); font-weight: 500; font-size: 14px;
  color: var(--white); text-decoration: none; white-space: nowrap;
}
a.info-bar__item:hover { color: var(--magenta-200); }
.info-bar__item svg { color: var(--magenta-300); flex-shrink: 0; }

@media (max-width: 639px) {
  .info-bar__inner { flex-direction: column; gap: var(--sp-2); align-items: flex-start; padding: var(--sp-1) 0; }
  .info-bar__item { font-size: 13px; white-space: normal; }
}

/* ─── Google Reviews ──────────────────────────────────── */
.google-reviews {
  text-align: center; padding: var(--sp-8) var(--sp-4);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
}
.google-reviews__icon { margin-bottom: var(--sp-2); }
.google-reviews__stars { display: flex; gap: var(--sp-1); color: var(--gold-400); }
.google-reviews__title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--slate-900);
}
.google-reviews__desc { font-size: 1rem; color: var(--slate-600); }

/* ─── FAQ Accordion ───────────────────────────────────── */
.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--r-lg);
  margin-bottom: var(--sp-3); background: var(--white); overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item--open { border-color: var(--magenta-200); }

.faq-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--sp-5) var(--sp-6);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
  color: var(--slate-900); text-align: left; gap: var(--sp-4);
}
.faq-trigger:hover { color: var(--magenta-700); }
.faq-trigger:focus-visible {
  outline: 2px solid var(--magenta-400); outline-offset: -2px;
  border-radius: var(--r-lg);
}

.faq-icon {
  flex-shrink: 0; transition: transform .25s ease;
  color: var(--magenta-500);
}
.faq-item--open .faq-icon { transform: rotate(180deg); }

.faq-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 var(--sp-6);
}
.faq-item--open .faq-panel {
  max-height: 300px;
  padding: 0 var(--sp-6) var(--sp-5);
}
.faq-panel p {
  color: var(--slate-600); line-height: 1.7; font-size: 0.95rem;
}
.faq-panel a { color: var(--magenta-600); text-decoration: underline; text-underline-offset: 2px; }
.faq-panel a:hover { color: var(--magenta-800); }

@media (prefers-reduced-motion: reduce) {
  .faq-icon { transition: none; }
  .faq-panel { transition: none; }
}

/* ─── Careers Page ────────────────────────────────────── */
.careers-grid { display: grid; gap: var(--sp-5); }

.career-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--color-border); padding: var(--sp-8) var(--sp-6);
}
.career-card__header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-3);
}
.career-card__title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--slate-900); }
.career-card__type {
  display: inline-block; padding: var(--sp-1) var(--sp-3);
  background: var(--magenta-50); color: var(--magenta-700);
  border-radius: var(--r-full); font-size: 0.85rem; font-weight: 600;
}
.career-card__location {
  display: flex; align-items: center; gap: var(--sp-2);
  color: var(--slate-600); font-size: 0.95rem; margin-bottom: var(--sp-4);
}
.career-card__desc { color: var(--slate-700); line-height: 1.7; margin-bottom: var(--sp-4); }
.career-card__subtitle { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--slate-800); margin-bottom: var(--sp-2); }
.career-card__list { padding-left: var(--sp-5); color: var(--slate-700); line-height: 1.8; }
.career-card__list li::marker { color: var(--magenta-400); }

.apply-steps {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .apply-steps { grid-template-columns: repeat(3, 1fr); } }

.apply-step { text-align: center; }
.apply-step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--r-full);
  background: var(--magenta-600); color: var(--white);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  margin-bottom: var(--sp-3);
}
.apply-step__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--slate-900); margin-bottom: var(--sp-2); }
.apply-step__desc { color: var(--slate-600); font-size: 0.95rem; }
.apply-step__email {
  display: inline-block; margin-top: var(--sp-3);
  color: var(--magenta-600); font-weight: 600; font-size: 1.05rem;
  text-decoration: underline; text-underline-offset: 3px;
}
.apply-step__email:hover { color: var(--magenta-800); }

.why-work-grid {
  display: grid; gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .why-work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-work-grid { grid-template-columns: repeat(4, 1fr); } }

.why-work-item {
  text-align: center; padding: var(--sp-6) var(--sp-4);
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
}
.why-work-item svg { color: var(--magenta-500); margin-bottom: var(--sp-3); }
.why-work-item h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--slate-900); margin-bottom: var(--sp-2); }
.why-work-item p { color: var(--slate-600); font-size: 0.9rem; line-height: 1.6; }

/* ─── Location Cards ──────────────────────────────────── */
.locations-grid {
  display: grid; gap: var(--sp-6); grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }

.location-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--color-border); padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.location-card__badge {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  background: var(--gold-100); border: 1.5px solid var(--gold-400);
  color: #92640C; font-family: var(--font-heading); font-weight: 600; font-size: 11px;
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
  text-transform: uppercase; letter-spacing: .04em;
}
.location-card__name {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem;
  color: var(--slate-900); padding-right: var(--sp-10);
}
.location-card__address {
  font-size: .9375rem; color: var(--slate-600); line-height: 1.5;
}
.location-card__details {
  display: flex; flex-direction: column; gap: var(--sp-2); flex: 1;
}
.location-card__hours,
.location-card__phone-info {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: .875rem; color: var(--slate-600); line-height: 1.5;
}
.location-card__hours svg,
.location-card__phone-info svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.location-card__hours em { font-style: italic; color: var(--slate-500); }
.location-card__actions {
  display: flex; flex-direction: column; gap: var(--sp-3); margin-top: auto;
}
.location-card__call { width: 100%; justify-content: center; }
.location-card__directions { width: 100%; justify-content: center; }

@media (max-width: 639px) {
  .location-card__actions { gap: var(--sp-2); }
  .location-card__call { min-height: 52px; font-size: 1.0625rem; }
}

.location-card__map {
  margin-top: var(--sp-4); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--color-border);
}
.location-card__map iframe { display: block; width: 100%; height: 200px; }

/* ─── Footer ───────────────────────────────────────────── */
.footer { background: var(--slate-900); color: var(--slate-300); padding: var(--sp-12) var(--sp-4) var(--sp-8); }
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: var(--sp-10); justify-content: space-between;
}
.footer__brand { max-width: 280px; }
.footer__logo { height: 40px; object-fit: contain; margin-bottom: var(--sp-4); }
.footer__tagline { font-size: .9375rem; color: var(--slate-400); line-height: 1.65; }
.footer__col h4 { font-family: var(--font-heading); font-weight: 600; font-size: .9375rem; color: var(--white); margin-bottom: var(--sp-4); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__col a {
  font-size: .9375rem; color: var(--slate-400); text-decoration: none;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--magenta-400); }
.footer__col a:focus-visible { outline: 2px solid var(--magenta-400); outline-offset: 2px; border-radius: 2px; }

.footer__bottom {
  max-width: 1200px; margin: var(--sp-10) auto 0;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--sp-6);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; align-items: center;
}
.footer__copy { font-size: .875rem; color: var(--slate-500); }
.footer__badge {
  display: flex; align-items: center; gap: var(--sp-2);
  background: rgba(214,24,110,.1); border: 1px solid rgba(214,24,110,.2);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full);
  font-size: .8125rem; color: var(--magenta-400); font-family: var(--font-heading); font-weight: 500;
}

/* ─── Scroll Reveal Animation ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── Back to Top Button ───────────────────────────────── */
.back-to-top {
  position: fixed; bottom: var(--sp-6); right: var(--sp-6);
  width: 48px; height: 48px; border-radius: var(--r-full);
  background: var(--color-primary); color: var(--white);
  border: none; cursor: pointer; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.back-to-top.visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.back-to-top:hover { background: var(--color-primary-dk); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 3px; }

/* ─── Active nav link ──────────────────────────────────── */
.nav__links a.active { color: var(--color-primary); }
.nav__links a.active::after { width: 100%; }

/* ─── Legal Content Pages ─────────────────────────────── */
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--slate-900); margin-top: var(--sp-8); margin-bottom: var(--sp-3);
}
.legal-content p { color: var(--slate-700); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-content ul { padding-left: var(--sp-5); color: var(--slate-700); line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-content ul li::marker { color: var(--magenta-400); }
.legal-content a { color: var(--magenta-600); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--magenta-800); }
.legal-updated { font-size: 0.9rem; color: var(--slate-500); margin-bottom: var(--sp-6); }

/* ─── Footer Legal Links ──────────────────────────────── */
.footer__legal {
  display: flex; gap: var(--sp-4); justify-content: center;
  margin-top: var(--sp-3);
}
.footer__legal a {
  color: var(--slate-400); font-size: 0.85rem; text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal a:hover { color: var(--white); }

/* ─── Print Styles ────────────────────────────────────── */
@media print {
  /* Hide interactive / non-essential elements */
  .nav, .back-to-top, .nav__cta, .hero__actions, .btn-primary, .btn-outline,
  .btn-white, .btn-ghost, .cta-section, .trust-bar, .faq-accordion,
  .skip-link, .location-card__actions, .location-card__map, .footer__legal,
  .footer__badge, .google-reviews { display: none !important; }

  /* Reset backgrounds and colors for ink-friendly printing */
  body { background: white; color: black; font-size: 12pt; }
  .section--alt { background: white; }
  .footer { background: white; color: black; border-top: 1px solid #ccc; padding: 1em 0; }
  .footer__tagline, .footer__copy, .footer__col a { color: #333; }
  .footer__col h4 { color: black; }

  /* Show URLs after links */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  a[href^="tel:"]::after { content: " " attr(href); font-size: 0.8em; color: #666; }

  /* Ensure location cards print well */
  .locations-grid { display: block; }
  .location-card { page-break-inside: avoid; border: 1px solid #ccc; margin-bottom: 1em; padding: 1em; }
  .location-card__name { color: black; }

  /* Force page breaks where helpful */
  section { page-break-inside: avoid; }
}
