/* =========================================================
   Joyful Journey Home Care - styles.css
   Brand palette:
     gold-700  #a07a2c   gold-600 #c1a447   gold-500 #c49c4d
     gold-300  #e9ce98   gold-200 #eed982
     ink-900   #000000   ink-800  #1d1d1d   ink-700 #323232
   ========================================================= */

:root {
  --gold-700: #a07a2c;
  --gold-600: #c1a447;
  --gold-500: #c49c4d;
  --gold-400: #d8b673;
  --gold-300: #e9ce98;
  --gold-200: #eed982;
  --gold-100: #f7ecc8;
  --gold-50:  #fbf6e6;

  --ink-900:  #000000;
  --ink-800:  #1d1d1d;
  --ink-700:  #323232;
  --ink-600:  #4a4a4a;
  --ink-500:  #6b6b6b;
  --ink-400:  #9a9a9a;
  --ink-200:  #e7e3d8;
  --ink-100:  #f1ede2;

  --paper:    #fdfaf2;
  --cream:    #faf3df;
  --white:    #ffffff;

  --grad-gold: linear-gradient(135deg, #eed982 0%, #c49c4d 55%, #a07a2c 100%);
  --grad-soft: linear-gradient(180deg, #fbf6e6 0%, #ffffff 100%);
  --grad-dark: linear-gradient(135deg, #1d1d1d 0%, #323232 60%, #1d1d1d 100%);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 14px rgba(50, 50, 50, .06);
  --shadow:    0 10px 30px rgba(50, 50, 50, .10);
  --shadow-lg: 0 24px 60px rgba(50, 50, 50, .14);

  --container: 1200px;
  --header-h:  84px;

  --font-sans: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(1.85rem, 5.6vw, 3.6rem); font-weight: 600; text-wrap: balance; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.5rem); text-wrap: balance; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-700); }

p  { margin: 0 0 1rem; }

ul[role="list"] { list-style: none; padding: 0; margin: 0; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ---------- Lucide icons ---------- */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.75;
  display: inline-block;
  vertical-align: -2px;
  box-sizing: content-box;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.btn [data-lucide] { font-size: 1.1rem; }

.btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

.btn--primary {
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  background-size: 200% 200%;
  background-position: left;
  color: #443a03;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  transition: transform 3s ease, background-position 3s ease, box-shadow .3s ease, color .3s ease;
}
.btn--primary [data-lucide] { color: #443a03; }
.btn--primary:hover {
  transform: scale(0.97);
  animation: gradientShimmer 5s ease infinite;
  background-position: right;
  color: #2d2602;
}
.btn--primary:hover [data-lucide] { color: #2d2602; }

@keyframes gradientShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn--ghost {
  background: transparent;
  color: var(--ink-700);
  padding: .73rem 1.23rem;
  border: 2px solid rgba(50,50,50,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--lg.btn--ghost { padding: .93rem 1.58rem; }
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--gold-500);
  color: var(--ink-800);
}

.btn--ghost-light {
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: .73rem 1.23rem;
  border: 2px solid rgba(255,255,255,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--lg.btn--ghost-light { padding: .93rem 1.58rem; }
.btn--ghost-light:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--gold-300);
  color: #fff;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-800);
  color: var(--gold-200);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  padding: .55rem 0;
  justify-content: flex-end;
}
.topbar__item { display: inline-flex; align-items: center; gap: .35rem; color: var(--gold-200); }
.topbar__item:hover { color: var(--gold-300); }
.topbar__sep { color: rgba(238, 217, 130, .35); }
@media (max-width: 640px) {
  .topbar__inner { justify-content: center; font-size: .78rem; }
  .topbar__sep:nth-of-type(1) { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 242, .85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(253, 250, 242, .96);
  border-bottom-color: rgba(196, 156, 77, .25);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink-800);
}
.brand__mark {
  width: auto;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand__text { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink-800);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold-700);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
}
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: .25rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: right .25s ease;
}
.nav a:hover { color: var(--ink-800); }
.nav a:hover::after { right: 0; }

.nav__cta { padding: .65rem 1.1rem; font-size: .9rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(50,50,50,.15);
  border-radius: 12px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--ink-700);
  cursor: pointer;
}
.nav-toggle [data-lucide] { font-size: 1.25rem; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 20px 1.4rem;
  background: var(--paper);
  border-bottom: 1px solid rgba(196, 156, 77, .25);
  box-shadow: var(--shadow);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem .85rem;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-700);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.mobile-menu__nav a [data-lucide] {
  font-size: 1.1rem;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .45rem;
  border-radius: 10px;
  flex-shrink: 0;
}
.mobile-menu__nav a:hover {
  background: var(--cream);
  color: var(--ink-800);
  border-color: rgba(196, 156, 77, .25);
}
.mobile-menu__cta { padding-top: .25rem; }
.mobile-menu__cta .btn { width: 100%; }
.mobile-menu__contact {
  display: grid;
  gap: .5rem;
  padding-top: .9rem;
  border-top: 1px dashed rgba(196, 156, 77, .35);
}
.mobile-menu__contact a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .25rem;
  font-size: .92rem;
  color: var(--ink-600);
}
.mobile-menu__contact a [data-lucide] {
  font-size: 1rem;
  color: var(--gold-700);
}
.mobile-menu__contact a:hover { color: var(--gold-700); }

@media (max-width: 960px) {
  .nav, .nav__cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__inner { justify-content: space-between; }
  .mobile-menu[data-open="true"] { display: flex; }
}

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 156, 77, .25);
}
.eyebrow [data-lucide] { color: var(--gold-600); }
.eyebrow--light {
  color: var(--gold-200);
  background: rgba(238, 217, 130, .08);
  border-color: rgba(238, 217, 130, .25);
}
.eyebrow--light [data-lucide] { color: var(--gold-300); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head h2 { margin-top: 1rem; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; max-width: 600px; margin-inline: auto; }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head--left p { margin-inline: 0; }

.accent { color: var(--gold-700); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(238, 217, 130, .35), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(196, 156, 77, .15), transparent 55%),
    var(--grad-soft);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero__bg-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.hero__bg-blob--1 {
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(238, 217, 130, .9), transparent);
  top: -80px; left: -80px;
}
.hero__bg-blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(196, 156, 77, .35), transparent);
  bottom: -160px; right: -120px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__inner > * { min-width: 0; }
.hero__copy { min-width: 0; }
.hero__title, .hero__lead { overflow-wrap: anywhere; }

.hero__title {
  margin: 1.1rem 0 1.2rem;
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--ink-600);
  max-width: 560px;
  margin-bottom: 1.8rem;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem;
  padding: 1rem 0 0;
  border-top: 1px dashed rgba(196, 156, 77, .35);
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .92rem; color: var(--ink-600);
}
.hero__trust [data-lucide] { color: var(--gold-700); }

/* Hero media */
.hero__media {
  position: relative;
  aspect-ratio: 5/5;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
.hero__photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  inset: 6% 0 0 8%;
  width: 78%; height: 82%;
  border: 4px solid var(--white);
}
.hero__photo--accent {
  width: 50%;
  height: 46%;
  bottom: 0; right: 0;
  border: 4px solid var(--white);
  border-radius: var(--radius-lg);
  transform: rotate(-2deg);
}
.hero__badge {
  position: absolute;
  top: 6%;
  right: -12px;
  background: var(--white);
  border-radius: 18px;
  padding: .8rem 1rem;
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 156, 77, .25);
}
.hero__badge [data-lucide] {
  font-size: 1.4rem;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: .55rem;
  border-radius: 12px;
}
.hero__badge strong { display: block; font-family: var(--font-display); color: var(--ink-800); }
.hero__badge span { font-size: .8rem; color: var(--ink-500); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { justify-self: center; max-width: 520px; aspect-ratio: 6/5; }
  .hero__badge { right: 8px; }
}
@media (max-width: 520px) {
  .hero__photo--accent { width: 60%; height: 50%; }
  .hero__badge { right: 8px; padding: .55rem .7rem; font-size: .9rem; }
  .hero__badge strong { font-size: .95rem; }
  .hero__badge [data-lucide] { font-size: 1.1rem; padding: .4rem; }
}

/* ---------- Strip (mission quote) ---------- */
.strip {
  background: var(--grad-dark);
  color: var(--gold-200);
  padding: 1.6rem 0;
  border-top: 4px solid var(--gold-500);
  border-bottom: 4px solid var(--gold-500);
}
.strip__inner p {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-style: italic;
}
.strip .accent { color: var(--gold-300); }
.strip__quote { color: var(--gold-500); margin-right: .35rem; }

/* ---------- Stats strip ---------- */
.stats {
  background: var(--paper);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  position: relative;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem .75rem;
  background: #fff;
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-500);
}
.stat [data-lucide] {
  font-size: 1.75rem;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .7rem;
  border-radius: 14px;
  margin-bottom: .85rem;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #c1a447 0%, #8d6504 50%, #c59f35 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}
.stat span {
  font-size: .92rem;
  color: var(--ink-500);
  font-weight: 500;
}
@media (max-width: 760px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 380px) {
  .stats__inner { grid-template-columns: 1fr; }
}

/* ---------- How it works ---------- */
.how {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
  position: relative;
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 12%, var(--gold-500) 88%, transparent 100%);
  opacity: .35;
  z-index: 0;
}
.how-step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-500);
}
.how-step__num {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .35rem .65rem;
  border-radius: 999px;
  align-self: flex-start;
  border: 1px solid rgba(196, 156, 77, .25);
}
.how-step__icon {
  margin-top: 1rem;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--gold-50);
  border: 1px solid rgba(196, 156, 77, .25);
  color: var(--gold-700);
  font-size: 1.5rem;
}
.how-step h3 {
  margin: 1rem 0 .35rem;
  font-size: 1.15rem;
}
.how-step p {
  margin: 0;
  color: var(--ink-500);
  font-size: .95rem;
}
.how-cta {
  text-align: center;
}
@media (max-width: 1000px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
}
@media (max-width: 520px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.about__stat {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--white);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold-500);
  max-width: 290px;
}
.about__stat strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-700);
  line-height: 1;
}
.about__stat span { font-size: .85rem; color: var(--ink-500); }

.about__copy h2 { margin-top: 1rem; }
.about__points { display: grid; gap: .9rem; margin-top: 1.5rem; }
.about__points li {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--cream);
  border: 1px solid rgba(196, 156, 77, .2);
  padding: .9rem 1rem;
  border-radius: var(--radius);
  color: var(--ink-700);
}
.about__points [data-lucide] {
  color: var(--gold-700);
  background: var(--white);
  padding: .5rem;
  border-radius: 10px;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__stat { right: 12px; bottom: -32px; }
}

/* ---------- Services ---------- */
.services {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.service-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__head {
  display: flex; gap: 1rem; margin-bottom: 1.25rem;
  align-items: flex-start;
}
.service-card__head h3 { margin: 0 0 .25rem; font-size: 1.4rem; }
.service-card__head p  { margin: 0; color: var(--ink-500); font-size: .95rem; }
.service-card__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--gold-50);
  border: 1px solid rgba(196, 156, 77, .25);
  color: var(--gold-700);
  font-size: 1.5rem;
}

.service-list { display: grid; gap: .65rem; }
.service-list li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .95rem;
  padding: .55rem .25rem;
  border-bottom: 1px dashed rgba(196, 156, 77, .2);
  color: var(--ink-700);
}
.service-list li:last-child { border-bottom: 0; }
.service-list [data-lucide] {
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .4rem;
  border-radius: 8px;
  font-size: 1.1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.service-grid h4 { margin-bottom: .65rem; }

.service-list--compact li {
  padding: .35rem .15rem;
  font-size: .9rem;
  border-bottom: 0;
}

.service-card__cta {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  color: var(--gold-700);
  align-self: flex-start;
}
.service-card__cta:hover { color: var(--gold-600); }
.service-card__cta:hover [data-lucide] { transform: translateX(4px); }
.service-card__cta [data-lucide] { transition: transform .2s ease; }

@media (max-width: 820px) {
  .service-tabs { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

/* Service highlights */
.service-highlights {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-highlights figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-highlights img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-highlights figure:hover img { transform: scale(1.05); }
.service-highlights figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,.95);
  padding: .55rem .85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-800);
  display: inline-flex; align-items: center; gap: .4rem;
  box-shadow: var(--shadow-sm);
}
.service-highlights figcaption [data-lucide] { color: var(--gold-700); }

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

/* ---------- Why us ---------- */
.why {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--grad-dark);
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(196, 156, 77, .25), transparent);
  filter: blur(40px);
}
.why::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(closest-side, rgba(238, 217, 130, .15), transparent);
  filter: blur(40px);
}
.why__inner { position: relative; }
.why h2 { color: #fff; }
.why__inner > .section-head { margin-bottom: 3rem; }
.why__inner > .section-head p { color: rgba(255,255,255,.7); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(238, 217, 130, .15);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(238, 217, 130, .35);
}
.why-card [data-lucide] {
  font-size: 1.6rem;
  color: var(--gold-200);
  background: rgba(238, 217, 130, .12);
  padding: .7rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: inline-flex;
}
.why-card h3 { color: #fff; margin-bottom: .35rem; font-size: 1.15rem; }
.why-card p  { margin: 0; color: rgba(255,255,255,.65); font-size: .95rem; }

@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ---------- Team ---------- */
.team { padding: clamp(4rem, 9vw, 7rem) 0; }
.team__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.team__copy h2 { margin-top: 1rem; }
.team__roles { display: grid; gap: 1rem; margin: 1.5rem 0; }
.team__roles li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(196, 156, 77, .2);
  box-shadow: var(--shadow-sm);
}
.team__roles [data-lucide] {
  font-size: 1.5rem;
  color: var(--gold-700);
  background: var(--gold-50);
  padding: .6rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.team__roles strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-800);
}
.team__roles span { color: var(--ink-500); font-size: .92rem; }

.team__note {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--cream);
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: 999px;
  padding: .6rem 1rem;
  font-size: .92rem;
  color: var(--ink-700);
  margin-top: .25rem;
}
.team__note [data-lucide] { color: var(--gold-700); }

.team__media {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.team__photo.is-active {
  opacity: 1;
}
.team__media-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}
.team__media-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  transition: width .35s ease, background .35s ease;
}
.team__media-dots .dot.is-active {
  width: 18px;
  background: var(--gold-300);
}

@media (max-width: 900px) {
  .team__inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .team__photo { transition: none; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
}
.testimonial-marquee {
  --card-w: 360px;
  --card-gap: 24px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
}
.testimonial-track {
  display: flex;
  width: max-content;
  padding: .5rem 0;
  animation: testimonial-marquee 90s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.testimonial-marquee.is-ready .testimonial-track {
  animation-play-state: running;
}
.testimonial-marquee.is-ready:hover .testimonial-track,
.testimonial-track:focus-within {
  animation-play-state: paused;
}
.testimonial-track .quote-card {
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  margin-right: var(--card-gap);
}
@keyframes testimonial-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc((var(--card-w) + var(--card-gap)) * -9), 0, 0); }
}
.quote-card {
  position: relative;
  margin: 0;
  padding: 2rem 1.8rem 1.6rem;
  background: var(--white);
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quote-card__mark {
  font-size: 2rem !important;
  color: var(--gold-500);
  background: var(--gold-50);
  padding: .55rem;
  border-radius: 14px;
  align-self: flex-start;
  margin-bottom: 1rem;
}
.quote-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-800);
  line-height: 1.55;
  flex: 1;
}
.quote-card figcaption {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink-500);
  font-size: .9rem;
  margin-bottom: .85rem;
}
.quote-card .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--grad-gold);
}
.quote-card__stars {
  display: inline-flex;
  gap: .15rem;
  color: var(--gold-600);
}
.quote-card__stars [data-lucide] {
  width: 18px; height: 18px;
  fill: var(--gold-500);
  stroke: var(--gold-700);
}

.quote-card--dark {
  background: var(--grad-dark);
  color: rgba(255,255,255,.85);
  border-color: rgba(238, 217, 130, .25);
}
.quote-card--dark blockquote { color: var(--gold-200); }
.quote-card--dark figcaption { color: rgba(255,255,255,.6); }
.quote-card--dark .quote-card__mark {
  color: var(--gold-200);
  background: rgba(238, 217, 130, .12);
}

@media (max-width: 640px) {
  .testimonial-marquee { --card-w: 300px; --card-gap: 16px; }
  .testimonial-track { animation-duration: 60s; }
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(800px 500px at 90% 100%, rgba(196, 156, 77, .25), transparent 60%),
    var(--grad-dark);
  color: rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact h2 { color: #fff; }
.contact__copy p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 540px; }

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-bottom: 2rem;
}
.contact-card {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(238, 217, 130, .18);
  color: #fff;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.contact-card:hover {
  background: rgba(238, 217, 130, .08);
  border-color: rgba(238, 217, 130, .4);
  transform: translateY(-2px);
  color: #fff;
}
.contact-card--static { cursor: default; }
.contact-card--static:hover { transform: none; background: rgba(255,255,255,.05); border-color: rgba(238, 217, 130, .18); }
.contact-card [data-lucide] {
  font-size: 1.3rem;
  color: var(--gold-200);
  background: rgba(238, 217, 130, .12);
  padding: .55rem;
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; word-break: break-word; }
.contact-card span  { font-size: .82rem; color: rgba(255,255,255,.6); }

.contact__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Contact form */
.contact-form {
  background: var(--white);
  color: var(--ink-700);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -3px; left: 1.6rem; right: 1.6rem;
  height: 4px;
  background: var(--grad-gold);
  border-radius: 999px;
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: .35rem;
  color: var(--ink-800);
}
.contact-form__sub { color: var(--ink-500); margin-bottom: 1.4rem; font-size: .95rem; }

.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-700);
  margin-bottom: .35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-800);
  padding: .8rem 1rem;
  background: var(--paper);
  border: 1px solid rgba(196, 156, 77, .25);
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 156, 77, .18);
}
.field textarea { resize: vertical; min-height: 110px; }

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

.contact-form__hint {
  display: inline-flex; align-items: center; gap: .35rem;
  margin: 1rem 0 0;
  font-size: .82rem;
  color: var(--ink-500);
}
.contact-form__hint [data-lucide] { color: var(--gold-700); }

/* Inline form status message */
.form-status {
  margin: .75rem 0 0;
  font-size: .9rem;
  min-height: 1.2em;
  color: var(--ink-500);
}
.form-status--error {
  color: #b34141;
  font-weight: 500;
}

/* Success card shown after a successful submission */
.form-success {
  background: var(--white);
  color: var(--ink-700);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-success::before {
  content: '';
  position: absolute;
  top: -3px; left: 1.6rem; right: 1.6rem;
  height: 4px;
  background: var(--grad-gold);
  border-radius: 999px;
}
.form-success__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #443a03;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-success__icon [data-lucide] {
  font-size: 1.9rem;
  stroke-width: 2.5;
}
.form-success h3 {
  margin: 0 0 .5rem;
  color: var(--ink-800);
  font-size: 1.4rem;
}
.form-success p {
  margin: 0 0 1.5rem;
  color: var(--ink-500);
  font-size: .98rem;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}
.form-success__ctas {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e0e0e;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(238, 217, 130, .12);
}
.footer__brand p { margin-top: 1rem; max-width: 380px; color: rgba(255,255,255,.55); font-size: .92rem; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__sub { color: var(--gold-300); }

.footer__col h4 {
  color: var(--gold-200);
  font-family: var(--font-sans);
  margin-bottom: .9rem;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__col a {
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .94rem;
}
.footer__col a:hover { color: var(--gold-200); }
.footer__col [data-lucide] { color: var(--gold-300); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: .75rem;
}
.footer__tag [data-lucide] { color: var(--gold-500); }

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

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }
  .testimonial-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .testimonial-track .quote-card { scroll-snap-align: start; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196, 156, 77, .35);
  background: transparent;
  color: var(--ink-700);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .25s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  background: var(--gold-50);
  color: var(--gold-700);
  border-color: var(--gold-500);
  transform: rotate(15deg);
}
.theme-toggle [data-lucide] {
  font-size: 1.15rem;
  transition: transform .35s ease, opacity .25s ease;
}
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: inline-block; }
[data-theme="dark"] .theme-toggle__sun { display: inline-block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle {
  border-color: rgba(238, 217, 130, .35);
  color: var(--gold-200);
}
[data-theme="dark"] .theme-toggle:hover {
  background: rgba(238, 217, 130, .12);
  color: var(--gold-200);
  border-color: var(--gold-300);
}

@media (max-width: 960px) {
  .theme-toggle {
    margin-left: auto;
    margin-right: 8px;
  }
}

/* ---------- Dark theme ---------- */
:root[data-theme="dark"] {
  --paper:    #121212;
  --cream:    #1c1a16;
  --white:    #1f1f1f;
  --ink-800:  #f4ecd0;
  --ink-700:  #d6cfb9;
  --ink-600:  #b3ad9c;
  --ink-500:  #8a857a;
  --ink-400:  #5a564f;
  --ink-200:  #2c2a26;
  --ink-100:  #1a1a18;
  --gold-50:  #2a2418;
  --grad-soft: linear-gradient(180deg, #1a1714 0%, #121212 100%);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .35);
  --shadow:    0 10px 30px rgba(0, 0, 0, .45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
}

[data-theme="dark"] body {
  background: var(--paper);
  color: var(--ink-700);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3 {
  color: var(--ink-800);
}

[data-theme="dark"] .topbar {
  background: #0a0a0a;
}

[data-theme="dark"] .site-header {
  background: rgba(18, 18, 18, .85);
}
[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(18, 18, 18, .96);
  border-bottom-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .brand__name { color: var(--ink-800); }
[data-theme="dark"] .nav a { color: var(--ink-700); }
[data-theme="dark"] .nav a:hover { color: var(--ink-800); }

[data-theme="dark"] .nav-toggle {
  border-color: rgba(238, 217, 130, .25);
  color: var(--ink-700);
}

[data-theme="dark"] .mobile-menu {
  background: var(--paper);
  border-bottom-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .mobile-menu a:hover { background: var(--cream); color: var(--ink-800); }

[data-theme="dark"] .eyebrow {
  color: var(--gold-200);
  background: rgba(238, 217, 130, .08);
  border-color: rgba(238, 217, 130, .25);
}
[data-theme="dark"] .eyebrow [data-lucide] { color: var(--gold-300); }

[data-theme="dark"] .hero {
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(196, 156, 77, .18), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(238, 217, 130, .08), transparent 55%),
    var(--grad-soft);
}
[data-theme="dark"] .hero__bg-blob--1 {
  background: radial-gradient(closest-side, rgba(196, 156, 77, .35), transparent);
}
[data-theme="dark"] .hero__bg-blob--2 {
  background: radial-gradient(closest-side, rgba(238, 217, 130, .12), transparent);
}
[data-theme="dark"] .hero__lead { color: var(--ink-600); }
[data-theme="dark"] .hero__trust { border-top-color: rgba(196, 156, 77, .35); }
[data-theme="dark"] .hero__trust li { color: var(--ink-600); }
[data-theme="dark"] .hero__photo--main,
[data-theme="dark"] .hero__photo--accent {
  border-color: rgba(238, 217, 130, .12);
}
[data-theme="dark"] .hero__badge {
  background: var(--white);
  border-color: rgba(238, 217, 130, .2);
}
[data-theme="dark"] .hero__badge strong { color: var(--ink-800); }
[data-theme="dark"] .hero__badge span { color: var(--ink-500); }
[data-theme="dark"] .hero__badge [data-lucide] {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .12);
}

[data-theme="dark"] .about__media .about__stat {
  background: var(--white);
  border-left-color: var(--gold-500);
}
[data-theme="dark"] .about__stat span { color: var(--ink-500); }
[data-theme="dark"] .about__points li {
  background: var(--cream);
  border-color: rgba(196, 156, 77, .2);
  color: var(--ink-700);
}
[data-theme="dark"] .about__points [data-lucide] {
  background: rgba(238, 217, 130, .08);
  color: var(--gold-300);
  box-shadow: none;
}

[data-theme="dark"] .services {
  background: linear-gradient(180deg, var(--paper) 0%, #181614 100%);
}
[data-theme="dark"] .service-card {
  background: var(--white);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .service-card__head p { color: var(--ink-500); }
[data-theme="dark"] .service-card__icon {
  background: rgba(238, 217, 130, .08);
  border-color: rgba(196, 156, 77, .25);
  color: var(--gold-300);
}
[data-theme="dark"] .service-list li {
  border-bottom-color: rgba(196, 156, 77, .2);
  color: var(--ink-700);
}
[data-theme="dark"] .service-list [data-lucide] {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
}
[data-theme="dark"] .service-card__cta { color: var(--gold-300); }
[data-theme="dark"] .service-card__cta:hover { color: var(--gold-200); }

[data-theme="dark"] .service-highlights figcaption {
  background: rgba(31, 31, 31, .92);
  color: var(--ink-800);
}
[data-theme="dark"] .service-highlights figcaption [data-lucide] { color: var(--gold-300); }

[data-theme="dark"] .team__roles li {
  background: var(--white);
  border-color: rgba(196, 156, 77, .2);
}
[data-theme="dark"] .team__roles strong { color: var(--ink-800); }
[data-theme="dark"] .team__roles span { color: var(--ink-500); }
[data-theme="dark"] .team__roles [data-lucide] {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
}
[data-theme="dark"] .team__note {
  background: var(--cream);
  border-color: rgba(196, 156, 77, .25);
  color: var(--ink-700);
}
[data-theme="dark"] .team__note [data-lucide] { color: var(--gold-300); }

[data-theme="dark"] .testimonials {
  background: linear-gradient(180deg, var(--paper) 0%, #181614 100%);
}
[data-theme="dark"] .quote-card {
  background: var(--white);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .quote-card blockquote { color: var(--ink-800); }
[data-theme="dark"] .quote-card figcaption { color: var(--ink-500); }
[data-theme="dark"] .quote-card__mark {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
}

[data-theme="dark"] .contact-form {
  background: var(--white);
  color: var(--ink-700);
}
[data-theme="dark"] .contact-form h3 { color: var(--ink-800); }
[data-theme="dark"] .contact-form__sub { color: var(--ink-500); }
[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea {
  background: var(--paper);
  border-color: rgba(196, 156, 77, .25);
  color: var(--ink-800);
}
[data-theme="dark"] .field input:focus,
[data-theme="dark"] .field select:focus,
[data-theme="dark"] .field textarea:focus {
  background: #1a1a1a;
  border-color: var(--gold-500);
}
[data-theme="dark"] .contact-form__hint { color: var(--ink-500); }

[data-theme="dark"] .form-success {
  background: var(--white);
}
[data-theme="dark"] .form-success h3 { color: var(--ink-800); }
[data-theme="dark"] .form-success p { color: var(--ink-500); }
[data-theme="dark"] .form-status--error { color: #f08c8c; }

[data-theme="dark"] .btn--ghost {
  color: var(--ink-700);
  border-color: rgba(238, 217, 130, .2);
}
[data-theme="dark"] .btn--ghost:hover {
  background: var(--cream);
  color: var(--ink-800);
  border-color: var(--gold-500);
}

[data-theme="dark"] .stats { background: var(--paper); }
[data-theme="dark"] .stat {
  background: var(--white);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .stat [data-lucide] {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
}
[data-theme="dark"] .stat span { color: var(--ink-500); }

[data-theme="dark"] .how {
  background: linear-gradient(180deg, var(--paper) 0%, #181614 100%);
}
[data-theme="dark"] .how-step {
  background: var(--white);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .how-step__num {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .how-step__icon {
  background: rgba(238, 217, 130, .08);
  border-color: rgba(196, 156, 77, .25);
  color: var(--gold-300);
}
[data-theme="dark"] .how-step h3 { color: var(--ink-800); }
[data-theme="dark"] .how-step p { color: var(--ink-500); }
[data-theme="dark"] .how-steps::before {
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 12%, var(--gold-500) 88%, transparent 100%);
  opacity: .25;
}

[data-theme="dark"] .mobile-menu {
  background: var(--paper);
  border-bottom-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .mobile-menu__nav a {
  color: var(--ink-700);
}
[data-theme="dark"] .mobile-menu__nav a [data-lucide] {
  color: var(--gold-300);
  background: rgba(238, 217, 130, .08);
}
[data-theme="dark"] .mobile-menu__nav a:hover {
  background: var(--cream);
  color: var(--ink-800);
  border-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .mobile-menu__contact {
  border-top-color: rgba(196, 156, 77, .25);
}
[data-theme="dark"] .mobile-menu__contact a {
  color: var(--ink-600);
}
[data-theme="dark"] .mobile-menu__contact a [data-lucide] {
  color: var(--gold-300);
}
[data-theme="dark"] .mobile-menu__contact a:hover { color: var(--gold-300); }
