/* ============================================================
   MAST Strategic & Financial Advisory – Main Stylesheet
   Colour palette derived from logo:
     Navy:   #12192b
     Gold:   #c9a44a → #e8d5a0 (gradient)
     Light:  #f5f0e8
     Text:   #2c3347
   ============================================================ */

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

:root {
  --navy:       #12192b;
  --navy-mid:   #1c2540;
  --navy-light: #253060;
  --gold-dark:  #a07c2a;
  --gold:       #c9a44a;
  --gold-light: #e8d5a0;
  --gold-pale:  #f5edd8;
  --cream:      #faf7f2;
  --text:       #2c3347;
  --text-muted: #6b7280;
  --white:      #ffffff;
  --radius:     6px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

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

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

/* ---- Utilities ---- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.section-intro {
  max-width: 600px;
  margin: 1.25rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-color: transparent;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,74,.35);
}

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

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

.navbar.scrolled {
  background: rgba(18, 25, 43, .97);
  backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: .85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { right: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy) !important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,164,74,.4);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,164,74,.12) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(201,164,74,.08) 0%, transparent 50%),
    linear-gradient(145deg, #0a0f1f 0%, #12192b 45%, #1a2845 80%, #0d1820 100%);
  color: var(--white);
  overflow: hidden;
}

/* Subtle grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,164,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,74,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(18,25,43,.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 8rem 0 6rem;
}

.hero-tagline {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: slideUp 1s ease-out 0.4s both;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: slideUp 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideUp 1s ease-out 0.8s both;
}

.hero-actions .btn {
  transition: all var(--transition);
}

.hero-actions .btn-gold {
  box-shadow: 0 8px 24px rgba(201,164,74,.25);
}

.hero-actions .btn-gold:hover {
  box-shadow: 0 12px 40px rgba(201,164,74,.45);
  transform: translateY(-3px);
}

.hero-actions .btn-outline {
  box-shadow: inset 0 0 20px rgba(201,164,74,.1);
}

.hero-actions .btn-outline:hover {
  background: rgba(201,164,74,.15);
  box-shadow: inset 0 0 20px rgba(201,164,74,.2), 0 0 20px rgba(201,164,74,.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: fadeIn 1.2s ease-out 1s both;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(201,164,74,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollHint 2.5s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrollHint {
  0%, 5% { opacity: 1; top: 6px; }
  50% { opacity: 0; top: 18px; }
  95%, 100% { opacity: 0; top: 24px; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .04;
}

.hero-accent-1 {
  width: 280px;
  height: 280px;
  top: 15%;
  right: 10%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero-accent-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 5%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

.hero-accent-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 20%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: float 30s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -15px); }
  50% { transform: translate(0, 30px); }
  75% { transform: translate(-25px, -10px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

/* Tabs */
.tabs-wrapper { width: 100%; }

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid rgba(18,25,43,.1);
  margin-bottom: 3rem;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: .9rem 2rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

.tab-panels { position: relative; }

.tab-panel {
  display: none;
  animation: fadeIn .4s ease;
}
.tab-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tab-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.tab-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Stat cards */
.tab-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(201,164,74,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 72px;
}

.stat-label {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Vision pillars */
.vision-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  background: var(--white);
  border: 1px solid rgba(201,164,74,.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pillar-icon {
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Team */
.team-panel {
  grid-template-columns: 1fr !important;
  gap: 1.5rem;
}

.team-panel .tab-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  justify-content: center;
  gap: 1.5rem;
  margin-top: .5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid rgba(201,164,74,.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,164,74,.15), rgba(201,164,74,.05));
  border: 1.5px solid rgba(201,164,74,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.team-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(201,164,74,.3);
  object-fit: cover;
  display: block;
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
}
.team-card p {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}

.team-bio {
  font-size: .75rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: .5rem !important;
  margin-bottom: .8rem !important;
}

.team-link {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color var(--transition);
}
.team-link:hover {
  color: var(--gold);
}

.team-btn {
  display: inline-block;
  padding: .6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
}
.team-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,164,74,.4);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .3s ease;
}
.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 25, 43, .75);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 2001;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 100px rgba(0,0,0,.3);
  animation: slideUp .4s cubic-bezier(.34,.1,.64,.1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2002;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(201,164,74,.1);
  color: var(--navy);
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: .5rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  background: rgba(201,164,74,.2);
}

.modal-header {
  text-align: center;
  padding: 2.5rem 2rem 0;
}

.modal-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(201,164,74,.2);
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-body h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
}

.modal-title {
  font-size: .9rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1.2rem;
}

.modal-desc {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  text-align: left;
}

.modal-expertise,
.modal-education {
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.modal-expertise h4,
.modal-education h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .8rem;
}

.modal-expertise ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.modal-expertise li {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.modal-expertise li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.modal-education p {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  line-height: 1.6;
}

.modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  margin-top: 1.5rem;
  transition: var(--transition);
}
.modal-linkedin:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,164,74,.35);
}

.modal-linkedin svg {
  width: 20px;
  height: 20px;
}

.gdpr-modal-body {
  text-align: left;
}

.gdpr-modal-body h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.gdpr-modal-body .modal-desc {
  margin-bottom: 1.2rem;
}

.gdpr-modal-body a {
  color: var(--gold-dark);
  text-decoration: underline;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--white);
}

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

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(201,164,74,.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,164,74,.08);
  line-height: 1;
  pointer-events: none;
  transition: var(--transition);
}

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

.service-card:hover::before {
  color: rgba(201,164,74,.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,164,74,.15), rgba(201,164,74,.05));
  border: 1px solid rgba(201,164,74,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon svg {
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .9rem;
  line-height: 1.3;
}

.service-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}
.service-link span { transition: transform var(--transition); }
.service-link:hover { color: var(--gold); }
.service-link:hover span { transform: translateX(4px); }

/* ============================================================
   WHY STRIP
   ============================================================ */
.why-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
}

.why-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.why-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 2.5rem;
  min-width: 220px;
}

.why-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .2rem;
}

.why-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
.why-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.why-sep {
  width: 1px;
  height: 60px;
  background: rgba(201,164,74,.2);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,164,74,.15), rgba(201,164,74,.05));
  border: 1px solid rgba(201,164,74,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.info-item strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.info-item a, .info-item span {
  font-size: .95rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.info-item a:hover { color: var(--gold-dark); }

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

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

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
}
.form-group label span { color: var(--gold-dark); }

.form-group input,
.form-group textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid rgba(18,25,43,.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c8; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,74,.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.gdpr-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-top: -.2rem;
}

.gdpr-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--gold-dark);
  flex-shrink: 0;
}

.gdpr-consent input[type="checkbox"].error {
  outline: 2px solid #e53e3e;
  outline-offset: 2px;
}

.gdpr-label {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.gdpr-link {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  font: inherit;
  cursor: pointer;
}

.gdpr-link:hover {
  color: var(--gold);
}

.btn-submit {
  align-self: flex-start;
  padding: .9rem 2.4rem;
  font-size: .93rem;
  font-weight: 600;
}

.form-feedback {
  font-size: .88rem;
  min-height: 1.4em;
  font-weight: 500;
}
.form-feedback.success { color: #276749; }
.form-feedback.error   { color: #c53030; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  width: auto;
  opacity: .9;
  filter: brightness(.95);
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-dev {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-dev a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-dev a:hover { color: var(--gold-light); }

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tab-panel-inner  { gap: 2.5rem; }
  .services-grid    { gap: 1.5rem; }
  .contact-layout   { gap: 3rem; }
}

@media (max-width: 860px) {
  .tab-panel-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .tab-text,
  .tab-text h3,
  .tab-text p      { text-align: center; }
  .services-grid    { grid-template-columns: 1fr; }
  .service-card     { text-align: center; }
  .service-icon     { margin-inline: auto; }
  .service-link     { justify-content: center; }
  .why-inner        { flex-direction: column; gap: 2rem; }
  .why-sep          { width: 60px; height: 1px; }
  .why-item         { padding: 0; flex-direction: column; align-items: center; text-align: center; }
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info     { align-items: center; }
  .info-item        { flex-direction: column; align-items: center; text-align: center; }
  .btn-submit       { align-self: center; }
  .team-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  /* Nav */
  .burger { display: flex; }

  .navbar.scrolled {
    backdrop-filter: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 25, 43, .98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }

  .nav-link { font-size: 1.1rem; }
  .nav-cta  { padding: .75rem 2rem; font-size: 1rem; }

  /* Hero */
  .hero-title  { font-size: 2.2rem; }
  .hero-sub    { font-size: 1rem; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn {
    justify-content: center;
    text-align: center;
  }

  /* Tabs */
  .tab-btn     { padding: .75rem 1rem; font-size: .8rem; }

  /* Form */
  .form-row    { grid-template-columns: 1fr; }
  .gdpr-consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    column-gap: .7rem;
    max-width: 360px;
    width: 100%;
    margin-top: .15rem;
    margin-inline: auto;
  }
  .gdpr-consent input[type="checkbox"] { margin-top: .2rem; }
  .gdpr-label {
    text-align: left;
    font-size: .82rem;
    line-height: 1.55;
  }
  .gdpr-link { display: inline; }

  /* Vision */
  .vision-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .hero-actions   { flex-direction: column; }
  .vision-pillars { grid-template-columns: 1fr; }
  .tab-btn        { padding: .65rem .7rem; }
}
