:root {
  --brown: #312924;
  --brand: #5381c6;
  --mute: #626262;
  --fog: #a9a5a2;
  --cream: #f9fafb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--brown);
  background: #fff;
}

.font-rubik {
  font-family: "Rubik", sans-serif;
}

.logo-lockup {
  display: inline-grid;
  grid-template-columns: 62px auto;
  align-items: center;
  column-gap: 10px;
}

.logo-lockup .mark {
  width: 62px;
  height: 62px;
}

.logo-lockup .words {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-lockup .words img:first-child {
  width: 116px;
  height: 26px;
}

.logo-lockup .words img:last-child {
  width: 116px;
  height: 10px;
}

.btn-outline,
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 28px;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--brown);
  color: var(--brand);
}

.btn-solid {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(83, 129, 198, 0.22);
}

.btn-outline:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(83, 129, 198, 0.28);
}

.btn-solid:hover {
  background: #3f6aad;
  border-color: #3f6aad;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(83, 129, 198, 0.38);
}

.btn-outline:focus-visible,
.btn-solid:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.btn-outline:active,
.btn-solid:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(83, 129, 198, 0.24);
}

.btn-sm {
  min-height: 53px;
  min-width: 174px;
  padding: 0 18px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

.headline {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--brown);
}

.watermark {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(49, 41, 36, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.hero-honeycomb {
  background-image: url("../images/honeycomb-hero.png");
  background-size: cover;
  background-position: center top;
}

.dark-honeycomb {
  position: relative;
  background-color: var(--brown);
  overflow: hidden;
}

.dark-honeycomb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/honeycomb-hero.png");
  background-size: cover;
  background-position: center;
  filter: invert(1);
  opacity: 0.1;
  pointer-events: none;
}

.dark-honeycomb > * {
  position: relative;
  z-index: 1;
}

.lead-bar {
  background: var(--brown);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(49, 41, 36, 0.18);
}

.lead-bar input {
  height: 63px;
  border-radius: 4px;
  background: #fff;
  color: var(--brown);
  font-size: 18px;
  padding: 0 20px;
}

.lead-bar input::placeholder {
  color: #8b8682;
}

.lead-bar .submit {
  height: 63px;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(83, 129, 198, 0.22);
  transition:
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-bar .submit:hover {
  background: #3f6aad;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(83, 129, 198, 0.38);
}

.lead-bar .submit:active {
  transform: translateY(-1px);
}

.service-slider,
.review-slider {
  overflow: hidden;
  padding: 12px 0 36px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.service-slider:not(.is-ready) .service-track,
.review-slider:not(.is-ready) .review-track {
  visibility: hidden;
}

.service-slider.is-dragging,
.review-slider.is-dragging {
  cursor: grabbing;
}

.service-slider.is-dragging .service-card-v2,
.review-slider.is-dragging .quote-card {
  pointer-events: none;
}

.service-track,
.review-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-track.is-instant,
.review-track.is-instant {
  transition: none;
}

.service-card {
  flex: 0 0 min(583px, 86vw);
  height: 469px;
  border-radius: 8px;
  scroll-snap-align: start;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--brand);
  background: #fff;
}

.service-card.is-dark {
  background: var(--brown);
  border-color: var(--brown);
}

.service-card h3 {
  font-family: "Rubik", sans-serif;
  font-size: 46px;
  line-height: 33px;
  letter-spacing: -0.92px;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.service-card p {
  font-size: 18px;
  line-height: 31px;
  max-width: 495px;
}

.support-card {
  position: relative;
  min-height: 469px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
}

.support-card img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(49, 41, 36, 0.92) 0%, rgba(49, 41, 36, 0.55) 48%, rgba(49, 41, 36, 0.12) 100%);
}

.support-card .copy {
  position: relative;
  z-index: 1;
  padding: 44px 44px 28px;
  max-width: 430px;
}

.support-card h3 {
  font-family: "Rubik", sans-serif;
  font-size: 42px;
  line-height: 43px;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.arrow-btn {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card {
  background: var(--brown);
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 36px;
  min-height: 648px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.price-card.is-popular {
  border: 2px solid var(--brand);
  box-shadow: 0 12px 12px rgba(83, 129, 198, 0.11);
}

.price-card:hover,
.price-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--brand);
  background: #3d342e;
  box-shadow: 0 22px 44px rgba(83, 129, 198, 0.22);
}

.price-card.is-popular:hover,
.price-card.is-popular:focus-within {
  box-shadow: 0 24px 48px rgba(83, 129, 198, 0.28);
}

.price-card .cta {
  margin-top: auto;
  width: 100%;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid var(--brand);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  transition:
    background 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card:hover .cta,
.price-card:focus-within .cta {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(83, 129, 198, 0.35);
  transform: translateY(-2px);
}

.price-card .cta:hover {
  background: #3f6aad;
  border-color: #3f6aad;
  box-shadow: 0 12px 28px rgba(83, 129, 198, 0.42);
}

.price-card.is-popular .cta {
  background: #fff;
  color: var(--brand);
  font-weight: 500;
  border-color: #fff;
}

.price-card.is-popular:hover .cta,
.price-card.is-popular:focus-within .cta {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(83, 129, 198, 0.35);
  transform: translateY(-2px);
}

.quote-card {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.04);
  padding: 40px;
}

.nav-link.active {
  color: var(--brand);
}

.has-mega {
  position: static;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mega-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 1px;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  z-index: 60;
  width: min(1120px, calc(100vw - 40px));
  padding-top: 18px;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.has-mega:hover .mega-menu,
.has-mega.open .mega-menu,
#site-header.mega-open .has-mega .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 40px;
  border-radius: 20px;
  background: #fff;
  padding: 32px 40px 36px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

.mega-col h3 {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #7dbdb4;
  color: #1f1f1f;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.mega-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-col a,
.mega-link,
.mega-mobile-link {
  color: #4b4b4b;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.mega-link,
.mega-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-link-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mega-mobile-link .mega-link-icon {
  width: 24px;
  height: 24px;
}

.mega-col a:hover,
.mega-link:hover,
.mega-mobile-link:hover {
  color: var(--brand);
}

.mega-mobile-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  text-transform: uppercase;
}

.mega-mobile-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0 6px 8px;
}

.js-mega.open .mega-mobile-panel {
  display: flex;
}

.mega-mobile-heading {
  margin-top: 8px;
  color: var(--brown);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.mega-mobile-parent,
.mega-mobile-panel a {
  color: #4b4b4b;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}

.page-hero {
  position: relative;
}

.page-hero-photo {
  overflow: hidden;
  min-height: 380px;
  background-color: var(--brown);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(49, 41, 36, 0.82) 0%, rgba(49, 41, 36, 0.55) 55%, rgba(49, 41, 36, 0.28) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
}

.form-alert {
  display: none;
}

.form-alert.show {
  display: block;
}

.modal {
  display: none;
}

.modal.open {
  display: flex;
}

input.error,
textarea.error {
  outline: 2px solid #d64545;
}

.page-v2 #site-header {
  background: var(--brown);
  overflow: visible;
}

#site-header {
  overflow: visible;
}

.page-v2 #site-header .nav-link {
  color: #e3e3e3;
}

.page-v2 #site-header .nav-link.active,
.page-v2 #site-header .nav-link:hover {
  color: #fff;
}

@media (max-width: 1279px) {
  .mega-menu {
    display: none !important;
  }
}

.hero-v2 {
  position: relative;
  background-color: var(--brown);
  overflow: hidden;
}

.hero-v2 > .hero-v2-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-v2 > .hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 16, 14, 0.82) 0%, rgba(20, 16, 14, 0.68) 48%, rgba(20, 16, 14, 0.5) 100%);
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("../images/v2/hero-dark.png");
  background-size: cover;
  background-position: center top;
  filter: invert(1);
  opacity: 0.1;
  pointer-events: none;
}

.hero-v2 > * {
  position: relative;
  z-index: 3;
}

.lead-bar-v2 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(83, 129, 198, 0.35);
  border-radius: 26px;
  backdrop-filter: blur(10px);
}

.lead-bar-v2 input {
  height: 63px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #5381c6;
  color: #fff;
  font-size: 16px;
  padding: 0 20px;
}

.lead-bar-v2 input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.lead-bar-v2 .submit {
  height: 63px;
  border-radius: 3px;
  background: var(--brand);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(83, 129, 198, 0.22);
  transition:
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-bar-v2 .submit:hover {
  background: #3f6aad;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(83, 129, 198, 0.38);
}

.lead-bar-v2 .submit:active {
  transform: translateY(-1px);
}

.service-card-v2 {
  flex: 0 0 min(420px, 86vw);
  width: min(420px, 86vw);
  height: 420px;
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--brand);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.service-card-v2:hover,
.service-card-v2:focus-visible {
  transform: translateY(-8px);
  background: var(--brown);
  border-color: var(--brown);
  box-shadow: 0 22px 44px rgba(20, 16, 14, 0.35);
}

.service-card-v2 h3 {
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
  color: var(--brown);
  transition: color 0.3s ease, margin 0.3s ease;
}

.service-card-v2 p {
  font-size: 16px;
  line-height: 24px;
  max-width: 359px;
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(10px);
  color: #fff;
  transition: color 0.3s ease, opacity 0.35s ease, max-height 0.35s ease, margin 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-v2:hover h3,
.service-card-v2:focus-visible h3 {
  color: #fff;
  margin-bottom: 16px;
}

.service-card-v2:hover p,
.service-card-v2:focus-visible p {
  max-height: 96px;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
  color: #fff;
}

.support-card-v2 {
  position: relative;
  display: flex;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d7e2ef;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.support-card-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--brand);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.support-card-v2:hover,
.support-card-v2:focus-within {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 22px 44px rgba(49, 41, 36, 0.12);
}

.support-card-v2:hover::after,
.support-card-v2:focus-within::after {
  opacity: 0.62;
}

.support-card-v2 .photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-card-v2:hover .photo,
.support-card-v2:focus-within .photo {
  transform: scale(1.07);
}

.support-card-v2 .copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-self: stretch;
  min-height: 320px;
  max-width: 58%;
  padding: 36px 28px 28px 36px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.18) 100%);
  transition: background 0.4s ease;
}

.support-card-v2:hover .copy,
.support-card-v2:focus-within .copy {
  background: linear-gradient(90deg, rgba(83, 129, 198, 0.96) 0%, rgba(83, 129, 198, 0.72) 52%, rgba(83, 129, 198, 0.08) 100%);
}

.support-card-v2 h3 {
  font-family: "Rubik", sans-serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  color: var(--brown);
  transition: color 0.3s ease;
}

.support-card-v2:hover h3,
.support-card-v2:focus-within h3 {
  color: #fff;
}

.support-card-v2 p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
  max-width: 340px;
  transition: color 0.3s ease;
}

.support-card-v2:hover p,
.support-card-v2:focus-within p {
  color: rgba(255, 255, 255, 0.92);
}

.support-card-v2 .arrow-btn {
  position: static;
  margin-top: auto;
  width: 48px;
  height: 48px;
  padding-top: 22px;
  background: transparent;
}

.support-card-v2 .arrow-btn img {
  display: block;
  width: 48px;
  height: 48px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-card-v2:hover .arrow-btn img {
  transform: translateX(6px);
}

.cta-band-v2 {
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 14, 0.82) 0%, rgba(20, 16, 14, 0.72) 50%, rgba(20, 16, 14, 0.8) 100%);
}

.cta-book {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  width: min(22vw, 240px);
  height: auto;
  max-height: 70%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.cta-book-left {
  left: 2%;
}

.cta-book-right {
  right: 2%;
}

.cta-band-copy {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .cta-book {
    display: block;
  }
}

.btn-v2 {
  min-height: 44px;
  min-width: 174px;
  padding: 0 18px;
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
}

@media (max-width: 1023px) {
  .service-card {
    height: auto;
    min-height: 360px;
  }

  .service-card-v2 {
    height: auto;
    min-height: 360px;
  }

  .support-card-v2 .copy {
    max-width: 100%;
    min-height: 280px;
  }

  .support-card {
    min-height: 380px;
  }

  .price-card {
    min-height: auto;
  }
}

.service-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 14, 0.72) 0%, rgba(20, 16, 14, 0.42) 55%, rgba(20, 16, 14, 0.28) 100%);
}

.hero-form-card {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(49, 41, 36, 0.28);
  overflow: hidden;
  border: 1px solid rgba(83, 129, 198, 0.18);
}

@media (min-width: 1024px) {
  .hero-form-card {
    width: 400px;
    margin-left: auto;
    margin-right: 64px;
  }
}

.hero-form-head {
  background: var(--brand);
  color: #fff;
  font-family: "Rubik", sans-serif;
  text-align: center;
  padding: 18px 20px 16px;
}

.hero-form-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-form-head span {
  display: block;
  margin-top: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-form-card .lead-form,
.contact-form-card .lead-form {
  padding: 20px 20px 22px;
}

.lead-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 400px) {
  .lead-fields {
    grid-template-columns: 1fr 1fr;
  }

  .lead-field:nth-child(3),
  .lead-field:nth-child(4) {
    grid-column: 1 / -1;
  }
}

.lead-field span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
}

.lead-field input,
.lead-field textarea {
  width: 100%;
  height: 46px;
  border: 1px solid #d8d4cf;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--brown);
  background: #f7f6f4;
}

.lead-field textarea {
  height: auto;
  min-height: 72px;
  padding: 10px 12px;
  resize: vertical;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: #6b6560;
}

.lead-field input:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 129, 198, 0.18);
}

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(49, 41, 36, 0.08);
  border-radius: 12px;
  padding: 24px 22px 20px;
  box-shadow: 0 18px 40px rgba(49, 41, 36, 0.08);
}

.lead-form .btn-solid {
  min-height: 44px;
}

.lead-form .form-alert {
  margin-top: 12px;
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-point {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(49, 41, 36, 0.1);
  border-radius: 12px;
  background: #f7f6f4;
  text-decoration: none;
  color: inherit;
}

.contact-point span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
}

.contact-point strong {
  display: block;
  margin-top: 4px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
}

a.contact-point:hover {
  border-color: var(--brand);
}

.author-roster {
  display: flex;
  flex-direction: column;
}

.author-profile {
  display: grid;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #e8e4df;
}

.author-profile:first-child {
  padding-top: 0;
}

.author-profile:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.author-face {
  object-fit: cover;
}

.author-face.is-eleanor {
  object-position: 24% 12%;
}

.author-face.is-julian {
  object-position: 80% 10%;
}

.author-face.is-sarah {
  object-position: 62% 8%;
}

.author-profile-photo {
  width: 220px;
  max-width: 100%;
  height: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4f4f4;
}

.author-quote {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--brand);
  background: #f7f6f4;
  border-radius: 0 12px 12px 0;
}

.author-quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown);
}

@media (min-width: 768px) {
  .author-profile {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
    padding: 40px 0;
  }
}

.genre-band {
  position: relative;
  background-color: #f7f6f4;
  overflow: hidden;
}

.genre-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/honeycomb-hero.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.genre-band > * {
  position: relative;
  z-index: 1;
}

.genre-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 8px 8px 12px;
  text-align: center;
}

.genre-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 6px;
}

.genre-card p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--mist, #e3e3e3);
  border-radius: 999px;
  background: #fff;
  color: var(--mute);
  font-size: 14px;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.filter-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(83, 129, 198, 0.16);
}

.filter-chip .filter-check {
  display: none;
  width: 14px;
  height: 14px;
}

.filter-chip.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.filter-chip.is-active .filter-check {
  display: block;
  filter: brightness(0) invert(1);
}

.book-tile {
  text-align: left;
}

.book-tile-art {
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
}

.book-tile-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.book-cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 56px;
  max-width: 1080px;
  margin-inline: auto;
  align-items: end;
  justify-items: center;
}

.book-cover-grid .book-tile {
  width: 100%;
  max-width: 260px;
  background: none;
  border: 0;
  box-shadow: none;
}

.book-cover-grid .book-cover-frame {
  width: 100%;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.book-cover-grid .book-cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}

.book-cover-grid .book-tile.is-loose .book-cover-img {
  transform: scale(1.38);
  transform-origin: center 58%;
}

.story-stars {
  color: var(--brand);
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1;
}

.book-tile h3 {
  margin-top: 12px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.book-tile p {
  color: var(--mute);
  font-size: 14px;
}

.service-cta-band {
  background: var(--brown);
}

.lets-tab {
  display: none;
}

.side-dock {
  position: fixed;
  right: 0;
  top: 38%;
  z-index: 46;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
}

.side-dock > * {
  pointer-events: auto;
}

.side-dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px 0 0 8px;
  background: var(--brand);
  transition:
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-dock-btn:hover {
  background: #3f6aad;
  transform: translateX(-4px);
  box-shadow: -8px 8px 24px rgba(83, 129, 198, 0.35);
}

.side-dock-btn img {
  width: 22px;
  height: 22px;
}

.side-dock-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: var(--brand);
  color: #fff;
  padding: 20px 12px;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  border: 0;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition:
    background-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-dock-tab:hover {
  background: #3f6aad;
  transform: rotate(180deg) translateX(-4px);
  box-shadow: -8px 8px 24px rgba(83, 129, 198, 0.35);
}

.story-letter {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 64px;
}

.story-letter-mark {
  position: absolute;
  left: 4%;
  bottom: 52px;
  z-index: 0;
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-size: clamp(72px, 16vw, 200px);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--brand);
  opacity: 0.14;
  pointer-events: none;
}

.story-letter-inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 80px;
  min-height: 420px;
}

@media (min-width: 1280px) {
  .story-letter-inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.story-letter-copy {
  max-width: 640px;
  padding-top: 24px;
}

.story-letter-girl {
  position: absolute;
  right: 2%;
  bottom: 52px;
  z-index: 2;
  display: block;
  width: min(48vw, 640px);
  height: auto;
  pointer-events: none;
}

.story-letter-bar {
  height: 52px;
  background: var(--brand);
}

@media (max-width: 1023px) {
  .book-cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .story-letter-inner {
    min-height: 0;
    padding-bottom: 24px;
  }

  .story-letter-girl {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin: 0 auto -2px;
  }
}

@media (max-width: 767px) {
  .book-tile-art {
    height: 220px;
  }

  .book-cover-grid {
    grid-template-columns: 1fr;
  }

  .book-cover-grid .book-cover-frame {
    height: 300px;
  }

  .side-dock-tab {
    padding: 14px 10px;
    font-size: 12px;
  }
}

.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(49, 41, 36, 0.82) 0%, rgba(49, 41, 36, 0.55) 55%, rgba(49, 41, 36, 0.28) 100%);
}

.about-photo {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  color: var(--brown);
}

.about-checks li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  background: url("../icons/check.svg") center / 18px 18px no-repeat;
}

.about-stat {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  padding: 28px 20px;
  box-shadow: 0 8px 24px rgba(49, 41, 36, 0.04);
}

.about-stat-value {
  font-family: "Rubik", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--brand);
}

.about-stat-label {
  margin-top: 10px;
  font-size: 15px;
  color: var(--mute);
}

.about-band {
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

.about-band-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.about-band-plain .about-band-photo {
  display: none;
}

.about-band-full .about-band-photo {
  width: 100%;
  opacity: 0.32;
  mask-image: none;
}

.about-band-plain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/honeycomb-hero.png");
  background-size: cover;
  filter: invert(1);
  opacity: 0.08;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .about-photo {
    height: 320px;
  }

  .about-band-photo {
    width: 100%;
    opacity: 0.22;
    mask-image: none;
  }
}

.slider-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  transition:
    background 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-arrow:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(83, 129, 198, 0.3);
}

.slider-arrow:active {
  transform: translateY(0) scale(0.96);
}

.why-band {
  position: relative;
  overflow: hidden;
  background: var(--brown);
}

.why-band-inner {
  position: relative;
  z-index: 1;
}

.why-panel {
  border-radius: 8px;
  background: rgba(42, 35, 30, 0.22);
  padding: 28px 20px 32px;
}

.why-diagram {
  position: relative;
  display: grid;
  gap: 28px;
}

.why-point h3 {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
}

.why-point p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #a4a4a4;
}

.why-hub {
  position: relative;
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  margin: 8px auto;
}

.why-ring,
.why-books,
.why-lines,
.why-dot {
  display: block;
  pointer-events: none;
}

.why-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.why-books {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
}

.why-lines,
.why-dot {
  display: none;
}

@media (min-width: 1024px) {
  .why-panel {
    padding: 48px 40px 56px;
  }

  .why-diagram {
    display: block;
    position: relative;
    max-width: 1210px;
    height: 520px;
    margin: 0 auto;
  }

  .why-point {
    position: absolute;
    width: min(392px, 32%);
  }

  .why-point.is-tl {
    top: 12px;
    left: 0;
    text-align: right;
  }

  .why-point.is-tr {
    top: 12px;
    right: 0;
    text-align: left;
  }

  .why-point.is-bl {
    bottom: 28px;
    left: 0;
    text-align: right;
  }

  .why-point.is-br {
    bottom: 28px;
    right: 0;
    text-align: left;
  }

  .why-point h3 {
    font-size: 30px;
    line-height: 41px;
  }

  .why-point p {
    max-width: 38ch;
  }

  .why-point.is-tl p,
  .why-point.is-bl p {
    margin-left: auto;
  }

  .why-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 349px;
    height: 349px;
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .why-lines {
    display: block;
    position: absolute;
    left: 50%;
    width: 376px;
    height: auto;
    max-width: none;
    transform: translateX(-50%);
  }

  .why-lines-top {
    top: -31px;
  }

  .why-lines-bottom {
    bottom: -31px;
    width: 381px;
  }

  .why-dot {
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
  }

  .why-dot-tr {
    top: -31px;
    left: calc(50% + 183px);
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) {
  .why-hub {
    order: -1;
  }

  .why-diagram {
    display: flex;
    flex-direction: column;
  }

  .why-point {
    padding: 4px 0;
  }
}

.review-track .quote-card {
  flex: 0 0 min(420px, 86vw);
  width: min(420px, 86vw);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.review-track .quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(49, 41, 36, 0.1);
}

footer a {
  color: inherit;
  background: transparent;
  transition: color 0.2s ease;
}

footer a:hover,
footer a:focus-visible {
  color: var(--brand);
  background: transparent;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: var(--brand);
  color: #fff;
}

.author-stats {
  display: grid;
  gap: 20px;
  border-top: 1px solid #e8e4df;
  border-bottom: 1px solid #e8e4df;
  padding: 28px 0;
}

@media (min-width: 768px) {
  .author-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.author-stats p:first-child {
  font-family: "Rubik", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--brown);
}

.author-stats p:last-child {
  margin-top: 8px;
  font-size: 15px;
  color: var(--mute);
}

.author-process {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .author-process {
    grid-template-columns: 1fr 1fr;
  }
}

.author-process article {
  padding: 24px 0;
  border-top: 1px solid #e8e4df;
}

@media (min-width: 768px) {
  .author-process article:nth-child(odd) {
    padding-right: 32px;
  }

  .author-process article:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid #e8e4df;
  }
}

.author-process h3 {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.author-process p {
  margin-top: 8px;
  max-width: 48ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mute);
}

.author-cta {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 12px;
}

.author-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 14, 0.82) 0%, rgba(20, 16, 14, 0.5) 100%);
}

.author-cta-copy {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  max-width: 560px;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  margin-top: 32px;
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.legal-body h3 {
  margin-top: 24px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color: var(--brown);
}

.legal-body p,
.legal-body li {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mute);
}

.legal-body ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}

@media (prefers-reduced-motion: reduce) {
  .service-track,
  .review-track,
  .service-card-v2,
  .service-card-v2 h3,
  .service-card-v2 p,
  .support-card-v2,
  .support-card-v2 .photo,
  .price-card,
  .price-card .cta,
  .review-track .quote-card,
  .btn-outline,
  .btn-solid,
  .lead-bar .submit,
  .lead-bar-v2 .submit,
  .slider-arrow,
  .filter-chip,
  .side-dock-btn,
  .side-dock-tab {
    transition: none;
  }

  .service-card-v2:hover,
  .support-card-v2:hover,
  .support-card-v2:hover .photo,
  .price-card:hover,
  .review-track .quote-card:hover,
  .btn-outline:hover,
  .btn-solid:hover,
  .btn-outline:active,
  .btn-solid:active,
  .lead-bar .submit:hover,
  .lead-bar-v2 .submit:hover,
  .price-card:hover .cta,
  .slider-arrow:hover,
  .filter-chip:hover,
  .side-dock-btn:hover {
    transform: none;
  }

  .side-dock-tab:hover {
    transform: rotate(180deg);
  }

  .support-card-v2::after {
    transition: none;
  }
}
