
:root {
  --bg: #f6f0e7;
  --surface: #fffdf9;
  --line: #e5d9cb;
  --line-strong: #d4c3af;
  --navy: #08264d;
  --navy-soft: #1e3658;
  --sage: #456652;
  --copper: #d1652d;
  --text: #32465d;
  --muted: #607086;
  --shadow: 0 16px 40px rgba(8, 38, 77, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
a { color: inherit; text-decoration: none; }
button,input,select,textarea { font: inherit; }
.container { width: min(1380px, calc(100% - 44px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,240,231,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.brand-mark { width: 70px; height: 70px; }
.brand-divider { width: 1px; height: 58px; background: var(--line-strong); }
.brand-title {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.brand-sub {
  display: block;
  margin-top: 9px;
  font-size: 10.5px;
  line-height: 1.5;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.desktop-nav a {
  position: relative;
  font-size: 14px;
  color: var(--navy-soft);
  white-space: nowrap;
}
.desktop-nav a:not(.contact-button)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width .2s ease;
}
.desktop-nav a.active::after,
.desktop-nav a:hover::after { width: 100%; }
.contact-button {
  padding: 13px 22px;
  background: var(--navy);
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px !important;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--navy);
}
.mobile-nav { display: none; border-top: 1px solid var(--line); background: white; }
.mobile-nav.open { display: grid; padding: 10px 16px 16px; gap: 6px; }
.mobile-nav a { padding: 12px 10px; color: var(--muted); }
.mobile-nav a.active { background: #f6f0e7; color: var(--navy); font-weight: 700; }

.home-page { padding: 28px 0 44px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  min-height: 430px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-copy {
  padding: 48px 34px 40px 42px;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,253,249,1) 0%, rgba(255,253,249,0.98) 78%, rgba(255,253,249,0.72) 91%, rgba(255,253,249,0) 100%);
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
}
.hero-title, .page-title, .purpose-title, .card-title, .phase-title {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
}
.hero-title {
  margin: 22px 0 0;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 600;
  max-width: 9.4ch;
}
.accent-line { width: 50px; height: 2px; background: var(--copper); margin-top: 26px; }
.hero-copy p {
  margin: 22px 0 0;
  max-width: 27ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.hero-image-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: linear-gradient(90deg, rgba(255,253,249,0.96), rgba(255,253,249,0));
  z-index: 1;
  pointer-events: none;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.home-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.action-card {
  display: grid;
  grid-template-columns: 86px 1fr 52px;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 104px;
  padding: 18px 22px;
  position: relative;
  box-shadow: 0 8px 20px rgba(8,38,77,0.035);
}
.action-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--copper);
}
.action-number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 58px;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.07em;
}
.action-card strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 21px;
  color: var(--navy);
}
.action-card small {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.action-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(209,101,45,.65);
  color: var(--copper);
  display: grid;
  place-items: center;
  font-size: 22px;
  justify-self: end;
}
.purpose-panel {
  margin-top: 20px;
  background: #fff;
  border: 1px solid rgba(229,217,203,0.9);
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
}
.purpose-icon-area {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  min-height: 112px;
}
.purpose-svg { width: 118px; height: 118px; }
.purpose-title {
  margin: 10px 0 0;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.purpose-copy p {
  margin: 12px 0 0;
  max-width: 74ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* General pages */
.page-section { padding: 56px 0 80px; }
.page-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}
.page-title {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -.055em;
}
.page-intro p, .wide-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
}
.grid-3, .grid-2, .grid-4 { margin-top: 48px; display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px;
}
.card-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.content-card p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.num-top {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--copper);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.05em;
}
.phase-flow {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 30px;
}
.phase-flow h3 {
  margin: 8px 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  color: var(--navy);
}
.phase-arrow-text { font-size: 34px; color: var(--copper); }
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 38px;
}
.phase-title {
  font-size: 34px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.step-stack { display: grid; gap: 1px; background: var(--line); }
.step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  background: #fff;
  padding: 26px;
}
.step-no {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  color: var(--copper);
}
.step-card h4 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.03em;
}
.step-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-soft);
}
.form-row label { margin-top: 0; }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--line-strong);
  background: white;
  padding: 14px;
  outline: none;
}
.form-footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.form-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.primary-btn {
  border: 0;
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  font-weight: 700;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  padding: 24px 0;
}
.site-footer p { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; place-items: center; }
  .container { width: min(1380px, calc(100% - 28px)); }
  .hero-grid, .page-intro, .grid-3, .grid-2, .grid-4, .phase-grid, .purpose-panel, .form-row { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-image-wrap { min-height: 380px; }
  .hero-copy { padding-bottom: 24px; }
  .purpose-icon-area { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
}
@media (max-width: 760px) {
  .brand-mark { width: 62px; height: 62px; }
  .brand-title { font-size: 20px; }
  .brand-sub { font-size: 9px; letter-spacing: 0.2em; }
  .brand-divider { height: 48px; }
  .home-page, .page-section { padding: 26px 0 48px; }
  .hero-title { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy { padding: 36px 26px 24px; }
  .hero-copy p { max-width: 26ch; }
  .home-actions { grid-template-columns: 1fr; gap: 16px; }
  .action-card { grid-template-columns: 76px 1fr; min-height: 112px; }
  .action-arrow { display: none; }
  .action-number { font-size: 52px; }
  .purpose-panel { padding: 26px 22px; }
  .page-title { font-size: clamp(34px, 11vw, 52px); }
  .phase-flow, .step-card { grid-template-columns: 1fr; }
  .phase-arrow-text { justify-self: start; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .primary-btn { width: 100%; }
}
