/* ============================================================
   RIARA ADVISORY — styles.css
   Palette: Navy #1B3A5C  |  Gold #C9A84C  |  White #FFFFFF
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #1B3A5C;
  --navy-dark:   #112438;
  --navy-mid:    #234b78;
  --gold:        #C9A84C;
  --gold-light:  #dbbe72;
  --gold-dark:   #a8882e;
  --white:       #FFFFFF;
  --off-white:   #F8F9FB;
  --light-gray:  #EFF2F6;
  --mid-gray:    #DDE3EC;
  --text-dark:   #16202E;
  --text-mid:    #4A5568;
  --text-light:  #718096;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w:     1200px;
  --pad-x:     24px;
  --nav-h:     72px;

  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  32px;
  --sp-lg:  64px;
  --sp-xl:  100px;

  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px  rgba(27,58,92,.07);
  --shadow-md: 0 8px 24px rgba(27,58,92,.11);
  --shadow-lg: 0 20px 56px rgba(27,58,92,.15);

  --ease: .3s ease;
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  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 {
  font-family: var(--ff-display);
  line-height: 1.18;
  font-weight: 600;
  color: var(--navy);
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem,  2.2vw, 1.65rem); }
h4 { font-size: 1.05rem; font-family: var(--ff-body); font-weight: 700; }

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

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

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--sp-xl) 0; }
.section--alt { background: var(--off-white); }
.section--navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.section--navy .container { position:relative; z-index:1; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title { margin-bottom: 16px; }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.85;
  margin-bottom: 56px;
}
.section-intro.centered { margin-inline: auto; text-align: center; }

.section-header--center { text-align: center; }
.section-header--center .section-label { justify-content: center; }
.section-header--center .section-intro { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.38);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: .95rem; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--navy);
  transition: box-shadow var(--ease);
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,.18);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display:flex; flex-direction:column; line-height:1; gap:3px; }
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.nav-logo-name span { color: var(--gold); }
.nav-logo-tag {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--ease);
  letter-spacing: .2px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.09);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  margin-left: 10px;
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }


/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  padding: calc(var(--nav-h) + 72px) 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(201,168,76,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(255,255,255,.03) 0%, transparent 45%);
  pointer-events: none;
}
.page-header .container { position:relative; z-index:1; }
.page-header .section-label { color: var(--gold); }
.page-header h1 { color: var(--white); max-width: 700px; margin-bottom: 18px; }
.page-header p  {
  color: rgba(255,255,255,.68);
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.8;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 18%, rgba(201,168,76,.1)  0%, transparent 48%),
    radial-gradient(ellipse at 15% 85%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-body {
  font-size: 1.12rem;
  color: rgba(255,255,255,.7);
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.3);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.3);
  fill: none;
  stroke-width: 2;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(7px); }
}


/* ============================================================
   SERVICES OVERVIEW (Homepage)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: all .38s ease;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,92,.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--ease);
}
.svc-card:hover .svc-icon { background: rgba(201,168,76,.14); }
.svc-icon svg {
  width: 26px; height: 26px;
  stroke: var(--navy); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--ease);
}
.svc-card:hover .svc-icon svg { stroke: var(--gold-dark); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.svc-card p  { font-size: .94rem; margin-bottom: 24px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .2px;
  transition: gap var(--ease);
}
.svc-link:hover { gap: 10px; }
.svc-link svg {
  width: 14px; height: 14px;
  stroke: var(--gold-dark); fill: none; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}


/* ============================================================
   WHY RIARA (Homepage)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 48px;
}
.why-item { position: relative; }
.why-num {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(27,58,92,.05);
  line-height: 1;
  margin-bottom: -22px;
  transition: color .4s ease;
  user-select: none;
}
.why-item:hover .why-num { color: rgba(201,168,76,.1); }
.why-icon-wrap {
  width: 62px; height: 62px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all .35s ease;
}
.why-item:hover .why-icon-wrap {
  background: var(--gold);
  transform: rotate(-6deg) scale(1.05);
}
.why-icon-wrap svg {
  width: 30px; height: 30px;
  stroke: var(--white); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--ease);
}
.why-item:hover .why-icon-wrap svg { stroke: var(--navy); }
.why-item h3 { font-size: 1.3rem; margin-bottom: 14px; }
.why-item p  { font-size: .94rem; line-height: 1.87; }


/* ============================================================
   CREDIBILITY / STATS (Homepage)
   ============================================================ */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cred-text .section-title { color: var(--white); }
.cred-text p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--ease);
}
.stat-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-3px);
}
.stat-val {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
  letter-spacing: .2px;
}


/* ============================================================
   HOMEPAGE CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--sp-xl) 0;
  background: var(--light-gray);
  text-align: center;
}
.cta-band .section-title { max-width: 660px; margin-inline: auto; margin-bottom: 16px; }
.cta-band .section-intro  { max-width: 560px; }
.cta-band .cta-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }


/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.svc-detail { padding: var(--sp-xl) 0; }
.svc-detail:nth-of-type(odd)  { background: var(--white); }
.svc-detail:nth-of-type(even) { background: var(--off-white); }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: start;
}

.svc-detail-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.svc-detail h2 { margin-bottom: 10px; }
.svc-subline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.5;
}
.svc-detail-body p { margin-bottom: 18px; font-size: .97rem; }

/* Outcomes card */
.outcomes-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.outcomes-card-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.outcome-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.outcome-row:last-child { padding-bottom:0; margin-bottom:0; border-bottom:none; }
.outcome-check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome-check svg {
  width: 11px; height: 11px;
  stroke: var(--gold); fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.outcome-text {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

/* Deliverables */
.deliverables { margin-top: 40px; }
.deliverables-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 16px;
}
.deliverables-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.del-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--ease);
}
.svc-detail:nth-of-type(even) .del-item { background: var(--light-gray); }
.del-item:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.del-dot {
  width: 6px; height: 6px; min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Services page CTA */
.svc-page-cta {
  padding: var(--sp-xl) 0;
  background: var(--navy);
  text-align: center;
}
.svc-page-cta .section-title { color: var(--white); max-width: 580px; margin-inline: auto; margin-bottom: 16px; }
.svc-page-cta p { color: rgba(255,255,255,.65); max-width: 500px; margin-inline: auto; margin-bottom: 40px; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story section */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-body p { font-size: .97rem; margin-bottom: 20px; }
.story-body p:last-child { margin-bottom: 0; }

.story-accent {
  width: 56px; height: 4px;
  background: var(--gold);
  margin-bottom: 32px;
  border-radius: 2px;
}

.quote-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 9rem;
  color: var(--gold);
  opacity: .18;
  position: absolute;
  top: -18px; left: 28px;
  line-height: 1;
  pointer-events: none;
}
.quote-card blockquote {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.quote-card cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Canada section */
.canada-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.canada-content p { margin-bottom: 20px; font-size: .97rem; }

.canada-highlight {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--gold);
}
.canada-highlight h3 { font-size: 1.2rem; margin-bottom: 14px; }
.canada-highlight p  { font-size: .93rem; }

/* Team section */
.team-prose {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.team-prose p { font-size: 1rem; margin-bottom: 20px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 64px;
}
.value-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all var(--ease);
}
.value-card:hover {
  background: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--ease);
}
.value-card:hover .value-icon { background: var(--gold); }
.value-icon svg {
  width: 24px; height: 24px;
  stroke: var(--white); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke var(--ease);
}
.value-card:hover .value-icon svg { stroke: var(--navy); }
.value-name {
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color var(--ease);
}
.value-card:hover .value-name { color: var(--white); }
.value-desc {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.6;
  transition: color var(--ease);
}
.value-card:hover .value-desc { color: rgba(255,255,255,.65); }

/* Network section */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.net-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--ease);
}
.net-card:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.28);
  transform: translateY(-4px);
}
.net-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.net-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.section--navy .net-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 12px; }
.section--navy .net-card p  { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2   { margin-bottom: 20px; }
.contact-info > p  { font-size: 1.02rem; line-height: 1.85; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-detail-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(27,58,92,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg {
  width: 20px; height: 20px;
  stroke: var(--navy); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail-text strong {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-detail-text span,
.contact-detail-text a { font-size: .93rem; color: var(--text-mid); }
.contact-detail-text a:hover { color: var(--gold-dark); }

.contact-next {
  margin-top: 44px;
  padding: 28px 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.contact-next h4 { color: var(--navy); margin-bottom: 10px; }
.contact-next p  { font-size: .88rem; line-height: 1.78; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-sub { font-size: .92rem; color: var(--text-mid); margin-bottom: 36px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 17px;
  border: 2px solid var(--mid-gray);
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,.09);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
}
.form-group textarea { resize:vertical; min-height:140px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B3A5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
.form-submit { width:100%; margin-top: 4px; }
.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: 14px;
}
.form-error-msg {
  display: none;
  font-size: .78rem;
  color: #e53e3e;
  margin-top: 5px;
}
.form-group input.error ~ .form-error-msg,
.form-group select.error ~ .form-error-msg,
.form-group textarea.error ~ .form-error-msg { display: block; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 68px; height: 68px;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  width: 34px; height: 34px;
  stroke: var(--gold); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-success h3 { margin-bottom: 12px; }
.form-success p  { font-size: .94rem; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); }

.footer-main { padding: 80px 0 52px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 48px;
}

.footer-brand-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 6px;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-suffix {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  margin-left: 8px;
}
.footer-brand-tagline {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  line-height: 1.78;
  max-width: 280px;
}

.footer-col-head {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
  font-family: var(--ff-body);
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  transition: color var(--ease);
}
.footer-nav-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item svg {
  width: 15px; height: 15px; min-width: 15px;
  stroke: var(--gold); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact-item span,
.footer-contact-item a { font-size: .84rem; color: rgba(255,255,255,.58); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,.07); }

.footer-disclaimer {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-disclaimer p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--gold); }


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


/* ============================================================
   RESPONSIVE — Tablet (≤1023px)
   ============================================================ */
@media (max-width:1023px) {
  .services-grid,
  .why-grid,
  .network-grid { grid-template-columns: 1fr 1fr; }

  .cred-grid,
  .about-story-grid,
  .canada-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }

  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-card   { position: static; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}


/* ============================================================
   RESPONSIVE — Mobile (≤767px)
   ============================================================ */
@media (max-width:767px) {
  :root { --sp-xl: 64px; }

  /* Nav */
  .nav-toggle { display:flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:13px 24px; border-radius:0; width:100%; }
  .nav-links .nav-cta {
    margin: 10px 20px 0;
    width: calc(100% - 40px);
    border-radius: var(--radius);
  }

  /* Grids */
  .services-grid,
  .why-grid,
  .network-grid,
  .values-grid { grid-template-columns: 1fr; }

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

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }

  .deliverables-list { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-band .cta-actions { flex-direction: column; align-items: center; }

  /* Contact reassurance strip */
  .contact-reassurance-grid { grid-template-columns: 1fr !important; }

  .quote-card { padding: 40px 32px; }
  .about-story-grid .quote-card { margin-top: 0; }
}

@media (max-width:480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .svc-card  { padding: 32px 24px; }
  .outcomes-card { padding: 32px 24px; }
  .contact-next { padding: 24px 22px; }
}
