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

:root {
  --navy:        #0B1F3A;
  --navy-light:  #112848;
  --gold:        #B8965A;
  --gold-light:  #D4AE74;
  --cream:       #F8F7F4;
  --white:       #FFFFFF;
  --text:        #1C2B3A;
  --muted:       #6B7280;
  --border:      #DDD8CE;
  --section-gap: 96px;
}

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

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

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.gold-rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(184,150,90,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-bottom: none !important;
  font-size: 11.5px !important;
  letter-spacing: 0.12em !important;
  border-radius: 0;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 0 24px;
    border-top: 1px solid rgba(184,150,90,0.25);
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 32px; border-bottom: none !important; }
  .nav-cta { margin: 8px 32px 0; display: inline-block; }
  .nav-hamburger { display: flex; }
}

/* Page offset for fixed nav */
.page-body { padding-top: 72px; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.65s ease forwards;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  color: var(--white);
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   SECTION HEADER
============================================= */
.section-header { margin-bottom: 60px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner-inner { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3vw, 38px); margin-bottom: 14px; }
.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FOOTER
============================================= */
#footer { background: #060F1E; padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.footer-col address strong { display: block; color: rgba(255,255,255,0.75); margin-bottom: 2px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* =============================================
   HOME - HERO
============================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-shape-1 {
  position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  border: 1.5px solid rgba(184,150,90,0.18); border-radius: 50%;
}
.hero-shape-2 {
  position: absolute; top: 40px; right: 0;
  width: 340px; height: 340px;
  border: 1.5px solid rgba(184,150,90,0.12); border-radius: 50%;
}
.hero-shape-3 {
  position: absolute; bottom: -120px; left: -60px;
  width: 320px; height: 320px;
  border: 1px solid rgba(184,150,90,0.1);
  transform: rotate(45deg);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  animation: fadeUp 0.65s ease forwards;
}
.hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 520px; margin-bottom: 48px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* HOME - STATS BAR */
.stats-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(184,150,90,0.2);
  border-bottom: 1px solid rgba(184,150,90,0.2);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.stat-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid rgba(184,150,90,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 680px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(184,150,90,0.15); }
  .stat-item:nth-child(4) { border-right: none; }
}

/* HOME - SERVICE PILLARS */
.pillars-section { padding: var(--section-gap) 0; background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .pillars-grid { grid-template-columns: 1fr; gap: 24px; } }

.pillar-card {
  background: var(--white);
  padding: 48px 40px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: block;
}
.pillar-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(11,31,58,0.08);
}
.pillar-icon { width: 48px; height: 48px; margin-bottom: 28px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-card h3 { font-size: 22px; margin-bottom: 14px; }
.pillar-card p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.pillar-link {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.pillar-link:hover { gap: 14px; }
.pillar-link::after { content: '\2192'; }

/* HOME - WHY MARVIX */
.why-section { padding: var(--section-gap) 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 48px; } }

.why-left h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.why-left p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.why-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-point { display: flex; gap: 18px; align-items: flex-start; }
.why-point-marker {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.why-point-marker svg { width: 12px; height: 12px; fill: var(--white); }
.why-point-text h4 {
  font-family: 'Lato', sans-serif; font-size: 15px;
  font-weight: 700; margin-bottom: 4px; color: var(--navy);
}
.why-point-text p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

.why-decorative {
  aspect-ratio: 1; background: var(--navy);
  position: relative; overflow: hidden;
}
.why-decorative::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.why-decorative-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; z-index: 1; padding: 48px;
}
.why-decorative-text .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 96px; font-weight: 700; color: var(--gold);
  line-height: 1; opacity: 0.7;
}
.why-decorative-text p {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 16px; margin-bottom: 0;
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-origin { padding: var(--section-gap) 0; background: var(--cream); }
.about-origin-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 768px) { .about-origin-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-origin-left h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 24px; }
.about-origin-left p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }

.mission-box {
  background: var(--navy); padding: 36px 40px; position: relative;
}
.mission-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
}
.mission-box .section-label { color: var(--gold); }
.mission-box p {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--white); line-height: 1.65; font-style: italic; margin: 0;
}

.team-section { padding: var(--section-gap) 0; background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; margin-top: 56px;
}
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--cream); padding: 40px;
  border-bottom: 3px solid transparent; transition: border-color 0.3s;
}
.team-card:hover { border-bottom-color: var(--gold); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.team-avatar span {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--gold);
}
.team-card h3 { font-size: 22px; margin-bottom: 4px; }
.team-role {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.team-bio { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.team-email {
  font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
}
.team-email:hover { color: var(--gold); border-color: var(--gold); }

.values-section {
  padding: var(--section-gap) 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.values-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.values-section .section-header { position: relative; z-index: 1; }
.values-section .section-header h2 { color: var(--white); }
.values-section .section-header p { color: rgba(255,255,255,0.5); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; position: relative; z-index: 1; margin-top: 56px;
}
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; gap: 16px; } }
.value-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,90,0.18); padding: 40px 36px;
}
.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: rgba(184,150,90,0.25); line-height: 1; margin-bottom: 20px;
}
.value-item h3 { font-size: 22px; color: var(--white); margin-bottom: 12px; }
.value-item p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* =============================================
   SERVICES PAGE
============================================= */
.services-section { padding: var(--section-gap) 0; background: var(--cream); }

.service-block {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; align-items: start;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
@media (max-width: 768px) { .service-block { grid-template-columns: 1fr; gap: 32px; } }

.service-left { position: sticky; top: 104px; }
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 700;
  color: rgba(11,31,58,0.08); line-height: 1; margin-bottom: -8px;
}
.service-left h2 { font-size: 28px; margin-bottom: 12px; }
.service-tagline {
  font-size: 14px; color: var(--gold);
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.service-right p { font-size: 16.5px; color: var(--muted); line-height: 1.85; margin-bottom: 36px; }
.service-caps {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 540px) { .service-caps { grid-template-columns: 1fr; } }
.service-cap {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--white); border-left: 3px solid var(--gold);
}
.service-cap-dot {
  flex-shrink: 0; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold); margin-top: 7px;
}
.service-cap span { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.5; }

/* =============================================
   HOW WE WORK PAGE
============================================= */
.process-section { padding: var(--section-gap) 0; background: var(--cream); }
.process-steps { margin-top: 72px; }

.process-step {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 48px; align-items: start; position: relative;
}
.process-step::before {
  content: ''; position: absolute;
  left: 59px; top: 80px; bottom: -1px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,150,90,0.1));
}
.process-step:last-child::before { display: none; }
@media (max-width: 640px) {
  .process-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .process-step::before { left: 28px; }
}

.process-step-left {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px; padding-bottom: 64px;
}
.step-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-circle span {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--gold);
}
.process-step-right { padding-bottom: 64px; padding-top: 12px; }
.process-step-right h3 { font-size: 26px; margin-bottom: 14px; }
.process-step-right p { font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 560px; }

/* FAQ */
.faq-section { padding: var(--section-gap) 0; background: var(--white); }
.faq-list { margin-top: 56px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 28px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; cursor: pointer;
  font-family: 'Playfair Display', serif; font-size: 19px;
  font-weight: 600; color: var(--navy); transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s;
}
.faq-icon span { font-size: 18px; line-height: 1; color: var(--muted); transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-icon span { color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 0 28px;
  font-size: 15.5px; color: var(--muted); line-height: 1.8; max-width: 660px;
}
.faq-item.open .faq-answer { display: block; }

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section { padding: var(--section-gap) 0; background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 56px; } }

.contact-info h2 { font-size: 32px; margin-bottom: 14px; }
.contact-info > p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-detail-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-detail-text strong {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px;
}
.contact-detail-text span { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

.team-contacts { margin-top: 48px; }
.team-contacts h3 {
  font-size: 14px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.team-contact-cards { display: flex; flex-direction: column; gap: 16px; }
.team-contact-card {
  background: var(--white); padding: 22px 24px;
  display: flex; gap: 18px; align-items: center;
  border-left: 3px solid transparent; transition: border-color 0.2s;
}
.team-contact-card:hover { border-left-color: var(--gold); }
.team-contact-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.team-contact-avatar span {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700; color: var(--gold);
}
.team-contact-info strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.team-contact-info .role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px; display: block;
}
.team-contact-info a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.team-contact-info a:hover { color: var(--gold); }

.location-card { background: var(--navy); overflow: hidden; margin-top: 40px; }
.location-map-placeholder {
  width: 100%; height: 160px; background: var(--navy-light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.location-map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}
.location-pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.location-pin-dot {
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184,150,90,0.25), 0 0 0 12px rgba(184,150,90,0.1);
}
.location-pin-line { width: 2px; height: 24px; background: var(--gold); opacity: 0.5; }
.location-card-body { padding: 22px 28px; }
.location-card-body strong {
  color: var(--gold); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; display: block; margin-bottom: 8px;
}
.location-card-body p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

.contact-form-wrap { background: var(--white); padding: 48px; }
@media (max-width: 540px) { .contact-form-wrap { padding: 32px 24px; } }
.contact-form-wrap h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--muted); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: 'Lato', sans-serif; font-size: 14.5px; color: var(--text);
  outline: none; transition: border-color 0.2s; appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--white); padding: 16px;
  font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s;
}
.form-submit:hover { background: var(--gold); }

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

.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
