/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1.5px solid transparent;
  border-radius: var(--radius-control);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--lg {
  min-height: 54px;
  padding: 0.95rem 1.7rem;
  font-size: 1.02rem;
}

.btn--block {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-group--center {
  justify-content: center;
}

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

.btn--primary:hover {
  background: var(--ink-hover);
  border-color: var(--ink-hover);
  box-shadow: 0 8px 20px rgba(43, 42, 40, 0.18);
}

.btn--mint {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--mint-ink);
}

.btn--mint:hover {
  background: var(--mint-soft);
  border-color: var(--mint-soft);
}

.btn--outline {
  background: transparent;
  border-color: rgba(43, 42, 40, 0.28);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn--ghost-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ───────── Header & navigation ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(31, 43, 36, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Wordmark: book icon + name set in the site font */
.logo__mark {
  height: 44px;
  width: auto;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.logo__sub {
  margin-top: 0.22rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--green-ink);
}

.contact-placeholder {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.nav__link:hover {
  background: var(--tint);
}

.nav__link.is-active {
  color: var(--green-ink);
  font-weight: 600;
}

.nav__trigger .icon {
  transition: transform var(--dur) var(--ease);
}

.nav__item.is-open > .nav__trigger .icon {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 50;
}

/* Hover bridge so the menu doesn't close while crossing the gap */
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

@media (hover: hover) and (min-width: 992px) {
  .nav__item[data-dropdown]:hover > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav__item.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  color: var(--ink);
}

.nav__dropdown a:hover {
  background: var(--tint-soft);
  color: var(--green-ink);
}

/* Services mega menu — grouped by stage */
.mega {
  left: 50%;
  width: min(880px, calc(100vw - 2.5rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  padding: 1rem;
  transform: translate(-50%, 6px);
}

/* Centre the mega menu on the header, not on the Services item */
@media (min-width: 992px) {
  .site-header__inner {
    position: relative;
  }

  .nav__item--mega {
    position: static;
  }

  .mega {
    top: calc(100% - 8px);
  }

  .nav__item--mega[data-dropdown]:hover > .mega.nav__dropdown,
  .nav__item--mega[data-dropdown].is-open > .mega.nav__dropdown {
    transform: translate(-50%, 0);
  }
}

.mega__col {
  padding: 0.35rem;
}

.mega__stage {
  margin: 0 0 0.4rem;
  padding: 0 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-ink);
}

.mega a strong {
  display: block;
  font-weight: 600;
}

.mega a span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--white);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ───────── Home hero ───────── */
.home-hero {
  background: var(--hero-wash);
  padding: 4.5rem 0 0;
  text-align: center;
  overflow: hidden;
}

.home-hero__inner {
  max-width: 940px;
  margin: 0 auto;
}

.home-hero__title {
  margin-bottom: 1.35rem;
  font-size: clamp(2.3rem, 5.4vw, 4.05rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.home-hero__hl {
  display: inline-block;
  background: var(--mint);
  color: var(--mint-ink);
  padding: 0.02em 0.26em 0.08em;
  border-radius: 0.2em;
  transform: rotate(-1.5deg);
}

.home-hero__text {
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 40rem;
}

.home-hero .btn-group {
  justify-content: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-top: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-proof li,
.assurance-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-proof .icon,
.assurance-list .icon {
  color: var(--green-ink);
}

/* The shelf: covers lean on a shared ledge and drift slowly left */
.hero-books {
  position: relative;
  margin-top: 3.5rem;
  padding: 0.5rem 0 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-books__track {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
  width: max-content;
  padding: 0 0.5rem;
  animation: marquee 60s linear infinite;
}

.hero-books:hover .hero-books__track {
  animation-play-state: paused;
}

.hero-books__track img {
  width: 124px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px 7px 7px 3px;
  box-shadow: var(--shadow-book), inset 4px 0 0 rgba(0, 0, 0, 0.12);
  transform: rotate(var(--tilt, 0deg)) translateY(calc(var(--drop, 0) * 18px));
  transform-origin: bottom center;
}

.hero-books__shelf {
  height: 18px;
  margin-top: -2px;
  background: linear-gradient(180deg, #cfe6d8 0%, #bcdcc8 60%, #a9d0b8 100%);
  box-shadow: 0 10px 24px rgba(31, 92, 63, 0.18);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ───────── Press band ───────── */
.press-band {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--ink);
  color: var(--white);
  padding: 1.15rem 0 1.15rem max(var(--container-pad), calc((100vw - var(--container-width)) / 2 + var(--container-pad)));
}

.press-band__label {
  flex-shrink: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.press-band__viewport {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.press-band__track,
.press-band__dup {
  display: flex;
  align-items: center;
  gap: 3.25rem;
}

.press-band__track {
  width: max-content;
  animation: marquee 34s linear infinite;
}

.press-band__dup {
  padding-left: 0.25rem;
}

.press-band img {
  height: 22px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

/* ───────── Services by stage ───────── */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stage-col {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.35rem 0.6rem 0.6rem;
}

.stage-col__head {
  display: flex;
  gap: 0.8rem;
  padding: 0 0.75rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.stage-col__n,
.stage-rail__n,
.journey__n {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
}

.stage-col__head h3 {
  font-size: 1.2rem;
  margin: 0.2rem 0 0.3rem;
}

.stage-col__head p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.stage-col__list {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.5rem;
}

.svc-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0.75rem;
  border-radius: 12px;
  transition: background-color var(--dur) var(--ease);
}

.svc-row strong {
  display: block;
  font-weight: 600;
  line-height: 1.3;
}

.svc-row__text > span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.svc-row .icon {
  margin-top: 0.15rem;
  color: var(--green-ink);
  transition: transform var(--dur) var(--ease);
}

.svc-row:hover {
  background: var(--tint-soft);
}

.svc-row:hover .icon {
  transform: translateX(3px);
}

/* ───────── Why panel (forest) ───────── */
.panel-green {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-panel);
  padding: clamp(2rem, 5vw, 3.75rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.panel-green::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 196, 137, 0.35), transparent 70%);
  pointer-events: none;
}

.panel-green > * {
  position: relative;
  z-index: 1;
}

.panel-green h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.home-why__text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  font-size: 1.1rem;
}

.tile-glass-list {
  display: grid;
  gap: 0.85rem;
}

.tile-glass {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--mint);
  border-radius: var(--radius-control);
  padding: 1.1rem 1.25rem;
}

.tile-glass h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

.tile-glass p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ───────── Process tabs ───────── */
.home-process {
  background: var(--tint);
}

.process-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.process-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.45rem 1.05rem 0.45rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-green);
  background: var(--white);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.process-tab__n {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tint);
  font-size: 0.82rem;
}

.process-tab:hover {
  border-color: var(--mint);
}

.process-tab.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.process-tab.is-active .process-tab__n {
  background: var(--mint);
  color: var(--mint-ink);
}

.process-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.process-panel.is-active {
  animation: panel-in 320ms var(--ease);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.process-panel__step {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-ink);
  margin-bottom: 0.4rem;
}

.process-panel h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.process-panel p {
  color: var(--muted);
}

/* Shared tick list */
.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.98rem;
}

.check-list .icon {
  margin-top: 0.2rem;
  color: var(--green-ink);
}

.process-panel .check-list {
  padding: 1.25rem 1.4rem;
  background: var(--tint-soft);
  border-radius: var(--radius-control);
}

/* ───────── Formats ───────── */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.format {
  text-align: center;
}

.format h3 {
  margin: 1.4rem 0 0.4rem;
}

.format p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 16rem;
  margin: 0 auto;
}

.format__art {
  position: relative;
  display: grid;
  place-items: center;
  height: 250px;
  border-radius: var(--radius-card);
  background: var(--tint);
}

.format__art img {
  width: 118px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-book);
}

.format__art--paperback img {
  border-radius: 2px 5px 5px 2px;
  box-shadow: var(--shadow-book), inset 3px 0 0 rgba(0, 0, 0, 0.15);
}

.format__art--hardcover img {
  width: 128px;
  border-radius: 3px 6px 6px 3px;
  box-shadow: var(--shadow-book), inset 8px 0 0 rgba(0, 0, 0, 0.18), 5px 5px 0 -1px #f3f1ea, 5px 5px 0 0 #d8d4c8;
}

.format__art--ebook img {
  width: 112px;
  border-radius: 4px;
  border: 7px solid #1d1e1c;
  border-bottom-width: 18px;
  box-sizing: content-box;
  border-radius: 14px;
}

.format__art--audio {
  padding-bottom: 36px;
}

.format__art--audio img {
  width: 138px;
  aspect-ratio: 1;
  border-radius: 14px;
}

.format__wave {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  padding: 6px 10px;
  background: var(--forest);
  border-radius: var(--radius-pill);
  transform: translateX(-50%);
  box-sizing: content-box;
}

.format__wave i {
  width: 3px;
  border-radius: 2px;
  background: var(--mint);
}

.format__wave i:nth-child(1) { height: 40%; }
.format__wave i:nth-child(2) { height: 85%; }
.format__wave i:nth-child(3) { height: 55%; }
.format__wave i:nth-child(4) { height: 100%; }
.format__wave i:nth-child(5) { height: 60%; }
.format__wave i:nth-child(6) { height: 80%; }
.format__wave i:nth-child(7) { height: 35%; }

.formats__retail {
  margin: 2.75rem auto 0;
  max-width: 44rem;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 1.02rem;
  color: var(--muted);
  border: 1px dashed var(--line-green);
  border-radius: var(--radius-pill);
}

.formats__retail strong {
  color: var(--ink);
  font-weight: 600;
}

/* ───────── Books ───────── */
.books-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.25rem;
}

.book-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px 8px 8px 3px;
  box-shadow: var(--shadow-book), inset 4px 0 0 rgba(0, 0, 0, 0.12);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.book-card:hover img {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 22px 36px rgba(31, 43, 36, 0.22);
}

.book-card.is-hidden {
  display: none;
}

.book-card__meta {
  margin-top: 0.85rem;
}

.book-card__title {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
}

.book-card__author {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.genre-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 2rem;
}

.genre-chip {
  min-height: 42px;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 600;
  border: 1px solid var(--line-green);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.genre-chip:hover {
  border-color: var(--mint);
}

.genre-chip.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* ───────── Testimonials ───────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.25rem 2rem 2rem;
  border: 1px solid var(--line);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  right: 1.5rem;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: var(--tint);
}

.testimonial-card__stars {
  color: var(--star);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author strong {
  display: block;
  font-weight: 700;
}

.testimonial-card__author span {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ───────── Plans ───────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem 1.75rem;
}

.plan-card h3 {
  font-size: 1.15rem;
}

.plan-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 1.75rem;
  margin: 0;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: var(--mint-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.plan-card__price {
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 1rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.plan-card__price span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
}

.plan-card .check-list {
  flex: 1;
  margin-bottom: 1.75rem;
}

.plan-card.is-featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.plan-card.is-featured h3,
.plan-card.is-featured .plan-card__price {
  color: var(--white);
}

.plan-card.is-featured .plan-card__price {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.plan-card.is-featured .plan-card__price span {
  color: rgba(255, 255, 255, 0.75);
}

.plan-card.is-featured .check-list .icon {
  color: var(--mint);
}

/* Comparison table */
.compare-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.compare {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.compare th,
.compare td {
  padding: 1.05rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare tbody tr:last-child > * {
  border-bottom: 0;
}

.compare thead th {
  font-size: 1.05rem;
  font-weight: 700;
}

.compare thead th span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.compare tbody th {
  width: 18%;
  font-weight: 600;
  color: var(--muted);
}

.compare .is-featured {
  background: var(--tint-soft);
}

.compare__none {
  color: #8a8986;
}

/* ───────── Contact & forms ───────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
}

.contact-list li,
.cta-block__meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.contact-list .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-ink);
}

.contact-list a:hover {
  color: var(--green-ink);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid #d5d9d7;
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%232b2a28' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M5.5 8l4.5 4.5L14.5 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8a8986;
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: #aeb5b1;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green-ink);
  box-shadow: 0 0 0 3px rgba(96, 196, 137, 0.35);
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-status {
  font-size: 0.93rem;
  line-height: 1.5;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-control);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: var(--danger-bg);
  color: var(--danger);
}

.form-status.is-success {
  background: var(--tint);
  color: var(--forest-deep);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.7rem 0.95rem;
  border: 1px solid #d5d9d7;
  border-radius: var(--radius-control);
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.choice input {
  accent-color: var(--forest);
  width: 18px;
  height: 18px;
}

.choice:hover {
  border-color: var(--mint);
}

.choice:has(input:checked) {
  border-color: var(--forest);
  background: var(--tint-soft);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.choice-grid[aria-invalid="true"] .choice {
  border-color: var(--danger);
}

/* ───────── Service pages ───────── */
.service-hero {
  background: var(--hero-wash);
  padding: 3.5rem 0 4.5rem;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--green-ink);
  text-decoration: underline;
}

.breadcrumb [aria-current] {
  color: var(--green-ink);
  font-weight: 600;
}

.service-hero h1 {
  margin-bottom: 1.1rem;
}

.service-hero__lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 36rem;
}

.assurance-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-form {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hero-form h2 {
  font-size: 1.45rem;
}

.hero-form__lead {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.35rem 0 1.25rem;
}

.hero-form .form {
  gap: 0.75rem;
}

.hero-form textarea {
  min-height: 96px;
}

/* Stage rail: where this service fits */
.stage-rail-wrap {
  border-bottom: 1px solid var(--line);
}

.stage-rail__title {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.stage-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  counter-reset: none;
}

.stage-rail__item {
  position: relative;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--white);
}

.stage-rail__item > strong {
  display: block;
  margin: 0.7rem 0 0.45rem;
  font-size: 1.05rem;
}

.stage-rail__item ul {
  display: grid;
  gap: 0.2rem;
  font-size: 0.92rem;
}

.stage-rail__item a {
  color: var(--muted);
}

.stage-rail__item a:hover {
  color: var(--green-ink);
  text-decoration: underline;
}

.stage-rail__n {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  background: var(--tint);
  color: var(--green-ink);
}

.stage-rail__item.is-current {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.stage-rail__item.is-current .stage-rail__n {
  background: var(--mint);
  color: var(--mint-ink);
}

.stage-rail__item.is-current a {
  color: rgba(255, 255, 255, 0.78);
}

.stage-rail__item.is-current a:hover {
  color: var(--white);
}

.stage-rail__here {
  font-weight: 700;
  color: var(--mint-soft);
}

.service-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.service-body .prose {
  margin: 0;
}

.included-card {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  background: var(--tint-soft);
  border: 1px solid var(--line-green);
  border-radius: var(--radius-card);
  padding: 1.75rem;
}

.included-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.included-list {
  display: grid;
  gap: 1.1rem;
}

.included-list li {
  display: flex;
  gap: 0.8rem;
}

.included-list .icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
}

.included-list h3 {
  font-size: 1.02rem;
  margin: 0.15rem 0 0.2rem;
}

.included-list p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ───────── Page hero & prose ───────── */
.page-hero {
  background: var(--hero-wash);
  padding: 4.5rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero p {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  margin: 2.5rem 0 0.8rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #444340;
}

.legal-note {
  padding: 0.85rem 1.1rem;
  border-left: 3px solid var(--mint);
  background: var(--tint-soft);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  font-weight: 500;
}

/* ───────── FAQ ───────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.faq-item__h {
  font-size: inherit;
  letter-spacing: normal;
}

.faq-item__q {
  width: 100%;
  min-height: 60px;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  border-radius: var(--radius-card);
}

.faq-item__sign {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tint);
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.faq-item__sign::before,
.faq-item__sign::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-ink);
  transform: translate(-50%, -50%);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.faq-item__sign::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item:hover {
  border-color: var(--line-green);
}

.faq-item.is-open {
  border-color: var(--line-green);
  box-shadow: var(--shadow-sm);
}

.faq-item.is-open .faq-item__sign {
  background: var(--forest);
}

.faq-item.is-open .faq-item__sign::before,
.faq-item.is-open .faq-item__sign::after {
  background: var(--white);
}

.faq-item.is-open .faq-item__sign::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__a {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  max-width: 44rem;
}

/* ───────── Modal ───────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 34, 28, 0.55);
  backdrop-filter: blur(3px);
  animation: fade-in var(--dur) var(--ease);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: var(--white);
  border-radius: var(--radius-panel);
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  max-height: calc(100vh - 2rem);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  animation: dialog-in 260ms var(--ease);
}

.modal__dialog:focus {
  outline: none;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--muted);
  transition: background-color var(--dur) var(--ease);
}

.modal__close:hover {
  background: var(--tint);
  color: var(--ink);
}

.modal__dialog h2 {
  margin-bottom: 0.4rem;
  padding-right: 2.5rem;
  font-size: 1.8rem;
}

.modal__lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ───────── Floating CTAs ───────── */
.side-cta {
  position: fixed;
  right: 0;
  top: 45%;
  z-index: 900;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--forest);
  color: var(--white);
  padding: 1rem 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 10px 10px 0;
  transition: background-color var(--dur) var(--ease), padding var(--dur) var(--ease);
}

.side-cta:hover {
  background: var(--forest-deep);
  padding-bottom: 1.25rem;
}

.mobile-cta {
  display: none;
}

/* ───────── Split CTA + wizard ───────── */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.cta-block {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-panel);
  padding: clamp(2rem, 4vw, 3rem);
}

.cta-block h2 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 14ch;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
}

.cta-block__meta {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.cta-block__meta .icon {
  color: var(--mint);
}

.cta-block__meta a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.cta-block__meta a:hover {
  text-decoration-color: var(--white);
}

.wizard-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.wizard-step {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: grid;
  gap: 1rem;
}

.wizard-card__progress {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-ink);
}

.wizard-card__title {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.wizard-card__title + * {
  clear: both;
}

.wizard-card .choice-grid {
  margin-bottom: 0.25rem;
}

.wizard-card__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
}

/* ───────── Footer ───────── */
.site-footer {
  background: #dcebe2;
  border-top: 1px solid var(--line-green);
  padding: 4rem 0 1.75rem;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-green);
}

.footer-cta__label {
  margin: 0 0 0.3rem;
  font-weight: 600;
  color: var(--green-ink);
}

.footer-cta__email {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.footer-cta__email:hover {
  color: var(--green-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col__title {
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-col--services ul {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: #3e3d3a;
}

.footer-col a:hover {
  color: var(--green-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.logo--footer .logo__mark {
  height: 40px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #3e3d3a;
  margin-top: 1rem;
  max-width: 24rem;
}

.footer-brand__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-brand__address .icon {
  margin-top: 0.2rem;
  color: var(--green-ink);
}

.footer-bottom {
  border-top: 1px solid var(--line-green);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #3e3d3a;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom a:hover {
  color: var(--green-ink);
  text-decoration: underline;
}

/* ───────── Shared grids ───────── */
.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.media-block h2 {
  margin-bottom: 1.25rem;
}

.media-block p {
  color: var(--muted);
  font-size: 1.08rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--mint);
}

.value-card h3 {
  margin-bottom: 0.55rem;
}

.value-card p {
  color: var(--muted);
}

/* Numbered journey — only used where content is a real sequence */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.journey--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}

.journey li {
  position: relative;
  padding-top: 0.25rem;
}

.journey li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 52px;
  right: -0.75rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-green) 0 6px, transparent 6px 12px);
}

.journey__n {
  width: 40px;
  height: 40px;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.journey h3 {
  margin-bottom: 0.45rem;
}

.journey p {
  color: var(--muted);
  font-size: 0.98rem;
}

.cover-stack {
  position: relative;
  height: 420px;
}

.cover-stack img {
  position: absolute;
  width: 46%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px 8px 8px 3px;
  box-shadow: var(--shadow-book), inset 4px 0 0 rgba(0, 0, 0, 0.12);
}

.cover-stack img:nth-child(1) {
  left: 4%;
  top: 12%;
  transform: rotate(-7deg);
}

.cover-stack img:nth-child(2) {
  left: 27%;
  top: 0;
  z-index: 2;
}

.cover-stack img:nth-child(3) {
  right: 4%;
  top: 14%;
  transform: rotate(6deg);
}

.cover-stack::before {
  content: "";
  position: absolute;
  inset: 22% 0 0;
  border-radius: var(--radius-panel);
  background: var(--tint);
}
