:root {
  --navy: #1B3A4B;
  --navy-2: #142C39;
  --gold: #C4A35A;
  --cream: #F4F0E8;
  --paper: #FBF9F5;
  --ink: #2A2F33;
  --muted: #6B7278;
  --line: #E6DFD3;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  background: var(--paper);
  color: var(--navy);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand img, .brand svg { width: 36px; height: 36px; }
.brand-name {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 12px;
  line-height: 1.25;
}
.brand-name span {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
}
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-label span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--navy);
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  letter-spacing: .06em;
  font-weight: 600;
}
nav a {
  text-decoration: none;
  color: var(--navy);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
nav a:hover,
nav a.active {
  border-bottom-color: var(--gold);
}

.hero {
  min-height: 78vh;
  background:
    linear-gradient(180deg, rgba(20,44,57,.18), rgba(20,44,57,.62)),
    url("img/hero.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.hero-inner { padding: 120px 0 72px; max-width: 640px; }
.kicker {
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.lede {
  font-size: 18px;
  max-width: 520px;
  color: #F3F1EC;
  font-weight: 400;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--navy-2); }
.btn-ghost { border-color: rgba(255,255,255,.85); color: #fff; background: transparent; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-line { border-color: var(--navy); color: var(--navy); background: transparent; }

section { padding: 104px 0; }
.cream { background: var(--cream); }
.grid-3, .grid-2 { display: grid; gap: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.05fr .95fr; align-items: start; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card .pad { padding: 28px 28px 32px; }
.muted { color: var(--muted); }
.tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding: 0 0 4px;
  font-weight: 700;
  margin: 0 0 14px;
}
.page-hero {
  background: var(--cream);
  color: var(--navy);
  padding: 88px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.page-hero .lede { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { width: 100%; height: 420px; object-fit: cover; }
form { display: grid; gap: 14px; }
label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  width: 100%;
  margin-top: 6px;
  border-radius: 0;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}
textarea { min-height: 120px; resize: vertical; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.check input { width: auto; margin-top: 4px; }
.site-footer {
  background: var(--navy-2);
  color: #C9D3D8;
  padding: 48px 0 32px;
  font-size: 13px;
}
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer a { color: var(--gold); text-decoration: none; }
.legal { font-size: 11px; color: #8A969E; margin-top: 22px; letter-spacing: .02em; }
.notice {
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px 16px;
  background: transparent;
  font-size: 14px;
  color: var(--muted);
}
.measure { max-width: 640px; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

@media (max-width: 860px) {
  .wrap { width: min(1080px, calc(100% - 32px)); }
  .grid-3, .grid-2, .split { grid-template-columns: 1fr; gap: 32px; }
  .split img, .card img { height: 280px; }
  section { padding: 72px 0; }
  .hero-inner { padding: 88px 0 48px; }
  .nav-toggle-label { display: flex; }
  nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 8px 24px 24px;
    gap: 14px;
  }
  .nav-toggle:checked ~ nav { display: flex; }
}
