/* ============================================================
   NORTH HARBOR IMMIGRATION LAW — DEMO STYLESHEET
   Demiurge Digital Studio Portfolio Demo
   ============================================================
   Table of Contents:
   01. Design Tokens (CSS Variables)
   02. Reset & Base
   03. Typography Scale
   04. Layout Utilities
   05. Reusable Components (Buttons, Section Headers, Eyebrows)
   06. Image Placeholders
   07. Scroll Animation Base
   08. Navigation
   09. Mobile CTA Bar
   10. Hero Section
   11. Trust Bar
   12. Practice Areas / Services
   13. Values / Story Cards
   14. Process Section
   15. Why Choose Us
   16. Testimonials
   17. Final CTA
   18. Footer
   19. Responsive — Tablet (max 1024px)
   20. Responsive — Mobile (max 768px)
   21. Responsive — Small Mobile (max 480px)
   ============================================================ */


/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Color Palette --- */
  --navy:          #0C2240;   /* Primary navy — headers, sections */
  --navy-mid:      #153456;   /* Mid navy — hover states, accents */
  --navy-deep:     #081828;   /* Deep navy — footer background */
  --ivory:         #FAF7F2;   /* Warm ivory — main background */
  --ivory-dark:    #F0E9DC;   /* Slightly deeper ivory — alternate sections */
  --gold:          #C49A3A;   /* Primary gold — accents, CTAs */
  --gold-light:    #D4AA4C;   /* Light gold — hover states */
  --gold-pale:     #F4E8CA;   /* Pale gold — subtle backgrounds */
  --teal:          #3A6B65;   /* Muted teal — value card overlays */
  --teal-mid:      #4A7E78;   /* Teal mid — accents */
  --sky:           #7AABC6;   /* Sky blue — subtle accents */
  --white:         #FFFFFF;
  --text:          #1A2B3D;   /* Primary text */
  --text-mid:      #4A5B6E;   /* Secondary text */
  --text-light:    #7A8FA6;   /* Muted text */
  --text-ghost:    #A8B8C8;   /* Very muted — captions */
  --border:        #E2D9CC;   /* Warm border color */
  --border-light:  #EEE8DF;   /* Lighter border */

  /* --- Typography --- */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  /* --- Spacing Scale --- */
  --sp-2xs:  0.25rem;   /*  4px */
  --sp-xs:   0.5rem;    /*  8px */
  --sp-sm:   0.75rem;   /* 12px */
  --sp-md:   1rem;      /* 16px */
  --sp-lg:   1.5rem;    /* 24px */
  --sp-xl:   2rem;      /* 32px */
  --sp-2xl:  3rem;      /* 48px */
  --sp-3xl:  4.5rem;    /* 72px */
  --sp-4xl:  6rem;      /* 96px */
  --sp-5xl:  8rem;      /* 128px */

  /* --- Border Radius --- */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  22px;
  --r-full: 999px;

  /* --- Shadows --- */
  --shadow-xs: 0 1px 4px rgba(12, 34, 64, 0.06);
  --shadow-sm: 0 2px 12px rgba(12, 34, 64, 0.09);
  --shadow-md: 0 6px 24px rgba(12, 34, 64, 0.12);
  --shadow-lg: 0 12px 48px rgba(12, 34, 64, 0.16);
  --shadow-xl: 0 24px 72px rgba(12, 34, 64, 0.20);

  /* --- Layout --- */
  --container: 1200px;
  --container-sm: 860px;
  --nav-h: 80px;

  /* --- Transitions --- */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

::selection {
  background: var(--gold-pale);
  color: var(--navy);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}


/* ============================================================
   03. TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

em {
  font-style: italic;
  color: var(--gold);
}

p {
  line-height: 1.72;
  color: var(--text-mid);
}

strong { font-weight: 600; color: var(--text); }

small { font-size: 0.8rem; }


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-xl);
}

section {
  position: relative;
}


/* ============================================================
   05. REUSABLE COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  padding: 0.85rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.18s var(--ease),
              box-shadow 0.22s var(--ease);
  white-space: nowrap;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 0.95rem;
}

/* Gold filled */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(196, 154, 58, 0.3);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(196, 154, 58, 0.4);
}

/* Navy filled */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

/* Outline navy */
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* Outline ivory — for dark backgrounds */
.btn--outline-ivory {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-ivory:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: var(--sp-3xl);
  max-width: 640px;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-xs);
  border-bottom: 2px solid var(--teal);
}

.section-eyebrow--gold {
  color: var(--gold);
  border-color: var(--gold);
}

.section-title {
  margin-bottom: var(--sp-md);
  line-height: 1.18;
}

.section-title--light {
  color: var(--white);
}
.section-title--light em {
  color: var(--gold);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-inline: auto;
}

.section-sub--muted {
  color: rgba(255,255,255,0.7);
}


/* ============================================================
   06. IMAGE PLACEHOLDERS
   Replace these with actual photos when available.
   ============================================================ */
.img-placeholder {
  position: relative;
  overflow: hidden;
}

.img-placeholder__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: var(--sp-xl);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
}

.img-placeholder__inner svg {
  opacity: 0.5;
}

/* Hero image placeholder */
.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg,
    #E8D9C0 0%,
    #D4C4A2 30%,
    #C4B090 60%,
    #B8A080 100%
  );
  position: relative;
}

/* Value card image placeholders — different tones */
.img-placeholder--value {
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  position: absolute;
  inset: 0;
}
.img-placeholder--v1 {
  background: linear-gradient(150deg, #1A3555 0%, #0C2240 50%, #163456 100%);
}
.img-placeholder--v2 {
  background: linear-gradient(150deg, #2A5550 0%, #1A3D38 50%, #3A6B65 100%);
}
.img-placeholder--v3 {
  background: linear-gradient(150deg, #3A2A15 0%, #5C4020 50%, #7A5828 100%);
}

/* Why us image placeholder */
.img-placeholder--why {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #E0D0BA 0%, #C8B898 40%, #B0A080 100%);
}

/* CTA image placeholder */
.img-placeholder--cta {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(196,154,58,0.25) 0%, rgba(122,171,198,0.3) 100%);
  border: 3px solid rgba(196,154,58,0.3);
  margin-inline: auto;
}


/* ============================================================
   07. SCROLL ANIMATION BASE
   ============================================================ */
.service-card,
.value-card,
.process-step,
.testimonial-card,
.stat-block,
.why-us__list li,
.trust-bar__item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

/* Stagger children via nth-child */
.service-card:nth-child(2),
.value-card:nth-child(2),
.process-step:nth-child(2),
.testimonial-card:nth-child(2),
.stat-block:nth-child(2),
.trust-bar__item:nth-child(2) { transition-delay: 0.08s; }

.service-card:nth-child(3),
.value-card:nth-child(3),
.process-step:nth-child(3),
.testimonial-card:nth-child(3),
.stat-block:nth-child(3),
.trust-bar__item:nth-child(3) { transition-delay: 0.16s; }

.service-card:nth-child(4),
.process-step:nth-child(4),
.stat-block:nth-child(4),
.trust-bar__item:nth-child(4) { transition-delay: 0.24s; }

.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }

.why-us__list li:nth-child(2) { transition-delay: 0.07s; }
.why-us__list li:nth-child(3) { transition-delay: 0.14s; }
.why-us__list li:nth-child(4) { transition-delay: 0.21s; }
.why-us__list li:nth-child(5) { transition-delay: 0.28s; }

.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   08. NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  transition: box-shadow 0.3s var(--ease);
}

.nav--scrolled {
  box-shadow: 0 4px 32px rgba(8, 24, 40, 0.35);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.88; }

.nav__logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  padding: var(--sp-xs) 0;
  position: relative;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover {
  color: var(--white);
}
.nav__links a:hover::after {
  width: 100%;
}

/* Right: phone + CTA */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--gold); }

.nav__cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-xs);
  margin-left: auto;
  flex-shrink: 0;
}

.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav__toggle--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.nav__mobile {
  display: none;
  background: var(--navy-deep);
  padding: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav__mobile--open {
  display: block;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.nav__mobile a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--gold); }

.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  border-bottom: none !important;
}


/* ============================================================
   09. MOBILE CTA BAR
   Fixed bottom bar visible on small screens
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 2px solid rgba(196,154,58,0.4);
  box-shadow: 0 -4px 24px rgba(8, 24, 40, 0.3);
}

.mobile-bar__call,
.mobile-bar__consult {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  flex: 1;
  transition: background 0.2s;
}

.mobile-bar__call {
  color: rgba(255,255,255,0.9);
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-bar__call:hover { background: var(--navy-mid); }

.mobile-bar__consult {
  color: var(--navy);
  background: var(--gold);
}
.mobile-bar__consult:hover { background: var(--gold-light); }

/* Layout for mobile bar */
.mobile-bar {
  display: none;
  flex-direction: row;
}


/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
  background: var(--ivory);
  padding-top: calc(var(--sp-5xl) * 0.85);
  padding-bottom: var(--sp-4xl);
  overflow: hidden;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

/* Left: copy */
.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-md);
}

.hero__headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: var(--sp-md);
  font-style: normal;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.hero__video-btn {
  padding: 0.85rem 1.5rem;
}

.hero__play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.2s;
}
.hero__video-btn:hover .hero__play-icon {
  background: var(--gold);
  color: var(--navy);
}

/* Trust signals */
.hero__trust {
  padding: var(--sp-lg);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  max-width: 460px;
}

.hero__trust-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: var(--sp-sm);
  font-style: italic;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.hero__star-icons {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.hero__star-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* Right: image */
.hero__visual {
  position: relative;
}

.hero__img-wrap {
  position: relative;
}

.hero__img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 220px;
  height: 220px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--gold-pale), rgba(196,154,58,0.12));
  z-index: -1;
}


/* ============================================================
   11. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy);
  padding: var(--sp-3xl) 0;
  position: relative;
  z-index: 1;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-bar__item {
  padding: var(--sp-xl) var(--sp-xl);
  text-align: center;
  position: relative;
}

.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.12);
}

.trust-bar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(196, 154, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--gold);
  transition: background 0.3s, transform 0.3s;
}

.trust-bar__item:hover .trust-bar__icon {
  background: rgba(196, 154, 58, 0.22);
  transform: translateY(-3px);
}

.trust-bar__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-xs);
}

.trust-bar__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}


/* ============================================================
   12. PRACTICE AREAS / SERVICES
   ============================================================ */
.services {
  background: var(--ivory);
  padding: var(--sp-5xl) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl);
}

.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: height 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.service-card:hover::before {
  height: 100%;
  border-radius: 0;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--ivory-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: var(--sp-lg);
  transition: background 0.25s, color 0.25s;
}

.service-card:hover .service-card__icon {
  background: var(--gold-pale);
  color: var(--gold);
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: var(--sp-lg);
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.service-card__link:hover {
  color: var(--navy);
  gap: 8px;
}

.services__cta {
  text-align: center;
}


/* ============================================================
   13. VALUES / STORY CARDS
   ============================================================ */
.values {
  background: var(--ivory-dark);
  padding: var(--sp-5xl) 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.value-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  cursor: default;
}

.value-card__img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.value-card:hover .value-card__img {
  transform: scale(1.04);
}

/* Dark gradient overlay for text readability */
.value-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 24, 40, 0.96) 0%,
    rgba(8, 24, 40, 0.6) 50%,
    rgba(8, 24, 40, 0.1) 100%
  );
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.value-card__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196, 154, 58, 0.35);
  line-height: 1;
  margin-bottom: auto;
  padding-top: var(--sp-lg);
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-sm);
  line-height: 1.25;
}

.value-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--sp-lg);
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: width 0.3s var(--ease);
}
.value-card:hover::after {
  width: 80px;
}


/* ============================================================
   14. PROCESS SECTION
   ============================================================ */
.process {
  background: var(--navy);
  padding: var(--sp-5xl) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.process::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.process::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,107,101,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  position: relative;
}

/* Connecting line between steps */
.process__connector {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(196,154,58,0.5) 0%,
    rgba(122,171,198,0.5) 50%,
    rgba(196,154,58,0.5) 100%
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196,154,58,0.12);
  border: 2px solid rgba(196,154,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.process-step:hover .process-step__num {
  background: rgba(196,154,58,0.22);
  border-color: var(--gold);
  transform: scale(1.08);
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-sm);
}

.process-step__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}


/* ============================================================
   15. WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--ivory);
  padding: var(--sp-5xl) 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: start;
}

.why-us__copy {
  padding-top: var(--sp-xl);
}

.why-us__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: var(--sp-xl);
  max-width: 480px;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.why-us__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.why-us__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-us__cta {
  margin-top: var(--sp-sm);
}

/* Right column */
.why-us__right {
  position: relative;
}

.why-us__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.stat-block {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-block__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}

.stat-block__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ============================================================
   16. TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--white);
  padding: var(--sp-5xl) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: var(--sp-sm);
  font-style: normal;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-md);
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--sp-xl);
  font-weight: 300;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial-card__detail {
  font-size: 0.75rem;
  color: var(--text-light);
  margin: 0;
}


/* ============================================================
   17. FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--navy);
  padding: var(--sp-5xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decorative radial glow */
.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(196,154,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(58,107,101,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta__visual {
  margin-bottom: var(--sp-2xl);
}

.final-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: var(--sp-lg);
  line-height: 1.18;
}

.final-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto var(--sp-2xl);
  line-height: 1.7;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
}

.final-cta__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding-top: var(--sp-5xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-4xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {
  padding-right: var(--sp-xl);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.footer__social {
  display: flex;
  gap: var(--sp-sm);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer__social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer__col {}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-lg);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--white); }

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer__contact-list svg { flex-shrink: 0; margin-top: 2px; }

.footer__contact-list a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__contact-list a:hover { color: var(--gold); }

/* Footer bottom */
.footer__bottom {
  padding: var(--sp-lg) 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer__disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  max-width: 480px;
  text-align: center;
  margin: 0;
  font-style: italic;
}

.footer__legal-links {
  display: flex;
  gap: var(--sp-lg);
}

.footer__legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.7); }


/* ============================================================
   19. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  :root { --nav-h: 72px; }

  .container { padding-inline: var(--sp-lg); }

  /* Nav */
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__right .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .hero__content { max-width: 100%; }
  .hero__visual { max-width: 500px; margin-inline: auto; }

  /* Trust bar */
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-md);
  }
  .trust-bar__item:nth-child(2)::after { display: none; }
  .trust-bar__item::after { display: block; }
  .trust-bar__item:nth-child(even)::after { display: none; }

  /* Services */
  .services__grid { grid-template-columns: repeat(2, 1fr); }

  /* Values */
  .values__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .value-card { min-height: 320px; }

  /* Process */
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2xl);
  }
  .process__connector { display: none; }

  /* Why us */
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3xl);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
  .footer__brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}


/* ============================================================
   20. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Mobile bar visible */
  .mobile-bar { display: flex; }

  /* Add padding to body bottom to avoid content behind sticky bar */
  body { padding-bottom: 60px; }

  /* Hero */
  .hero { padding-top: var(--sp-3xl); padding-bottom: var(--sp-3xl); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__video-btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__item { padding: var(--sp-lg); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .services { padding: var(--sp-3xl) 0; }

  /* Values */
  .values { padding: var(--sp-3xl) 0; }
  .value-card { min-height: 280px; }

  /* Process */
  .process { padding: var(--sp-3xl) 0; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }

  /* Why us */
  .why-us { padding: var(--sp-3xl) 0; }
  .why-us__stats { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonials { padding: var(--sp-3xl) 0; }
  .testimonials__grid { grid-template-columns: 1fr; gap: var(--sp-lg); }

  /* Final CTA */
  .final-cta { padding: var(--sp-3xl) 0; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .final-cta__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__disclaimer { max-width: 100%; }
}


/* ============================================================
   21. RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {

  .container { padding-inline: var(--sp-md); }

  /* Trust bar stack */
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item::after { display: none; }
  .trust-bar__item { padding: var(--sp-lg) var(--sp-md); }

  /* Process stack */
  .process__steps { grid-template-columns: 1fr; gap: var(--sp-lg); }

  /* Why us stats */
  .why-us__stats { grid-template-columns: 1fr 1fr; }

  /* Hero headline */
  .hero__headline { font-size: 2.1rem; }
}
