@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Barlow+Condensed:wght@300;400;500;600&family=Lora:ital,wght@0,400;1,400&display=swap');

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

:root {
  --white: #FFFFFF;
  --off: #F7F7F5;
  --rule: #E2E2DE;
  --ink: #111110;
  --mid: #555553;
  --faint: #AAAAAA;
  --slate: #2B3A4A;
  --slate-light: #3D5266;
  --slate-ghost: rgba(43,58,74,0.06);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── NAV ─── */
nav {
  height: 60px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-brand span { color: var(--faint); font-weight: 300; }

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 1.5rem;
  gap: 0;
  position: sticky;
  top: 60px;
  z-index: 99;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.nav-mobile a:last-child { border-bottom: none; }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--slate);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--slate-light); }

.btn-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  text-decoration: none;
  transition: color 0.15s;
}

.btn-text:hover { color: var(--ink); }

/* ─── PAGE HEADER (interior pages) ─── */
.page-header {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.page-header-left .page-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem;
}

.page-header-left h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.page-header-left h1 em {
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--slate);
}

.page-header-right p {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
}

/* ─── SECTION UTILITIES ─── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 2rem;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ─── FORMS ─── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  resize: none;
  transition: border-color 0.15s;
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
}

.form-footnote {
  font-size: 12px;
  font-weight: 300;
  color: var(--faint);
}

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer-url {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
}

.footer-sign {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .page-header {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-url { display: none; }
  .form-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .page-header-left h1 { font-size: 2.6rem; }
}
