@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Lemon";
  src: url("../fonts/lemon-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #0d77ad;
  --bright-blue: #129cf3;
  --orange: #d94c00;
  --gold: #ffbd42;
  --charcoal: #181818;
  --gray: #6b6c6c;
  --white: #fff;
  --text: #151515;
  --radius: 999px;
  --wrap: 1180px;
  --shadow: 0 15px 45px rgba(0, 0, 0, .12);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.35em; }
h1, h2, h3, p { overflow-wrap: break-word; }

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(calc(100% - 48px), 980px);
  margin-inline: auto;
}

.section { padding: 90px 0; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: #fff;
  color: #000;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.button--primary { background: var(--bright-blue); color: #fff; }
.button--primary:hover, .button--primary:focus-visible { background: #087bc4; }
.button--outline-light { border: 2px solid #fff; background: rgba(0,0,0,.14); color: #fff; }
.button--outline-light:hover, .button--outline-light:focus-visible { background: #fff; color: var(--blue); }
.button--outline-blue { border: 2px solid var(--bright-blue); background: #fff; color: var(--blue); }
.button--outline-blue:hover, .button--outline-blue:focus-visible { background: #e9f6ff; }
.button--large { min-height: 58px; padding-inline: 48px; font-size: 1.25rem; }

/* Homepage hero */
.home-hero {
  position: relative;
  min-height: 880px;
  color: #fff;
  background: url("../images/hero.webp") center center / cover no-repeat;
  isolation: isolate;
}

.home-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, .6) 45%, rgba(0, 0, 0, .08) 85%);
}

.home-header {
  display: flex;
  min-height: 300px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 56px;
}

.home-header__logo {
  display: block;
  line-height: 0;
  transform-origin: 50% 100%;
  animation: logo-drop-bounce 1.4s cubic-bezier(.22, .8, .28, 1) .16s both;
}

@keyframes logo-drop-bounce {
  0% {
    opacity: 0;
    transform: translate3d(0, -170px, 0) rotate(-7deg) scale(.92, 1.06);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 14px, 0) rotate(2deg) scale(1.04, .94);
  }
  67% {
    transform: translate3d(0, -12px, 0) rotate(-1deg) scale(.98, 1.02);
  }
  80% {
    transform: translate3d(0, 6px, 0) rotate(.6deg) scale(1.01, .98);
  }
  91% {
    transform: translate3d(0, -3px, 0) rotate(-.25deg) scale(.995, 1.005);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}
.brand-logo { display: block; width: 210px; height: auto; }
.brand-logo--large { width: 430px; }

.home-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  padding-top: 66px;
}

.home-nav > a:not(.button) {
  position: relative;
  z-index: 0;
  display: inline-flex;
  padding: 10px 3px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 5px rgba(0,0,0,.55);
  transition: color .28s ease, text-shadow .28s ease, transform .28s cubic-bezier(.2,.8,.25,1);
}

.home-nav > a:not(.button)::before {
  position: absolute;
  z-index: -1;
  inset: -7px -13px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(18,156,243,.28), transparent 68%);
  content: "";
  opacity: 0;
  filter: blur(7px);
  transform: scale(.72);
  transition: opacity .3s ease, transform .3s ease;
}

.home-nav > a:not(.button)::after {
  position: absolute;
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bright-blue), var(--gold), var(--bright-blue));
  box-shadow: 0 0 10px rgba(18,156,243,.85), 0 0 16px rgba(255,189,66,.42);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .25s ease, transform .34s cubic-bezier(.2,.85,.25,1);
}

.home-nav > a:not(.button):hover,
.home-nav > a:not(.button):focus-visible {
  color: #fff;
  outline: none;
  text-shadow: 0 0 7px rgba(255,255,255,.86), 0 0 17px rgba(18,156,243,.8), 0 0 28px rgba(18,156,243,.45);
  transform: translateY(-2px);
}

.home-nav > a:not(.button):hover::before,
.home-nav > a:not(.button):focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.home-nav > a:not(.button):hover::after,
.home-nav > a:not(.button):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle { display: none; }

.home-hero__content { padding-top: 30px; }
.home-hero h1 {
  margin: 0;
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.home-hero h1 { margin: 0 0 26px; color: var(--gold); font-size: clamp(3rem, 5.2vw, 5.25rem); }
.home-hero__headline-first { max-width: 1080px; color: #fff; font-size: clamp(1.75rem, 4vw, 4rem); }
.hero-reveal-line {
  display: block;
  overflow: hidden;
  padding: .02em 0 .09em;
  margin-bottom: -.09em;
}
.hero-reveal-line__text {
  display: block;
  opacity: 0;
  transform: translate3d(0, 112%, 0);
  filter: blur(5px);
  animation: hero-line-reveal .84s cubic-bezier(.2,.78,.25,1) forwards;
}
.home-hero h1 .hero-reveal-line:nth-child(1) .hero-reveal-line__text { animation-delay: .48s; }
.home-hero h1 .hero-reveal-line:nth-child(2) .hero-reveal-line__text { animation-delay: .72s; }
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: hero-details-reveal .7s cubic-bezier(.22,.7,.28,1) 1.02s forwards;
}
.home-hero__note {
  margin: 18px 0 0;
  opacity: 0;
  font-size: .98rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,.65);
  animation: hero-details-reveal .7s cubic-bezier(.22,.7,.28,1) 1.18s forwards;
}

@keyframes hero-line-reveal {
  from { opacity: 0; transform: translate3d(0, 112%, 0); filter: blur(5px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes hero-details-reveal {
  from { opacity: 0; transform: translate3d(0, 16px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Homepage sections */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.section-heading { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading h2 { margin: 0 0 16px; color: var(--blue); font-size: clamp(2.35rem, 4vw, 3.7rem); line-height: 1.1; }
.section-heading > p:last-child { margin: 0; color: #4d565c; font-size: 1.1rem; }
.section-kicker { margin: 0 0 9px; color: var(--orange); font-size: .82rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.about-section { min-height: 1080px; display: grid; align-items: center; }
.split-grid--about { gap: 64px; }
.about-section__image { text-align: center; }
.about-section__image img { width: min(100%, 540px); }
.about-section__copy { text-align: center; }
.about-section__copy h2 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: clamp(2.6rem, 4.3vw, 4.25rem);
  line-height: 1.07;
}
.about-section__copy .lead { font-size: clamp(1.12rem, 1.75vw, 1.48rem); font-weight: 600; line-height: 1.38; }

.daniel-signature-heading__intro,
.daniel-signature-heading__name { display: block; }

.daniel-signature-heading__name {
  position: relative;
  width: fit-content;
  margin: .08em auto 0;
  padding: 0 .07em .16em;
  white-space: nowrap;
}

.daniel-signature-heading__letter { display: inline-block; }

.daniel-signature-heading__underline {
  position: absolute;
  right: 0;
  bottom: .01em;
  left: 0;
  height: .08em;
  overflow: hidden;
  border-radius: 999px;
}

.daniel-signature-heading__underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #eaa31e, var(--gold));
  transform: scaleX(1);
  transform-origin: left center;
}

html.scroll-reveal-enabled .daniel-signature-heading.is-prepared .daniel-signature-heading__intro {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
}

html.scroll-reveal-enabled .daniel-signature-heading.is-prepared .daniel-signature-heading__letter {
  opacity: 0;
  transform: translateY(.45em) scale(.82) rotate(3deg);
  transform-origin: center bottom;
}

html.scroll-reveal-enabled .daniel-signature-heading.is-prepared .daniel-signature-heading__underline::after {
  transform: scaleX(0);
}

html.scroll-reveal-enabled .daniel-signature-heading.is-animating .daniel-signature-heading__intro {
  animation: daniel-intro-rise .72s cubic-bezier(.22,.75,.28,1) .16s forwards;
}

html.scroll-reveal-enabled .daniel-signature-heading.is-animating .daniel-signature-heading__letter {
  animation: daniel-letter-settle .62s cubic-bezier(.2,.9,.28,1.22) forwards;
  animation-delay: calc(.68s + var(--letter-index) * 72ms);
}

html.scroll-reveal-enabled .daniel-signature-heading.is-animating .daniel-signature-heading__underline::after {
  animation: daniel-underline-draw .72s cubic-bezier(.2,.72,.22,1) 1.45s forwards;
}

@keyframes daniel-intro-rise {
  from { opacity: 0; transform: translateY(24px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes daniel-letter-settle {
  0% { opacity: 0; transform: translateY(.45em) scale(.82) rotate(3deg); }
  70% { opacity: 1; transform: translateY(-.055em) scale(1.035) rotate(-.5deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes daniel-underline-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.promise-bar { padding: 75px 0; background: var(--blue); color: #fff; text-align: center; }
.promise-bar h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.18; }
.typewriter-heading { min-height: 1.2em; }
.typewriter-heading__caret {
  display: inline-block;
  width: .065em;
  height: .88em;
  margin-left: .1em;
  background: currentColor;
  vertical-align: -.06em;
  animation: typewriter-caret-blink .78s steps(1, end) infinite;
  transition: opacity .28s ease;
}
.typewriter-heading.is-complete .typewriter-heading__caret { opacity: 0; animation: none; }

@keyframes typewriter-caret-blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.features { text-align: center; }
.features > .wrap > h2 { margin: 0 0 56px; font-size: clamp(2rem, 3.5vw, 3rem); font-style: italic; text-transform: uppercase; }
.reimagined-glow {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
}
.reimagined-glow::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -.25em -.42em;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(18,156,243,.48) 0%, rgba(255,189,66,.24) 42%, rgba(18,156,243,0) 74%);
  filter: blur(9px);
  opacity: 0;
  transform: scale(.7);
}
.features > .wrap > h2.scroll-reveal.is-visible .reimagined-glow {
  animation: reimagined-glow-pulse 2.7s cubic-bezier(.22,.72,.25,1) .35s both;
}
.features > .wrap > h2.scroll-reveal.is-visible .reimagined-glow::before {
  animation: reimagined-halo-pulse 2.7s cubic-bezier(.22,.72,.25,1) .35s both;
}

@keyframes reimagined-glow-pulse {
  0% {
    color: inherit;
    text-shadow: 0 0 0 rgba(18,156,243,0), 0 0 0 rgba(255,189,66,0);
    transform: scale(1);
  }
  30% {
    color: var(--gold);
    text-shadow: 0 0 7px rgba(255,246,207,.95), 0 0 18px rgba(255,189,66,.95), 0 0 36px rgba(18,156,243,.82), 0 0 62px rgba(18,156,243,.5);
    transform: scale(1.08);
  }
  52% {
    color: var(--bright-blue);
    text-shadow: 0 0 9px rgba(18,156,243,1), 0 0 27px rgba(18,156,243,.8), 0 0 48px rgba(255,189,66,.52);
    transform: scale(1.035);
  }
  74% {
    color: var(--blue);
    text-shadow: 0 0 13px rgba(18,156,243,.58), 0 0 28px rgba(255,189,66,.25);
    transform: scale(1.012);
  }
  100% {
    color: var(--blue);
    text-shadow: 0 0 7px rgba(18,156,243,.3);
    transform: scale(1);
  }
}

@keyframes reimagined-halo-pulse {
  0% { opacity: 0; transform: scale(.7); }
  30% { opacity: 1; transform: scale(1.2); }
  56% { opacity: .72; transform: scale(1.06); }
  100% { opacity: .16; transform: scale(1); }
}
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.feature svg { width: 58px; height: 58px; color: var(--orange); fill: currentColor; }
.feature h3 { margin: 8px 0 18px; font-size: 1.6rem; }
.feature p { margin: 0; font-family: Arial, sans-serif; font-size: 1.05rem; line-height: 1.72; }

.testimonials { background: var(--blue); color: #fff; }
.testimonials .section-heading h2, .testimonials .section-heading > p:last-child { color: #fff; }
.testimonials .section-kicker { color: var(--gold); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonials blockquote { margin: 0; padding: 34px; border-radius: 14px; background: #fff; color: var(--text); box-shadow: var(--shadow); }
.testimonials blockquote p { margin: 12px 0 20px; font-size: 1.06rem; line-height: 1.65; }
.testimonials cite { color: var(--blue); font-style: normal; font-weight: 800; }
.testimonial-stars { color: var(--gold); letter-spacing: .12em; }
.testimonials__more { margin: 38px 0 0; text-align: center; }
.testimonials__more a { font-weight: 800; text-underline-offset: 5px; }

.contact-section { min-height: 760px; display: grid; align-items: center; background: var(--gray); color: #fff; }
.split-grid--contact { gap: 80px; }
.contact-section h2 { margin: 0; font-size: clamp(4.3rem, 9vw, 8.5rem); line-height: 1.35; }
.contact-section__intro > p:last-child { max-width: 530px; font-size: 1.18rem; }
.contact-card { padding: 46px; background: rgba(13,119,173,.82); }

.contact-heading { line-height: 1.03 !important; }
.contact-heading__line { display: block; transform-origin: center; }
.contact-heading__dot {
  position: relative;
  display: inline-block;
  color: var(--gold);
  transform-origin: 50% 82%;
}
.contact-heading__dot::after {
  content: "";
  position: absolute;
  width: .28em;
  height: .28em;
  top: 57%;
  left: 54%;
  border: .018em solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.2);
  pointer-events: none;
}

html.scroll-reveal-enabled .contact-heading.is-prepared .contact-heading__line--first {
  opacity: 0;
  transform: translate3d(-48px, 0, 0) rotate(-2deg) scale(.94);
}

html.scroll-reveal-enabled .contact-heading.is-prepared .contact-heading__line--second {
  opacity: 0;
  transform: translate3d(48px, 0, 0) rotate(2deg) scale(.94);
}

html.scroll-reveal-enabled .contact-heading.is-prepared .contact-heading__dot { transform: scale(.25); }

html.scroll-reveal-enabled .contact-heading.is-animating .contact-heading__line--first {
  animation: contact-snap-left .78s cubic-bezier(.2,.88,.3,1.18) forwards;
}

html.scroll-reveal-enabled .contact-heading.is-animating .contact-heading__line--second {
  animation: contact-snap-right .78s cubic-bezier(.2,.88,.3,1.18) .14s forwards;
}

html.scroll-reveal-enabled .contact-heading.is-animating .contact-heading__dot {
  animation: contact-dot-bounce .72s cubic-bezier(.2,.9,.25,1.32) .72s both;
}

html.scroll-reveal-enabled .contact-heading.is-animating .contact-heading__dot::after {
  animation: contact-dot-ripple .72s ease-out 1.08s both;
}

@keyframes contact-snap-left {
  0% { opacity: 0; transform: translate3d(-48px, 0, 0) rotate(-2deg) scale(.94); }
  72% { opacity: 1; transform: translate3d(5px, 0, 0) rotate(.35deg) scale(1.015); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes contact-snap-right {
  0% { opacity: 0; transform: translate3d(48px, 0, 0) rotate(2deg) scale(.94); }
  72% { opacity: 1; transform: translate3d(-5px, 0, 0) rotate(-.35deg) scale(1.015); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes contact-dot-bounce {
  0% { transform: scale(.25) translateY(-.15em); text-shadow: 0 0 0 rgba(255,189,66,0); }
  48% { transform: scale(1.5) translateY(-.08em); text-shadow: 0 0 18px rgba(255,189,66,.8); }
  72% { transform: scale(.84) translateY(.02em); }
  100% { transform: scale(1) translateY(0); text-shadow: 0 0 7px rgba(255,189,66,.4); }
}

@keyframes contact-dot-ripple {
  0% { opacity: .75; transform: translate(-50%, -50%) scale(.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(3.6); }
}

.lead-form { display: grid; gap: 18px; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0;
  background: rgba(255,255,255,.96);
  color: #111;
  font: 400 1rem/1.4 Arial, sans-serif;
  padding: 16px;
}
.lead-form textarea { min-height: 140px; resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { outline: 3px solid rgba(18,156,243,.35); outline-offset: 2px; }
.lead-form .button { justify-self: start; }
.lead-form__trap { position: absolute; left: -9999px; }
.form-notice { margin: 0 0 16px; padding: 12px 16px; font-weight: 700; }
.form-notice--success { background: #dff7e4; color: #145c24; }
.form-notice--error { background: #ffe2e2; color: #8b1919; }

.inquiry-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.inquiry-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 23, .72);
  backdrop-filter: blur(4px);
}

.inquiry-modal__card {
  position: relative;
  width: min(100%, 560px);
  padding: 58px 48px 46px;
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
  transform: translateY(18px) scale(.98);
  transition: transform .22s ease;
}

.inquiry-modal.is-visible .inquiry-modal__card { transform: translateY(0) scale(1); }

.inquiry-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #555;
  font: 400 2rem/1 Arial, sans-serif;
  cursor: pointer;
}

.inquiry-modal__close:hover,
.inquiry-modal__close:focus-visible { color: var(--blue); }

.inquiry-modal__check {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: #e4f8ea;
  color: #2faf55;
}

.inquiry-modal__check svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inquiry-modal h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.inquiry-modal p { margin: 0 0 30px; font-size: 1.14rem; }
.inquiry-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.inquiry-modal__actions .button { padding-inline: 24px; }
.inquiry-modal__dismiss { margin-top: 18px; border: 0; background: transparent; color: #647078; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.inquiry-modal__dismiss:hover, .inquiry-modal__dismiss:focus-visible { color: var(--blue); }

.meet-section { position: relative; overflow: hidden; background: var(--blue); color: #fff; }
.split-grid--meet { min-height: 700px; }
.meet-section__copy { z-index: 1; padding-right: 70px; }
.meet-section__copy h2 { margin: 0 0 5px; font-size: clamp(2.8rem, 5vw, 4.2rem); }
.meet-section__copy h3 { margin: 0 0 34px; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.meet-section__copy p { font-size: 1.4rem; line-height: 1.35; }
.meet-section__photo { align-self: stretch; display: grid; place-items: end center; }
.meet-section__photo img { width: 100%; max-height: 650px; object-fit: contain; object-position: bottom center; }

.help-section { background: #fff; text-align: center; }
.split-grid--help { gap: 60px; }
.help-section__logo { display: flex; justify-content: center; }
.help-section__copy h2 { margin: 0 0 26px; font-size: clamp(3rem, 5.4vw, 5rem); line-height: 1.17; }
.help-section__phone { display: inline-block; margin-bottom: 30px; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; text-decoration: none; }
.help-section__phone:hover { color: var(--blue); }
.social-links { display: flex; gap: 22px; justify-content: center; }
.social-links a { display: grid; width: 54px; height: 54px; place-items: center; color: var(--orange); }
.social-links svg { width: 50px; height: 50px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.social-links a:hover, .social-links a:focus-visible { color: var(--blue); }

.top-dollar-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #096b9d, var(--blue) 55%, #075781);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.top-dollar-section::before {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  content: "";
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.top-dollar-section__content { max-width: 900px; }
.top-dollar-section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.top-dollar-section p {
  margin: 0 0 34px;
  color: var(--gold);
  font-family: "Lemon", cursive;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

.floating-contact {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 22px;
  display: flex;
  overflow: hidden;
  border-radius: 30px;
  background: var(--bright-blue);
  box-shadow: var(--shadow);
}
.floating-call {
  display: flex;
  min-width: 170px;
  padding: 11px 18px;
  gap: 10px;
  align-items: center;
  background: var(--bright-blue);
  color: #fff;
  text-decoration: none;
}
.floating-call svg { width: 28px; height: 28px; fill: currentColor; }
.floating-call span { display: flex; flex-direction: column; line-height: 1.2; }
.floating-call small { font-size: .78rem; }
.floating-text { display: grid; width: 56px; place-items: center; border-left: 1px solid rgba(255,255,255,.35); background: var(--bright-blue); color: #fff; }
.floating-text svg { width: 26px; height: 26px; }
.floating-call:hover, .floating-call:focus-visible,
.floating-text:hover, .floating-text:focus-visible { background: #087bc4; }

/* Shared subpage components */
.subpage-logo-header { display: grid; min-height: 300px; place-items: center; padding: 30px; background: #fff; }
.subpage-logo-header .brand-logo { width: 240px; }
.spotify-header { display: grid; min-height: 48px; place-items: center; background: #fff; }
.spotify-header img { display: block; width: 1px; height: 1px; opacity: 0; }

.guide-hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(90deg, rgba(18,156,243,.68), #129cf3 59%), var(--hero-image) left center / 55% 100% no-repeat;
  color: #fff;
}
.guide-hero__content { display: grid; min-height: 620px; justify-items: end; align-content: center; text-align: right; }
.guide-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: 1.13; text-transform: uppercase; }
.guide-hero p { margin: 25px 0 0; font-size: 1.7rem; font-weight: 700; }

.guide-content { padding-block: 90px 120px; font-size: 1.05rem; line-height: 1.45; }
.guide-content > p { font-size: 1.18rem; }
.guide-intro { font-size: 1.35rem !important; }
.guide-tip { margin-top: 70px; }
.guide-tip h2 { margin: 0 0 26px; font-size: 1.55rem; }
.guide-tip h2 span { font-size: .85em; }
.guide-tip img { display: block; width: 100%; max-height: 600px; margin: 0 0 36px; object-fit: cover; border-radius: 2px; }
.guide-tip:nth-of-type(2) img,
.guide-tip:nth-of-type(5) img { max-height: 680px; object-position: center 42%; }
.guide-closing { margin-top: 45px; font-style: italic; }
.help-section--compact { border-top: 1px solid #eee; }
.help-section--compact .brand-logo--large { width: 280px; }

/* Lead capture pages */
.lead-hero {
  position: relative;
  display: grid;
  min-height: 490px;
  align-items: center;
  color: #fff;
  background: linear-gradient(80deg, rgba(0,0,0,.88) 28%, rgba(0,0,0,.05) 72%), var(--lead-image) center 44% / cover no-repeat;
}
.lead-hero--spotify {
  min-height: 515px;
  background: linear-gradient(120deg, rgba(0,0,0,.88), rgba(0,0,0,.08)), var(--lead-image) center 43% / cover no-repeat;
}
.lead-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lead-hero h1 { margin: 0 0 18px; font-size: clamp(2.6rem, 4.3vw, 4.25rem); line-height: 1.25; }
.lead-hero p { margin: 0; font-size: clamp(1.3rem, 2.4vw, 2rem); font-weight: 700; line-height: 1.25; }
.lead-hero .lead-form { gap: 20px; }
.lead-hero .lead-form input { padding: 17px; }
.spotify-help { background: #fff; }
.spotify-help > .wrap > img { justify-self: center; width: min(100%, 500px); }

.content-page { min-height: 75vh; }
.entry-content { padding-block: 70px 110px; }
.entry-content h1 { font-size: 3rem; color: var(--blue); }
.entry-content a { color: var(--blue); }

.site-footer { padding: 42px 24px; background: var(--charcoal); color: #aaa; text-align: center; font: 400 .9rem/1.5 Arial, sans-serif; }
.site-footer p { margin: 0 0 12px; }
.site-footer p:last-child { margin-bottom: 0; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* Subtle, one-time scroll reveals. Content stays visible when JavaScript is unavailable. */
html.scroll-reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .68s cubic-bezier(.22, .61, .36, 1),
    transform .68s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.scroll-reveal-enabled .scroll-reveal--left { transform: translate3d(-22px, 0, 0); }
html.scroll-reveal-enabled .scroll-reveal--right { transform: translate3d(22px, 0, 0); }

html.scroll-reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .home-hero { min-height: 760px; }
  .home-header { min-height: 240px; padding-top: 28px; align-items: flex-start; }
  .home-header .brand-logo { width: 150px; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 48px;
    height: 46px;
    margin-top: 12px;
    padding: 10px;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 5px;
    background: rgba(0,0,0,.25);
  }
  .menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; background: #fff; }
  .home-nav {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: none;
    padding: 110px 30px 40px;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(7,54,82,.98);
  }
  .home-nav.is-open { display: flex; }
  .home-nav > a:not(.button) { font-size: 1.6rem; font-weight: 700; }
  .home-hero__content { padding-top: 45px; }
  .split-grid { grid-template-columns: 1fr; }
  .about-section { min-height: auto; }
  .split-grid--about { gap: 32px; }
  .about-section__image img { width: min(100%, 430px); }
  .about-section__copy .lead { font-size: 1.1rem; }
  .features__grid { grid-template-columns: 1fr; gap: 58px; }
  .feature { max-width: 580px; margin-inline: auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .split-grid--contact { gap: 50px; }
  .contact-section { min-height: auto; }
  .contact-section__intro { text-align: center; }
  .contact-section__intro > p:last-child { margin-inline: auto; }
  .contact-section h2 { text-align: center; line-height: 1.1; }
  .contact-card { width: min(100%, 620px); margin-inline: auto; }
  .split-grid--meet { gap: 38px; }
  .meet-section__copy { padding-right: 0; text-align: center; }
  .meet-section__copy p { font-size: 1.14rem; }
  .meet-section__photo img { max-height: 460px; }
  .split-grid--help { gap: 30px; }
  .help-section__logo .brand-logo { width: min(80vw, 330px); margin-inline: auto; }
  .guide-hero { min-height: 520px; background: linear-gradient(90deg, rgba(18,156,243,.87), rgba(18,156,243,.93)), var(--hero-image) center / cover no-repeat; }
  .guide-hero__content { min-height: 520px; justify-items: center; text-align: center; }
  .lead-hero__grid { grid-template-columns: 1fr; gap: 34px; padding-block: 65px; }
  .lead-hero { min-height: 580px; background: linear-gradient(rgba(0,0,0,.67), rgba(0,0,0,.67)), var(--lead-image) center / cover no-repeat; }
  .lead-hero__grid > div:first-child { text-align: center; }
}

@media (max-width: 600px) {
  .wrap, .wrap-narrow { width: min(calc(100% - 30px), var(--wrap)); }
  .home-hero { min-height: 700px; background-position: 62% center; }
  .home-hero__shade { background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.62)); }
  .home-header { min-height: 205px; }
  .home-header .brand-logo { width: 125px; }
  .home-hero__content { padding-top: 70px; text-align: left; }
  .home-hero__headline-first { font-size: 1.75rem; }
  .home-hero h1 { font-size: 2.55rem; }
  .home-hero__content .button { width: 100%; max-width: 300px; }
  .home-hero__actions { display: grid; justify-items: start; }
  .promise-bar { padding: 55px 0; }
  .typewriter-heading { min-height: 2.36em; }
  .contact-card { padding: 28px 20px; }
  .top-dollar-section { padding-block: 72px; }
  .top-dollar-section h2 { font-size: 1.85rem; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-call { min-width: 56px; padding: 12px; }
  .floating-call span { display: none; }
  .floating-text { width: 50px; }
  .subpage-logo-header { min-height: 220px; }
  .subpage-logo-header .brand-logo { width: 180px; }
  .guide-content { padding-block: 65px 85px; }
  .guide-tip { margin-top: 55px; }
  .guide-tip img { max-height: 420px; }
  .lead-hero h1 { font-size: 2.4rem; }
  .lead-hero p { font-size: 1.2rem; }
  .site-footer { padding-bottom: 85px; }
  .inquiry-modal { padding: 16px; }
  .inquiry-modal__card { padding: 52px 24px 36px; }
  .inquiry-modal__actions { display: grid; }
  html.scroll-reveal-enabled .scroll-reveal--left,
  html.scroll-reveal-enabled .scroll-reveal--right { transform: translate3d(0, 18px, 0); }
  html.scroll-reveal-enabled .scroll-reveal.is-visible { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .home-header__logo { animation: none !important; }
  .hero-reveal-line__text,
  .home-hero__actions,
  .home-hero__note { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .typewriter-heading__caret { display: none !important; }
  html.scroll-reveal-enabled .scroll-reveal { opacity: 1 !important; transform: none !important; }
  .home-nav > a:not(.button):hover,
  .home-nav > a:not(.button):focus-visible { transform: none !important; }
}
