:root {
  --navy: #0b1f33;
  --navy-2: #14324f;
  --ink: #14202b;
  --muted: #5b6b7c;
  --cream: #f4f0e6;
  --cream-2: #ebe4d4;
  --gold: #c7922b;
  --gold-2: #e0b34a;
  --white: #fff;
  --line: rgba(11, 31, 51, 0.12);
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.14);
  --radius: 18px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-2); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

/* Header — single Call CTA */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 240, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
}
.brand { flex: 0 0 auto; text-decoration: none; }
.brand .lockup {
  height: 64px; width: auto; max-width: 220px;
  object-fit: contain; object-position: left center;
}
.primary {
  display: flex; flex-wrap: wrap; gap: 2px 4px;
  margin-left: auto; align-items: center;
}
.primary a {
  text-decoration: none; color: var(--navy);
  font-weight: 600; font-size: 0.92rem;
  padding: 8px 10px; border-radius: 10px;
}
.primary a:hover, .primary a[aria-current="page"] { background: rgba(11,31,51,.06); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer;
  padding: 12px 20px; font-size: 0.95rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-call, .btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-ghost.dark { color: var(--navy); border-color: var(--line); }
.header-call { flex: 0 0 auto; padding: 11px 18px; }
.menu-btn {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; padding: 10px;
}
.menu-btn span {
  display: block; height: 2px; background: var(--navy); margin: 5px 0;
}
.ticker {
  background: var(--navy); color: #d7e3f0;
  font-size: 0.82rem; letter-spacing: .02em;
}
.ticker .wrap { padding: 8px 0; }

/* Hero */
.hero {
  position: relative; min-height: 78vh;
  display: grid; place-items: end start;
  color: #fff; overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,31,51,.88) 0%, rgba(11,31,51,.55) 55%, rgba(11,31,51,.25) 100%);
}
.hero .copy { position: relative; z-index: 1; padding: 48px 0 64px; max-width: 720px; }
.hero-brand {
  width: min(420px, 85vw); height: auto; max-height: 120px;
  object-fit: contain; object-position: left center;
  margin: 0 0 18px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.35));
}
.kicker {
  display: inline-block; text-transform: uppercase;
  letter-spacing: .16em; font-size: .72rem; font-weight: 700;
  color: var(--gold-2); margin-bottom: 10px;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.15; color: var(--navy); margin: 0 0 12px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); }
.lede { font-size: 1.12rem; max-width: 54ch; margin: 0 0 8px; }
.hero .lede { color: #e8eef5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  overflow: hidden; margin-top: -36px; position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.trust div { background: var(--navy-2); padding: 20px 18px; }
.trust strong { display: block; font-size: 1.02rem; margin-bottom: 4px; }
.trust span { color: #c5d4e4; font-size: .9rem; }

section { padding: 72px 0; }
.sec-head { max-width: 640px; margin-bottom: 28px; }
.sec-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.sec-head p { color: var(--muted); margin: 0; }

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11,31,51,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .pad { padding: 16px 18px 20px; }
.chip {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); margin-bottom: 6px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }

.split {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.prose p { color: var(--muted); }
.sky { background: var(--cream-2); }

.areas {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.areas span {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px;
  font-weight: 600; font-size: .9rem; color: var(--navy);
}

.map-block {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: stretch;
}
.map-block iframe {
  width: 100%; min-height: 340px; border: 0; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--line);
}
.map-card h2 { font-size: 1.6rem; }
.map-card p { color: var(--muted); }

.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--navy); }
.faq p { color: var(--muted); margin: 8px 0 0; }

.cta-band {
  background: var(--navy); color: #e8eef5; padding: 64px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-band p { color: #c5d4e4; max-width: 50ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* Footer */
.site-foot {
  background: #071523; color: #b7c7d8; padding: 52px 0 24px;
}
.site-foot .grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px;
}
.foot-lockup { height: 88px; width: auto; margin-bottom: 12px; }
.foot-label {
  font-weight: 700; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; margin: 0 0 10px;
}
.site-foot a { color: var(--gold-2); text-decoration: none; }
.site-foot a:hover { text-decoration: underline; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin: 6px 0; }
.foot-trust { font-size: .88rem; color: #8aa0b6; }
.legal {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px;
  font-size: .82rem; color: #7e93a8;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
}

.flash {
  background: #e7f6ec; color: #1e5c36; padding: 12px 16px;
  border-radius: 12px; border: 1px solid #b7e0c4;
}

@media (max-width: 980px) {
  .brand .lockup { height: 52px; }
  .menu-btn { display: block; margin-left: auto; }
  .header-call { order: 2; }
  .menu-btn { order: 3; }
  .primary {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 8px 20px 16px; box-shadow: var(--shadow);
  }
  .primary.is-open { display: flex; }
  .primary a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .trust, .cards, .split, .map-block, .site-foot .grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; }
}
@media (max-width: 560px) {
  .trust { grid-template-columns: 1fr; }
  .header-call { padding: 10px 14px; font-size: .85rem; }
}

/* —— Bindings for redesigned homepage markup —— */
:root {
  --navy-2: #14324f;
  --gold-2: #e0b34a;
  --cream-2: #ebe4d4;
  --muted: #5b6b7c;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.14);
}
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(244,240,230,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.site-header .bar, .site-header .wrap.bar { display: flex; align-items: center; gap: 14px; padding: 12px 0; position: relative; }
.brand .lockup { height: 72px; width: auto; max-width: min(240px, 42vw); object-fit: contain; }
.primary { display: flex; flex-wrap: wrap; gap: 2px; margin-left: auto; align-items: center; }
.primary a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: .9rem; padding: 8px 10px; border-radius: 10px; }
.primary a:hover, .primary a[aria-current="page"] { background: rgba(11,31,51,.06); }
.header-call { margin-left: 8px; }
.menu-btn { display: none; }
.ticker { background: var(--navy); color: #d7e3f0; font-size: .82rem; }
.ticker .wrap { padding: 8px 0; }

.hero { position: relative; min-height: 78vh; display: grid; place-items: end start; color: #fff; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,31,51,.9), rgba(11,31,51,.45) 60%, rgba(11,31,51,.2)); }
.hero .copy { position: relative; z-index: 1; padding: 48px 0 64px; max-width: 720px; }
.hero-brand { width: min(440px, 88vw); max-height: 130px; object-fit: contain; object-position: left center; margin: 0 0 16px; filter: drop-shadow(0 10px 28px rgba(0,0,0,.35)); }
.kicker { display: inline-block; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--gold-2); margin-bottom: 10px; }
.hero h1 { color: #fff; font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.12; margin: 0 0 12px; }
.lede { font-size: 1.12rem; max-width: 54ch; }
.hero .lede { color: #e8eef5; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-ghost.dark { color: var(--navy); border-color: var(--line); }

.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--navy); border-radius: var(--radius); overflow: hidden; margin-top: -36px; position: relative; z-index: 2; box-shadow: var(--shadow); }
.trust div { background: var(--navy-2); padding: 20px 18px; color: #fff; }
.trust strong { display: block; margin-bottom: 4px; }
.trust span { color: #c5d4e4; font-size: .9rem; }

.sec-head { max-width: 640px; margin-bottom: 28px; }
.sec-head h2, h2 { font-family: var(--display); color: var(--navy); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(11,31,51,.06); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .pad { padding: 16px 18px 20px; }
.chip { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); }
.sky { background: var(--cream-2); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-weight: 600; font-size: .9rem; }
.map-block { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.map-block iframe { width: 100%; min-height: 340px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-card { background: #fff; border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; }
.cta-band { background: var(--navy); color: #e8eef5; padding: 64px 0; }
.cta-band h2 { color: #fff; }

.site-foot { background: #071523; color: #b7c7d8; padding: 52px 0 24px; }
.site-foot .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; }
.foot-lockup { height: 96px; width: auto; margin-bottom: 12px; }
.foot-label { font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin: 0 0 10px; }
.site-foot a { color: var(--gold-2); text-decoration: none; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin: 6px 0; }
.legal { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; font-size: .82rem; color: #7e93a8; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }

@media (max-width: 980px) {
  .menu-btn { display: block; }
  .primary { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; flex-direction: column; padding: 8px 20px 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary.is-open { display: flex; }
  .trust, .cards, .split, .map-block, .site-foot .grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* —— Contact page thicken (Sep 19) —— */
.contact-hero { padding: 48px 0 28px; }
.contact-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); max-width: 18ch; }
.contact-hero .lede { color: var(--muted); max-width: 54ch; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 36px;
}
.contact-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-facts li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-facts strong {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.next-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.next-steps li { margin: 0 0 14px; padding-left: 4px; }
.next-steps strong { color: var(--navy); }

.lead {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 28px;
  display: grid;
  gap: 12px;
}
.lead .form-title {
  margin: 0;
  font-size: 1.45rem;
}
.lead .form-note {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: .92rem;
}
.lead label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.lead input,
.lead select,
.lead textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.lead textarea { resize: vertical; min-height: 120px; }
.lead input:focus,
.lead select:focus,
.lead textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: #fff;
}
.lead .btn { width: 100%; margin-top: 4px; }
.lead .form-alt {
  margin: 4px 0 0;
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
}
.lead .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
