:root {
  --ink: #12243a;
  --muted: #5f6670;
  --cream: #f8f4ed;
  --paper: #fffdf9;
  --sage: #65727a;
  --deep-green: #07182b;
  --clay: #c89543;
  --gold: #d4a34d;
  --mist: #f3eadb;
  --sky: #c89543;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 24, 43, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.is-loaded .site-header {
  animation: headerDrop 700ms ease both;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: transparent;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 249, 0.97);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(7, 24, 43, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-image {
  position: relative;
  display: block;
  width: clamp(260px, 26vw, 365px);
  height: clamp(70px, 7vw, 96px);
  overflow: hidden;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  background: rgba(212, 163, 77, 0.14);
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 180ms ease;
}

.logo-on-light {
  opacity: 0;
}

.site-header.is-scrolled .logo-on-dark,
.site-header.is-open .logo-on-dark {
  opacity: 0;
}

.site-header.is-scrolled .logo-on-light,
.site-header.is-open .logo-on-light {
  opacity: 1;
}

.site-footer .brand-image {
  width: 350px;
  height: 94px;
}

.site-footer .brand-logo {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--sky);
  transform: translateY(-1px);
}

.nav-phone {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.parallax-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.12) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-22%);
  pointer-events: none;
}

.parallax-section.is-visible::after {
  animation: softSweep 1600ms ease 220ms both;
}

.parallax-bg {
  position: absolute;
  z-index: -2;
  inset: -28% 0;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 144px clamp(20px, 6vw, 86px) 58px;
  color: var(--white);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=2200&q=80");
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 43, 0.9), rgba(7, 24, 43, 0.62) 44%, rgba(7, 24, 43, 0.24)),
    linear-gradient(0deg, rgba(7, 24, 43, 0.62), transparent 42%);
}

.hero-content {
  max-width: 760px;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateY(22px);
}

body.is-loaded .hero-content .eyebrow {
  animation: riseIn 700ms ease 160ms both;
}

body.is-loaded .hero-content h1 {
  animation: riseIn 850ms ease 280ms both;
}

body.is-loaded .hero-copy {
  animation: riseIn 850ms ease 430ms both;
}

body.is-loaded .hero-actions {
  animation: riseIn 850ms ease 560ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  font-size: clamp(2.15rem, 4.7vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-form .button {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(7, 24, 43, 0.22);
}

.button.primary {
  color: var(--white);
  background: var(--sky);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: var(--sky);
  background: rgba(212, 163, 77, 0.16);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 76px);
  bottom: 52px;
  max-width: 330px;
  padding: 22px;
  border-left: 4px solid var(--sky);
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded .hero-panel {
  animation: riseIn 850ms ease 760ms both, gentleFloat 5200ms ease-in-out 1700ms infinite;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  color: var(--muted);
}

.intro-band,
.split-section,
.process-section,
.testimonials-section,
.team-section,
.faq-section,
.contact-section,
.site-footer {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  background: var(--deep-green);
  color: var(--white);
}

.intro-band h2 {
  margin-bottom: 0;
}

.intro-band p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  background: var(--paper);
}

.split-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

.split-copy p,
.process-section p,
.choice-section p,
.values-copy p,
.team-section p,
.faq-section p,
.contact-copy p {
  color: var(--muted);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-grid article,
.process-steps article {
  padding: 26px;
  border: 1px solid rgba(7, 24, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 24, 43, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.help-grid article:hover,
.process-steps article:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 163, 77, 0.45);
  box-shadow: 0 22px 54px rgba(7, 24, 43, 0.14);
}

.help-grid span,
.process-steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--clay);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.story {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 110px clamp(20px, 6vw, 86px);
  color: var(--white);
}

.story-bg {
  background-image:
    linear-gradient(rgba(7, 24, 43, 0.62), rgba(7, 24, 43, 0.56)),
    url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=2200&q=80");
}

.story-content {
  max-width: 780px;
  text-align: center;
}

.story-content p:last-child {
  margin: 0 auto;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.centered {
  max-width: none;
  text-align: center;
}

.testimonials-section {
  background: #fbf6ed;
}

.testimonials-section h2 {
  color: var(--deep-green);
}

.testimonial-carousel {
  position: relative;
}

.testimonial-grid {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 149, 67, 0.58) rgba(7, 24, 43, 0.08);
}

.testimonial-grid::-webkit-scrollbar {
  height: 10px;
}

.testimonial-grid::-webkit-scrollbar-track {
  background: rgba(7, 24, 43, 0.08);
  border-radius: 999px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(200, 149, 67, 0.64);
}

.testimonial-card {
  flex: 0 0 calc((100% - 52px) / 3);
  overflow: hidden;
  border: 1px solid rgba(7, 24, 43, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  scroll-snap-align: start;
  box-shadow: 0 18px 48px rgba(7, 24, 43, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(7, 24, 43, 0.14);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 16px 34px rgba(7, 24, 43, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.carousel-button:hover {
  box-shadow: 0 18px 40px rgba(7, 24, 43, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.carousel-button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

.carousel-button span {
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--deep-green);
  border-right: 2px solid var(--deep-green);
}

.carousel-button-prev {
  left: -22px;
}

.carousel-button-prev span {
  transform: rotate(-135deg);
}

.carousel-button-next {
  right: -22px;
}

.carousel-button-next span {
  transform: rotate(45deg);
}

.audio-preview {
  position: relative;
  min-height: 206px;
  overflow: hidden;
  background-color: #12243a;
  background-position: center bottom;
  background-size: cover;
}

.audio-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(212, 163, 77, 0.94) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(7, 24, 43, 0.8), rgba(7, 24, 43, 0.08));
}

.portrait-one {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=900&q=80");
}

.portrait-two {
  background-image: url("https://images.unsplash.com/photo-1544723795-3fb6469f5b39?auto=format&fit=crop&w=900&q=80");
}

.portrait-three {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=900&q=80");
}

.preview-brand {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 1;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(212, 163, 77, 0.96);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 17px solid var(--white);
}

.testimonial-card.is-playing .play-button span {
  width: 16px;
  height: 22px;
  margin-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 5px solid var(--white);
  border-right: 5px solid var(--white);
}

.waveform {
  position: absolute;
  right: 0;
  bottom: 52px;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 18px;
}

.waveform::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
}

.waveform span {
  position: relative;
  z-index: 1;
  width: 7.5%;
  height: 8px;
  background: var(--gold);
  transform-origin: center;
  animation: waveformPulse 1200ms ease-in-out infinite;
}

.testimonial-card.is-playing .waveform span {
  animation-duration: 750ms;
}

.waveform span:nth-child(2n) {
  height: 18px;
  animation-delay: 120ms;
}

.waveform span:nth-child(4n) {
  height: 28px;
  animation-delay: 240ms;
}

.waveform span:nth-child(3n) {
  animation-delay: 360ms;
}

.audio-meta {
  position: absolute;
  right: 18px;
  bottom: 13px;
  left: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.audio-meta strong {
  font-size: 0.9rem;
}

.audio-meta span {
  height: 2px;
  flex: 1;
  background: rgba(255, 255, 255, 0.72);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 26px 24px 14px;
  color: var(--deep-green);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.45;
}

.testimonial-card h3,
.testimonial-card p {
  padding: 0 24px;
}

.testimonial-card h3 {
  margin: 0 0 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
}

.testimonial-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.process-section {
  background: var(--mist);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.values-band {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  background: var(--white);
}

.values-image {
  min-height: 420px;
  background-image: url("https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 1200ms ease;
}

.values-band.is-visible .values-image {
  transform: scale(1);
}

.values-copy {
  align-self: center;
  padding: clamp(58px, 8vw, 106px) clamp(22px, 7vw, 92px);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.team-section {
  background: var(--paper);
}

.team-section .section-heading p:last-child {
  max-width: 680px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1244px;
  margin: 0 auto;
}

.team-card {
  overflow: hidden;
  border: 1px solid rgba(7, 24, 43, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 24, 43, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 163, 77, 0.45);
  box-shadow: 0 24px 58px rgba(7, 24, 43, 0.16);
}

.team-photo {
  min-height: 0;
  aspect-ratio: 1 / 1;
  background-color: var(--mist);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-photo-one {
  background-image: linear-gradient(rgba(7, 24, 43, 0.08), rgba(7, 24, 43, 0.08)), url("assets/team/dwight-kim.jpg");
  background-color: #f5efe6;
  background-position: center 20%;
  background-size: cover;
}

.team-photo-two {
  background-image: linear-gradient(rgba(7, 24, 43, 0.08), rgba(7, 24, 43, 0.08)), url("assets/team/robert-lee.jpg");
  background-color: #12243a;
  background-position: center center;
  background-size: cover;
}

.team-photo-three {
  background-image: linear-gradient(rgba(7, 24, 43, 0.08), rgba(7, 24, 43, 0.08)), url("assets/team/phillip-thai.png");
  background-color: #047b8c;
  background-position: center 25%;
  background-size: cover;
}

.team-copy {
  padding: 24px;
}

.team-role {
  margin-bottom: 10px;
  color: var(--clay) !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-copy h3 {
  color: var(--deep-green);
}

.choice-section {
  padding: clamp(68px, 10vw, 140px) clamp(20px, 14vw, 180px);
  background: var(--deep-green);
  color: var(--white);
  text-align: center;
}

.choice-section p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  border: 1px solid rgba(7, 24, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  padding: 22px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background: var(--mist);
}

.contact-copy {
  align-self: start;
}

.contact-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--deep-green);
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 76px rgba(7, 24, 43, 0.2);
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 24, 43, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfe;
  font: 1rem Arial, Helvetica, sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 163, 77, 0.18);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: #07182b;
  color: var(--white);
}

.site-footer p {
  max-width: 390px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav a {
  text-decoration: none;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--paper);
}

.thank-you-screen {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 44px;
  padding: clamp(28px, 8vw, 86px);
}

.thank-you-screen .brand {
  width: fit-content;
}

.thank-you-card {
  max-width: 760px;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.thank-you-card p:not(.section-kicker) {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade-left"] {
  transform: translateX(-34px);
}

[data-reveal="fade-right"] {
  transform: translateX(34px);
}

[data-reveal="zoom"] {
  transform: translateY(20px) scale(0.96);
}

[data-reveal="fade-left"].is-visible,
[data-reveal="fade-right"].is-visible,
[data-reveal="zoom"].is-visible {
  transform: translateX(0) scale(1);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes softSweep {
  from {
    opacity: 0;
    transform: translateX(-28%);
  }
  35% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(28%);
  }
}

@keyframes waveformPulse {
  0%,
  100% {
    transform: scaleY(0.62);
  }
  50% {
    transform: scaleY(1.18);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 860px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

  .intro-band,
  .split-section,
  .values-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-copy {
    position: static;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex-basis: calc((100% - 26px) / 2);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-copy {
    padding-right: clamp(22px, 6vw, 58px);
    padding-left: clamp(22px, 6vw, 58px);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .testimonial-card {
    flex-basis: 86%;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
  }

  .carousel-button-prev {
    left: -8px;
  }

  .carousel-button-next {
    right: -8px;
  }

  .brand-image {
    width: 220px;
    height: 60px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-phone {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .story {
    min-height: 520px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 18px;
  }

  .intro-band,
  .split-section,
  .process-section,
  .testimonials-section,
  .team-section,
  .faq-section,
  .contact-section,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .parallax-bg {
    transform: none !important;
  }

  [data-reveal],
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-copy,
  .hero-actions,
  .hero-panel {
    opacity: 1 !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
