/* ================================================================
   GOLDEN ROOM HOME CARE — MAIN STYLESHEET
   Palette: Warm Ivory + Deep Forest Green + Antique Gold
   Aesthetic: Warm-editorial / trusted authority / refined care
   ================================================================ */

/* ── FONTS ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────────────── */
:root {
  --green-deep:   #1B3A2D;
  --green-mid:    #2D5C42;
  --green-soft:   #4A8463;
  --gold:         #C9963E;
  --gold-light:   #E8B86D;
  --gold-pale:    #F5E6C8;
  --ivory:        #FAF7F2;
  --ivory-dark:   #F0EBE1;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;
  --white:        #FFFFFF;
  --footer-bg:    #1B3A2D;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --shadow-sm:    0 2px 8px rgba(27,58,45,.08);
  --shadow-md:    0 6px 24px rgba(27,58,45,.12);
  --shadow-lg:    0 16px 48px rgba(27,58,45,.16);

  --transition:   0.25s ease;
  --max-width:    1200px;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::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(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: 1.05rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(201,150,62,.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,62,.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--green-deep);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green-deep);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--green-deep);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.3rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(27,58,45,.09);
  transition: box-shadow var(--transition);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  box-shadow: inset 0 0 0 1.5px rgba(201,150,62,.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--green-deep); letter-spacing: -.01em; }
.logo-sub  { font-size: .65rem; font-weight: 600; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }

.main-nav { flex: 1; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.main-nav > ul > li > a {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: .6rem .95rem;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
  letter-spacing: .01em;
}
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: .95rem;
  right: .95rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav > ul > li > a:hover { color: var(--green-deep); }
.main-nav > ul > li > a:hover::after { transform: scaleX(1); }
.main-nav .active > a { color: var(--green-deep); font-weight: 600; }
.main-nav .active > a::after { transform: scaleX(1); background: var(--green-mid); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 28px rgba(27,58,45,.11);
  padding: .5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: .55rem 1rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover { color: var(--green-deep); background: var(--ivory-dark); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--ivory-dark);
}
.phone-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--green-deep);
  letter-spacing: .01em;
  transition: color var(--transition);
  white-space: nowrap;
}
.phone-link:hover { color: var(--gold); }
.phone-link svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── SECTION LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.page-hero + .section,
.page-hero + section { padding-top: 3.5rem; }
.section-dark {
  background: var(--green-deep);
  background-image:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201,150,62,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(74,132,99,.15) 0%, transparent 55%);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.8); }
.section-warm { background: var(--ivory-dark); }
.section-pale { background: var(--gold-pale); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header p { font-size: 1.1rem; margin-top: .8rem; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(27,58,45,.92) 0%, rgba(27,58,45,.6) 60%, rgba(27,58,45,.3) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-text .eyebrow { color: var(--gold-light); }
.hero-text h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-text h1 em { font-style: italic; color: var(--gold-light); }
.hero-text p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 540px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.trust-badge svg { color: var(--gold-light); flex-shrink: 0; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--green-deep); font-size: 1.3rem; margin-bottom: .4rem; }
.hero-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 1.5rem; }
.quick-form .form-group { margin-bottom: 1rem; }
.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(74,132,99,.12);
}
.quick-form textarea { resize: vertical; min-height: 90px; }

/* ── TRUST STRIP ────────────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-item svg { color: var(--green-soft); }
.trust-divider { width: 1px; height: 28px; background: var(--ivory-dark); }

/* ── FEATURES GRID (3×N, no centering offsets) ──────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.features-grid .service-card,
.features-grid .service-card:nth-child(4),
.features-grid .service-card:nth-child(5) { grid-column: span 1; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .features-grid { grid-template-columns: 1fr; } }

/* ── SERVICE CARDS ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.service-card {
  grid-column: span 2;
  background: var(--white);
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem 1.8rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  border-color: var(--gold-pale);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }
.service-num {
  position: absolute;
  top: .6rem;
  right: 1.2rem;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(27,58,45,.05);
  font-family: var(--font-serif);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 16px rgba(201,150,62,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(201,150,62,.55);
}
.service-icon svg { color: var(--green-deep); stroke-width: 2; }
.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: .55rem;
  color: var(--green-deep);
}
.service-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.service-card a.learn-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--green-soft);
  margin-top: 1.3rem;
  text-decoration: none;
  letter-spacing: .03em;
  transition: gap .25s ease, color .25s ease;
}
.service-card a.learn-more:hover { gap: .65rem; color: var(--green-deep); }

/* ── WHY US / STATS ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}
.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-img-badge .badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.why-img-badge .badge-label { font-size: .75rem; font-weight: 500; opacity: .9; }

.why-content .eyebrow { color: var(--gold); }
.why-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.why-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-check svg { color: var(--gold); }
.why-item-text strong { display: block; font-weight: 600; color: var(--green-deep); font-size: .95rem; }
.why-item-text span { font-size: .88rem; color: var(--text-light); }

.stats-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1;
  min-width: 100px;
  background: var(--ivory-dark);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
}
.stat-label { font-size: .78rem; color: var(--text-light); font-weight: 500; }

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--gold-light); }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.testimonial-author { font-size: .85rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ── PROCESS STEPS ──────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--ivory-dark);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}
.process-step h4 { margin-bottom: .4rem; font-size: 1rem; }
.process-step p { font-size: .88rem; }

/* ── CTA BAND ───────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .6rem; }
.cta-band p  { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2rem; }
.cta-band .btn-white { font-size: 1rem; padding: 1rem 2.2rem; }

/* ── SIGNS OF NEED ──────────────────────────────────────────────── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}
.sign-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem 1.8rem;
  border: 1.5px solid var(--ivory-dark);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.sign-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.sign-card:hover {
  border-color: var(--gold-pale);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.sign-card:hover::after { transform: scaleX(1); }
.sign-icon {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}
.sign-icon svg { color: var(--gold-light); }
.sign-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: .45rem;
  line-height: 1.3;
}
.sign-card p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .signs-grid { grid-template-columns: 1fr; }
}

/* ── FORMS ──────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact-form-wrap h3 { margin-bottom: 1.2rem; padding: 0 .5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(74,132,99,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { color: var(--gold); }
.contact-item-text strong { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.contact-item-text a, .contact-item-text span { font-size: .95rem; color: var(--green-soft); }
.contact-item-text a:hover { color: var(--green-deep); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--ivory-dark);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-deep);
  cursor: pointer;
  gap: 1rem;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding-bottom: 1.3rem;
  font-size: .95rem;
  line-height: 1.75;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────────── */
.page-hero {
  background: var(--green-deep);
  background-image:
    radial-gradient(ellipse 70% 80% at 50% -10%, rgba(212,167,84,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 80%, rgba(212,167,84,.07) 0%, transparent 60%);
  padding: 4rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 48px 48px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--gold-light); margin-bottom: .6rem; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 540px; margin: .9rem auto 0; font-size: 1.05rem; }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 0 0 1.6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: .35; }
.breadcrumb [aria-current="page"] { color: rgba(255,255,255,.85); }

/* ── SERVICE DETAIL ─────────────────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
.service-detail-content h2 { margin-top: 2rem; margin-bottom: .8rem; font-size: 1.5rem; }
.service-detail-content p { margin-bottom: 1rem; }
.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.service-detail-content ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .5rem;
}
.sticky-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--ivory-dark);
}
.sticky-card h4 { margin-bottom: .6rem; }
.sticky-card p { font-size: .9rem; margin-bottom: 1.2rem; }

/* ── TEAM GRID ──────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--ivory-dark);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-pale);
  margin: 0 auto 1.2rem;
  overflow: hidden;
  border: 4px solid var(--gold-pale);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: .2rem; }
.team-card .role { font-size: .82rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { font-size: .88rem; margin-top: .8rem; }

/* ── RESOURCES ──────────────────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--ivory-dark);
  transition: all var(--transition);
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.resource-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
  margin-bottom: .8rem;
}
.resource-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.resource-card p { font-size: .88rem; }

/* ── ORG LINKS ──────────────────────────────────────────────────── */
.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  max-width: 860px;
  margin: 2.8rem auto 0;
}
.org-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ivory-dark);
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.org-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.org-card:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.org-card:hover::after { transform: scaleX(1); }
.org-icon {
  width: 52px;
  height: 52px;
  background: var(--green-deep);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.org-icon svg { color: var(--gold-light); }
.org-body { flex: 1; min-width: 0; }
.org-body strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: .3rem;
  line-height: 1.3;
}
.org-body span {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.5;
}
.org-arrow {
  display: flex;
  align-items: center;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .25s ease;
}
.org-card:hover .org-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) { .org-grid { grid-template-columns: 1fr; } }

/* ── MAP PLACEHOLDER ────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ivory-dark);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,.85); margin-top: auto; }
.footer-wave { line-height: 0; background: var(--ivory); }
.footer-wave svg { display: block; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-mark { background: rgba(255,255,255,.1); color: var(--gold-light); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: var(--gold-light); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 300px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--white); }

.footer-links h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }

.footer-contact h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.contact-list { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.contact-list svg { flex-shrink: 0; margin-top: .1rem; opacity: .7; }
.contact-list a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.contact-list a:hover { color: var(--gold-light); }
.footer-cta { background: var(--gold); color: var(--white); font-size: .88rem; padding: .75rem 1.2rem; }
.footer-cta:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 2rem;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── SUCCESS / ERROR MESSAGES ───────────────────────────────────── */
.form-msg {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}
.form-msg.success { background: #EBF7F0; color: #2D5C42; border: 1px solid #A8D8BF; }
.form-msg.error   { background: #FDF0EE; color: #8B2E22; border: 1px solid #F0B8B0; }

/* ── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITIES ──────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-deep); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { min-height: 300px; aspect-ratio: 16/9; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: fixed;
    inset: 0;
    top: 68px;
    background: var(--white);
    padding: 1.5rem;
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.open > ul { flex-direction: column; gap: .2rem; }
  .main-nav.open a { font-size: 1rem; padding: .75rem 1rem; display: block; }
  .main-nav.open > ul > li > a::after { display: none; }
  .header-cta { border-left: none; padding-left: 0; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    padding: 0 0 0 1.2rem; background: transparent;
    border-top: none;
  }
  .dropdown a { font-size: .9rem; }

  /* Hero */
  .hero-content { padding: 3.5rem 1.5rem 2.5rem; gap: 1.5rem; }
  .hero-card { max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-white { justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: .8rem; }

  /* Page hero */
  .page-hero { padding: 3rem 0 2.5rem; border-radius: 0 0 50% 50% / 0 0 32px 32px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Sections */
  .section { padding: 4rem 0; }
  .section-header p { font-size: .95rem; }

  /* Grids */
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { min-height: 260px; aspect-ratio: 16/9; }
  .why-img-badge { right: 1rem; bottom: 1rem; }
  .process-steps { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-row { gap: 1rem; flex-wrap: wrap; }
  .stat-box { flex: 1 1 calc(50% - .5rem); text-align: center; }

  /* CTA band */
  .cta-band { padding: 3rem 1.5rem; }
  .cta-band > .container > div { flex-direction: column; align-items: center; gap: .8rem; }

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

  /* Trust strip */
  .trust-strip-inner { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .4rem; }

  /* Services anchor nav */
  .service-anchor-nav ul { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding: 0 1rem; }
  .service-anchor-nav a { white-space: nowrap; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero-content { padding: 3rem 1rem 2rem; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }

  /* All grids → single column */
  .services-grid,
  .features-grid,
  .signs-grid,
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { grid-column: span 1 !important; }

  /* Hero card full-width */
  .hero-card { border-radius: var(--radius-lg); }
  .hero-text h1 { font-size: 1.9rem; }

  /* Page hero */
  .page-hero { padding: 2.5rem 0 2rem; }

  /* Why section */
  .why-img-wrap { min-height: 200px; }

  /* Stats */
  .stats-row { flex-direction: column; align-items: stretch; }
  .stat-box { text-align: center; border: none; padding: .5rem 0; }

  /* Cards */
  .service-card,
  .sign-card,
  .resource-card,
  .team-card,
  .org-card { padding: 1.5rem; }

  /* CTA */
  .cta-band { padding: 2.5rem 1rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .cta-band p { font-size: .95rem; }

  /* Footer */
  .footer-inner { padding: 0; }
  .footer-logo { justify-content: flex-start; }
  .footer-social { justify-content: flex-start; }

  /* FAQ */
  .faq-question { font-size: .92rem; padding: 1rem 1rem; }
  .faq-answer-inner { padding: 0 1rem 1rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .75rem; }

  /* Forms */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }

  /* Org grid */
  .org-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { max-width: 100%; }
}
