:root {
  --navy: #10263f;
  --ink: #172638;
  --beige: #efe5d4;
  --cream: #faf7f1;
  --white: #fff;
  --line: #c9bdab;
  --accent: #b67148;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.announcement {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 9px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 38, 63, 0.14);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.13em;
  border: 2px solid var(--navy);
  padding: 8px 10px;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.nav-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 2px solid var(--navy);
  transition: 0.2s;
}
.button {
  background: var(--navy);
  color: white;
}
.button:hover {
  background: #203e61;
}
.button-outline {
  background: transparent;
  color: var(--navy);
}
.button-outline:hover {
  background: var(--beige);
}
.menu {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 1.7rem;
}
.hero {
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  color: #76573f;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin: 18px 0 26px;
  color: var(--navy);
}
.hero p {
  font-size: 1.18rem;
  max-width: 580px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.image-note {
  position: absolute;
  left: -20px;
  bottom: 24px;
  background: var(--beige);
  padding: 15px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.section {
  padding: 90px 0;
}
.section.alt {
  background: var(--beige);
}
.section.navy {
  background: var(--navy);
  color: white;
}
.section h2,
.page-hero h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin: 10px 0 20px;
  color: inherit;
}
.section-lead {
  font-size: 1.1rem;
  max-width: 690px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 46px;
}
.step {
  background: var(--cream);
  padding: 28px 20px;
  min-height: 205px;
}
.step b {
  display: block;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.step h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin: 34px 0 8px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.card {
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--cream);
}
.card h3 {
  font-family: Georgia, serif;
  font-size: 1.75rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.card small {
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #76573f;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.quote-strip {
  padding: 72px 0;
  text-align: center;
  background: var(--navy);
  color: white;
}
.quote-strip blockquote {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0 auto;
  max-width: 900px;
}
.page-hero {
  padding: 75px 0 65px;
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  font-size: 1.18rem;
  max-width: 720px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.checklist li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:before {
  content: "/";
  font-weight: 900;
  color: var(--accent);
  margin-right: 12px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 34px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-weight: 800;
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: white;
  border: 1px solid #9b8e7c;
  padding: 14px;
  font: inherit;
  border-radius: 0;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.status {
  grid-column: 1/-1;
  display: none;
  padding: 14px;
  background: #e5eddc;
  border: 1px solid #819663;
}
.footer {
  padding: 58px 0;
  background: #0b1c2e;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer a {
  color: white;
}
.footer p {
  color: #d9e1e8;
}
.footer .logo-image {
  filter: brightness(0) invert(1);
}
.muted {
  color: #695f55;
}
.pill {
  display: inline-block;
  border: 1px solid currentColor;
  padding: 5px 10px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 4px 4px 4px 0;
}
.footer-bottom {
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #496078;
  font-size: 0.82rem;
}
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 35px;
}
.product {
  background: white;
  border: 1px solid var(--line);
  padding: 22px;
  min-height: 160px;
}
.product .icon {
  font-size: 2rem;
}
.product h3 {
  margin: 20px 0 4px;
  color: var(--navy);
}
@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
  .hero-media img {
    aspect-ratio: 16/10;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .cards,
  .product-row {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 24px 20px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav .button {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .hero {
    padding-top: 34px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 3.4rem;
  }
  .section {
    padding: 64px 0;
  }
  .steps,
  .cards,
  .product-row,
  .form,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .image-note {
    position: static;
  }
  .actions .button,
  .actions .button-outline {
    width: 100%;
  }
}
