:root {
  --forest-sage-background: #f0faf4;
  --forest-sage-surface: #ffffff;
  --forest-sage-primary: #166534;
  --forest-sage-accent: #4ade80;
  --forest-sage-text: #052e16;
  --navy-950: var(--forest-sage-text);
  --navy-900: var(--forest-sage-primary);
  --navy-800: #18723c;
  --navy-700: #23854b;
  --gold-500: #22a653;
  --gold-400: var(--forest-sage-accent);
  --gold-200: #bbf7d0;
  --cream-100: var(--forest-sage-background);
  --cream-200: #e5f5eb;
  --white: #fff;
  --ink: var(--forest-sage-text);
  --muted: #4f6f5b;
  --line: #d8e9de;
  --shadow-sm: 0 12px 32px rgba(5, 46, 22, .08);
  --shadow-lg: 0 28px 70px rgba(5, 46, 22, .17);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1220px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-100);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2.2rem, 4.1vw, 4.6rem);
  line-height: 1.04;
}

h2 em,
h1 em {
  color: var(--gold-500);
  font-style: italic;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.35;
}

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

.section {
  padding: 96px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gold-400);
  color: var(--navy-950);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--navy-700);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--gold-500);
}

.eyebrow--light {
  color: rgba(255, 255, 255, .78);
}

.topbar {
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy-950);
  color: rgba(255, 255, 255, .75);
  font-size: .78rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.topbar p {
  margin: 0;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.topbar__links {
  display: flex;
  gap: 24px;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--gold-400);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22, 101, 52, .1);
  background: rgba(240, 250, 244, .96);
  transition: box-shadow var(--transition), background var(--transition);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(5, 46, 22, .08);
  background: rgba(255, 255, 255, .97);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 58px;
  place-items: center;
  background-color: var(--navy-900);
  -webkit-mask: url("../img/sps-logo.webp") center / contain no-repeat;
  mask: url("../img/sps-logo.webp") center / contain no-repeat;
  transition: background-color var(--transition);
}

.brand__book,
.brand__initials {
  display: none;
}

.brand__text {
  display: grid;
  color: var(--navy-900);
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: .08em;
}

.brand__text span {
  margin-top: 5px;
  color: var(--navy-700);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .24em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 27px);
}

.primary-nav a {
  position: relative;
  padding: 33px 0 30px;
  color: #355f46;
  font-size: .84rem;
  font-weight: 700;
  transition: color var(--transition);
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-500);
  content: "";
  transition: transform var(--transition);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--navy-900);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 10px;
  background: var(--navy-900);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 126px));
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background: url("../img/bookshelf-hero.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 34, 16, .96) 0%, rgba(5, 46, 22, .86) 47%, rgba(5, 46, 22, .28) 78%, rgba(5, 46, 22, .26) 100%),
    linear-gradient(0deg, rgba(3, 34, 16, .66) 0%, transparent 42%);
}

.hero__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 78px;
  padding-bottom: 105px;
  gap: 40px;
}

.hero__copy {
  width: min(850px, 75%);
}

.hero h1 {
  margin: 0 0 30px;
  font-size: clamp(3.6rem, 6.5vw, 7rem);
  line-height: .88;
}

.hero h1 em {
  display: inline-block;
  margin-left: clamp(28px, 7vw, 105px);
  color: var(--gold-400);
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--gold-400);
  box-shadow: 0 12px 30px rgba(74, 222, 128, .18);
  color: var(--navy-950);
}

.button--gold:hover {
  background: #86efac;
  box-shadow: 0 14px 36px rgba(74, 222, 128, .28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

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

.button--navy {
  background: var(--navy-900);
  color: var(--white);
}

.button--navy:hover {
  background: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.hero__milestone {
  display: flex;
  width: 205px;
  align-items: center;
  gap: 15px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  background: rgba(5, 46, 22, .64);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.milestone__number {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.hero__milestone strong {
  display: block;
  font-size: .83rem;
  line-height: 1.25;
}

.hero__milestone p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .75rem;
  letter-spacing: .08em;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__scroll span {
  position: relative;
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .28);
}

.hero__scroll span::after {
  position: absolute;
  inset: 0;
  transform: translateY(-100%);
  background: var(--gold-400);
  content: "";
  animation: scroll-line 1.9s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

.intro {
  background: var(--cream-100);
}

.intro__grid,
.audience__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: clamp(55px, 8vw, 130px);
}

.section-heading h2 {
  max-width: 760px;
}

.intro__copy {
  padding-top: 56px;
}

.intro__copy p,
.audience__detail p {
  color: var(--muted);
}

.intro__copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  border-bottom: 1px solid var(--gold-500);
  color: var(--navy-900);
  font-size: .84rem;
  font-weight: 800;
  transition: color var(--transition), gap var(--transition);
}

.text-link:hover {
  gap: 14px;
  color: var(--navy-700);
}

.strengths {
  background: var(--white);
}

.strengths__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.strength {
  min-height: 290px;
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.strength:last-child {
  border-right: 0;
}

.strength:hover {
  background: var(--cream-100);
}

.strength__index,
.category-card__number {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: .86rem;
  font-weight: 800;
}

.strength h3 {
  margin: 76px 0 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.strength p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.categories-preview {
  background: var(--cream-200);
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 58px;
  gap: 32px;
}

.section-heading--row h2 {
  max-width: 720px;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(22, 101, 52, .1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(5, 46, 22, .035);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-200);
  box-shadow: var(--shadow-sm);
}

.category-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.category-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  opacity: .74;
  filter: sepia(.2) saturate(.8);
}

.category-card h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.category-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.category-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-800);
  font-size: .8rem;
  font-weight: 800;
}

.category-card--accent {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.category-card--accent h3,
.category-card--accent > a {
  color: var(--white);
}

.category-card--accent p {
  color: rgba(255, 255, 255, .68);
}

.category-card--accent img {
  filter: invert(85%) sepia(60%) saturate(530%) hue-rotate(345deg);
}

.button--mobile {
  display: none;
}

.service-band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.service-band::before {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(74, 222, 128, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(74, 222, 128, .025), 0 0 0 140px rgba(74, 222, 128, .02);
  content: "";
}

.service-band__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
}

.service-band__visual {
  position: relative;
}

.service-band__visual img {
  width: 100%;
  min-height: 510px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.service-band__label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 275px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-sm);
  background: rgba(5, 46, 22, .82);
  backdrop-filter: blur(12px);
}

.service-band__label span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-400);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-band__label strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.service-band h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.service-band__copy > p:not(.eyebrow) {
  margin: 26px 0;
  color: rgba(255, 255, 255, .68);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, .48);
  border-radius: 50%;
  color: var(--gold-400);
  content: "✓";
  font-size: .72rem;
}

.audience {
  background: var(--white);
}

.audience__detail {
  padding-top: 44px;
}

.cta {
  padding: 0 0 112px;
  background: var(--white);
}

.cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 50px;
  padding: 60px clamp(32px, 6vw, 78px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta__panel::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 400px;
  height: 400px;
  border: 60px solid rgba(74, 222, 128, .07);
  border-radius: 50%;
  content: "";
}

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

.cta h2 {
  max-width: 730px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
}

.cta__actions {
  justify-content: flex-end;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, .7);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr;
  gap: 80px;
  padding: 82px 0 65px;
}

.brand--footer .brand__text {
  color: var(--white);
}

.brand--footer .brand__mark {
  background-color: var(--gold-400);
}

.brand--footer .brand__text span {
  color: var(--gold-400);
}

.footer__brand p {
  max-width: 420px;
  margin: 25px 0 0;
  font-size: .9rem;
}

.site-footer h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links a,
.footer__contact a {
  font-size: .88rem;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold-400);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__contact address {
  margin-bottom: 15px;
  font-size: .86rem;
  font-style: normal;
  line-height: 1.75;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .75rem;
}

.footer__bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 46px;
  height: 46px;
  transform: translateY(100px);
  place-items: center;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  background: var(--gold-400);
  box-shadow: var(--shadow-sm);
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 900;
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1), opacity 650ms ease;
}

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

@media (max-width: 1120px) {
  .header__inner {
    min-height: 78px;
  }

  .brand__text {
    display: none;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    padding: 28px 0 26px;
    font-size: .78rem;
  }

  .primary-nav a::after {
    bottom: 18px;
  }

  .hero__copy {
    width: 76%;
  }

  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength {
    border-bottom: 1px solid var(--line);
  }

  .strength:nth-child(2) {
    border-right: 0;
  }

  .strength:nth-child(n+3) {
    border-bottom: 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 74px;
  }

  .brand__text {
    display: grid;
  }

  .nav-toggle {
    display: block;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

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

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    transform: translateX(100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 24px 40px;
    overflow-y: auto;
    background: var(--cream-100);
    transition: transform 300ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.28rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: calc(100svh - 74px);
  }

  .hero__media {
    background-image: url("../img/bookshelf-hero-sm.webp");
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(3, 34, 16, .94), rgba(3, 34, 16, .67));
  }

  .hero__content {
    align-items: flex-start;
    padding-top: 70px;
    padding-bottom: 94px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 em {
    margin-left: 0;
  }

  .hero__milestone {
    position: absolute;
    right: 20px;
    bottom: 70px;
    width: auto;
    padding: 10px 13px;
  }

  .hero__milestone .milestone__number {
    font-size: 2rem;
  }

  .hero__milestone div {
    display: none;
  }

  .hero__scroll {
    left: 20px;
    transform: none;
  }

  .intro__grid,
  .audience__grid,
  .service-band__grid,
  .cta__panel,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .intro__grid,
  .audience__grid {
    gap: 30px;
  }

  .intro__copy,
  .audience__detail {
    padding-top: 0;
  }

  .service-band {
    padding: 82px 0;
  }

  .service-band__visual img {
    min-height: 390px;
  }

  .cta__panel {
    gap: 30px;
  }

  .cta__actions {
    justify-content: flex-start;
  }

  .footer__main {
    gap: 42px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.3rem);
  }

  .section {
    padding: 70px 0;
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__text strong {
    font-size: .9rem;
  }

  .brand__text span {
    font-size: .56rem;
  }

  .hero__content {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16.5vw, 5.3rem);
  }

  .hero__lead {
    font-size: .98rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__milestone {
    display: none;
  }

  .strengths__grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .strength {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .strength:last-child {
    border-bottom: 0 !important;
  }

  .strength h3 {
    margin-top: 36px;
  }

  .section-heading--row {
    margin-bottom: 36px;
  }

  .button--desktop {
    display: none;
  }

  .button--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
  }

  .category-card {
    min-height: 300px;
  }

  .service-band__visual img {
    min-height: 310px;
  }

  .service-band__label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .cta {
    padding-bottom: 70px;
  }

  .cta__panel {
    padding: 42px 25px;
    border-radius: var(--radius-md);
  }

  .cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer__main {
    padding-top: 65px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 0;
  }
}

.enquiry-section {
  background: var(--cream-200);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: start;
  gap: 70px;
}

.enquiry-aside {
  position: sticky;
  top: 120px;
}

.enquiry-aside h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.7rem);
}

.enquiry-aside > ul {
  display: grid;
  gap: 0;
  margin: 35px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.enquiry-aside > ul li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.enquiry-aside > ul span {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: .78rem;
}

.enquiry-aside > ul p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.enquiry-aside__contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
}

.enquiry-aside__contact span {
  margin-bottom: 9px;
  color: var(--gold-400);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.enquiry-aside__contact a {
  font-size: .88rem;
}

.form-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-notice {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 20px;
  margin-bottom: 38px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--cream-100);
}

.form-notice strong {
  color: var(--navy-900);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-notice p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 800;
}

.field label span {
  color: #a65232;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c9ddd0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 125px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #73877b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .13);
}

.field-error {
  display: none;
  margin-top: 5px;
  color: #a63d2f;
  font-size: .73rem;
}

.field.is-invalid .field-error {
  display: block;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b95343;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 25px;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
}

.form-actions button:disabled {
  opacity: .65;
  cursor: wait;
}

.form-success {
  min-height: 440px;
  padding: 60px 35px;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-950);
  font-size: 1.6rem;
  font-weight: 900;
}

.form-success h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.form-success p {
  max-width: 580px;
  margin: 20px auto 28px;
  color: var(--muted);
}

.contact-section {
  background: var(--cream-100);
}

.contact-heading {
  margin-bottom: 45px;
}

.contact-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

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

.contact-card {
  display: flex;
  min-height: 330px;
  align-items: flex-start;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(5, 46, 22, .045);
}

.contact-card__label {
  color: var(--gold-500);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 55px 0 16px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.contact-card address {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .95rem;
  font-style: normal;
}

.contact-card__primary {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
  word-break: break-word;
}

.contact-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .85rem;
}

.contact-card--pending {
  border-style: dashed;
  background: var(--cream-100);
}

.contact-card--pending strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.contact-card--cta {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.contact-card--cta h3,
.contact-card--cta p {
  color: var(--white);
}

.contact-card--cta p {
  color: rgba(255, 255, 255, .66);
}

.contact-card--cta .button {
  margin-top: auto;
}

.contact-map {
  padding: 0 0 110px;
  background: var(--cream-100);
}

.contact-map__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 55px;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  color: var(--white);
}

.contact-map h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
}

.contact-map p:not(.eyebrow) {
  max-width: 690px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .64);
}

@media (max-width: 900px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .enquiry-aside {
    position: static;
  }
}

@media (max-width: 650px) {
  .form-card {
    padding: 25px 18px;
    border-radius: var(--radius-md);
  }

  .form-notice,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .contact-grid,
  .contact-map__inner {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 300px;
    padding: 28px;
  }

  .contact-map {
    padding-bottom: 70px;
  }

  .contact-map__inner {
    padding: 38px 25px;
  }
}

.error-page {
  min-height: 100svh;
  background: var(--navy-950);
}

.error-header {
  position: relative;
  border-color: rgba(255, 255, 255, .12);
}

.error-main {
  display: grid;
  min-height: calc(100svh - 88px);
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 34, 16, .96), rgba(3, 34, 16, .72)),
    url("../img/bookshelf-hero.webp") center / cover no-repeat;
  color: var(--white);
}

.error-main__inner {
  position: relative;
  padding: 90px 0;
}

.error-code {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: .07;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(12rem, 32vw, 30rem);
  line-height: .7;
  pointer-events: none;
}

.error-main h1 {
  position: relative;
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
}

.error-main__inner > p:not(.eyebrow) {
  position: relative;
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .7);
}

@media (max-width: 620px) {
  .error-header .button {
    min-height: 44px;
    padding: 10px 15px;
  }

  .error-code {
    top: 18%;
    right: -25px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* Inner pages */
.page-hero {
  position: relative;
  padding: 105px 0 98px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(74, 222, 128, .16), transparent 22%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: -150px;
  bottom: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, .018), 0 0 0 150px rgba(255, 255, 255, .012);
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
}

.page-hero__copy h1 {
  max-width: 900px;
  margin: 0 0 25px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 6.6vw, 7rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .95;
}

.page-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.08rem;
}

.page-hero__marker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.page-hero__marker span {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.page-hero__marker i {
  height: 1px;
  background: rgba(255, 255, 255, .24);
}

.page-hero__marker strong {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .84);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-hero__stat {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
}

.page-hero__stat strong {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 500;
  line-height: .72;
}

.page-hero__stat span {
  max-width: 130px;
  color: rgba(255, 255, 255, .74);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-story__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.about-story__visual {
  position: relative;
}

.about-story__visual img {
  width: 100%;
  min-height: 570px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: -20px;
  bottom: 25px;
  max-width: 245px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--gold-400);
  box-shadow: var(--shadow-sm);
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-story__copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.about-story__copy .lead {
  margin-top: 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.55;
}

.about-story__copy p:not(.lead, .eyebrow) {
  color: var(--muted);
}

.mission-section {
  padding: 105px 0;
  background: var(--navy-900);
  color: var(--white);
}

.mission-section__grid {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  align-items: start;
  gap: 80px;
}

.quote-mark {
  display: block;
  height: 110px;
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
}

.mission-section blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 4.3rem);
  letter-spacing: -.025em;
  line-height: 1.18;
}

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

.value-card {
  min-height: 290px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-card > span {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: .85rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 70px 0 13px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.history-section {
  background: var(--cream-200);
}

.history-section__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 100px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 53px;
  width: 1px;
  background: rgba(22, 101, 52, .16);
  content: "";
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 25px;
  padding: 0 0 55px;
}

.timeline article:last-child {
  padding-bottom: 0;
}

.timeline time,
.timeline > article > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 105px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gold-200);
  border-radius: 999px;
  background: var(--cream-100);
  color: var(--navy-900);
  font-size: .75rem;
  font-weight: 800;
}

.timeline h3 {
  margin: 2px 0 8px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.catalogue-section {
  background: var(--cream-100);
}

.catalogue-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
  padding: 25px 0 35px;
  border-bottom: 1px solid var(--line);
  gap: 40px;
}

.catalogue-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.book-category {
  display: grid;
  min-height: 395px;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(5, 46, 22, .045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.book-category:hover {
  transform: translateY(-5px);
  border-color: var(--gold-200);
  box-shadow: var(--shadow-sm);
}

.book-category__no {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: .85rem;
  font-weight: 800;
}

.book-category img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  opacity: .72;
}

.book-category h2 {
  grid-column: 1 / -1;
  margin: 48px 0 12px;
  font-size: 1.48rem;
  letter-spacing: -.02em;
  line-height: 1.24;
}

.book-category p {
  grid-column: 1 / -1;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: .9rem;
}

.book-category a {
  grid-column: 1 / -1;
  align-self: end;
  color: var(--navy-800);
  font-size: .8rem;
  font-weight: 800;
}

.book-category--featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.book-category--featured h2,
.book-category--featured a {
  color: var(--white);
}

.book-category--featured p {
  color: rgba(255, 255, 255, .68);
}

.book-category--featured img {
  filter: invert(85%) sepia(60%) saturate(530%) hue-rotate(345deg);
}

.catalogue-steps {
  padding: 105px 0;
  background: var(--navy-950);
}

.catalogue-steps .section-heading {
  margin-bottom: 50px;
}

.catalogue-steps h2 {
  max-width: 830px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  list-style: none;
  overflow: hidden;
}

.steps-grid li {
  min-height: 250px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.steps-grid li:last-child {
  border-right: 0;
}

.steps-grid span {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: .85rem;
}

.steps-grid h3 {
  margin: 55px 0 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
}

@media (max-width: 980px) {
  .page-hero__grid,
  .about-story__grid,
  .mission-section__grid,
  .history-section__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-hero__marker {
    max-width: 450px;
  }

  .page-hero__stat {
    justify-content: flex-start;
  }

  .about-story__visual img {
    min-height: 430px;
  }

  .mission-section__grid {
    gap: 15px;
  }

  .quote-mark {
    display: none;
  }

  .value-grid,
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-section__grid {
    gap: 55px;
  }
}

@media (max-width: 660px) {
  .page-hero {
    padding: 80px 0 75px;
  }

  .page-hero__copy h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .page-hero__copy p:not(.eyebrow) {
    font-size: .98rem;
  }

  .page-hero__marker {
    padding: 22px;
  }

  .about-story__visual img {
    min-height: 330px;
  }

  .image-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .mission-section,
  .catalogue-steps {
    padding: 75px 0;
  }

  .mission-section blockquote {
    font-size: 2rem;
  }

  .value-grid,
  .books-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .book-category {
    min-height: 320px;
  }

  .catalogue-intro {
    align-items: stretch;
    flex-direction: column;
  }

  .timeline::before {
    left: 0;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 18px;
  }

  .timeline time,
  .timeline > article > span {
    width: 95px;
  }

  .steps-grid li {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .steps-grid li:last-child {
    border-bottom: 0;
  }
}

.service-hero-note {
  max-width: 390px;
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.service-hero-note img {
  width: 75px;
  height: 75px;
  margin-bottom: 32px;
  filter: invert(85%) sepia(60%) saturate(530%) hue-rotate(345deg);
}

.service-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
}

.section-heading__aside {
  max-width: 370px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: .9rem;
}

.services-list {
  background: var(--cream-100);
}

.service-row {
  display: grid;
  grid-template-columns: 60px 100px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row__number {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: .85rem;
  font-weight: 800;
}

.service-row__icon {
  display: grid;
  width: 85px;
  height: 85px;
  place-items: center;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-row__icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  opacity: .72;
}

.service-row h3 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.service-row p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-process {
  padding: 110px 0;
  background: var(--navy-900);
  color: var(--white);
}

.service-process__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 110px;
}

.service-process h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.service-process__copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .64);
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list span {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: .85rem;
}

.process-list h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
}

.promise-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
  padding: 65px;
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  background: var(--cream-200);
}

.promise-card h2 {
  font-size: clamp(2.2rem, 3.7vw, 4rem);
}

.promise-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.publisher-section {
  background: var(--white);
}

.publisher-section__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 90px;
}

.publisher-section__copy h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
}

.publisher-section__copy > p:not(.eyebrow) {
  margin: 26px 0 30px;
  color: var(--muted);
}

.publisher-placeholder {
  display: grid;
  min-height: 430px;
  place-content: center;
  padding: 45px;
  border: 2px dashed rgba(22, 101, 52, .18);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  text-align: center;
}

.publisher-placeholder img {
  width: 82px;
  height: 82px;
  margin: 0 auto 25px;
  opacity: .56;
}

.publisher-placeholder strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.publisher-placeholder p {
  max-width: 390px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: .88rem;
}

.publisher-query {
  padding: 100px 0;
  background: var(--navy-950);
  color: var(--white);
}

.publisher-query__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 100px;
}

.publisher-query h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.publisher-query__list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.publisher-query__list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  min-height: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.publisher-query__list span {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: .8rem;
}

.publisher-query__list strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .service-hero-note {
    justify-self: start;
  }

  .service-row {
    grid-template-columns: 50px 85px 1fr;
  }

  .service-row .button {
    grid-column: 3;
    justify-self: start;
  }

  .service-process__grid,
  .promise-card,
  .publisher-section__grid,
  .publisher-query__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    grid-template-columns: 38px 65px 1fr;
    align-items: start;
    gap: 14px;
    padding: 30px 0;
  }

  .service-row__icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .service-row__icon img {
    width: 40px;
    height: 40px;
  }

  .service-row > div:nth-of-type(2) {
    grid-column: 2 / -1;
  }

  .service-row .button {
    grid-column: 2 / -1;
  }

  .service-process,
  .publisher-query {
    padding: 75px 0;
  }

  .promise-card {
    padding: 38px 25px;
  }

  .publisher-placeholder {
    min-height: 350px;
    padding: 30px;
  }
}
