:root {
  --ink: #101724;
  --night: #07101f;
  --navy: #172a4f;
  --navy-2: #20376b;
  --steel: #636d7e;
  --paper: #f4efe6;
  --paper-2: #e8dfd1;
  --white: #ffffff;
  --leaf: #c6a154;
  --leaf-2: #ecd184;
  --line: #d9d3c7;
  --shadow: 0 30px 80px rgba(7, 16, 31, 0.22);
  --soft-shadow: 0 20px 54px rgba(23, 42, 79, 0.13);
  --wrap: min(1160px, calc(100% - 40px));
  --radius: 8px;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Atkinson Hyperlegible", "Avenir Next", "Gill Sans", sans-serif;
  --utility: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 310px),
    repeating-linear-gradient(90deg, rgba(24, 63, 43, 0.035) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(139, 93, 51, 0.022) 0 1px, transparent 1px 46px),
    var(--paper);
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--navy);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(24, 63, 43, 0.12);
  box-shadow: 0 18px 48px rgba(24, 63, 43, 0.10);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--wrap);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: min(350px, 40vw);
}

.brand-logo-img {
  width: auto;
  height: 52px;
  max-width: min(350px, 40vw);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(24, 63, 43, 0.74);
  font-family: var(--utility);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
  background: rgba(24, 63, 43, 0.07);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-family: var(--utility);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--night);
  background: linear-gradient(135deg, #e1c06b, var(--leaf));
  box-shadow: 0 18px 36px rgba(208, 170, 89, 0.24);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 36px rgba(24, 63, 43, 0.18);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(24, 63, 43, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.08) brightness(0.84);
  transform: scale(1.035);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 31, 0.92) 0%, rgba(14, 27, 52, 0.74) 46%, rgba(14, 27, 52, 0.30) 100%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.12), rgba(7, 16, 31, 0.76));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  min-height: 670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 360px);
  align-items: end;
  gap: 58px;
  padding: 112px 0 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 7px 11px;
  color: #e7f0d1;
  background: rgba(111, 139, 61, 0.18);
  border: 1px solid rgba(216, 189, 115, 0.34);
  border-radius: 6px;
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf-2);
  box-shadow: 0 0 0 5px rgba(111, 139, 61, 0.14);
}

h1 {
  max-width: 820px;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.proof-panel {
  padding: 24px;
  background: rgba(7, 16, 31, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.proof-panel img {
  width: 250px;
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.proof-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-line strong {
  color: var(--leaf-2);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-line span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: 86px 0;
}

.section-tight {
  padding-top: 68px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--leaf);
  font-family: var(--utility);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), rgba(198, 161, 84, 0));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  color: var(--navy);
  font-weight: 850;
}

.section-heading p,
.split-copy p,
.cta-band p {
  color: var(--steel);
  font-size: 18px;
  font-weight: 650;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.text-card,
.area-card,
.faq-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 63, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.text-card strong,
.area-card strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 850;
}

.text-card p,
.area-card p,
.faq-item p {
  margin-top: 12px;
  color: var(--steel);
  font-size: 16px;
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: stretch;
}

.split-media {
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--night);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(24, 63, 43, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #384252;
  font-size: 16px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--leaf);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-pills span {
  padding: 8px 10px;
  color: var(--navy);
  background: #f3e7c8;
  border: 1px solid rgba(198, 161, 84, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.cta-band {
  width: var(--wrap);
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 161, 84, 0.20), rgba(198, 161, 84, 0)),
    var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.cta-band > * {
  min-width: 0;
}

.cta-band p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.inquiry-section {
  padding-top: 0;
  scroll-margin-top: 110px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 38px;
  align-items: start;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(198, 161, 84, 0.18), rgba(198, 161, 84, 0)),
    var(--night);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-grid > * {
  min-width: 0;
}

.inquiry-copy {
  padding: 10px 4px;
}

.inquiry-copy .section-kicker,
.inquiry-copy h2 {
  color: var(--white);
}

.inquiry-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.inquiry-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.inquiry-points span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  background: var(--brass);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(198, 161, 84, 0.16);
}

.contact-form {
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.contact-form-head {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.contact-form-head strong {
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.contact-form-head span {
  color: #596476;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid rgba(24, 63, 43, 0.16);
  border-radius: 6px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--leaf);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(138, 154, 86, 0.16);
}

.consent-field label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #4c5665;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.consent-field input {
  width: auto;
  min-height: 0;
  margin-top: 3px;
}

.consent-field a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.form-note {
  color: #657080;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer {
  padding: 34px 0 42px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--night);
}

.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand img {
  width: auto;
  height: 48px;
  max-width: min(360px, 72vw);
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.contact-rail {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 70;
  display: grid;
  gap: 1px;
  padding: 7px 5px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.98), rgba(5, 7, 6, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  transform: translateY(-50%);
}

.contact-rail a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.03);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-rail a:hover,
.contact-rail a:focus-visible {
  color: var(--night);
  background: var(--leaf);
  transform: translateX(-2px);
  outline: none;
}

.contact-rail svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-dock {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  width: min(350px, calc(100% - 24px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 5px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 15, 28, 0.9), rgba(5, 7, 6, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 16, 31, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.contact-dock a {
  min-height: 48px;
  display: grid;
  grid-template-columns: 22px minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 9px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 5px;
  font-family: var(--utility);
  font-size: 10.5px;
  font-weight: 850;
}

.contact-dock svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-dock span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .split,
  .area-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 92px 0 64px;
  }

  .proof-panel {
    max-width: 520px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 24px, 1160px);
  }

  body {
    padding-bottom: 76px;
  }

  .topbar {
    position: relative;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-lockup {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  .brand-logo-img {
    width: min(100%, 220px);
    height: auto;
    max-width: 220px;
    max-height: 44px;
  }

  .nav-actions .btn-light {
    padding-inline: 14px;
    font-size: 13px;
  }

  .nav-actions .btn-dark {
    display: none;
  }

  .hero-inner {
    padding: 72px 0 52px;
  }

  .hero-inner > * {
    min-width: 0;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 54px);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-lead,
  .section-heading p,
  .split-copy p,
  .cta-band p {
    font-size: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .inquiry-section {
    padding-top: 0;
    scroll-margin-top: 16px;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form-head strong {
    font-size: 21px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .split-copy,
  .text-card,
  .area-card,
  .cta-band {
    padding: 22px;
  }

  .split-media {
    min-height: 330px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .contact-rail {
    display: none;
  }

  .contact-dock {
    display: grid;
  }
}

@media (max-width: 360px) {
  .nav-actions .btn-light {
    display: none;
  }

  .brand-logo-img {
    width: min(100%, 230px);
    max-width: 230px;
  }
}
