/* ============================================
   CARIETTI GROUP — Master Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette */
  --navy-deep:    #07111F;
  --navy:         #0B1D3A;
  --navy-mid:     #132E55;
  --navy-light:   #1A3F6F;

  /* Gold Accent */
  --gold:         #C9A84C;
  --gold-light:   #D4BA6A;
  --gold-muted:   #B89A3E;

  /* Neutrals */
  --ivory:        #FAF8F4;
  --cream:        #F2EDE4;
  --warm-gray:    #D6D0C4;
  --slate:        #6B7280;
  --charcoal:     #1F2937;
  --charcoal-light: #374151;

  /* Functional */
  --white:        #FFFFFF;
  --border:       rgba(11, 29, 58, 0.08);
  --shadow-sm:    0 1px 3px rgba(7, 17, 31, 0.06);
  --shadow-md:    0 4px 16px rgba(7, 17, 31, 0.08);
  --shadow-lg:    0 8px 32px rgba(7, 17, 31, 0.10);
  --shadow-xl:    0 16px 48px rgba(7, 17, 31, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad:  clamp(4rem, 8vw, 7rem);
  --container:    1200px;
  --container-narrow: 800px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --transition:   0.3s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--ivory);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  max-width: 70ch;
  color: var(--charcoal-light);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-slate { color: var(--slate); }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

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

/* --- Gold Accent Line (Signature Element) --- */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 60ch;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle,
.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(7, 17, 31, 0.97);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo span {
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--navy-deep) !important;
}

.nav__cta::after {
  display: none !important;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 63, 111, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(11, 29, 58, 0.5) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-bottom: 7rem;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

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

.hero__description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* Geometric Accent */
.hero__accent {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.04;
  z-index: 1;
}

.hero__accent svg {
  width: 100%;
  height: 100%;
}

/* Stats Bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(7, 17, 31, 0.6);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(20px);
  z-index: 3;
}

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

.hero__stat {
  text-align: center;
  padding: 1.75rem 1rem;
  position: relative;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

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

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

.btn--dark:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ============================================
   SERVICES OVERVIEW (Home)
   ============================================ */
.services-overview {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 1.5rem;
  transition: all var(--transition);
}

.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.service-card__link:hover {
  color: var(--gold);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   APPROACH / PHILOSOPHY
   ============================================ */
.approach {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.approach .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.approach h2 {
  color: var(--white);
}

.approach__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach__step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.approach__step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
}

.approach__step h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.approach__step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============================================
   TEAM PREVIEW (Home)
   ============================================ */
.team-preview {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--navy);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__photo img.photo-top {
  object-position: top;
}

.team-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.team-card__photo--placeholder span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-card__title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.team-card__expertise {
  font-size: 0.85rem;
  color: var(--slate);
}

/* ============================================
   TEAM PAGE — Full Bios
   ============================================ */
.team-hero {
  background: var(--navy-deep);
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  text-align: center;
}

.team-hero h1 {
  color: var(--white);
}

.team-hero p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
}

.team-member {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.team-member:nth-child(even) {
  background: var(--white);
}

.team-member__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.team-member__photo {
  width: 300px;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--navy);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__photo img.photo-top {
  object-position: top;
}

.team-member__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.team-member__photo--placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
}

.team-member__info .section-label {
  margin-bottom: 0.5rem;
}

.team-member__info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.team-member__role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-muted);
  margin-bottom: 1.5rem;
}

.team-member__bio {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-member__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.team-member__highlights li {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.9rem;
  background: rgba(201, 168, 76, 0.1);
  color: var(--navy);
  border-radius: 2px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.team-member__email {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-member__email:hover {
  color: var(--gold-muted);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-hero {
  background: var(--navy-deep);
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  text-align: center;
}

.services-hero h1 { color: var(--white); }
.services-hero p { color: rgba(255, 255, 255, 0.6); margin: 0 auto; }

.service-detail {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:nth-child(even) {
  background: var(--white);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail__content h2 {
  margin-bottom: 1rem;
}

.service-detail__content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.service-detail__list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-detail__sidebar {
  background: var(--navy-deep);
  border-radius: 4px;
  padding: 2.5rem;
  color: var(--white);
}

.service-detail__sidebar h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.service-detail__sidebar p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-detail__sidebar .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--navy-deep);
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  text-align: center;
}

.about-hero h1 { color: var(--white); }
.about-hero p { color: rgba(255, 255, 255, 0.6); margin: 0 auto; }

.about-mission {
  background: var(--white);
}

.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mission blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.about-values {
  background: var(--ivory);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-align: center;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0 auto;
}

/* ============================================
   SUCCESS STORIES / IMPACT
   ============================================ */
.impact {
  background: var(--navy-deep);
  color: var(--white);
}

.impact h2 { color: var(--white); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition);
}

.impact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
}

.impact-card__metric {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
}

.cta-section .btn {
  margin: 0 0.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--navy-deep);
  padding: calc(var(--section-pad) + 4rem) 0 var(--section-pad);
  text-align: center;
}

.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255, 255, 255, 0.6); margin: 0 auto; }

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--charcoal);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-info {
  padding-left: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.15rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--charcoal);
}

.contact-detail a:hover {
  color: var(--gold-muted);
}

.contact-team-emails h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.75rem;
}

.contact-team-emails ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-team-emails li a {
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-team-emails li a:hover {
  color: var(--gold-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__logo span { color: var(--gold); }

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bar p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .approach__grid,
  .about-mission__grid,
  .service-detail__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .impact-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .team-member__inner {
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
  }

  .team-member__photo {
    width: 240px;
    height: 300px;
  }

  .contact-info {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__content {
    padding-bottom: 12rem;
  }

  .hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stat:nth-child(2)::after {
    display: none;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .team-member__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-member__photo {
    width: 220px;
    height: 280px;
    margin: 0 auto;
  }

  .team-member__highlights {
    justify-content: center;
  }

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

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

  .cta-section .btn {
    display: block;
    margin: 0 auto 0.75rem;
  }
}