/* ============================================================
   HANOVA CONSULTANCY — PREMIUM CORPORATE STYLESHEET
   Design: Logo-aligned. Deep navy + emerald-teal growth accent.
   Fonts: Cormorant Garamond (headlines) + DM Sans (body)
   Brand colors derived from official Hanova logo:
     navy pillars  → #16294A / #27466F
     teal arrow    → #159E80 → #3FD9B4
     impact accent → #E8732C
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
  /* Navy (logo H pillars) */
  --navy:       #16294A;
  --navy-mid:   #1E3559;
  --navy-light: #27466F;
  --navy-deep:  #0F1E37;

  /* Teal / emerald (logo growth arrow) — kept on --gold names for back-compat */
  --gold:       #1DBE9D;   /* primary brand accent (was gold) */
  --gold-light: #3FD9B4;   /* lighter accent (was gold-light) */
  --teal:       #1DBE9D;
  --teal-light: #3FD9B4;
  --teal-deep:  #0E8C72;

  /* Impact orange (from logo's "IMPACT" word) */
  --orange:       #E8732C;
  --orange-light: #F5A269;

  --white:      #FFFFFF;
  --off-white:  #F6F8FB;
  --light-gray: #EAEFF5;
  --mid-gray:   #8696AB;
  --text-dark:  #0F1E37;
  --text-body:  #3A4A62;
  --text-muted: #7A8A9F;
  --border:     #DEE5EE;
  --border-dark:#1E3559;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --section-pad: clamp(72px, 10vw, 120px) 0;
}

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

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

body {
  font-family: var(--ff-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section-padding { padding: var(--section-pad); }

.bg-dark   { background: var(--navy); color: var(--white); }
.bg-light  { background: var(--off-white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.align-center { align-items: center; }
.centered { text-align: center; }
.mt-md { margin-top: 32px; display: inline-block; }
.mt-lg { margin-top: 48px; }

/* --- TYPOGRAPHY --- */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.section-headline {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-headline.light { color: var(--white); }

.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header.centered { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 16px;
}

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; color: var(--navy); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: clamp(17px, 2vw, 20px); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,22,35,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg { padding: 20px 48px; font-size: 14px; }

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 28px;
  transition: gap 0.25s var(--ease-out);
}

.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 14px; }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
  padding: 0;
}

.nav.scrolled {
  background: rgba(15,30,55,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  /* Replaced character "H" with the official SVG logo via background-image
     so existing markup (<span class="logo-mark">H</span>) keeps working. */
  background-image: url("assets/logo-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;        /* hide the literal "H" text inside the span */
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.logo-text {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
}

.logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  display: block;
  transition: transform 0.3s;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(39,70,111,0.75) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(63,217,180,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #0F1E37 0%, #1E3559 50%, #16294A 100%);
}

/* Geometric accent */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(63,217,180,0.1);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -15%; right: 5%;
  width: 35%;
  aspect-ratio: 1;
  border: 1px solid rgba(63,217,180,0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: clamp(20px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(63,217,180,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- CREDIBILITY --- */
.credibility {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.credibility-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 24px;
  text-align: center;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.logo-placeholder {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  border: 1px solid var(--border);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.logo-placeholder:hover { opacity: 1; }

/* --- ABOUT PREVIEW --- */
.about-text .section-headline { margin-bottom: 20px; }

.stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11,22,35,0.08);
}

.stat-card.accent {
  background: var(--navy);
  border-color: var(--navy);
}

.stat-card.accent .stat-num { color: var(--gold); }
.stat-card.accent .stat-label { color: rgba(255,255,255,0.65); }

.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- PILLARS --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 16px;
}

.pillar-card {
  padding: 48px 32px;
  border: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease-out), transform 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.pillar-card:hover::before { width: 100%; }
.pillar-card:hover { background: rgba(63,217,180,0.04); }

.pillar-icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.pillar-card h3 {
  color: var(--white);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 14px;
}

.pillar-card p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  display: block;
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
  background: var(--white);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.service-card:hover::before { transform: translateY(0); }

.service-card > * { position: relative; z-index: 1; }

.service-card:hover h3,
.service-card:hover p { color: var(--white); }

.service-card:hover .service-num { color: var(--gold); }
.service-card:hover .card-arrow { color: var(--gold); transform: translateX(4px); }

.service-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s;
}

.service-card h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
  line-height: 1.65;
  margin: 0;
}

.card-arrow {
  display: block;
  margin-top: 24px;
  font-size: 18px;
  color: var(--navy);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}

/* --- WHY HANOVA --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.why-item {
  display: flex;
  gap: 16px;
}

.why-marker {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
}

.why-item h4 { margin-bottom: 10px; }
.why-item p { margin: 0; font-size: 14.5px; }

/* --- INDUSTRIES --- */
.industry-list {
  border-top: 1px solid var(--border);
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s var(--ease-out);
}

.industry-item:hover {
  padding-left: 12px;
}

.industry-name {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--navy);
  font-weight: 500;
  transition: color 0.2s;
}

.industry-item:hover .industry-name { color: var(--gold); }

.industry-arrow {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out), color 0.3s;
}

.industry-item:hover .industry-arrow { transform: translateX(6px); color: var(--gold); }

/* --- IMPACT PREVIEW --- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.impact-card {
  padding: 48px 32px;
  border: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease-out);
}

.impact-card:hover { background: rgba(63,217,180,0.06); }

.impact-metric {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-area {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.impact-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* --- WORKSHOPS TEASER --- */
.workshops-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.workshop-teaser-item {
  padding: 18px 0;
  font-family: var(--ff-display);
  font-size: clamp(17px, 2vw, 22px);
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  border-left: 2px solid transparent;
  transition: border-color 0.25s, padding-left 0.25s;
}

.workshop-teaser-item:hover { border-left-color: var(--gold); padding-left: 20px; }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(63,217,180,0.1);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 20px;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: clamp(15px, 1.5vw, 17px);
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 28px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 12px 0 4px;
  letter-spacing: 0.05em;
}

.footer-location {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.footer-nav { display: flex; gap: 64px; }

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ============================
   INNER PAGES — SHARED
   ============================ */

/* Page Hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 0%, rgba(26,51,84,0.8) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-size: clamp(16px, 2vw, 18px);
  margin-top: 20px;
  line-height: 1.7;
}

/* ============================
   ABOUT PAGE
   ============================ */
.about-intro { padding: var(--section-pad); }

.about-intro .grid-2 { align-items: center; }

.mission-vision {
  padding: var(--section-pad);
  background: var(--off-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.mv-card {
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
}

.mv-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.mv-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 16px;
}

.mv-card p { margin: 0; font-size: 15px; }

.differentiators { padding: var(--section-pad); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.diff-card {
  padding: 36px 32px;
  border-top: 2px solid var(--gold);
  background: var(--off-white);
}

.diff-num {
  font-family: var(--ff-display);
  font-size: 40px;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
}

.diff-card h4 { margin-bottom: 12px; }
.diff-card p { margin: 0; font-size: 14.5px; }

/* ============================
   SERVICES PAGE
   ============================ */
.services-detail { padding: var(--section-pad); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; }

.service-sidebar { position: sticky; top: 100px; align-self: start; }

.service-sidebar .service-num { font-size: 14px; margin-bottom: 12px; }
.service-sidebar h3 { font-size: clamp(22px, 2.5vw, 30px); }

.service-body h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: 32px;
}

.service-body h4:first-child { margin-top: 0; }

.outcome-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outcome-list li {
  font-size: 14.5px;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}

.outcome-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* ============================
   INDUSTRIES PAGE
   ============================ */
.industries-detail { padding: var(--section-pad); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.industry-card {
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.industry-card:hover::after { width: 100%; }
.industry-card:hover { background: var(--off-white); }

.industry-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.industry-card h3 { margin-bottom: 14px; font-size: clamp(20px, 2vw, 24px); }
.industry-card p { margin: 0; font-size: 14.5px; }

/* ============================
   WORKSHOPS PAGE
   ============================ */
.workshops-grid { padding: var(--section-pad); }

.workshop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.workshop-card {
  padding: 44px 36px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,22,35,0.1);
  z-index: 2;
}

.workshop-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.workshop-card h3 { margin-bottom: 14px; font-size: clamp(18px, 2vw, 22px); }
.workshop-card p { margin: 0; font-size: 14px; color: var(--text-muted); }

.formats-section { padding: var(--section-pad); background: var(--off-white); }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.format-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
}

.format-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.format-card h4 { margin-bottom: 8px; font-size: 16px; }
.format-card p { margin: 0; font-size: 13px; color: var(--text-muted); }

/* ============================
   IMPACT PAGE
   ============================ */
.impact-detail { padding: var(--section-pad); }

.impact-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.impact-full-card {
  padding: 56px 48px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.impact-full-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}

.impact-full-card:hover::before { height: 100%; }
.impact-full-card:hover { background: var(--off-white); }

.impact-full-metric {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-full-area {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.impact-full-card h3 { margin-bottom: 12px; font-size: clamp(20px, 2vw, 24px); }
.impact-full-card p { margin: 0; font-size: 14.5px; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-layout {
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-headline { font-size: clamp(28px, 3.5vw, 44px); }

.contact-detail {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item-value {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Form */
.contact-form {
  background: var(--off-white);
  padding: 52px 48px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group textarea { min-height: 140px; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

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

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

/* staggered children */
.pillars-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.pillars-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.pillars-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }

.services-grid .fade-up:nth-child(2) { transition-delay: 0.07s; }
.services-grid .fade-up:nth-child(3) { transition-delay: 0.14s; }
.services-grid .fade-up:nth-child(4) { transition-delay: 0.21s; }
.services-grid .fade-up:nth-child(5) { transition-delay: 0.28s; }
.services-grid .fade-up:nth-child(6) { transition-delay: 0.35s; }

.impact-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.impact-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.impact-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .workshop-cards { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2,
  .mv-grid,
  .service-block,
  .contact-grid,
  .industry-grid,
  .impact-full-grid { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-cta { padding: 14px 32px !important; }

  .nav-toggle { display: flex; z-index: 100; }

  .hero-headline { font-size: clamp(40px, 10vw, 60px); }

  .pillars-grid,
  .services-grid,
  .impact-grid,
  .why-grid,
  .formats-grid,
  .workshop-cards,
  .diff-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 32px; }

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

  .stat-stack { grid-template-columns: 1fr 1fr; }

  .service-block { gap: 32px; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-stack { grid-template-columns: 1fr; }
}


/* ============================================================
   LOGO-ALIGNED ADDITIONS � orange "IMPACT" accent &amp; tweaks
   ============================================================ */

/* The "IMPACT" word in the logo is orange � mirror that here. */
.impact-metric,
.impact-full-metric { color: var(--orange); }
.stat-card.accent .stat-num { color: var(--teal-light); }

/* Subtle teal underline glow under the wordmark in the nav (mirrors the
   teal divider line under HANOVA in the official logo). */
.logo-text { position: relative; }
.logo-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal-light), transparent 80%);
  opacity: 0.7;
}

/* Italicized hero word � keep using the teal accent (was gold) but slightly
   brighter so it reads as the same emerald-teal as the logo arrow. */
.hero-headline em { color: var(--teal-light); font-style: italic; }

/* Footer: location pill in teal, CONSULTANCY-style spacing */
.footer-location { color: var(--teal-light); }

/* Buttons: keep navy primary, but make the gold CTA in nav use teal */
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--teal-light) !important; color: var(--navy) !important; }
