:root {
  --bg: #fafaf5;
  --bg-alt: #f2ede0;
  --surface: #ffffff;
  --line: #e5e2d6;
  --line-strong: #d6d1bf;
  --text: #131b2b;
  --text-muted: #5a6376;
  --text-soft: #8c93a3;
  --accent: #1e3a5f;
  --accent-hover: #132841;
  --highlight: #b8892e;
  --serif: 'Canela', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', sans-serif;
  --container: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.brand-word { line-height: 1; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 3px;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a {
  transition: color 0.15s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
  padding: 6rem 0 5.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 880px; }
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.75rem;
}
.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-lede {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 2.25rem;
  line-height: 1.55;
  font-weight: 400;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-meta .dot { color: var(--highlight); }

/* Section */
.section {
  padding: 6.5rem 0;
  border-bottom: 1px solid var(--line);
}
.section-alt { background: var(--bg-alt); }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1rem;
}
.section-eyebrow.center { text-align: center; }
.section-title {
  font-size: clamp(1.875rem, 3.8vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 20ch;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-body p {
  font-size: 1.075rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 58ch;
  line-height: 1.65;
}
.section-body p:last-child { margin-bottom: 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px -30px rgba(19, 27, 43, 0.35);
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 600px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.about-body p {
  font-size: 1.075rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  max-width: 56ch;
  line-height: 1.65;
}
.about-body .section-title { margin-bottom: 1.5rem; }
.about-body .section-eyebrow { margin-bottom: 1rem; }

.feature-band {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.feature-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}
.feature-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 27, 43, 0.15) 0%, rgba(19, 27, 43, 0.3) 100%);
  pointer-events: none;
}
.feature-band-dark::after {
  background: linear-gradient(180deg, rgba(19, 27, 43, 0.35) 0%, rgba(19, 27, 43, 0.55) 100%);
}
.feature-band-dark img { filter: saturate(0.85) contrast(1.05); }
.signature {
  font-weight: 500;
  color: var(--text);
  margin-top: 0.5rem !important;
  font-size: 1rem !important;
}
.pullquote {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  padding-left: 1.5rem;
  border-left: 3px solid var(--highlight);
  margin-top: 1.5rem;
  max-width: 46ch;
  letter-spacing: -0.005em;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0 4.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 2.25rem 1.85rem;
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 200px;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(19, 27, 43, 0.1);
}
.card-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--highlight);
}
.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Benefits */
.benefits { margin-top: 4.5rem; text-align: center; }
.benefits-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.benefits-list li {
  position: relative;
  padding: 0 0.5rem;
}
.benefits-list li + li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--highlight);
  border-radius: 50%;
}

/* Contact / Application */
.contact-section { text-align: center; }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-lede {
  color: var(--text-muted);
  font-size: 1.075rem;
  max-width: 58ch;
  margin: 1.25rem auto 3rem;
  line-height: 1.65;
}

.application-form {
  text-align: left;
  margin-top: 1rem;
}
.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.55rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%235a6376' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-actions {
  margin-top: 1.75rem;
  text-align: center;
}
.btn-primary {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); }
.btn-primary:active:not(:disabled) { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.6; cursor: default; }
.form-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.form-note a { color: var(--text-muted); }
.form-note a:hover { color: var(--accent); }

.form-toast {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  border-radius: 3px;
  text-align: center;
  display: none;
}
.form-toast-success {
  display: block;
  background: rgba(56, 161, 105, 0.1);
  color: #2f7a50;
  border: 1px solid rgba(56, 161, 105, 0.3);
}
.form-toast-error {
  display: block;
  background: rgba(200, 70, 70, 0.08);
  color: #b54545;
  border: 1px solid rgba(200, 70, 70, 0.3);
}

/* Footer */
.site-footer {
  background: var(--bg);
  padding: 3.25rem 0 2.75rem;
  text-align: center;
}
.footer-brand {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-copy {
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--text-soft);
}

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .brand { font-size: 1.2rem; gap: 0.7rem; }
  .brand-mark { width: 36px; height: 36px; font-size: 0.82rem; }
  .section { padding: 4.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img { min-height: 320px; max-height: 400px; }
  .feature-band { height: 240px; }
  .cards { grid-template-columns: 1fr; gap: 1rem; margin: 2.5rem 0 3.5rem; }
  .card { min-height: auto; }
  .benefits-list { gap: 1.25rem; font-size: 1.05rem; flex-direction: column; }
  .benefits-list li + li::before { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 1.25rem; }
  .hero-meta { flex-wrap: wrap; gap: 0.5rem; }
}
