:root {
  /* Projency brand palette */
  --teal: #076A73;           /* Primary brand — from SVG logo */
  --teal-deep: #023C2B;      /* Deep forest accent */
  --teal-deeper: #041F18;    /* Darkest — hero backgrounds */
  --mint: #02E6A0;           /* Vibrant accent — use very sparingly */
  --charcoal: #282C2A;       /* Body text, near-black */
  --text: #282C2A;
  --muted: #5D6664;
  --light: #EAF2F1;          /* Very soft teal tint for alt sections */
  --light-warm: #F5F3EE;     /* Kept as secondary neutral */
  --border: #D6DEDC;
  --white: #FFFFFF;

  /* Legacy aliases (so existing class references still work) */
  --navy: #076A73;
  --navy-deep: #023C2B;
  --accent: #076A73;
  --accent-light: #02E6A0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.015em; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  background: rgba(4, 31, 24, 0.0);
  backdrop-filter: blur(0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
  display: flex; justify-content: space-between; align-items: center;
}
nav.scrolled {
  background: rgba(4, 31, 24, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
}
nav .logo-wrap {
  height: 40px;
  display: flex; align-items: center;
}
nav .logo-wrap img {
  height: 100%;
  width: auto;
  display: block;
}
nav ul {
  display: flex; list-style: none; gap: 36px;
}
nav ul a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
nav ul a:hover { opacity: 1; color: var(--mint); }
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav ul { gap: 20px; }
  nav ul a { font-size: 11px; }
  nav .logo-wrap { height: 32px; }
}
@media (max-width: 640px) {
  nav ul { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 48px 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?w=2000&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.35;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(7, 106, 115, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(2, 60, 43, 0.75) 0%, transparent 50%),
    linear-gradient(180deg, rgba(4,31,24,0.4) 0%, rgba(2,60,43,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.9s 0.1s ease forwards;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--mint);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  font-weight: 300;
  max-width: 1000px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s 0.25s ease forwards;
}
.hero h1 em { font-style: italic; color: var(--mint); font-weight: 300; }
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin-bottom: 56px;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 1s 0.4s ease forwards;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s 0.55s ease forwards; }
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 500;
}
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--teal-deep); border-color: var(--white); }
.btn-outline-gold { color: var(--mint); border-color: var(--mint); }
.btn-outline-gold:hover { background: var(--mint); color: var(--teal-deeper); }
.btn-filled { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-filled:hover { background: transparent; color: var(--teal); }

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

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 1s 0.9s ease forwards;
}
.hero-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.3); margin: 16px auto 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}

/* ========== SECTION BASE ========== */
section { padding: 140px 48px; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}

h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-bottom: 40px;
  max-width: 860px;
}
h2.section-title em { font-style: italic; color: var(--accent); font-weight: 400; }

.lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
  max-width: 720px;
}
.lede + .lede { margin-top: 20px; }

/* ========== SECTION: WHO WE ARE (intro) ========== */
.intro { background: var(--white); }

/* ========== SECTION: PRINCIPLES ========== */
.principles { background: var(--light); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 80px;
}
@media (max-width: 900px) { .principles-grid { grid-template-columns: 1fr; gap: 48px; } }
.principle-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.principle-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.principle-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

/* ========== SECTION: INVESTMENT FOCUS (7 sectors) ========== */
.focus { background: var(--white); }
.focus-header { margin-bottom: 64px; }
.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .focus-list { grid-template-columns: 1fr; } }
.focus-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 24px;
  align-items: flex-start;
  min-height: 140px;
}
.focus-item:nth-child(odd) { padding-right: 40px; }
.focus-item:nth-child(even) { padding-left: 40px; border-left: 1px solid var(--border); }
@media (max-width: 700px) {
  .focus-item:nth-child(odd), .focus-item:nth-child(even) { padding: 28px 0; border-left: none; min-height: 0; }
}
.focus-num {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--accent);
  font-style: italic;
  flex-shrink: 0;
  min-width: 30px;
}
.focus-body { flex: 1; }
.focus-title {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 500;
}
.focus-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}
.focus-emphasis {
  margin-top: 56px;
  padding: 32px 40px;
  border-left: 2px solid var(--accent);
  background: var(--light);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.55;
  max-width: 860px;
}

/* ========== SECTION: REGIONAL MATRIX ========== */
.regions { background: var(--light); }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 1000px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .regions-grid { grid-template-columns: 1fr; } }
.region-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.3s ease;
  cursor: default;
}
.region-card:hover { background: #FBF9F4; }
.region-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.region-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.region-sectors {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.region-sectors li {
  font-size: 14px;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.region-sectors li:last-child { border-bottom: none; }
.regions-note {
  margin-top: 48px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  max-width: 760px; margin-left: auto; margin-right: auto;
}

/* ========== SECTION: AI BAND ========== */
.ai-band {
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ai-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0%, transparent 49.9%, rgba(7,106,115,0.18) 50%, rgba(7,106,115,0.18) 50.1%, transparent 50.2%, transparent 100%),
    linear-gradient(0deg, transparent 0%, transparent 49.9%, rgba(7,106,115,0.18) 50%, rgba(7,106,115,0.18) 50.1%, transparent 50.2%, transparent 100%);
  background-size: 80px 80px;
  pointer-events: none;
}
.ai-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 2;
}
@media (max-width: 900px) { .ai-inner { grid-template-columns: 1fr; gap: 48px; } }
.ai-left h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--white);
}
.ai-left h2 em { color: var(--accent-light); font-style: italic; }
.ai-left p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
}
.ai-points { display: flex; flex-direction: column; gap: 36px; }
.ai-point {
  padding-left: 24px;
  border-left: 1px solid var(--accent);
}
.ai-point-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--accent-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.ai-point-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 300;
}

/* ========== SECTION: PLATFORM TILES ========== */
.tiles { background: var(--light); }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 800px) { .tiles-grid { grid-template-columns: 1fr; } }
.tile {
  background: var(--white);
  padding: 48px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
  min-height: 280px;
}
.tile:hover { transform: translateY(-4px); border-color: var(--accent); }
.tile-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 20px;
}
.tile-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}
.tile-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.tile-arrow {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.tile-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
  font-size: 16px;
}
.tile:hover .tile-arrow::after { transform: translateX(6px); }

/* ========== PLATFORM PAGE SECTIONS (country deep dives) ========== */
.platform-hero {
  background: var(--teal-deep);
  color: var(--white);
  padding: 180px 48px 120px;
  position: relative;
}
.platform-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 300;
  max-width: 1000px;
}
.platform-hero h1 em { color: var(--accent-light); font-style: italic; }
.platform-hero p {
  margin-top: 32px;
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  max-width: 720px;
  font-weight: 300;
  line-height: 1.6;
}

.country-block {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px; margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .country-block { grid-template-columns: 1fr; gap: 40px; } }
.country-block:nth-child(odd) .country-visual { order: 2; }
@media (max-width: 900px) { .country-block:nth-child(odd) .country-visual { order: 0; } }
.country-block + .country-block { border-top: 1px solid var(--border); }

.country-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 20px;
}
.country-block h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.country-sectors {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.country-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 20px;
}
.portfolio-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-top: 32px; margin-bottom: 16px;
}
.portfolio-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.portfolio-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: baseline;
}
.portfolio-list a.portfolio-firm {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.portfolio-list a.portfolio-firm::after {
  content: '↗';
  font-size: 13px;
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.portfolio-list a.portfolio-firm:hover {
  color: var(--teal-deep);
}
.portfolio-list a.portfolio-firm:hover::after {
  transform: translate(2px, -2px);
  opacity: 1;
}
.portfolio-list .portfolio-firm-nolink {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--teal);
  font-weight: 500;
  display: inline-block;
}
.portfolio-list .pf-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .portfolio-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.country-bullets {
  list-style: none;
  margin-top: 24px;
}
.country-bullets li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
}
.country-bullets li:last-child { border-bottom: none; }
.country-bullets strong {
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}
.country-bullets span { color: var(--muted); font-size: 14.5px; }

.country-visual {
  aspect-ratio: 4 / 5;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.country-visual::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.country-visual .country-caption {
  position: absolute; bottom: 20px; left: 20px;
  z-index: 3;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(2, 60, 43, 0.82);
  backdrop-filter: blur(8px);
}
/* Germany — German industrial design/engineering */
.cv-de::before {
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80');
}
/* Poland — Modern urban development */
.cv-pl::before {
  background-image: url('https://images.unsplash.com/photo-1519197924294-4ba991a11128?w=800&q=80');
}
/* Ukraine — Agricultural depth */
.cv-ua::before {
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=800&q=80');
}
/* UAE — Future-facing urbanism */
.cv-ae::before {
  background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&q=80');
}

/* ========== CO-INVESTMENT ========== */
.coinvest { background: var(--light); padding: 140px 48px; }
.coinvest-hero {
  max-width: 960px; margin: 0 auto 80px;
  text-align: left;
}
.coinvest-hero h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 40px;
}
.coinvest-hero h2 em { color: var(--accent); font-style: italic; }
.coinvest-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
  max-width: 720px;
}
.coinvest-hero p + p { margin-top: 20px; }

.howwe-grid {
  max-width: 960px; margin: 0 auto;
  display: grid; gap: 0;
  border-top: 1px solid var(--border);
}
.howwe-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .howwe-item { grid-template-columns: 1fr; gap: 16px; } }
.howwe-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.3;
}
.howwe-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 300;
}

.coinvest-close {
  max-width: 760px; margin: 80px auto 0;
  padding: 48px 40px;
  background: var(--white);
  border-left: 2px solid var(--accent);
  text-align: left;
}
.coinvest-close h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 500;
}
.coinvest-close p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

/* ========== TEAM ========== */
.team { background: var(--white); padding: 140px 48px; }
.team-hero {
  max-width: 900px; margin: 0 auto 80px;
}
.team-hero h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 40px;
}
.team-hero h2 em { color: var(--accent); font-style: italic; }
.team-paragraphs {
  max-width: 760px; margin: 0 auto 80px;
}
.team-paragraphs p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 24px;
}

.background-three {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
@media (max-width: 800px) { .background-three { grid-template-columns: 1fr; gap: 40px; } }
.bg-item-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.bg-item-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.bg-item-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
}


.partners-circle {
  max-width: 900px; margin: 100px auto 0;
  padding: 56px 48px;
  background: var(--light);
  border: 1px solid var(--border);
}
.partners-circle p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 400;
  font-style: italic;
}

.marc-section {
  max-width: 1080px; margin: 120px auto 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 800px) { .marc-section { grid-template-columns: 1fr; gap: 40px; } }
.marc-portrait {
  aspect-ratio: 4/5;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.marc-portrait::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 100%);
}
.marc-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 250'%3E%3Ccircle cx='100' cy='90' r='38' fill='none' stroke='%23EAF2F1' stroke-width='1.5' opacity='0.35'/%3E%3Cpath d='M40 220 Q100 150 160 220' fill='none' stroke='%23EAF2F1' stroke-width='1.5' opacity='0.35'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.marc-portrait-label {
  position: absolute; bottom: 24px; left: 24px;
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 2;
}
.marc-label {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 16px;
}
.marc-name {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.marc-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 32px;
}
.marc-bio p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 20px;
}

/* ========== CONTACT / FOOTER ========== */
.contact {
  background: var(--teal-deep);
  color: var(--white);
  padding: 140px 48px 0;
}
.contact-header {
  max-width: 1280px; margin: 0 auto 80px;
  text-align: center;
}
.contact-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.contact-header h2 em { color: var(--accent-light); font-style: italic; }

.contact-layout {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}
.contact-info p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}
.contact-email-block {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.contact-email-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-email-link {
  font-family: 'Fraunces', serif;
  color: var(--white);
  font-size: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}
.contact-email-link:hover { color: var(--mint); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 40px;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.contact-form .form-field { display: flex; flex-direction: column; }
.contact-form .form-field.full { grid-column: 1 / -1; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 10px 0;
  transition: border-color 0.2s ease;
  outline: none;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--mint); }
.contact-form textarea { min-height: 90px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form .submit-row {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
.contact-form button {
  background: transparent;
  color: var(--mint);
  border: 1px solid var(--mint);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.contact-form button:hover {
  background: var(--mint);
  color: var(--teal-deep);
}
@media (max-width: 600px) {
  .contact-form { padding: 32px 24px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
}

footer {
  padding: 48px;
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
footer .footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
footer .logo-wrap {
  height: 22px;
  display: flex; align-items: center;
}
footer .logo-wrap img {
  height: 100%;
  width: auto;
  display: block;
}
footer .footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 32px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.2s ease;
  text-transform: uppercase;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--mint); }
.lang-sep { color: rgba(255,255,255,0.25); font-size: 11px; }
@media (max-width: 900px) {
  .lang-switcher { margin-right: 16px; gap: 2px; }
  .lang-btn { padding: 4px 4px; font-size: 11px; }
}
