:root {
  --navy: #0d1b2a;
  --navy-2: #13283f;
  --ink: #17202a;
  --muted: #607083;
  --line: #dce3ea;
  --paper: #f7f4ed;
  --white: #ffffff;
  --brass: #b68b45;
  --brass-2: #d7b56d;
  --sage: #617667;
  --shadow: 0 24px 70px rgba(13, 27, 42, .12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow { color: var(--brass); text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; margin-bottom: 12px; }
.lede { color: var(--muted); font-size: 1.16rem; max-width: 740px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 27, 42, .08);
}
.navbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #244863 58%, var(--brass));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(13, 27, 42, .18);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-mark-icon { background: transparent; box-shadow: none; border-radius: 12px; }
.nowrap { white-space: nowrap; }
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }

.brand-logo { gap: 0; padding: 0; }
.brand-logo img { width: 285px; height: auto; max-height: 52px; object-fit: contain; }
.nav-links { display: flex; flex-wrap: nowrap; gap: 15px; align-items: center; font-weight: 750; font-size: .96rem; color: var(--navy); }
.nav-links a { padding: 10px 0; white-space: nowrap; flex-shrink: 0; }
.nav-links a:hover { color: var(--brass); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 12px 18px !important; border-radius: 999px; box-shadow: 0 12px 26px rgba(13, 27, 42, .16); display: inline-flex; align-items: center; justify-content: center; line-height: 1; white-space: nowrap; }
.menu-btn { display: none; border: 0; background: var(--navy); color: var(--white); border-radius: 12px; padding: 10px 12px; font-weight: 800; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 181, 109, .36), transparent 26%),
    linear-gradient(135deg, #0d1b2a 0%, #16304a 55%, #0f2336 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .35;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  padding: 82px 24px;
}
.hero h1, .page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.075em;
  margin: 0 0 24px;
}
.hero p { color: rgba(255,255,255,.82); font-size: 1.25rem; max-width: 680px; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brass-2); color: #18130a; box-shadow: 0 18px 38px rgba(215, 181, 109, .28); }
.btn-dark { background: var(--navy); color: var(--white); box-shadow: 0 14px 32px rgba(13, 27, 42, .18); }
.btn-secondary { border-color: rgba(255,255,255,.26); color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--line); background: var(--white); color: var(--navy); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.proof-card { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); }
.proof-card strong { display: block; font-size: 1.4rem; color: var(--brass-2); }
.hero-panel {
  position: relative;
  min-height: 510px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.26);
  overflow: hidden;
  padding: 24px;
}
.panel-home {
  height: 100%;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    radial-gradient(circle at 72% 34%, rgba(215,181,109,.55), transparent 20%),
    #0b1826;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.mode-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 22px; }
.mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.mode-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 14px; color: rgba(255,255,255,.86); }
.mode-pill.active { background: var(--brass-2); color: #17120a; font-weight: 900; }
.device-row { display: grid; gap: 12px; margin-top: 28px; }
.device { display: flex; justify-content: space-between; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.08); border-radius: 16px; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.86); }
.device span:last-child { color: var(--brass-2); font-weight: 850; }

.section { padding: 90px 0; }
.section-tight { padding: 66px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.section h2, .page-hero h2 { font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; margin: 0 0 20px; color: var(--navy); }
.section h3 { font-size: 1.35rem; line-height: 1.15; letter-spacing: -.025em; margin: 0 0 10px; color: var(--navy); }
.card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, .08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(13, 27, 42, .06);
}
.card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(182, 139, 69, .14);
  color: var(--brass);
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 18px;
}
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.feature-list li { position: relative; padding-left: 28px; color: var(--muted); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .56em; width: 10px; height: 10px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 5px rgba(182, 139, 69, .13); }

.band { background: var(--navy); color: var(--white); }
.band h2, .band h3 { color: var(--white); }
.band .lede, .band p, .band li { color: rgba(255,255,255,.76); }
.band .card { background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.12); box-shadow: none; }

.goodnight {
  border-radius: 36px;
  background:
    radial-gradient(circle at 84% 20%, rgba(215,181,109,.36), transparent 26%),
    linear-gradient(135deg, var(--navy), #1b3852);
  color: var(--white);
  padding: 54px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.goodnight h2 { color: var(--white); }
.goodnight .lede { color: rgba(255,255,255,.78); }
.sequence { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.step { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 18px; color: rgba(255,255,255,.82); }
.step strong { color: var(--brass-2); display: block; margin-bottom: 4px; }

.package { display: flex; flex-direction: column; min-height: 100%; }
.package .price { color: var(--brass); font-weight: 900; margin: 8px 0 16px; }
.package .btn { margin-top: auto; }

.page-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(215,181,109,.28), transparent 25%),
    linear-gradient(135deg, var(--navy), #183551);
  color: var(--white);
  padding: 96px 0 84px;
}
.page-hero h1 { font-size: clamp(2.6rem, 5.8vw, 5rem); color: var(--white); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.2rem; max-width: 780px; }
.breadcrumb { color: rgba(255,255,255,.62); font-weight: 750; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.84); }

.split-card { background: var(--white); border-radius: 32px; box-shadow: var(--shadow); border: 1px solid rgba(13,27,42,.08); overflow: hidden; }
.split-card .content { padding: 42px; }
.visual-block { min-height: 360px; background:
  linear-gradient(135deg, rgba(13,27,42,.82), rgba(13,27,42,.32)),
  radial-gradient(circle at 40% 40%, rgba(215,181,109,.75), transparent 18%),
  linear-gradient(135deg, #b8c2bd, #e5dccd);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: var(--white);
}
.visual-block .caption { background: rgba(13,27,42,.58); border: 1px solid rgba(255,255,255,.15); border-radius: 18px; padding: 16px; backdrop-filter: blur(14px); }

.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.form { display: grid; gap: 14px; }
.form label { font-weight: 800; color: var(--navy); }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 15px; padding: 13px 14px; font: inherit; background: #fff; color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--muted); }

.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.town { background: var(--white); border: 1px solid rgba(13,27,42,.1); border-radius: 999px; padding: 9px 13px; color: var(--navy); font-weight: 750; }

.cta {
  background: linear-gradient(135deg, var(--navy), #244863);
  color: var(--white);
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta h2 { color: var(--white); margin: 0 0 10px; }
.cta p { color: rgba(255,255,255,.76); margin: 0; }

.site-footer { background: #08131f; color: rgba(255,255,255,.72); padding: 58px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--brass-2); }
.footer-bottom { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .92rem; }

@media (max-width: 1120px) {
  .menu-btn { display: inline-flex; }
  .brand-logo img { width: 285px; max-height: 52px; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--navy); padding: 12px; }
  .nav-cta { text-align: center; }
  .hero-inner, .grid-2, .contact-wrap, .cta { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding-top: 60px; }
  .hero-panel { min-height: 430px; }
  .grid-3, .grid-4, .sequence { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .navbar { padding-left: 18px; padding-right: 18px; }
  .brand-logo img { width: 240px; max-height: 44px; }
  .hero h1, .page-hero h1 { letter-spacing: -.055em; }
  .hero-proof, .grid-3, .grid-4, .sequence { grid-template-columns: 1fr; }
  .mode-grid { grid-template-columns: 1fr; gap: 9px; }
  .mode-pill { padding: 10px 12px; font-size: .95rem; line-height: 1.15; }
  .mode-card { padding: 18px; }
  .goodnight, .cta { padding: 30px; border-radius: 26px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
