:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #e7ebf0;
  --panel: #f7f9fc;
  --brand: #064ecf;
  --brand-dark: #053b99;
  --accent: #10b981;
  --warm: #ffe100;
  --danger: #dc2626;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.retail-top {
  background: var(--brand);
  color: var(--warm);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  padding: 7px 14px;
  white-space: normal;
}

.retail-main {
  background: var(--brand);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.retail-main .nav {
  padding-top: 14px;
  padding-bottom: 14px;
}

.retail-main .brand {
  color: var(--white);
}

.retail-main .brand-mark {
  background: var(--white);
  color: var(--brand);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 8px 20px rgba(0, 0, 0, 0.14);
}

.search-wrap {
  flex: 1;
  max-width: 720px;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
}

.search-wrap input {
  width: 100%;
  min-height: 46px;
  border: 0;
  padding: 0 14px;
  font: inherit;
}

.search-wrap button {
  width: 52px;
  min-height: 46px;
  background: #f8fafc;
  border-left: 1px solid var(--line);
  font-size: 22px;
}

.search-message {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  box-shadow: var(--shadow);
  font-size: 13px;
  line-height: 1.35;
}

.search-message:not(:empty) {
  display: block;
}

.search-message a {
  color: var(--brand-dark);
  font-weight: 900;
}

.header-utility {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.retail-nav {
  background: var(--brand);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.retail-nav .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-pills,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-pills a {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  font-weight: 800;
}

.nav-menu {
  gap: 22px;
  font-size: 14px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0;
  line-height: 1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 8px 18px rgba(6, 78, 207, 0.18);
}

.brand span:last-child {
  white-space: nowrap;
  font-size: 17px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #283142;
}

.nav-links a {
  padding: 8px 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(21, 93, 252, 0.22);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: #eef4ff;
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  position: relative;
  font-size: 0;
}

.menu-toggle::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 7px 0 var(--brand), 0 -7px 0 var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(18, 185, 129, 0.18), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 50%, #ffffff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% 52%;
  height: 360px;
  background: repeating-linear-gradient(135deg, rgba(21, 93, 252, 0.14) 0 2px, transparent 2px 16px);
  transform: rotate(-3deg);
}

.hero-inner,
.section-inner,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding-top: 50px;
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 408px;
  gap: 40px;
  align-items: start;
}

.hero-intro,
.hero-media,
.proof-row {
  grid-column: 1;
  min-width: 0;
  max-width: 100%;
}

.hero-inner > .booking-card {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  max-width: 408px;
  justify-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 93, 252, 0.1);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 700px;
  color: #344054;
  font-size: 19px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-media {
  margin-top: 24px;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  max-width: 720px;
}

.proof {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.proof strong {
  display: block;
  font-size: 18px;
}

.proof span {
  color: var(--muted);
  font-size: 13px;
}

.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.booking-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.booking-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lead-form {
  padding: 18px 20px 20px;
  display: grid;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.consent {
  color: #273144;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

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

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.consent input {
  width: 14px;
  height: 14px;
  margin-top: 2px;
}

.consent span {
  min-width: 0;
}

.consent a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--panel);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--brand);
  font-size: 24px;
}

.link {
  color: var(--brand-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.visual {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.02)),
    radial-gradient(circle at 28% 34%, #dbeafe 0 12%, transparent 13%),
    radial-gradient(circle at 68% 44%, #dcfce7 0 15%, transparent 16%),
    linear-gradient(90deg, transparent 0 12%, #ffffff 12% 40%, transparent 40% 55%, #ffffff 55% 86%, transparent 86%),
    linear-gradient(180deg, transparent 0 18%, #bfdbfe 18% 33%, transparent 33% 52%, #fde68a 52% 60%, transparent 60%),
    #f1f5f9;
}

.steps {
  counter-reset: none;
}

.step {
  position: relative;
  padding-left: 22px;
  min-height: auto;
}

.step::before {
  content: none;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 70%, #ffffff 100%);
  padding: 70px 0 44px;
}

.services-shell {
  background: #ffffff;
  padding: 18px 0 64px;
}

.services-shell .section-inner {
  max-width: 1260px;
}

.services-title {
  margin: 16px 0 18px;
  font-size: 24px;
}

.anniversary-strip {
  min-height: 74px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 16px),
    #18202b;
  font-weight: 1000;
  letter-spacing: 0;
}

.anniversary-strip span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.anniversary-strip b {
  color: #ff8a2a;
  font-size: 32px;
  line-height: 1;
}

.support-panel {
  max-width: 1008px;
  margin: 30px auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 30px;
  padding: 34px;
  background: #e8eef7;
  border-radius: 0;
}

.support-panel h2,
.support-panel h3 {
  margin-bottom: 14px;
}

.support-panel ul {
  margin: 0 0 28px;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}

.support-side {
  border-left: 1px solid rgba(17, 24, 39, 0.18);
  padding-left: 30px;
}

.membership-band {
  max-width: 980px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  color: #ffffff;
  background: #1a232d;
  border-radius: 0;
}

.membership-band strong {
  font-size: 24px;
}

.membership-band .tag {
  color: var(--warm);
  font-weight: 1000;
}

.category-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 30px 0 8px;
  text-align: center;
}

.category-heading::before,
.category-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 260px;
  background: #cbd5e1;
}

.category-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.service-list {
  columns: 2;
  padding-left: 20px;
  color: var(--muted);
}

.service-list li {
  margin-bottom: 8px;
}

.states {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.state-pill {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #273144;
  font-weight: 700;
  text-align: center;
}

.disclosure {
  border-left: 4px solid var(--brand);
  padding: 16px 18px;
  background: #f8fbff;
  color: #344054;
  font-size: 14px;
}

.site-footer {
  background: #0f172a;
  color: var(--white);
}

.footer-inner {
  padding-top: 54px;
  padding-bottom: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 28px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a {
  color: #cbd5e1;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #cbd5e1;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.notice {
  display: none;
  padding: 12px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 800;
}

.notice.show {
  display: block;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
  }

  .retail-main .search-wrap,
  .header-utility,
  .retail-nav .nav-pills,
  .retail-nav .nav-menu,
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    font-size: 16px;
  }

  .retail-nav .nav-pills.open {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 112px;
    z-index: 40;
    display: grid;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: var(--brand);
    box-shadow: var(--shadow);
  }

  .hero-inner,
  .page-hero .section-inner,
  .split,
  .support-panel,
  .membership-band {
    grid-template-columns: 1fr;
  }

  .support-side {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 39, 0.18);
    padding-left: 0;
    padding-top: 24px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-intro,
  .hero-media,
  .proof-row,
  .hero-inner > .booking-card {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .states {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 12px 16px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy {
    font-size: 17px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .proof-row,
  .grid-3,
  .grid-4,
  .footer-grid,
  .states {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .booking-head,
  .lead-form,
  .card {
    padding: 18px;
  }

  .service-list {
    columns: 1;
  }

  .bottom-bar {
    flex-direction: column;
    margin-bottom: 64px;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    box-shadow: 0 -8px 28px rgba(17, 24, 39, 0.16);
  }

  .mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    background: var(--white);
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: var(--brand);
    color: var(--white);
  }
}
