/* =============================================
   THE CLOSING CREW — style.css
   Aesthetic: Refined luxury / real estate editorial
   Palette: Deep navy + teal + crisp white
   ============================================= */

:root {
  --navy: #16242E;
  --navy-mid: #1E3344;
  --navy-light: #26404F;
  --teal: #098EAC;
  --teal-dark: #066E87;
  --teal-mid: #52B8CC;
  --teal-light: #A8DDE8;
  --teal-pale: #EAF7FA;
  --cream: #F7FCFD;
  --white: #FFFFFF;
  --text-dark: #16242E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --border: rgba(22,36,46,0.1);
  --border-light: rgba(255,255,255,0.12);
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(22,36,46,0.08);
  --shadow-lg: 0 12px 48px rgba(22,36,46,0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1160px;
  --nav-h: 76px;
}

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

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

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

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: #066E87;
  border-color: #066E87;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(9,142,172,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn--nav {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn--nav:hover { background: #066E87; border-color: #066E87; }

.btn--full { width: 100%; justify-content: center; }

/* ── TYPOGRAPHY ────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--teal-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--teal-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}

.section-header { margin-bottom: 3.5rem; }
.section-header--light .section-sub { color: rgba(253,250,246,0.75); }

.section { padding: 6rem 0; }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-mark--sm { width: 30px; height: 30px; font-size: 0.75rem; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--teal-light); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem 2rem 2rem;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile.open { display: flex; }

.mobile-link {
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-link:last-of-type { border-bottom: none; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(9,142,172,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #0D1B2A 0%, #1A2E42 50%, #0D1B2A 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(9,142,172,0.08);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(9,142,172,0.05);
}

.hero__inner {
  position: relative;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
  max-width: 740px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,142,172,0.12);
  border: 1px solid rgba(9,142,172,0.25);
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}
.hero__headline em {
  font-style: italic;
  color: var(--teal);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(253,250,246,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 0.7s ease 1.2s forwards;
}
.hero__scroll-hint span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--teal);
  animation: scanLine 2s ease-in-out 1.5s infinite;
}

/* ── TRUST BAR ────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 2.5rem;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ─────────────────────────────── */
.services { background: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(9,142,172,0.4);
  transform: translateY(-3px);
}

.service-card--accent {
  background: var(--navy);
  border-color: var(--navy-mid);
}
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255,255,255,0.65); }
.service-card--accent .service-card__icon { color: var(--teal); background: rgba(9,142,172,0.12); }

.service-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale);
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.72;
}

.service-card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(9,142,172,0.2);
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(9,142,172,0.3);
}

/* ── HOW IT WORKS ─────────────────────────── */
.hiw {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hiw::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(9,142,172,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.hiw__connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(9,142,172,0.4), rgba(9,142,172,0.05));
  margin-top: 2rem;
  flex-shrink: 1;
  min-width: 1.5rem;
}

.hiw__step {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiw__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(9,142,172,0.2);
  line-height: 1;
  transition: color 0.3s;
}
.hiw__step:hover .hiw__num { color: rgba(9,142,172,0.5); }

.hiw__content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.hiw__content p {
  font-size: 0.9rem;
  color: rgba(253,250,246,0.6);
  line-height: 1.75;
}

/* ── ABOUT ────────────────────────────────── */
.about { background: var(--white); }

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

.about__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
}

.about__img-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(9,142,172,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--teal);
}
.about__img-placeholder svg { width: 64px; height: 64px; }
.about__img-placeholder span {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__img-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.about__img-badge span:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.about__img-badge span:last-child {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__text-col p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.pill {
  background: var(--teal-pale);
  border: 1px solid rgba(9,142,172,0.3);
  color: #065A6E;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials { background: var(--cream); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-card--featured {
  background: var(--navy);
  border-color: var(--navy-mid);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.testi-card--featured p { color: rgba(255,255,255,0.75); }
.testi-card--featured .testi-author strong { color: var(--white); }
.testi-card--featured .testi-author span { color: rgba(255,255,255,0.45); }

.testi-stars {
  color: var(--teal);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-initials {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #065A6E;
  flex-shrink: 0;
}
.testi-card--featured .testi-initials {
  background: rgba(9,142,172,0.15);
  color: var(--teal-light);
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── CONTACT ──────────────────────────────── */
.contact {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 0% 100%, rgba(9,142,172,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.contact__info { padding-top: 0.5rem; }

.contact__info p {
  color: rgba(253,250,246,0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__details { display: flex; flex-direction: column; gap: 1rem; }

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(253,250,246,0.75);
  font-size: 0.92rem;
}
.contact__detail svg { color: var(--teal); flex-shrink: 0; }

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #08111C;
  color: rgba(255,255,255,0.55);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__links,
.footer__contact,
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links strong,
.footer__contact strong,
.footer__social strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.footer__links a,
.footer__contact span {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal-light); }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.social-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.footer__bottom {
  padding: 1.25rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a { transition: color 0.2s; }
.footer__legal a:hover { color: var(--teal-light); }

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scanLine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .nav__links, .btn--nav { display: none; }
  .nav__hamburger { display: flex; }

  .hiw__steps { flex-direction: column; gap: 2rem; }
  .hiw__connector { display: none; }
  .hiw__step { flex: none; width: 100%; }

  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-frame { max-width: 100%; aspect-ratio: 3/2; }
  .about__img-placeholder { aspect-ratio: 3/2; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testi-card--featured { transform: none; }

  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

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

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }

  .trust-bar__inner { gap: 0; }
  .trust-item { padding: 0.5rem 1rem; }
  .trust-divider { display: none; }

  .services__grid { grid-template-columns: 1fr; }

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }

  .hero__ctas { flex-direction: column; }
  .hero__scroll-hint { display: none; }
}

/* ── FAQ ────────────────────────────────────── */
.faq { background: var(--white); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: none; }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: background 0.2s;
}
.faq__q:hover { background: var(--teal-pale); }
.faq__q[aria-expanded="true"] { color: var(--teal); background: var(--teal-pale); }

.faq__icon {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--teal-pale);
}
.faq__a.open { display: block; }

.faq__a p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
}

/* ── LOGO IMAGE ─────────────────────────────── */
.nav__logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .nav__logo-img { height: 34px; }
}
