:root {
  --navy-950: #081120;
  --navy-900: #0b1830;
  --navy-800: #132746;
  --navy-700: #1c3863;
  --gold-500: #d4af37;
  --gold-400: #e6c96d;
  --gold-300: #f3dfab;
  --sky-50: #f7fbff;
  --slate-50: #f8fafc;
  --slate-100: #eef2f7;
  --slate-200: #dfe7f1;
  --slate-400: #6a7a92;
  --slate-600: #33455f;
  --white: #ffffff;
  --accent-cta: #ff7a18;
  --accent-cta-2: #ffb347;
  --success: #16a34a;
  --shadow-soft: 0 18px 60px rgba(8, 17, 32, 0.08);
  --shadow-card: 0 14px 36px rgba(10, 24, 48, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--slate-600);
  background: linear-gradient(180deg, var(--sky-50) 0%, #ffffff 35%, #fbfdff 100%);
  line-height: 1.65;
  opacity: 0;
  animation: pageFade 540ms ease forwards;
}
@keyframes pageFade { to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: var(--navy-800); text-decoration: none; }
a:not(.btn):not(.brand):not(.card-link):not(.image-card):not(.social-proof):not(.logo-cloud span):not(.testimonial-card) {
  position: relative;
}
a:not(.btn):not(.brand):not(.card-link):not(.image-card):not(.social-proof):not(.logo-cloud span):not(.testimonial-card)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  transition: transform var(--transition);
}
a:not(.btn):not(.brand):not(.card-link):not(.image-card):not(.social-proof):not(.logo-cloud span):not(.testimonial-card):hover::after,
a:not(.btn):not(.brand):not(.card-link):not(.image-card):not(.social-proof):not(.logo-cloud span):not(.testimonial-card):focus-visible::after { transform: scaleX(1); }

h1, h2, h3, h4 {
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; }
section { padding: 96px 0; position: relative; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-700);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.lead { font-size: 1.15rem; color: var(--slate-400); max-width: 70ch; }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 32px;
}
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack-sm > * + * { margin-top: 12px; }
.stack-md > * + * { margin-top: 18px; }
.surface {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(19,39,70,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid rgba(19,39,70,0.08);
  box-shadow: var(--shadow-card);
}
.card-link {
  display: block;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(10, 24, 48, 0.14), 0 0 0 6px rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.65);
}
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(212,175,55,0.16), rgba(11,24,48,0.05));
  margin-bottom: 20px;
}
.icon-wrap svg, .service-card-icon svg {
  width: 28px;
  height: 28px;
  color: currentColor;
}
.icon-wrap .godlr-icon, .service-card-icon .godlr-icon {
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  overflow: visible;
}
.icon-wrap {
  color: var(--navy-800);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.icon-wrap::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  border: 1px solid rgba(212,175,55,0.12);
  pointer-events: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), background var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10,24,48,0.16), 0 0 0 6px rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.72);
}
.btn:active { transform: scale(0.98); }
.btn-accent {
  color: #1d1200;
  background: linear-gradient(135deg, var(--accent-cta), var(--accent-cta-2));
  box-shadow: 0 16px 32px rgba(255, 122, 24, 0.28);
}
.btn-accent:hover,
.btn-accent:focus-visible { filter: brightness(1.05); }

.schedule-cta {
  white-space: nowrap;
  color: #1d1200;
}
.site-footer .schedule-cta,
.site-footer .schedule-cta:visited {
  color: #1d1200;
}
.schedule-cta:hover,
.schedule-cta:focus-visible {
  filter: brightness(1.05);
}
.btn-secondary {
  color: var(--navy-900);
  background: rgba(255,255,255,0.82);
  border-color: rgba(19,39,70,0.12);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(212,175,55,0.72);
  background: rgba(255,255,255,0.96);
}
.btn-pulse { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 32px rgba(255,122,24,0.24); }
  50% { transform: scale(1.02); box-shadow: 0 20px 42px rgba(255,122,24,0.32); }
}
.btn-pulse:hover, .btn-pulse:focus-visible, .btn-pulse:active { animation-play-state: paused; }
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; }

.feature-points,
.specialty-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: 920px;
}

.feature-points li {
  position: relative;
  padding: 18px 20px 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  border: 1px solid rgba(19,39,70,0.08);
  box-shadow: 0 12px 28px rgba(10,24,48,0.05);
  overflow: hidden;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-400));
}

.feature-points li strong,
.feature-points li span {
  display: block;
}

.feature-points li strong {
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.feature-points li span {
  color: var(--slate-400);
  line-height: 1.5;
}

.feature-points.compact {
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-points.compact li {
  padding: 16px 18px 16px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(10,24,48,0.045);
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px 20px;
  align-items: start;
}

.specialty-list li {
  position: relative;
  padding-left: 30px;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.45;
}

.specialty-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(243,223,171,0.95), rgba(230,201,109,0.95));
  box-shadow: 0 6px 14px rgba(212,175,55,0.18);
}
.tag-list, .mini-list { list-style: none; padding: 0; margin: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li,
.stat,
.confidential-pill,
.logo-cloud span {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid rgba(19,39,70,0.09);
  background: rgba(255,255,255,0.7);
}
.confidential-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  animation: softPulse 4s ease-in-out infinite;
}
.confidential-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}
@keyframes softPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.08); }
  50% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(247,251,255,0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(19,39,70,0.08);
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.shrink {
  box-shadow: 0 12px 32px rgba(10,24,48,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  transition: min-height var(--transition);
}
.site-header.shrink .nav-wrap { min-height: 72px; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-mark {
  width: clamp(180px, 18vw, 250px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.brand-logo {
  width: 100%;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  display: block;
}
.brand-text { display: none; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav > a {
  font-weight: 600;
  color: var(--navy-800);
  transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}
.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: var(--navy-900);
  transform: translateY(-1px);
  text-shadow: 0 0 14px rgba(212,175,55,0.16);
}
.primary-nav > a.active {
  color: var(--navy-900);
}
.primary-nav > a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--navy-900);
  margin: 6px 0;
  transition: var(--transition);
}
.hero {
  padding-top: 68px;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(212,175,55,0.12), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(13,39,70,0.1), transparent 24%),
    linear-gradient(180deg, rgba(247,251,255,0.9), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero-art {
  position: relative;
  transform: translateY(var(--parallax, 0px));
  transition: transform 60ms linear;
}
.hero-art img,
.image-card img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 28px 72px rgba(10,24,48,0.14);
}
.floating-note {
  position: absolute;
  right: -20px;
  bottom: 22px;
  max-width: 260px;
  padding: 18px 20px;
}
.floating-note strong { color: var(--navy-900); }
.light-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--slate-50) 100%);
}
.soft-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  border: 1px solid rgba(19,39,70,0.08);
}
.image-card {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(19,39,70,0.08);
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-500);
  font-weight: 900;
}
.testimonial-card {
  display: block;
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fdfcf7);
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
a.testimonial-card:hover,
a.testimonial-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(10,24,48,0.14), 0 0 0 6px rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.62);
}
blockquote {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--navy-800);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(19,39,70,0.14);
  padding: 16px 18px;
  font: inherit;
  background: rgba(255,255,255,0.92);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,0.9);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
  transform: translateY(-1px);
}
.success-box {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.22);
  color: #0e5a28;
}
.success-box.show { display: flex; }
.success-check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(22,163,74,0.14);
}
.success-check svg { width: 22px; height: 22px; stroke: var(--success); stroke-width: 3; stroke-dasharray: 30; stroke-dashoffset: 30; }
.success-box.show .success-check svg { animation: drawCheck 700ms ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.site-footer {
  padding: 60px 0 28px;
  background: linear-gradient(180deg, var(--navy-900), #08111f);
  color: rgba(255,255,255,0.78);
}
.site-footer a { color: white; }
.site-footer .brand-text strong,
.site-footer h3 { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 32px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-copy { max-width: 50ch; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
}
.stagger.visible > * { animation: staggerIn 650ms ease forwards; }
.stagger.visible > *:nth-child(2) { animation-delay: 100ms; }
.stagger.visible > *:nth-child(3) { animation-delay: 200ms; }
.stagger.visible > *:nth-child(4) { animation-delay: 300ms; }
.stagger.visible > *:nth-child(5) { animation-delay: 400ms; }
@keyframes staggerIn { to { opacity: 1; transform: translateY(0); } }
.page-hero-small { padding-top: 54px; }
.highlight-band {
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(255,255,255,0.94));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 28px;
  padding: 34px;
}
.split-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
}
.muted { color: var(--slate-400); }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .split-feature, .feature-points, .specialty-list { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .primary-nav {
    position: fixed;
    top: 82px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(19,39,70,0.08);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }
  .primary-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-cta { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}


/* Home page above-the-fold redesign */
.home-page .home-fold {
  padding-top: 24px;
  padding-bottom: 52px;
}
.home-utility-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-height: 46px;
  padding: 0 22px;
  margin-bottom: 18px;
  border-radius: 0;
  background: linear-gradient(90deg, #244e93, #193d79);
  color: rgba(255,255,255,0.95);
  box-shadow: 0 10px 24px rgba(15, 37, 71, 0.12);
}
.home-utility-bar a {
  color: rgba(255,255,255,0.96);
  font-size: 0.92rem;
  font-weight: 600;
}
.home-utility-bar a::after { background: rgba(255,255,255,0.75) !important; }
.home-showcase {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(19,39,70,0.08);
  box-shadow: 0 22px 52px rgba(10,24,48,0.10);
  background: #dfe7f1;
}
.home-showcase-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,250,252,0.92) 0%, rgba(248,250,252,0.88) 28%, rgba(248,250,252,0.62) 44%, rgba(11,24,48,0.12) 68%, rgba(11,24,48,0.08) 100%);
  z-index: 1;
}
.home-showcase-copy {
  position: relative;
  z-index: 2;
  padding: 68px 56px 170px;
  max-width: 620px;
}
.home-showcase-copy h1 {
  font-size: clamp(2.5rem, 4.7vw, 4.8rem);
  max-width: 10ch;
  margin-bottom: 22px;
}
.home-showcase-copy .cta-group { margin-top: 28px; }
.showcase-bullets {
  margin: 0;
  padding-left: 24px;
  display: grid;
  gap: 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
  max-width: 30rem;
}
.showcase-bullets li::marker { color: var(--gold-500); }
.home-service-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100% - 64px, 1060px);
  margin: -84px auto 0;
}
.home-service-card {
  display: block;
  min-height: 236px;
  padding: 36px 28px 30px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(10,24,48,0.16);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), border-color var(--transition);
}
.home-service-card:hover,
.home-service-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 54px rgba(10,24,48,0.22), 0 0 0 6px rgba(212,175,55,0.12);
  filter: brightness(1.03);
}
.home-service-card h3,
.home-service-card p,
.home-service-card .service-card-icon { color: #fff; }
.home-service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
}
.home-service-card p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.service-card-icon {
  --icon-main: #ffffff;
  --icon-accent: rgba(255,255,255,0.88);
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.26);
}
.service-card-icon svg {
  width: 46px;
  height: 46px;
  color: var(--icon-main);
}
.service-card-icon {
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 12px 26px rgba(10,24,48,0.12);
}
.service-card-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  pointer-events: none;
}
.service-card-icon.icon-spark-gold { --icon-main: #fff7dc; --icon-accent: #ffe6a8; }
.service-card-icon.icon-spark-ice { --icon-main: #f4fffb; --icon-accent: #d9fff4; }
.service-card-icon.icon-spark-royal { --icon-main: #faf3ff; --icon-accent: #f0d8ff; }
.card-amber {
  background: linear-gradient(145deg, #e4a50a, #d68d05);
}
.card-green {
  background: linear-gradient(145deg, #66c52d, #3db01a);
}
.card-violet {
  background: linear-gradient(145deg, #9836f1, #7a1fe3);
}

@media (max-width: 1100px) {
  .home-showcase {
    min-height: 560px;
  }
  .home-showcase-overlay {
    background: linear-gradient(90deg, rgba(248,250,252,0.92) 0%, rgba(248,250,252,0.88) 28%, rgba(248,250,252,0.62) 44%, rgba(11,24,48,0.12) 68%, rgba(11,24,48,0.08) 100%);
  }
  .home-showcase-copy {
    padding: 52px 38px 150px;
    max-width: 560px;
  }
  .home-showcase-copy h1 { max-width: none; }
  .home-service-cards {
    width: 100%;
    margin-top: 26px;
  }
}

@media (max-width: 840px) {
  .home-utility-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 12px 16px;
  }
  .home-service-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-showcase {
    min-height: 500px;
  }
  .home-showcase-copy {
    padding: 36px 22px 140px;
    max-width: 100%;
  }
  .showcase-bullets {
    font-size: 1rem;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .brand-mark { width: 160px; }
  .brand-logo { max-height: 52px; }
}


@media (max-width: 640px) {

  .home-showcase-copy h1,
  .home-showcase-copy .eyebrow,
  .showcase-bullets {

    /* Thin, crisp outline */
    text-shadow:
      -0.5px -0.5px 0 rgba(255,255,255,0.55),
       0.5px -0.5px 0 rgba(255,255,255,0.55),
      -0.5px  0.5px 0 rgba(255,255,255,0.55),
       0.5px  0.5px 0 rgba(255,255,255,0.55);

  }

  /* Remove heavy stroke */
  .home-showcase-copy h1 {
    -webkit-text-stroke: 0.4px rgba(255,255,255,0.5);
    paint-order: stroke fill;
  }

  .showcase-bullets li {
    text-shadow:
      -0.4px -0.4px 0 rgba(255,255,255,0.5),
       0.4px -0.4px 0 rgba(255,255,255,0.5),
      -0.4px  0.4px 0 rgba(255,255,255,0.5),
       0.4px  0.4px 0 rgba(255,255,255,0.5);
  }

}

.showcase-support {
  margin: 0 0 18px;
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(11,24,48,0.84);
}

@media (max-width: 980px) {
  .home-showcase {
    min-height: 0;
    border-radius: 34px;
    overflow: hidden;
  }

  .home-showcase-bg {
    object-position: 72% center;
  }

  .home-showcase-overlay {
    background:
      linear-gradient(90deg,
        rgba(8,17,32,0.74) 0%,
        rgba(8,17,32,0.68) 24%,
        rgba(8,17,32,0.44) 48%,
        rgba(8,17,32,0.14) 70%,
        rgba(8,17,32,0.06) 100%),
      linear-gradient(180deg,
        rgba(255,255,255,0.08) 0%,
        rgba(255,255,255,0.03) 100%);
  }

  .home-showcase-copy {
    max-width: 430px;
    padding: 42px 28px 34px;
  }

  .home-showcase-copy .eyebrow,
  .home-showcase-copy h1,
  .showcase-support,
  .showcase-bullets,
  .showcase-bullets li {
    color: #ffffff;
    text-shadow: none;
    -webkit-text-stroke: 0;
  }

  .home-showcase-copy .eyebrow::before {
    background: linear-gradient(90deg, rgba(230,201,109,0.95), rgba(230,201,109,0.15));
  }

  .home-showcase-copy .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.82);
    margin-bottom: 14px;
  }

  .home-showcase-copy h1 {
    font-size: clamp(2.2rem, 8vw, 3.7rem);
    line-height: 1.02;
    max-width: 8.2ch;
    margin-bottom: 16px;
  }

  .showcase-support {
    display: block;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
  }

  .showcase-bullets {
    gap: 10px;
    max-width: 25rem;
    padding-left: 0;
    list-style: none;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .showcase-bullets li {
    position: relative;
    padding-left: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
  }

  .showcase-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-400);
  }

  .showcase-bullets li::marker { content: none; }

  .showcase-bullets li:nth-child(n+4) {
    display: none;
  }

  .home-showcase-copy .cta-group {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .home-showcase-copy .cta-group .btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
  }

  .home-showcase-copy .cta-group .btn-secondary {
    background: rgba(255,255,255,0.92);
  }
}

@media (max-width: 640px) {
  .home-fold {
    padding-top: 12px;
    padding-bottom: 36px;
  }

  .home-utility-bar {
    display: none;
  }

  .home-showcase {
    border-radius: 28px;
    box-shadow: 0 20px 42px rgba(10,24,48,0.16);
  }

  .home-showcase-bg {
    object-position: 76% center;
  }

  .home-showcase-overlay {
    background:
      linear-gradient(180deg,
        rgba(8,17,32,0.74) 0%,
        rgba(8,17,32,0.64) 24%,
        rgba(8,17,32,0.58) 52%,
        rgba(8,17,32,0.62) 100%),
      linear-gradient(90deg,
        rgba(8,17,32,0.76) 0%,
        rgba(8,17,32,0.58) 38%,
        rgba(8,17,32,0.18) 78%,
        rgba(8,17,32,0.05) 100%);
  }

  .home-showcase-copy {
    max-width: none;
    width: 100%;
    padding: 34px 22px 26px;
  }

  .home-showcase-copy h1 {
    font-size: clamp(2rem, 12vw, 3.05rem);
    max-width: 7.2ch;
    margin-bottom: 14px;
  }

  .showcase-support {
    font-size: 0.98rem;
    line-height: 1.58;
    margin-bottom: 16px;
  }

  .showcase-bullets {
    font-size: 0.96rem;
    gap: 9px;
    margin-bottom: 20px;
  }

  .home-showcase-copy .cta-group .btn {
    min-height: 54px;
  }
}


/* Schedule page */
.schedule-page .container {
  display: grid;
  gap: 34px;
}

.schedule-intro {
  max-width: 860px;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  grid-template-areas: "reasons widget";
  gap: 28px;
  align-items: stretch;
}

.schedule-reasons,
.schedule-widget-wrap {
  padding: 34px;
  height: 100%;
}

.schedule-reasons {
  grid-area: reasons;
}

.schedule-widget-wrap {
  grid-area: widget;
}

.schedule-reasons h2,
.schedule-widget-wrap h2 {
  margin-bottom: 8px;
}

.schedule-reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.schedule-reason-list li {
  position: relative;
  padding-left: 22px;
}

.schedule-reason-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  box-shadow: 0 0 0 5px rgba(212,175,55,0.08);
}

.schedule-reason-list strong,
.schedule-reason-list span {
  display: block;
}

.schedule-reason-list strong {
  color: var(--navy-900);
  margin-bottom: 4px;
}

.schedule-reason-list span {
  color: var(--slate-600);
}

.schedule-highlight {
  padding: 22px 24px;
  border-radius: 22px;
}

.schedule-widget-head {
  margin-bottom: 22px;
}

.calendly-placeholder {
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(19,39,70,0.08), rgba(19,39,70,0.04));
  border: 1px solid rgba(19,39,70,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.calendly-window {
  min-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.96));
  border: 1px solid rgba(19,39,70,0.08);
  box-shadow: 0 22px 48px rgba(8,17,32,0.08);
}

.calendly-topbar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(19,39,70,0.06), rgba(19,39,70,0.02));
  border-bottom: 1px solid rgba(19,39,70,0.08);
}

.calendly-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(19,39,70,0.18);
}

.calendly-body {
  min-height: 552px;
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 34px 24px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.9));
}

.calendly-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy-800);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(19,39,70,0.1);
  box-shadow: 0 10px 24px rgba(8,17,32,0.06);
}

.calendly-slot-grid {
  width: min(100%, 420px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.calendly-slot-grid div {
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243,247,252,0.9));
  border: 1px solid rgba(19,39,70,0.08);
  box-shadow: 0 10px 22px rgba(8,17,32,0.04);
}

.schedule-microcopy {
  margin-top: 18px;
  color: var(--slate-400);
}

@media (max-width: 980px) {
  .schedule-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "widget"
      "reasons";
  }
}

@media (max-width: 640px) {
  .schedule-reasons,
  .schedule-widget-wrap {
    padding: 24px;
  }

  .calendly-window {
    min-height: 500px;
  }

  .calendly-body {
    min-height: 452px;
    padding: 26px 18px;
  }

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


/* About page intro spacing */
.about-page-intro {
  padding-top: 54px;
  padding-bottom: 20px;
}

.about-page-intro + section {
  padding-top: 28px;
}

@media (max-width: 767px) {
  .about-page-intro {
    padding-top: 34px;
    padding-bottom: 12px;
  }

  .about-page-intro + section {
    padding-top: 18px;
  }
}


/* Restored after accidental overwrite; keep logo link and hamburger clickable */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.brand-mark {
  width: clamp(180px, 18vw, 250px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform var(--transition), filter var(--transition);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  position: relative;
  z-index: 1001;
  margin-left: auto;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 980px) {
  .nav-wrap {
    position: relative;
  }

  .brand {
    max-width: calc(100% - 88px);
  }

  .brand-mark {
    width: clamp(150px, 34vw, 220px);
  }

  .brand-logo {
    max-width: 100%;
    height: auto;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .primary-nav {
    z-index: 1000;
  }
}

@media (max-width: 767px) {
  .brand-mark { width: 160px; }
  .brand-logo { max-height: 52px; }
}
