@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy: #0a2340;
  --blue: #1a4a7a;
  --blue-mid: #2563a8;
  --teal: #1a7a6e;
  --teal-light: #22a896;
  --green: #1a5c3a;
  --green-light: #2e8b6b;
  --gold: #c8a84b;
  --cream: #f5f2ec;
  --white: #ffffff;
  --light-gray: #f0f4f8;
  --mid-gray: #8a9ab0;
  --text-dark: #0d1f33;
  --text-body: #2d3f52;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text-body);
  background: var(--white);
  font-weight: 300;
}

/* ─── NAV ─────────────────────────────────────────────── */

nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--teal-light);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--teal-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--mid-gray);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(26, 122, 110, 0.18);
}

.nav-lang {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ─── HERO ────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, rgba(10,35,64,0.75) 50%, rgba(26,90,58,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.4rem;
  font-weight: 500;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--green-light));
  margin-bottom: 2.4rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 1px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
}

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

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

/* ─── SECTIONS ────────────────────────────────────────── */

section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 640px;
  font-weight: 300;
}

/* ─── SERVICES GRID ───────────────────────────────────── */

.services-bg {
  background: var(--light-gray);
}

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

.service-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-top: 3px solid var(--teal);
  position: relative;
}

.service-card:nth-child(2) { border-top-color: var(--blue-mid); }
.service-card:nth-child(3) { border-top-color: var(--green-light); }
.service-card:nth-child(4) { border-top-color: var(--gold); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
}

/* ─── IMAGE STRIP ─────────────────────────────────────── */

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 340px;
  overflow: hidden;
}

.strip-img {
  overflow: hidden;
  position: relative;
}

.strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: transform 0.4s ease;
}

.strip-img:hover img {
  transform: scale(1.04);
}

.strip-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,64,0.5) 0%, transparent 60%);
}

/* ─── STATS BAR ───────────────────────────────────────── */

.stats-bar {
  background: var(--navy);
  padding: 3.5rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ─── FOOTER ──────────────────────────────────────────── */

footer {
  background: var(--text-dark);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

footer a {
  color: var(--teal-light);
  text-decoration: none;
}

/* ─── PAGE HEADER (inner pages) ──────────────────────── */

.page-header {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue-mid), var(--green-light));
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header .section-label {
  color: var(--teal-light);
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ─── TEAM PAGE ───────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.team-photo {
  position: relative;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  background: var(--light-gray);
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  border: 2px dashed #ccd6e0;
}

.team-photo-placeholder span {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.team-photo-placeholder p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.6;
}

.team-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--green-light));
  margin-bottom: 1.5rem;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.team-title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.8rem;
  font-weight: 500;
}

.team-bio p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.team-expertise {
  margin-top: 2rem;
  padding: 1.8rem;
  background: var(--light-gray);
  border-left: 3px solid var(--teal);
}

.team-expertise h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--white);
  border: 1px solid #ccd6e0;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  color: var(--text-body);
  letter-spacing: 0.06em;
  border-radius: 2px;
}

/* ─── WHY EG PAGE ─────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  padding: 2.5rem;
  border: 1px solid #dce8f0;
  position: relative;
  background: var(--white);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}

.why-card:nth-child(2)::before { background: var(--blue-mid); }
.why-card:nth-child(3)::before { background: var(--green-light); }
.why-card:nth-child(4)::before { background: var(--gold); }
.why-card:nth-child(5)::before { background: var(--teal-light); }
.why-card:nth-child(6)::before { background: var(--navy); }

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
}

.why-quote {
  background: var(--navy);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.why-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-style: normal;
}

/* ─── CONTACT PAGE ────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-body);
}

.contact-detail-icon {
  font-size: 1rem;
  color: var(--teal);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--light-gray);
  padding: 3rem;
}

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

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ccd6e0;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dark);
  border-radius: 1px;
  outline: none;
}

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

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

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  border-radius: 1px;
}

.btn-submit:hover {
  background: var(--teal);
}

/* ─── LANGUAGE PAGE ───────────────────────────────────── */

.lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
}

.lang-card {
  display: block;
  text-decoration: none;
  padding: 3rem 2.5rem;
  border: 2px solid #dce8f0;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}

.lang-card:hover {
  border-color: var(--teal);
  background: var(--light-gray);
}

.lang-card.active-lang {
  border-color: var(--teal);
  background: var(--light-gray);
}

.lang-flag {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.lang-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.lang-native {
  font-size: 0.82rem;
  color: var(--mid-gray);
  letter-spacing: 0.08em;
}

.lang-check {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .image-strip { grid-template-columns: 1fr; height: auto; }
  .strip-img { height: 220px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 1.2rem; }
  section { padding: 4rem 1.2rem; }
  .contact-form { padding: 2rem 1.5rem; }
  .lang-grid { grid-template-columns: 1fr; max-width: 360px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
