
.js-ready .fade-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-ready .fade-item.visible { opacity: 1; transform: translateY(0); }
.js-ready .fade-item:nth-child(2) { transition-delay: 0.08s; }
.js-ready .fade-item:nth-child(3) { transition-delay: 0.16s; }
.js-ready .fade-item:nth-child(4) { transition-delay: 0.24s; }
.js-ready .fade-item:nth-child(5) { transition-delay: 0.32s; }
.js-ready .fade-item:nth-child(6) { transition-delay: 0.40s; }
.fade-ready { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-ready.visible { opacity: 1; transform: translateY(0); }

.page-transition {
  position: fixed;
  inset: 0;
  background: #F5F1EB;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

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

:root {
  --bg:        #F5F1EB;
  --bg-card:   #FDFAF6;
  --bg-white:  #FFFFFF;
  --ink:       #1C1917;
  --ink-mid:   #4A4541;
  --ink-light: #78726C;
  --stone:     #C8BAA8;
  --stone-lt:  #E2D9D0;
  --wa-green:  #25D366;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --max:       1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

.btn-primary,
.btn-primary:visited          { color: var(--bg); }
.btn-outline,
.btn-outline:visited          { color: var(--ink); }
.nav-cta,
.nav-cta:visited              { color: var(--bg); }
.wa-btn,
.wa-btn:visited               { color: #fff; }
.wa-contact-btn,
.wa-contact-btn:visited       { color: #fff; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--sans); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: top 0.2s;
}
.skip-link:focus { top: 10px; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.label-dark {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

h1, .h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
}

h2, .h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.25;
}

p { color: var(--ink-mid); }
.text-ink { color: var(--ink); }

.container   { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 48px; }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }

.divider      { width: 40px; height: 1px; background: var(--stone); margin: 24px auto; }
.divider-left { width: 40px; height: 1px; background: var(--stone); margin: 24px 0; }

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--stone-lt);
  height: 64px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled { box-shadow: 0 2px 24px rgba(28,25,23,0.08); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { display: flex; align-items: center; gap: 14px; }

.nav-monogram {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
}
.nav-monogram span.pipe { color: var(--stone); font-weight: 300; }

.nav-brand-text { border-left: 1px solid var(--stone); padding-left: 14px; }
.nav-brand-text .name   { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); display: block; line-height: 1.3; }
.nav-brand-text .tagline { font-family: var(--sans); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-light); display: block; margin-top: 2px; }

.nav-right { display: flex; align-items: center; gap: 36px; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mid); transition: color var(--transition); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 18px;
  transition: background var(--transition);
}
.nav-cta:hover { background: #2C2925; }

.nav-portfolio { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); font-weight: 400; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 22px; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; background: var(--ink); transition: all var(--transition); }

.page-body { padding-top: 64px; }

.hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 300px 140px;
  align-items: center;
  padding: 60px 48px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 48px;
}

.hero-left { padding-right: 24px; }

.hero-superlabel {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-left h1 {
  font-size: clamp(52px, 6.5vw, 86px);
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero-left .hero-sub {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-divider-line { width: 32px; height: 1px; background: var(--stone); }

.hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-mid);
  max-width: 380px;
  margin-bottom: 12px;
  font-weight: 400;
}

.hero-trust {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
}

.trust-badge svg { opacity: 0.6; flex-shrink: 0; }

.hero-actions { display: flex; flex-direction: column; gap: 16px; }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  transition: gap var(--transition);
}
.cta-link:hover { gap: 20px; }

.cta-link .arrow {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink);
  position: relative;
}
.cta-link .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  transform: rotate(45deg);
}

.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 400;
  transition: color var(--transition);
}
.cta-wa:hover { color: var(--ink); }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: translateX(-50%) translateY(0); } 50% { opacity: 0.7; transform: translateX(-50%) translateY(4px); } }

.portrait-placeholder { position: absolute; inset: 0; display: flex; align-items: stretch; }

.hero-portrait-wrap { width: 300px; flex-shrink: 0; }

.portrait-card {
  background: var(--bg-card);
  border: 1px solid var(--stone-lt);
  padding: 20px 20px 24px;
  text-align: center;
}

.portrait-arch {
  position: relative;
  width: 100%;
  padding-bottom: 118%;
  overflow: hidden;
  border-radius: 120px 120px 0 0;
  background: #E2D9CE;
  margin-bottom: 18px;
}

.portrait-arch img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(20%) sepia(10%);
}

.portrait-ornament { margin: 0 auto 10px; }
.portrait-name { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mid); font-weight: 500; }

.hero-right {
  padding-left: 28px;
  border-left: 1px solid var(--stone-lt);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.country-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 16px; font-weight: 600; }

.country-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.country-list li {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  cursor: default;
  position: relative;
  transition: color var(--transition);
}
.country-list li:hover { color: var(--ink); }

.country-list li[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 6px 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  z-index: 10;
}

.credentials-section {
  background: var(--bg-card);
  border-top: 1px solid var(--stone-lt);
  border-bottom: 1px solid var(--stone-lt);
  padding: 96px 0;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 20px; }
.section-header h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 16px; color: var(--ink); }
.section-header p { font-size: 16px; color: var(--ink-mid); font-weight: 400; }

.cred-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--stone-lt); }
.cred-grid-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; border: 1px solid var(--stone-lt); border-top: none; }

.cred-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--stone-lt);
  background: var(--bg-white);
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.cred-card:last-child { border-right: none; }
.cred-card:not(.ornament-card):hover { background: #FDFBF8; box-shadow: 0 4px 24px rgba(28,25,23,0.06); transform: translateY(-2px); }

.cred-card .cred-icon { margin: 0 auto 18px; opacity: 0.7; }
.cred-card .cred-degree { font-family: var(--serif); font-size: 36px; font-weight: 400; line-height: 1; color: var(--ink); margin-bottom: 4px; }
.cred-card .cred-subject { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; font-weight: 500; }
.cred-card .cred-divider { width: 24px; height: 1px; background: var(--stone); margin: 16px auto; }
.cred-card .cred-title { font-family: var(--serif); font-size: 17px; color: var(--ink); line-height: 1.5; }
.cred-card .cred-note { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-light); margin-top: 14px; }

.cred-card.ornament-card { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg); }
.cred-card.ornament-card .ornament-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-top: 16px; line-height: 2.2; text-align: center; font-weight: 500; }

.stat-card {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--stone-lt);
  background: var(--bg-white);
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: #FDFBF8; box-shadow: 0 4px 24px rgba(28,25,23,0.06); transform: translateY(-2px); }

.stat-icon { margin: 0 auto 16px; opacity: 0.65; }
.stat-number { font-family: var(--serif); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 2px; }
.stat-divider { width: 20px; height: 1px; background: var(--stone); margin: 10px auto; }
.stat-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.6; font-weight: 400; }

.count-up { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--ink); line-height: 1; display: block; }
.stat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mid); margin-top: 6px; font-weight: 500; display: block; line-height: 1.5; }

.testimonials-section {
  padding: 96px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--stone-lt);
  margin-top: 64px;
}

.testimonial-card {
  padding: 44px 36px;
  border-right: 1px solid var(--stone-lt);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--bg-white); }

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.8;
  color: var(--stone);
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-attr {
  border-top: 1px solid var(--stone-lt);
  padding-top: 20px;
}

.testimonial-name {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 400;
}

.pillars-section { padding: 96px 0; background: var(--bg); }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: stretch;
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--stone-lt);
}

.pillar-item { padding: 52px 44px; background: var(--bg-card); }
.pillar-item:first-child { border-right: 1px solid var(--stone-lt); }
.pillar-item:last-child { border-left: 1px solid var(--stone-lt); }

.pillar-center { padding: 48px 24px; display: flex; align-items: center; justify-content: center; background: var(--bg); border-right: 1px solid var(--stone-lt); }

.pillar-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 16px; }
.pillar-title { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.pillar-subtitle { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-light); font-weight: 400; }
.pillar-desc { font-size: 15px; line-height: 1.8; color: var(--ink-mid); font-weight: 400; }

.pillars-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  line-height: 2;
  font-weight: 400;
  border: 1px solid var(--stone-lt);
  padding: 20px 32px;
  background: var(--bg-card);
}

.form-section {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--stone-lt);
}

.form-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }

.form-intro .label-dark { margin-bottom: 24px; }
.form-intro h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 32px; }

.form-step-note {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--stone-lt);
  background: var(--bg);
}
.form-step-note .step-note-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
  font-weight: 500;
}
.form-step-note ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-step-note li { font-size: 13px; color: var(--ink-mid); display: flex; gap: 10px; font-weight: 400; }
.form-step-note li .sn { font-family: var(--serif); font-size: 15px; color: var(--stone); min-width: 20px; }

.nda-badge { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; }
.nda-icon { flex-shrink: 0; margin-top: 2px; }
.nda-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; font-weight: 600; }
.nda-desc { font-size: 14px; line-height: 1.7; color: var(--ink-mid); font-weight: 400; }

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--stone-lt);
  background: var(--bg-white);
}

.form-field {
  padding: 18px 22px;
  background: var(--bg-white);
  border-right: 1px solid var(--stone-lt);
  border-bottom: 1px solid var(--stone-lt);
  transition: background 0.2s ease;
}
.form-field:nth-child(even) { border-right: none; }
.form-field:focus-within { background: #FDFAF6; }

.form-field-full { grid-column: 1 / -1; border-right: none; }

.field-label { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 7px; font-weight: 500; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent; border: none; outline: none;
  font-size: 15px; color: var(--ink); font-weight: 400; padding: 0;
}
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { resize: none; height: 90px; line-height: 1.65; }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--stone); }

.select-arrow { position: absolute; right: 20px; bottom: 20px; pointer-events: none; }

.form-submit { grid-column: 1 / -1; background: var(--bg-white); border-top: none; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--ink);
  color: #F5F1EB;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 22px 32px;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.btn-submit:hover { background: #2C2925; }

.btn-submit .btn-arrow { display: inline-block; width: 28px; height: 1px; background: #F5F1EB; position: relative; }
.btn-submit .btn-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid #F5F1EB; border-right: 1px solid #F5F1EB; transform: rotate(45deg); }

.form-note { grid-column: 1 / -1; text-align: center; font-size: 13px; color: var(--ink-light); padding: 16px 20px; border-top: 1px solid var(--stone-lt); background: var(--bg-card); line-height: 1.65; font-weight: 400; }

.form-wa-alt {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-light);
}
.form-wa-alt a { color: var(--ink-mid); font-weight: 500; border-bottom: 1px solid var(--stone); padding-bottom: 1px; transition: color var(--transition); }
.form-wa-alt a:hover { color: var(--ink); }

.form-alert { display: none; padding: 16px 20px; font-size: 14px; letter-spacing: 0.03em; margin-top: 12px; border: 1px solid var(--stone-lt); }
.form-alert.success { color: #4A6741; background: #F0F4EE; border-color: #C5D4C2; }
.form-alert.error { color: #6B3A3A; background: #F8F0F0; border-color: #DFC5C5; }

.field-error { display: block; font-size: 11px; color: #9B4444; margin-top: 5px; }
.form-field.invalid { background: #FDF8F8; }
.form-field.valid { background: #F8FDF8; }

.site-footer { border-top: 1px solid var(--stone-lt); padding: 64px 0 40px; background: var(--bg); }

.footer-quote { text-align: center; margin-bottom: 48px; }
.footer-quote .ornament { margin: 0 auto 24px; }
.footer-quote .quote-text { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 12px; font-weight: 400; }
.footer-quote .quote-attr { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); }

.footer-bottom { border-top: 1px solid var(--stone-lt); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

.footer-nav { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); transition: color var(--transition); font-weight: 400; }
.footer-nav a:hover { color: var(--ink); }

.footer-contact { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-contact a { font-size: 13px; color: var(--ink-light); transition: color var(--transition); font-weight: 400; }
.footer-contact a:hover { color: var(--ink); }

.footer-copy { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-light); }

.page-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--stone-lt); }
.page-hero .label { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 70px); margin-bottom: 20px; }
.page-hero p { font-size: 17px; color: var(--ink-mid); max-width: 580px; line-height: 1.8; font-weight: 400; }

.about-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start; }
.about-hero-portrait { width: 240px; border: 1px solid var(--stone-lt); padding: 16px 16px 20px; background: var(--bg-card); text-align: center; flex-shrink: 0; }
.about-hero-portrait .portrait-arch { padding-bottom: 120%; }
.about-hero-portrait .portrait-name { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mid); margin-top: 14px; font-weight: 500; }

.about-academic { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--stone-lt); margin-top: 64px; }
.about-academic-card { padding: 48px 40px; background: var(--bg-card); text-align: center; }
.about-academic-card:first-child { border-right: 1px solid var(--stone-lt); }
.about-academic-card .degree-large { font-family: var(--serif); font-size: 56px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 6px; }
.about-academic-card .degree-sub { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 20px; font-weight: 500; }
.about-academic-card .degree-detail { font-family: var(--serif); font-size: 19px; font-weight: 300; color: var(--ink); margin-bottom: 6px; }
.about-academic-card .degree-year { font-size: 13px; color: var(--ink-light); font-weight: 400; }

.philosophy-section { padding: 96px 0; background: var(--bg-card); border-top: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.philosophy-quote {
  position: relative;
  padding: 40px 40px 40px 60px;
  border-left: 2px solid var(--stone);
}
.philosophy-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.7;
  color: var(--stone);
  position: absolute;
  left: 16px;
  top: 32px;
}
.philosophy-quote blockquote {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
}
.philosophy-quote cite {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-top: 20px;
  font-weight: 500;
}
.philosophy-body h3 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 20px; }
.philosophy-body p { font-size: 16px; line-height: 1.85; color: var(--ink-mid); margin-bottom: 16px; font-weight: 400; }

.pull-quote {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--stone-lt);
  border-bottom: 1px solid var(--stone-lt);
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 24px;
}
.pull-quote cite { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); font-style: normal; font-weight: 500; }

.timeline { position: relative; padding-left: 40px; margin-top: 48px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--stone-lt); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before { content: ''; position: absolute; left: -43px; top: 6px; width: 7px; height: 7px; border: 1px solid var(--stone); background: var(--bg); border-radius: 50%; }
.timeline-year { font-size: 11px; letter-spacing: 0.18em; color: var(--ink-light); text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.timeline-title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.timeline-desc { font-size: 15px; color: var(--ink-mid); line-height: 1.7; font-weight: 400; }

.world-map-section { padding: 96px 0; background: var(--bg-card); border-top: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); }
.world-map-wrap { margin-top: 56px; position: relative; }
.world-map-svg { width: 100%; height: auto; display: block; }
.map-country-dot { cursor: pointer; transition: r 0.2s ease; }
.map-country-dot:hover circle { r: 7; }
.map-tooltip {
  position: absolute;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  transform: translateX(-50%) translateY(-100%);
}
.map-tooltip.visible { opacity: 1; }
.world-map-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 40px; }
.world-map-item { padding: 24px 20px; border-right: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); background: var(--bg-white); }
.world-map-item:nth-child(4n) { border-right: none; }
.world-map-item .map-country { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 6px; font-weight: 500; }
.world-map-item .map-practice { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.35; }

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 48px; }
.skill-pill { border-right: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); padding: 24px 28px; background: var(--bg-card); }
.skill-pill:nth-child(3n) { border-right: none; }
.skill-pill .skill-tag { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; font-weight: 500; }
.skill-pill .skill-name { font-family: var(--serif); font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.skill-pill .skill-type { font-size: 12px; color: var(--ink-light); font-weight: 400; }

.lang-grid { display: flex; border: 1px solid var(--stone-lt); margin-top: 40px; }
.lang-cell { flex: 1; padding: 28px; text-align: center; border-right: 1px solid var(--stone-lt); background: var(--bg-card); }
.lang-cell:last-child { border-right: none; }
.lang-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 8px; font-weight: 500; }
.lang-name { font-family: var(--serif); font-size: 24px; color: var(--ink); }

.service-card-featured {
  border: 1px solid var(--stone-lt);
  background: var(--bg-card);
  padding: 56px 56px 56px;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-card-featured .service-title { font-family: var(--serif); font-size: 36px; color: var(--ink); margin-bottom: 16px; }
.service-card-featured .service-badge { display: inline-block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bg); background: var(--ink); padding: 6px 14px; margin-bottom: 20px; font-weight: 500; }
.service-card-featured .service-desc { font-size: 16px; line-height: 1.85; color: var(--ink-mid); margin-bottom: 24px; font-weight: 400; }
.service-card-featured .service-meta { font-size: 14px; color: var(--ink-light); margin-bottom: 28px; line-height: 1.75; }
.service-card-featured .service-meta strong { font-weight: 500; color: var(--ink-mid); }

.service-card-featured-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.placement-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--stone-lt);
  background: var(--bg-white);
}
.placement-stat-num { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--ink); min-width: 60px; }
.placement-stat-text { font-size: 14px; color: var(--ink-mid); line-height: 1.5; font-weight: 400; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--stone-lt); border-top: none; }
.service-card { padding: 48px 40px; border-right: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); background: var(--bg-card); transition: background var(--transition); }
.service-card:hover { background: var(--bg-white); }
.service-card:nth-child(even) { border-right: none; }
.service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: none; }
.service-icon { margin-bottom: 28px; opacity: 0.7; }
.service-title { font-family: var(--serif); font-size: 28px; color: var(--ink); margin-bottom: 16px; }
.service-desc { font-size: 15px; line-height: 1.85; color: var(--ink-mid); margin-bottom: 20px; font-weight: 400; }
.service-meta { font-size: 13px; color: var(--ink-light); margin-bottom: 28px; line-height: 1.75; }
.service-meta strong { font-weight: 500; color: var(--ink-mid); }

.comparison-section { padding: 96px 0; background: var(--bg); }
.comparison-table { margin-top: 64px; border: 1px solid var(--stone-lt); overflow: hidden; }
.comparison-header { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--stone-lt); }
.comp-header-cell { padding: 24px 32px; text-align: center; }
.comp-header-cell:first-child { border-right: 1px solid var(--stone-lt); text-align: left; background: var(--bg); }
.comp-header-cell.standard { border-right: 1px solid var(--stone-lt); background: var(--bg-card); }
.comp-header-cell.premium { background: var(--ink); }
.comp-header-cell .comp-heading { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.comp-header-cell.premium .comp-heading { color: var(--bg); }
.comp-header-cell .comp-sub { font-size: 13px; color: var(--ink-light); margin-top: 4px; }
.comp-header-cell.premium .comp-sub { color: rgba(245,241,235,0.6); }

.comparison-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--stone-lt); }
.comparison-row:last-child { border-bottom: none; }
.comp-cell { padding: 20px 32px; display: flex; align-items: center; font-size: 14px; line-height: 1.6; font-weight: 400; }
.comp-cell:first-child { border-right: 1px solid var(--stone-lt); font-weight: 500; color: var(--ink); font-size: 13px; letter-spacing: 0.04em; background: var(--bg); }
.comp-cell.standard { border-right: 1px solid var(--stone-lt); color: var(--ink-light); background: var(--bg-card); }
.comp-cell.premium { background: #F8F5F1; color: var(--ink-mid); }
.comp-cell .check { color: #4A6741; font-size: 16px; margin-right: 8px; }
.comp-cell .cross { color: #B87070; font-size: 16px; margin-right: 8px; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 64px; }
.process-step { padding: 44px 32px; border-right: 1px solid var(--stone-lt); background: var(--bg-card); text-align: center; transition: background var(--transition); }
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-white); }
.step-number { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--stone); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; font-weight: 600; }
.step-desc { font-size: 14px; color: var(--ink-mid); line-height: 1.7; font-weight: 400; }
.step-time { font-size: 12px; color: var(--stone); margin-top: 12px; font-style: italic; }

.faq-section { padding: 96px 0; background: var(--bg-card); border-top: 1px solid var(--stone-lt); }
.faq-list { margin-top: 56px; border: 1px solid var(--stone-lt); }
.faq-item { border-bottom: 1px solid var(--stone-lt); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  background: var(--bg-white);
  transition: background var(--transition);
  gap: 24px;
}
.faq-question:hover { background: var(--bg); }
.faq-question.open { background: var(--bg); }
.faq-question-text { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.3; }
.faq-icon { width: 24px; height: 24px; border: 1px solid var(--stone-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s ease, border-color 0.2s ease; color: var(--ink); }
.faq-icon svg { transition: transform 0.3s ease; }
.faq-question.open .faq-icon { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.faq-question.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 32px 28px; background: var(--bg); }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 15px; line-height: 1.85; color: var(--ink-mid); font-weight: 400; }

.scenarios-section { padding: 96px 0; background: var(--bg); }
.scenarios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 56px; }
.scenario-card { padding: 36px 32px; border-right: 1px solid var(--stone-lt); background: var(--bg-card); }
.scenario-card:last-child { border-right: none; }
.scenario-tag { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 16px; font-weight: 500; }
.scenario-title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.scenario-text { font-size: 14px; line-height: 1.8; color: var(--ink-mid); font-weight: 400; }

.availability-banner {
  background: var(--bg-card);
  border: 1px solid var(--stone-lt);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
}
.avail-indicator { display: flex; align-items: center; gap: 10px; }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #6DAF6D; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.3); } }
.avail-text { font-size: 14px; color: var(--ink-mid); font-weight: 400; }
.avail-text strong { font-weight: 600; color: var(--ink); }

.placement-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.placement-arrangement { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--stone-lt); margin-top: 48px; }
.arrangement-item { padding: 36px 32px; border-right: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); background: var(--bg-card); transition: background var(--transition); }
.arrangement-item:hover { background: var(--bg-white); }
.arrangement-item:nth-child(even) { border-right: none; }
.arrangement-item:nth-child(3), .arrangement-item:nth-child(4) { border-bottom: none; }
.arrangement-icon { margin-bottom: 16px; opacity: 0.65; }
.arrangement-badge { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bg); background: var(--stone); padding: 4px 10px; display: inline-block; margin-bottom: 12px; font-weight: 500; }
.arrangement-title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.arrangement-desc { font-size: 14px; line-height: 1.75; color: var(--ink-mid); font-weight: 400; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 48px; }
.why-item { padding: 40px 32px; border-right: 1px solid var(--stone-lt); border-bottom: 1px solid var(--stone-lt); background: var(--bg-card); transition: background var(--transition); }
.why-item:hover { background: var(--bg-white); }
.why-item:nth-child(3n) { border-right: none; }
.why-item:nth-child(4), .why-item:nth-child(5), .why-item:nth-child(6) { border-bottom: none; }
.why-number { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 0.04em; color: var(--ink-light); margin-bottom: 16px; }
.why-title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 10px; }
.why-desc { font-size: 14px; line-height: 1.75; color: var(--ink-mid); font-weight: 400; }

.engagement-week { padding: 96px 0; background: var(--bg); border-top: 1px solid var(--stone-lt); }
.week-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border: 1px solid var(--stone-lt); margin-top: 56px; }
.week-day { border-right: 1px solid var(--stone-lt); }
.week-day:last-child { border-right: none; }
.week-day-name { padding: 16px 12px; text-align: center; border-bottom: 1px solid var(--stone-lt); background: var(--bg-card); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.week-session { padding: 14px 12px; border-bottom: 1px solid var(--stone-lt); background: var(--bg-white); }
.week-session:last-child { border-bottom: none; }
.week-time { font-size: 10px; color: var(--ink-light); margin-bottom: 4px; letter-spacing: 0.1em; font-weight: 400; }
.week-activity { font-size: 12px; color: var(--ink-mid); line-height: 1.5; font-weight: 400; }
.week-session.off { background: var(--bg); }
.week-session.off .week-activity { color: var(--stone); font-style: italic; }
.week-note { margin-top: 20px; text-align: center; font-size: 13px; color: var(--ink-light); font-style: italic; }

.nda-block { border: 1px solid var(--stone-lt); padding: 56px 64px; text-align: center; margin: 64px 0; background: var(--bg-card); }
.nda-block .nda-icon { margin: 0 auto 20px; }
.nda-block .nda-heading { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-mid); margin-bottom: 20px; font-weight: 500; }
.nda-block p { font-size: 15px; line-height: 1.9; color: var(--ink-mid); max-width: 600px; margin: 0 auto 16px; font-weight: 400; }
.nda-block .nda-covers { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.nda-cover-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--stone-lt); color: var(--ink-mid); font-weight: 400; }

.wa-block {
  border: 1px solid var(--stone-lt);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  margin-top: 24px;
}
.wa-icon { flex-shrink: 0; }
.wa-block-text { flex: 1; }
.wa-block-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.wa-block-desc { font-size: 14px; color: var(--ink-mid); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.wa-btn:hover { background: #1FAF59; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; padding: 80px 0; }

.contact-aside .label { margin-bottom: 24px; }
.contact-aside h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; line-height: 1.2; margin-bottom: 20px; color: var(--ink); }
.contact-aside p { font-size: 16px; line-height: 1.8; color: var(--ink-mid); margin-bottom: 24px; font-weight: 400; }

.contact-personal-note {
  padding: 24px 28px;
  border-left: 2px solid var(--stone);
  background: var(--bg-card);
  margin-bottom: 32px;
}
.contact-personal-note p { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 0; font-weight: 300; }
.contact-personal-note cite { display: block; margin-top: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-light); font-style: normal; font-weight: 500; }

.response-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #F0F7F0;
  border: 1px solid #C5D4C2;
  margin-bottom: 28px;
}
.response-guarantee svg { flex-shrink: 0; }
.response-guarantee p { font-size: 14px; color: #4A6741; margin-bottom: 0; font-weight: 500; }

.contact-detail { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 3px; }
.contact-detail-item .detail-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-light); font-weight: 500; }
.contact-detail-item .detail-value { font-size: 15px; color: var(--ink-mid); font-weight: 400; }
.contact-detail-item a { transition: color var(--transition); }
.contact-detail-item a:hover { color: var(--ink); }

.wa-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-green);
  color: #fff;
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.wa-contact-btn:hover { background: #1FAF59; }

.cta-strip { padding: 80px 0; text-align: center; border-top: 1px solid var(--stone-lt); }
.cta-strip h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 42px); font-weight: 300; color: var(--ink); margin-bottom: 32px; }

.btn-primary { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--bg); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; padding: 18px 36px; transition: background var(--transition); font-weight: 500; }
.btn-primary:hover { background: #2C2925; }
.btn-primary .btn-arrow { display: inline-block; width: 28px; height: 1px; background: var(--bg); position: relative; }
.btn-primary .btn-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid var(--bg); border-right: 1px solid var(--bg); transform: rotate(45deg); }

.btn-outline { display: inline-flex; align-items: center; gap: 14px; border: 1px solid var(--ink); color: var(--ink); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 36px; transition: all var(--transition); font-weight: 500; }
.btn-outline:hover { background: var(--ink); color: var(--bg); }

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }

.wa-float-label {
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone-lt);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--ink); }
.back-to-top:hover svg path { stroke: var(--bg); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(245,241,235,0.8); line-height: 1.6; max-width: 640px; font-weight: 400; }
.cookie-text a { color: var(--bg); border-bottom: 1px solid rgba(245,241,235,0.4); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept { background: var(--bg); color: var(--ink); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 24px; cursor: pointer; border: none; transition: background var(--transition); }
.cookie-accept:hover { background: var(--stone-lt); }
.cookie-decline { background: transparent; border: 1px solid rgba(245,241,235,0.3); color: rgba(245,241,235,0.7); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 12px 24px; cursor: pointer; transition: border-color var(--transition); font-weight: 400; }
.cookie-decline:hover { border-color: rgba(245,241,235,0.6); }

.privacy-content { padding: 64px 0 96px; }
.privacy-content h2 { font-family: var(--serif); font-size: 28px; color: var(--ink); margin: 48px 0 16px; }
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p { font-size: 16px; line-height: 1.85; color: var(--ink-mid); margin-bottom: 16px; font-weight: 400; }
.privacy-content ul { padding-left: 24px; margin-bottom: 16px; }
.privacy-content ul li { font-size: 16px; line-height: 1.8; color: var(--ink-mid); margin-bottom: 8px; font-weight: 400; }
.privacy-content a { color: var(--ink); border-bottom: 1px solid var(--stone); }
.privacy-last-updated { font-size: 13px; color: var(--ink-light); margin-bottom: 40px; font-style: italic; }

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }  .mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }  .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; padding: 48px 32px; position: relative; }
  .hero-right { display: none; }
  .hero-portrait-wrap { margin: 0 auto; max-width: 260px; }
  .hero-left h1 { font-size: clamp(44px, 8vw, 70px); }

  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .service-card-featured { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .placement-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--stone-lt); }
  .testimonial-card:last-child { border-bottom: none; }
  .comparison-header, .comparison-row { grid-template-columns: 1fr 1fr; }
  .comp-header-cell:first-child, .comp-cell:first-child { display: none; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-portrait { display: none; }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  .week-day:nth-child(5), .week-day:nth-child(6), .week-day:nth-child(7) { display: none; }
}

@media (max-width: 768px) {
  .container, .container-sm, .nav-inner { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav-links, .nav-portfolio, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 40px 20px; }
  .hero-trust { gap: 12px; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-grid-bottom { grid-template-columns: 1fr 1fr; }
  .cred-card { border-right: none; border-bottom: 1px solid var(--stone-lt); }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-center { display: none; }
  .pillar-item:first-child { border-right: none; border-bottom: 1px solid var(--stone-lt); }
  .pillar-item:last-child { border-left: none; }

  .inquiry-form { grid-template-columns: 1fr; }
  .form-field:nth-child(even) { border-right: none; }

  .skills-grid { grid-template-columns: 1fr 1fr; }
  .skill-pill:nth-child(3n) { border-right: 1px solid var(--stone-lt); }
  .skill-pill:nth-child(2n) { border-right: none; }

  .about-academic { grid-template-columns: 1fr; }
  .about-academic-card:first-child { border-right: none; border-bottom: 1px solid var(--stone-lt); }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--stone-lt); }
  .process-step:last-child { border-bottom: none; }

  .placement-arrangement { grid-template-columns: 1fr; }
  .arrangement-item { border-right: none; }

  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; }
  .why-item:nth-child(3n) { border-right: none; }

  .nda-block { padding: 40px 24px; }
  .cookie-banner { flex-direction: column; padding: 20px; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .scenario-card { border-right: none; border-bottom: 1px solid var(--stone-lt); }
  .scenario-card:last-child { border-bottom: none; }
  .world-map-list { grid-template-columns: 1fr 1fr; }
  .world-map-item:nth-child(4n) { border-right: 1px solid var(--stone-lt); }
  .world-map-item:nth-child(2n) { border-right: none; }
  .week-grid { grid-template-columns: 1fr 1fr; }
  .week-day:nth-child(n+3) { display: none; }
  .wa-block { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lang-grid { flex-direction: column; }
  .lang-cell { border-right: none; border-bottom: 1px solid var(--stone-lt); }
  .lang-cell:last-child { border-bottom: none; }
  .availability-banner { flex-direction: column; align-items: flex-start; }
}

.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg);
  padding: 24px 20px;
  border-bottom: 1px solid var(--stone-lt);
  gap: 20px;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(28,25,23,0.12);
}
.nav-open .nav-links a { font-size: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid var(--stone-lt);
  background: var(--bg-card);
  cursor: pointer;
  overflow: hidden;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.03);
  opacity: 0.92;
}
.gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-item-video:hover .gallery-play { opacity: 0.85; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 13, 12, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-media {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-media img,
.lightbox-media video {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(245, 241, 235, 0.25);
  border-radius: 50%;
  color: #F5F1EB;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  z-index: 301;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: rgba(245, 241, 235, 0.7);
  background: rgba(245, 241, 235, 0.08);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
