:root {
  --ink: #152234;
  --green: #17344d;
  --green-dark: #17344d;
  --sage: #a8bac9;
  --cream: #edf3f6;
  --paper: #fbfaf6;
  --terracotta: #ad765f;
  --line: rgba(21, 34, 52, .16);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  height: 104px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, .94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.05; }
.brand span { font-family: var(--serif); font-size: clamp(31px, 2.4vw, 42px); }
.brand small {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(21, 34, 52, .68);
}
.main-nav { display: flex; gap: 29px; }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--terracotta);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 104px);
  display: grid;
  grid-template-columns: minmax(460px, 1.12fr) minmax(0, .88fr);
  align-items: center;
}
.hero-copy {
  padding: clamp(70px, 9vw, 140px) clamp(30px, 7.4vw, 118px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.hero h1, h2, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(56px, 6.4vw, 102px);
  line-height: .93;
}
.hero h1 em { color: var(--green); font-weight: 400; }
.hero-intro {
  max-width: 680px;
  margin: 38px 0 0;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(21, 34, 52, .8);
}
.hero-actions, .book-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--paper); background: var(--green); }
.button-primary:hover { background: var(--green-dark); }
.text-link { text-decoration: none; font-size: 13px; font-weight: 600; }
button.text-link {
  padding-left: 0;
  padding-right: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -2px); }
.hero-portrait {
  position: relative;
  min-height: 0;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  order: 1;
}
.portrait-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(21, 34, 52, .2));
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.92) contrast(.98);
}
.manifesto {
  padding: 115px clamp(30px, 9vw, 150px);
  background: var(--green);
  color: var(--paper);
  text-align: center;
}
.section-number { margin: 10px 0; font-size: 11px; color: var(--sage); }
.manifesto blockquote {
  max-width: 1050px;
  margin: 0 auto;
  font-size: clamp(37px, 4.4vw, 70px);
  line-height: 1.08;
}
.quote-source {
  margin: 34px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
}

.section-grid {
  padding: 135px clamp(30px, 9vw, 150px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 10vw, 180px);
}
.section-heading h2, .topics h2, .book-copy h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 5.7vw, 92px);
  line-height: 1.05;
}
.about-copy { padding-top: 32px; }
.about-copy p { max-width: 650px; color: rgba(21,34,52,.76); }
.about-copy .lead { margin-top: 0; font-family: var(--serif); font-size: 27px; line-height: 1.4; color: var(--ink); }
.about {
  grid-template-columns: 1fr;
  gap: 54px;
  text-align: center;
}
.about .section-heading h2 {
  max-width: 850px;
  margin: 0 auto;
}
.about-copy {
  max-width: 790px;
  margin: 0 auto;
  padding-top: 0;
  text-align: left;
}
.about-copy p {
  margin-left: auto;
  margin-right: auto;
}
.about-copy .lead {
  max-width: 790px;
  text-align: center;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.22;
}
.about-copy > p:not(.lead) {
  max-width: 690px;
  text-align: center;
}
.about .reveal-toggle {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.dark { display: inline-block; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); }
.inline-panel {
  max-width: 690px;
  margin: 28px auto 0;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows .55s ease, opacity .45s ease, transform .55s ease;
}
.inline-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.inline-panel-inner {
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: left;
}
.inline-panel-inner p:first-child { margin-top: 30px; }
.inline-panel-inner p:last-child { margin-bottom: 0; }
.inline-panel em {
  font-family: inherit;
  font-style: italic;
  color: inherit;
}
.reveal-toggle[aria-expanded="true"] span { transform: rotate(180deg); }

.book-section {
  padding: 110px clamp(30px, 9vw, 150px);
  background: var(--green-dark);
  color: var(--paper);
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 680px);
  gap: clamp(80px, 8vw, 150px);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.book-visual { min-height: 630px; position: relative; display: grid; place-items: center; }
.book-shadow {
  position: absolute;
  width: 350px;
  height: 537px;
  transform: rotate(7deg) translate(38px, 9px);
  background: rgba(0,0,0,.27);
  filter: blur(22px);
}
.book-cover-image {
  width: 350px;
  height: auto;
  aspect-ratio: 668 / 1024;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: -14px 16px 0 #b8ced9, 0 28px 55px rgba(0,0,0,.3);
  transform: rotate(-3deg);
}
.light { color: #d6b19e; }
.book-copy h2 { max-width: 730px; }
.book-copy > p:not(.eyebrow) { max-width: 620px; font-size: 19px; color: rgba(251,249,243,.72); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover { background: #fff; }
.light-link { color: var(--paper); }
.publication-toggle { margin-top: 28px; }
.light-panel {
  max-width: 900px;
  color: var(--paper);
}
.light-panel .inline-panel-inner { border-top-color: rgba(251,250,246,.25); }
.publication-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.publication-list li {
  padding: 17px 0;
  border-bottom: 1px solid rgba(251,250,246,.16);
}
.publication-list li:last-child { border-bottom: 0; }
.publication-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}
.publication-list span {
  display: block;
  margin-top: 5px;
  color: rgba(251,250,246,.7);
}
.chapter-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.chapter-card {
  display: flex;
  gap: 18px;
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(251,250,246,.18);
  background: rgba(251,250,246,.055);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.chapter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251,250,246,.34);
  background: rgba(251,250,246,.09);
}
.chapter-cover-link {
  flex: 0 0 84px;
  align-self: flex-start;
  text-decoration: none;
  position: relative;
}
.chapter-cover-link::before {
  content: "";
  position: absolute;
  inset: 7px -8px -7px 8px;
  background: #b8ced9;
  opacity: .88;
  transform: rotate(4deg);
}
.chapter-cover-link img {
  width: 84px;
  aspect-ratio: 668 / 1024;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(251,250,246,.55);
  box-shadow: 0 18px 35px rgba(0,0,0,.32);
  transform: rotate(-2deg);
  transition: transform .25s ease;
}
.chapter-card:nth-child(even) .chapter-cover-link::before { transform: rotate(-4deg); }
.chapter-card:nth-child(even) .chapter-cover-link img { transform: rotate(2deg); }
.chapter-card:hover .chapter-cover-link img { transform: rotate(0) translateY(-2px); }
.chapter-copy {
  min-width: 0;
  color: rgba(251,250,246,.76);
}
.chapter-meta {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #d6b19e;
}
.chapter-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 1.9vw, 34px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--paper);
}
.chapter-copy p:not(.chapter-meta) {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.45;
}
.chapter-copy em {
  font-family: inherit;
  font-style: italic;
  color: rgba(251,250,246,.82);
}
.chapter-copy a {
  display: inline-block;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 1px solid rgba(251,250,246,.55);
}
.chapter-copy a:hover { border-bottom-color: var(--paper); }

.topics { padding: 135px clamp(30px, 9vw, 150px); }
.topics-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.topics h2 { max-width: 850px; margin-left: auto; margin-right: auto; }
.topic-list {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.topic-list article {
  min-height: 335px;
  padding: 46px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, .82);
  box-shadow: 0 24px 70px rgba(21, 34, 52, .045);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.topic-list article::before {
  content: "";
  width: 42px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--terracotta);
  opacity: .65;
}
.topic-list article:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 34px 85px rgba(21, 34, 52, .1);
}
.topic-list h3 {
  max-width: 430px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(42px, 3.15vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
}
.topic-list p {
  max-width: 390px;
  margin: 0;
  color: rgba(21,34,52,.68);
}

.page-main { background: var(--paper); }
.page-hero {
  padding: clamp(90px, 12vw, 165px) clamp(30px, 9vw, 150px) clamp(70px, 9vw, 115px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 118px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}
.page-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: rgba(21, 34, 52, .74);
}
.page-hero .button { margin-top: 38px; }
.content-grid,
.feature-publication {
  padding: 105px clamp(30px, 9vw, 150px);
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(55px, 9vw, 150px);
  align-items: start;
}
.page-portrait {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(.86) contrast(.97);
}
.rich-text {
  max-width: 780px;
}
.rich-text .lead,
.rich-text h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(33px, 3.4vw, 55px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--ink);
}
.rich-text p {
  font-size: 18px;
  color: rgba(21,34,52,.74);
}
.cards-section {
  padding: 105px clamp(30px, 9vw, 150px);
  background: var(--cream);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.info-card {
  min-height: 320px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(21, 34, 52, .06);
}
.info-card span {
  display: inline-flex;
  min-width: 54px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(201, 111, 74, .38);
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.info-card h2 {
  margin: 46px 0 18px;
  font-family: var(--serif);
  font-size: clamp(31px, 2.7vw, 45px);
  font-weight: 400;
  line-height: 1.08;
}
.info-card p {
  margin: 0;
  color: rgba(21,34,52,.7);
}
.feature-publication {
  background: var(--cream);
  align-items: center;
}
.cta-strip {
  margin: 0 clamp(30px, 9vw, 150px) 105px;
  padding: 58px;
  background: var(--green);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-strip h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  line-height: 1.04;
}

.talks {
  background: var(--green-dark);
  color: var(--paper);
  grid-template-columns: 1fr;
  gap: 52px;
  text-align: center;
}
.talks .section-heading,
.talks-copy {
  max-width: 860px;
  margin: 0 auto;
}
.talks .eyebrow { color: #d6b19e; }
.talks .dark {
  border-bottom-color: rgba(251,250,246,.72);
  color: var(--paper);
}
.talks-copy { padding-top: 32px; }
.talks-copy .lead {
  margin-top: 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
  color: var(--paper);
}
.talks-copy ul {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.talks-copy li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(251,250,246,.22);
  color: rgba(251,250,246,.82);
  text-align: center;
}
.talks .inline-panel-inner { border-top-color: rgba(251,250,246,.22); }

.social-section { background: var(--paper); }
.social-section {
  grid-template-columns: 1fr;
  gap: 52px;
  text-align: center;
}
.social-section .section-heading,
.social-copy {
  max-width: 920px;
  margin: 0 auto;
}
.social-copy { padding-top: 32px; }
.social-copy .lead {
  margin-top: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
}
.social-card-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.social-card-list a {
  min-height: 150px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff 0%, var(--cream) 100%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(21, 34, 52, .055);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.social-card-list a::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(23,52,77,.08);
  transition: transform .22s ease, background .22s ease;
}
.social-card-list a:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(23,52,77,.22);
  box-shadow: 0 30px 75px rgba(21, 34, 52, .11);
}
.social-card-list a:hover::after {
  transform: scale(1.12);
  background: rgba(23,52,77,.12);
}
.social-card-list strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 3vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  position: relative;
  z-index: 1;
}
.social-card-list span {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(21,34,52,.62);
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.topic-list article.reveal:nth-child(2) { transition-delay: .08s; }
.topic-list article.reveal:nth-child(3) { transition-delay: .16s; }

.contact {
  padding: 125px clamp(30px, 12vw, 200px);
  color: var(--paper);
  background: var(--green-dark);
  text-align: center;
}
.contact h2 { max-width: 900px; margin: 0 auto; }
.contact > p:not(.eyebrow) { max-width: 620px; margin: 30px auto 38px; color: rgba(251,249,243,.67); font-size: 18px; }
.button-accent { background: var(--terracotta); color: #fff; }
.button-accent:hover { background: #da7a52; }

footer {
  padding: 55px clamp(30px, 7vw, 110px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--line);
}
footer strong { font-family: var(--serif); font-size: 25px; font-weight: 400; }
footer p { margin: 6px 0 0; font-size: 12px; color: rgba(21,34,52,.6); }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.social-links a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.social-links a:hover { background: var(--ink); color: var(--paper); }
.copyright { grid-column: 1 / -1; margin-top: 30px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy {
    min-height: 0;
    order: 1;
    padding: clamp(82px, 11vw, 118px) clamp(30px, 8vw, 95px) 70px;
  }
  .hero-portrait { min-height: 0; padding: 0; order: 2; }
  .section-grid, .book-section, .content-grid, .feature-publication { grid-template-columns: 1fr; }
  .section-grid { gap: 45px; }
  .topic-list, .cards-grid { grid-template-columns: 1fr; }
  .book-copy { order: -1; }
  .book-visual { min-height: 580px; }
}

@media (max-width: 700px) {
  .site-header { height: 76px; padding: 0 20px; }
  .brand span { font-size: 25px; }
  .brand small { display: none; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { height: 1px; width: 25px; background: var(--ink); transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    display: none;
    top: 76px;
    left: 0;
    right: 0;
    padding: 28px 24px 34px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 20px;
  }
  .main-nav.open { display: flex; }
  .hero-copy { padding: 78px 24px 58px; min-height: auto; }
  .hero h1 { font-size: clamp(54px, 16vw, 76px); }
  .hero-intro { font-size: 17px; }
  .hero-actions, .book-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-portrait { min-height: auto; padding: 0; }
  .portrait-frame { aspect-ratio: 16 / 9; }
  .portrait-frame img { object-position: 32% center; }
  .manifesto { padding: 78px 24px; grid-template-columns: 1fr; gap: 20px; }
  .manifesto blockquote { font-size: 38px; }
  .section-grid, .topics, .book-section { padding: 86px 24px; }
  .chapter-grid { grid-template-columns: 1fr; }
  .chapter-card { min-height: 0; }
  .about-copy .lead { font-size: 23px; }
  .talks-copy .lead { font-size: 23px; }
  .social-copy .lead { font-size: 23px; }
  .book-visual { min-height: 510px; transform: scale(.88); margin: -40px 0; }
  .topic-list { margin-top: 58px; }
  .topic-list article { min-height: 260px; padding: 30px 26px; }
  .topic-list article::before { margin-bottom: 26px; }
  .topic-list h3 { margin: 0 0 22px; font-size: clamp(40px, 12vw, 58px); }
  .content-grid, .feature-publication, .cards-section { padding: 78px 24px; }
  .social-card-list { grid-template-columns: 1fr; }
  .social-card-list a { min-height: 148px; }
  .page-hero { padding: 78px 24px 68px; }
  .page-hero h1 { font-size: clamp(54px, 16vw, 78px); }
  .info-card { min-height: auto; }
  .cta-strip {
    margin: 0 24px 78px;
    padding: 34px 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact { padding: 90px 24px; text-align: left; }
  footer { grid-template-columns: 1fr; padding: 48px 24px; }
  .social-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
