/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: #1a2332;
  background: #faf9f6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: #0f1e3d;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 1.1rem; }
a { color: #0f1e3d; text-decoration: none; }
a:hover { text-decoration: underline; }

em { font-style: italic; color: #7a5c1e; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: 780px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5c1e;
  margin-bottom: 1rem;
}
.center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #0f1e3d;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: #0f1e3d;
  color: #faf9f6;
}
.btn-primary:hover {
  background: #1a2f5c;
  text-decoration: none;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(15, 30, 61, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  font-size: 1.7rem;
  font-weight: 600;
  color: #0f1e3d;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a5c1e;
}

.nav {
  display: flex;
  gap: 2.4rem;
}
.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a2332;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: #7a5c1e;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav a:hover { text-decoration: none; }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f1e3d;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 6rem 0 5.5rem;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.mosaic-img {
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 246, 0.92);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-intro {
  max-width: 820px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
  color: #0f1e3d;
}

/* ============ SECTIONS ============ */
.section {
  padding: 6rem 0;
}
.section-light {
  background: #f3f1ea;
}

/* ============ VALUES ============ */
.values {
  padding: 5rem 0;
  border-top: 1px solid rgba(15, 30, 61, 0.08);
  border-bottom: 1px solid rgba(15, 30, 61, 0.08);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value h3 {
  color: #0f1e3d;
  margin-bottom: 0.6rem;
}
.value p {
  color: #4a5569;
  margin: 0;
  max-width: 320px;
}

/* ============ CRITERIA ============ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3.5rem;
}
.criteria {
  padding-left: 1.5rem;
  border-left: 2px solid #7a5c1e;
}
.criteria h4 {
  color: #0f1e3d;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.criteria p {
  color: #4a5569;
  margin: 0;
  font-size: 0.98rem;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
}
.member {
  text-align: center;
}
.member-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f1e3d, #1a2f5c);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf9f6;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
}
.member h4 {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
}
.member-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a5c1e;
  margin-bottom: 1rem;
}
.member-bio {
  color: #4a5569;
  font-size: 0.95rem;
}

/* ============ CONTACT FORM ============ */
.contact-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4a5569;
  margin-bottom: 0.4rem;
}
.field input, .field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  background: #faf9f6;
  border: 1px solid rgba(15, 30, 61, 0.2);
  color: #1a2332;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: #0f1e3d;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.contact-email {
  margin-top: 2rem;
}
.contact-email a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0f1e3d;
  letter-spacing: 0.02em;
}
.contact-email a:hover { color: #7a5c1e; }

/* ============ FOOTER ============ */
.site-footer {
  background: #0f1e3d;
  color: #c9cdd6;
  padding: 3rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.site-footer .brand-mark { color: #faf9f6; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.7rem; font-weight: 600; }
.site-footer .brand-sub { color: #b5935a; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #8893a8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #faf9f6;
    border-bottom: 1px solid rgba(15, 30, 61, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav.open { max-height: 400px; }
  .nav a {
    padding: 1.1rem 1.5rem;
    border-top: 1px solid rgba(15, 30, 61, 0.06);
  }
  .hero { padding: 5rem 0 4.5rem; }
  .section { padding: 4rem 0; }
  .values { padding: 3.5rem 0; }
  .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  .criteria-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form .row { grid-template-columns: 1fr; }
}
