/* =====================
   VARIABLES & RESET — Art Deco × Navy / Silver / Pearl
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --forest:     #0D1B3E;   /* deep Art Deco navy */
  --forest-dk:  #070E23;   /* near-black navy */
  --moss:       #1B2D5E;   /* medium navy */
  --sage:       #8FA3BC;   /* silver-blue */
  --gold:       #C5A028;   /* Art Deco gold */
  --gold-lt:    #DEBB5A;   /* lighter gold */
  --silver:     #B4C2D0;   /* cool silver */
  --silver-dk:  #7A8FA4;   /* dark silver */
  --cream:      #F0EDE4;   /* warm pearl */
  --cream-dk:   #E4E0D6;   /* darker pearl */
  --white:      #FFFFFF;
  --text-body:  #1A2035;   /* deep navy text */
  --text-muted: #5A6577;   /* silver-grey muted */
  --font-head:  'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body:  'Raleway', system-ui, sans-serif;
  --container: 1200px;
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --shadow-sm: 0 2px 8px rgba(13,27,62,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,62,0.14);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.22);
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--text-body); background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* =====================
   UTILITIES
   ===================== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600; color: var(--forest);
  line-height: 1.15; letter-spacing: 0.04em;
  margin-bottom: 1.25rem; text-transform: uppercase;
}
.section-header { margin-bottom: 3.5rem; }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; max-width: 560px; line-height: 1.75; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn--forest { background: var(--forest); color: var(--white); }
.btn--forest:hover { background: var(--forest-dk); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #a08010; }
.btn--outline-forest { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn--outline-forest:hover { background: var(--forest); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9375rem; }
.btn--xl { padding: 1.125rem 2.75rem; font-size: 1rem; }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(13,27,62,0.16); }
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav__logo {
  font-family: var(--font-head); font-size: 1.75rem; font-weight: 700;
  color: var(--forest); letter-spacing: -0.01em; flex-shrink: 0;
}
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 0.25rem; margin-left: auto; }
.nav__link {
  padding: 0.5rem 0.875rem; font-size: 0.875rem; font-weight: 500;
  color: var(--text-body); border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--forest); }
.nav__link.active { font-weight: 600; }
.nav__phone { font-weight: 600; font-size: 0.9375rem; color: var(--forest); flex-shrink: 0; }
.nav__phone:hover { color: var(--moss); }
.nav__cta { flex-shrink: 0; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; transition: all 0.3s; }

.nav__mobile {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--white); flex-direction: column;
  padding: 1.5rem; overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile-close { align-self: flex-end; font-size: 1.25rem; color: var(--text-body); padding: 0.5rem; margin-bottom: 1rem; }
.nav__mobile .nav__link {
  padding: 1rem; font-size: 1.375rem; border-bottom: 1px solid var(--cream-dk);
  font-family: var(--font-head); font-weight: 600; color: var(--forest);
}

/* =====================
   HERO — Full-viewport centered
   ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-dk); margin-top: 72px;
  overflow: hidden; text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1530836369250-ef72a3f5cda8?w=1800&q=85&fit=crop');
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,14,35,0.45) 0%, rgba(7,14,35,0.72) 60%, rgba(7,14,35,0.92) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 900px; padding: 4rem 1.5rem;
}
.hero__eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  border: 1px solid rgba(197,160,40,0.5); padding: 0.375rem 1.25rem; border-radius: 0; letter-spacing: 0.28em;
}
.hero__headline {
  font-family: var(--font-head); font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 600; color: var(--white); line-height: 1.03;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero__headline em { font-style: italic; color: var(--gold-lt); }
.hero__sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.72);
  max-width: 620px; margin: 0 auto 2.75rem; line-height: 1.75;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4.5rem; }
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); }

/* =====================
   STATS BAR
   ===================== */
.stats-bar { background: var(--forest); padding: 3rem 0; }
.stats-bar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item__num {
  font-family: var(--font-head); font-size: 3.25rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.stat-item__label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; text-transform: uppercase; }

/* =====================
   SERVICE CARDS — Image-based
   ===================== */
.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.svc-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-dk);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.svc-card__img { position: relative; overflow: hidden; height: 230px; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,14,35,0.55), transparent 60%);
}
.svc-card__body { padding: 1.5rem 1.75rem; }
.svc-card__tag {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.svc-card__title {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.625rem; line-height: 1.15;
}
.svc-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.svc-card__link {
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--forest);
  display: flex; align-items: center; gap: 0.375rem;
  transition: gap var(--transition);
}
.svc-card:hover .svc-card__link { gap: 0.65rem; }

/* =====================
   APPROACH — Dark section
   ===================== */
.approach { background: var(--forest); padding: 6rem 0; }
.approach .section-title { color: var(--white); }
.approach .section-eyebrow { color: var(--gold); }
.approach .section-header p { color: rgba(255,255,255,0.6); }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.approach-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 2.5rem 2rem;
  transition: background var(--transition), border-color var(--transition);
}
.approach-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,168,75,0.3); }
.approach-card__num {
  font-family: var(--font-head); font-size: 4rem; font-weight: 700;
  color: rgba(200,168,75,0.2); line-height: 1; margin-bottom: 1.25rem;
}
.approach-card__title {
  font-family: var(--font-head); font-size: 1.625rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.875rem;
}
.approach-card__desc { font-size: 0.9375rem; color: rgba(255,255,255,0.58); line-height: 1.75; }

/* =====================
   PROCESS — Horizontal timeline
   ===================== */
.process-section { background: var(--cream); }
.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-track::before {
  content: '';
  position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(to right, var(--sage), var(--gold), var(--sage));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px;
  background: var(--white); border: 2px solid var(--sage);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--forest);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.process-step:hover .process-step__num {
  background: var(--forest); border-color: var(--forest); color: var(--white);
}
.process-step__title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.625rem;
}
.process-step__desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* =====================
   PORTFOLIO — Bento grid
   ===================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 0.75rem;
}
.portfolio-item { overflow: hidden; border-radius: var(--radius-sm); position: relative; }
.portfolio-item:nth-child(1) { grid-column: span 2; }
.portfolio-item:nth-child(4) { grid-column: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: rgba(7,14,35,0); display: flex; align-items: flex-end; padding: 1.25rem;
  transition: background var(--transition);
}
.portfolio-item:hover .portfolio-item__overlay { background: rgba(7,14,35,0.52); }
.portfolio-item__label {
  font-family: var(--font-head); font-size: 1.125rem; color: var(--white);
  opacity: 0; transform: translateY(8px); transition: all var(--transition); font-weight: 600;
}
.portfolio-item:hover .portfolio-item__label { opacity: 1; transform: translateY(0); }

/* =====================
   TESTIMONIALS — Slider
   ===================== */
.testimonials-section { background: var(--cream-dk); padding: 6rem 0; }
.testimonials-section .section-title { color: var(--forest); }
.testimonial-slider { max-width: 820px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote-icon {
  font-size: 5rem; line-height: 1; color: var(--gold); opacity: 0.35;
  font-family: Georgia, serif; margin-bottom: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-head); font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-style: italic; color: var(--forest);
  line-height: 1.55; margin-bottom: 2rem; font-weight: 400;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-author__img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--white);
}
.testimonial-author__name { font-weight: 700; color: var(--forest); font-size: 0.9375rem; display: block; }
.testimonial-author__detail { font-size: 0.8125rem; color: var(--text-muted); }
.testimonial-dots { display: flex; justify-content: center; gap: 0.625rem; margin-top: 2.5rem; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); opacity: 0.4; cursor: pointer;
  transition: opacity var(--transition), background var(--transition);
  border: none;
}
.testimonial-dot.active { background: var(--forest); opacity: 1; }

/* =====================
   SERVICE AREAS
   ===================== */
.areas-section { background: var(--white); padding: 4rem 0; }
.areas-inner { display: grid; grid-template-columns: 1fr 2.5fr; gap: 4rem; align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.area-tag {
  padding: 0.5rem 1.25rem; background: var(--cream); border: 1px solid var(--cream-dk);
  border-radius: 100px; font-size: 0.875rem; color: var(--forest); font-weight: 500;
  transition: all var(--transition);
}
.area-tag:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* =====================
   PRICING
   ===================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.plan-card {
  border: 2px solid var(--cream-dk); border-radius: var(--radius-md);
  padding: 2.5rem 2rem; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.plan-card:hover { border-color: var(--sage); box-shadow: var(--shadow-md); }
.plan-card--featured {
  border-color: var(--forest); background: var(--forest);
  transform: translateY(-12px);
}
.plan-card--featured:hover { border-color: var(--forest); }
.plan-card__badge {
  display: inline-block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
  padding: 0.25rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.plan-card__tier {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.plan-card--featured .plan-card__tier { color: rgba(255,255,255,0.5); }
.plan-card__name {
  font-family: var(--font-head); font-size: 1.875rem; font-weight: 600;
  color: var(--forest); margin-bottom: 1rem;
}
.plan-card--featured .plan-card__name { color: var(--white); }
.plan-card__price {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 700;
  color: var(--forest); line-height: 1; margin-bottom: 0.25rem;
}
.plan-card--featured .plan-card__price { color: var(--gold); }
.plan-card__price span { font-family: var(--font-body); font-size: 1.125rem; font-weight: 400; color: var(--text-muted); }
.plan-card--featured .plan-card__price span { color: rgba(255,255,255,0.45); }
.plan-card__period { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.plan-card--featured .plan-card__period { color: rgba(255,255,255,0.45); }
.plan-card__divider { height: 1px; background: var(--cream-dk); margin-bottom: 1.75rem; }
.plan-card--featured .plan-card__divider { background: rgba(255,255,255,0.1); }
.plan-card__features { list-style: none; margin-bottom: 2rem; }
.plan-card__features li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.9rem; color: var(--text-body); padding: 0.4rem 0;
}
.plan-card--featured .plan-card__features li { color: rgba(255,255,255,0.78); }
.plan-card__features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 0.375rem; flex-shrink: 0; }

/* =====================
   FAQ — Accordion
   ===================== */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; max-width: 960px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--cream-dk); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--forest); text-align: left;
  cursor: pointer; transition: background var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--forest); color: var(--white); }
.faq-chevron { font-size: 0.7rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}

/* =====================
   CTA SPLIT
   ===================== */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.cta-split__content {
  background: var(--forest-dk); padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-split__content .section-title { color: var(--white); }
.cta-split__content p { color: rgba(255,255,255,0.65); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2.5rem; }
.cta-split__image { position: relative; overflow: hidden; }
.cta-split__image img { width: 100%; height: 100%; object-fit: cover; }

/* =====================
   FOOTER
   ===================== */
.footer { background: var(--forest-dk); padding: 4rem 0 0; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand .nav__logo { display: inline-block; margin-bottom: 1rem; color: var(--white); }
.footer__brand .nav__logo span { color: var(--gold); }
.footer__tagline { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.65; }
.footer__address { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.75; margin-bottom: 0.75rem; font-style: normal; }
.footer__phone, .footer__email {
  display: block; color: rgba(255,255,255,0.65); font-size: 0.875rem; margin-bottom: 0.375rem;
  transition: color var(--transition);
}
.footer__phone:hover, .footer__email:hover { color: var(--gold); }
.footer__nav h5 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.footer__nav a {
  display: block; color: rgba(255,255,255,0.58); font-size: 0.875rem;
  padding: 0.3rem 0; transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.32); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal-link { font-size: 0.8125rem; color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer__legal-link:hover { color: var(--gold); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(7,14,35,0.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 480px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
  border-top: 4px solid var(--forest);
}
.modal__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 1.125rem; color: var(--text-muted); padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm); transition: color var(--transition);
}
.modal__close:hover { color: var(--forest); }
.modal__icon { font-size: 2.25rem; margin-bottom: 1rem; }
.modal__title { font-family: var(--font-head); font-size: 1.875rem; color: var(--forest); margin-bottom: 0.5rem; }
.modal__sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.6; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--text-body); margin-bottom: 0.375rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text-body); background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--forest);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.55; }
.form-consent a { color: var(--forest); text-decoration: underline; }
.success-message { display: none; text-align: center; padding: 2rem; }
.success-message__icon { font-size: 3rem; margin-bottom: 1rem; }
.success-message__title { font-family: var(--font-head); font-size: 1.875rem; color: var(--forest); margin-bottom: 0.75rem; }
.success-message__text { color: var(--text-muted); font-size: 0.9375rem; }

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
  display: none; position: fixed; bottom: 1.5rem; left: 1.5rem;
  z-index: 250; background: var(--forest-dk);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg); max-width: 600px;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.72); flex: 1; line-height: 1.55; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.625rem; flex-shrink: 0; }
.cookie-btn { padding: 0.5rem 1.125rem; border-radius: var(--radius-sm); font-size: 0.8125rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.cookie-btn--accept { background: var(--gold); color: var(--white); border: none; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.2); }

/* =====================
   ANIMATIONS
   ===================== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: var(--forest); padding: 6rem 0 4rem; margin-top: 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -8%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.07), transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero__title {
  font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600; color: var(--white); line-height: 1.05; margin-bottom: 1rem;
}
.page-hero__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 580px; }

/* =====================
   LEGAL CONTENT
   ===================== */
.legal-content { max-width: 780px; }
.legal-content p { color: var(--text-body); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.legal-content h2 {
  font-family: var(--font-head); font-size: 1.625rem; color: var(--forest);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--cream-dk);
}
.legal-content ul { margin-bottom: 1.25rem; padding-left: 1.25rem; }
.legal-content ul li { color: var(--text-body); line-height: 1.85; margin-bottom: 0.375rem; font-size: 0.9375rem; list-style: disc; }
.legal-content a { color: var(--forest); text-decoration: underline; }

/* =====================
   ABOUT PAGE
   ===================== */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-section__image { border-radius: var(--radius-lg); overflow: hidden; }
.split-section__image img { width: 100%; height: 480px; object-fit: cover; }
.split-section__text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; font-size: 0.9375rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2rem; background: var(--cream); border-radius: var(--radius-md); }
.value-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card__title { font-family: var(--font-head); font-size: 1.375rem; color: var(--forest); margin-bottom: 0.625rem; }
.value-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-card__img { width: 100%; height: 290px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 1.25rem; }
.team-card__name { font-family: var(--font-head); font-size: 1.5rem; color: var(--forest); margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.72; }
.cred-section { background: var(--forest); padding: 5rem 0; text-align: center; }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.cred-box { padding: 2rem 1rem; }
.cred-box__num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.cred-box__label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; }

/* =====================
   SERVICES PAGE
   ===================== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }
.service-detail__img { border-radius: var(--radius-md); overflow: hidden; }
.service-detail__img img { width: 100%; height: 440px; object-fit: cover; }
.service-detail__content h2 { font-family: var(--font-head); font-size: clamp(1.875rem, 3vw, 2.75rem); color: var(--forest); margin-bottom: 1rem; line-height: 1.1; }
.service-detail__content p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.service-detail__features { list-style: none; margin-bottom: 2rem; }
.service-detail__features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-body); padding: 0.4rem 0; }
.service-detail__features li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 0.375rem; flex-shrink: 0; }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.2rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__image { min-height: 340px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-section--reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail--reverse { direction: ltr; }
  .areas-inner { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
}
@media (max-width: 768px) {
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .portfolio-item { height: 220px; }
  .portfolio-item:nth-child(1) { grid-column: span 2; }
  .portfolio-item:nth-child(4) { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 4rem 0; }
  .hero__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .process-track { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(1), .portfolio-item:nth-child(4) { grid-column: span 1; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   PAGE HERO (blog / inner pages)
   ===================== */
.page-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end;
  padding-top: 72px; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,14,35,0.65) 0%, rgba(7,14,35,0.80) 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 4rem;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; color: var(--white);
  letter-spacing: 0.05em; text-transform: uppercase;
  line-height: 1.1; margin: 0.75rem 0 1rem;
}
.page-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  max-width: 560px; line-height: 1.75;
}

/* =====================
   BLOG GRID & CARDS
   ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-loading {
  grid-column: 1/-1; text-align: center;
  color: var(--text-muted); padding: 4rem 0;
  font-size: 1rem;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Featured first card spans full width */
.blog-card--featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card--featured .blog-card__img-wrap {
  width: 55%;
  flex-shrink: 0;
  max-height: 420px;
}
.blog-card--featured .blog-card__body {
  padding: 3rem;
}
.blog-card--featured .blog-card__title a {
  font-size: clamp(1.375rem, 2.5vw, 2rem);
}
.blog-card--featured .blog-card__excerpt {
  font-size: 1.0625rem;
  -webkit-line-clamp: 5;
}

.blog-card__img-wrap {
  position: relative; overflow: hidden;
  height: 220px; display: block;
  flex-shrink: 0;
}
.blog-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.05); }

.blog-card__category {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--white);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-sm);
}

.blog-card__body {
  padding: 1.75rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 0.875rem; letter-spacing: 0.02em;
}
.blog-card__dot { color: var(--gold); }

.blog-card__title {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600; color: var(--forest);
  letter-spacing: 0.03em; line-height: 1.2;
  margin-bottom: 0.875rem;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--gold); }

.blog-card__excerpt {
  color: var(--text-muted); font-size: 0.9375rem;
  line-height: 1.75; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.blog-card__footer {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem;
}
.blog-card__author {
  display: flex; flex-direction: column; gap: 0.125rem;
}
.blog-card__author-name {
  font-weight: 600; font-size: 0.875rem; color: var(--forest);
}
.blog-card__author-role {
  font-size: 0.775rem; color: var(--text-muted);
}
.blog-card__read {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.blog-card__read:hover { color: var(--forest); }

.blog-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dk);
}

/* Blog Tag pill */
.blog-tag {
  display: inline-block;
  background: var(--cream); color: var(--text-muted);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dk);
}

/* =====================
   BLOG CTA BANNER
   ===================== */
.blog-cta-banner {
  background: var(--forest);
  padding: 4rem 0;
}
.blog-cta-banner__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.blog-cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: var(--white); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 0.375rem;
}
.blog-cta-banner__sub {
  color: var(--sage); font-size: 0.9375rem;
}

/* =====================
   ARTICLE HERO
   ===================== */
.article-hero {
  position: relative; min-height: 500px;
  display: flex; align-items: flex-end;
  padding-top: 72px; overflow: hidden;
}
.article-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.article-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(7,14,35,0.45) 0%, rgba(7,14,35,0.88) 100%);
}
.article-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 4rem;
}
.article-back {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: var(--gold-lt); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.article-back:hover { color: var(--white); }
.article-hero__meta {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7); font-size: 0.875rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.article-category {
  background: var(--gold); color: var(--white);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-sm);
}
.article-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white); font-weight: 700;
  letter-spacing: 0.04em; line-height: 1.15;
  max-width: 780px; margin-bottom: 1.25rem;
}
.article-hero__byline {
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.75); font-size: 0.875rem;
}
.article-hero__byline strong { color: var(--white); }

/* =====================
   ARTICLE LAYOUT (2-col)
   ===================== */
.article-layout__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

/* Article Body */
.article-body { min-width: 0; }
.article-body__loading {
  color: var(--text-muted); padding: 4rem 0; text-align: center;
}
.article-content { line-height: 1.9; color: var(--text-body); font-size: 1.0625rem; }
.article-content p { margin-bottom: 1.5rem; }
.article-content h3 {
  font-family: var(--font-head);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--forest); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.article-content ul {
  list-style: none; margin-bottom: 1.5rem;
}
.article-content ul li {
  display: flex; gap: 0.75rem;
  padding: 0.35rem 0;
  color: var(--text-body); font-size: 1rem;
}
.article-content ul li::before {
  content: '✦'; color: var(--gold);
  font-size: 0.55rem; margin-top: 0.45rem; flex-shrink: 0;
}

.article-tags-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 2.5rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dk);
}
.article-share {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; padding-top: 1.5rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.share-btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition);
}
.share-btn--twitter { background: #1DA1F2; color: #fff; }
.share-btn--twitter:hover { background: #0d8cd8; }
.share-btn--facebook { background: #1877F2; color: #fff; }
.share-btn--facebook:hover { background: #0e5fc0; }

/* =====================
   ARTICLE SIDEBAR
   ===================== */
.article-sidebar {
  display: flex; flex-direction: column; gap: 2rem;
  position: sticky; top: 96px;
}
.sidebar-cta {
  background: var(--forest); color: var(--white);
  padding: 2rem; border-radius: var(--radius-lg);
  text-align: center;
}
.sidebar-cta__icon { font-size: 2rem; margin-bottom: 1rem; }
.sidebar-cta__title {
  font-family: var(--font-head);
  font-size: 1.125rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.625rem;
}
.sidebar-cta__text { color: var(--sage); font-size: 0.875rem; margin-bottom: 1.5rem; line-height: 1.7; }

.sidebar-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sidebar-box__title {
  font-family: var(--font-head);
  font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 1rem;
}
#articleTagsList { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* More Posts list */
.more-post {
  display: flex; gap: 0.875rem; align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--cream-dk);
  transition: opacity var(--transition);
}
.more-post:last-child { border-bottom: none; padding-bottom: 0; }
.more-post:hover { opacity: 0.75; }
.more-post img {
  width: 64px; height: 64px;
  object-fit: cover; border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.more-post div { display: flex; flex-direction: column; gap: 0.25rem; }
.more-post__category {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.more-post__title {
  font-size: 0.875rem; font-weight: 600;
  color: var(--forest); line-height: 1.35;
  font-family: var(--font-head); letter-spacing: 0.02em;
}

/* =====================
   BLOG RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { flex-direction: column; }
  .blog-card--featured .blog-card__img-wrap { width: 100%; max-height: 300px; }
  .blog-card--featured .blog-card__body { padding: 1.75rem; }
  .article-layout__inner { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
  .blog-cta-banner__inner { flex-direction: column; text-align: center; }
  .page-hero { min-height: 320px; }
  .article-hero { min-height: 380px; }
}
@media (max-width: 480px) {
  .blog-card__footer { flex-direction: column; align-items: flex-start; }
  .article-share { flex-direction: column; align-items: flex-start; }
}
