:root {
  --slate: #5c6a80;
  --slate-deep: #4d5a70;
  --lavender: #cecfe3;
  --logo-blue: #6b7bb1;
  --yellow: #feefb1;
  --ink: #343232;
  --cream: #fbfaf7;
  --white: #ffffff;
  --header-height: 5.25rem;
  --content-width: 74rem;
  --display: "Avenir Next Rounded", "Trebuchet MS", "Segoe UI", sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  border-color: rgba(92, 106, 128, 0.12);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 0.6rem 2rem rgba(52, 50, 50, 0.06);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--content-width));
  height: 100%;
  margin: 0 auto;
}

.nav-brand {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0.3rem 1.4rem rgba(52, 50, 50, 0.08);
}

.nav-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--logo-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-contact {
  padding: 0.65rem 1.1rem;
  border-radius: 99rem;
  color: var(--white);
  background: var(--slate);
}

.nav-links .nav-contact::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.6rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.38rem 0;
  background: currentColor;
  transition: transform 250ms ease, opacity 200ms ease;
}

.section {
  position: relative;
  min-height: 44rem;
  padding: clamp(6.5rem, 10vw, 9.5rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.section-light {
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(circle at 8% 10%, rgba(206, 207, 227, 0.28), transparent 23rem);
}

.section-dark {
  color: var(--white);
  background-color: var(--slate);
  background-image: radial-gradient(circle at 92% 8%, rgba(206, 207, 227, 0.13), transparent 25rem);
}

.section-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.hero {
  display: grid;
  min-height: max(48rem, 100svh);
  padding-top: calc(var(--header-height) + 4rem);
  place-items: center;
}

.hero-layout {
  grid-template-columns: minmax(19rem, 0.88fr) minmax(0, 1.12fr);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  color: var(--slate);
}

.section h2 {
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--logo-blue);
}

.section-subtitle {
  margin: 1rem 0 2.25rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.section-copy {
  max-width: 39rem;
}

.section-copy p {
  margin: 0 0 1.1rem;
}

.section-copy strong {
  font-weight: 600;
}

.visual-column {
  position: relative;
  display: grid;
  place-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.image-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.logo-frame {
  display: grid;
  place-items: center;
  background: var(--white);
  box-shadow: 0 2rem 5rem rgba(52, 50, 50, 0.12);
}

.hero-logo-frame {
  width: min(100%, 28rem);
  aspect-ratio: 1;
  padding: clamp(1rem, 3vw, 2rem);
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-frame {
  width: min(100%, 30rem);
  aspect-ratio: 1;
  background: var(--lavender);
  box-shadow: 0 2rem 4.5rem rgba(52, 50, 50, 0.16);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.photo-frame:hover img {
  transform: scale(1.035);
}

.offset-frame {
  transform: translateY(1.5rem);
}

.portrait-frame img {
  object-position: center 30%;
}

.petal {
  position: absolute;
  z-index: -1;
  width: 8rem;
  height: 4rem;
  border: 1px solid rgba(107, 123, 177, 0.38);
  border-radius: 100% 0 100% 0;
}

.petal-one {
  top: -1rem;
  left: 6%;
  transform: rotate(35deg);
}

.petal-two {
  right: 2%;
  bottom: 0;
  transform: rotate(-145deg);
}

.petal-three {
  right: -1rem;
  bottom: -1rem;
  width: 10rem;
  height: 5rem;
  transform: rotate(-25deg);
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-hero {
  top: -12rem;
  right: -10rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(107, 123, 177, 0.18);
  box-shadow: inset 0 0 0 6rem rgba(206, 207, 227, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(92, 106, 128, 0.45);
  color: var(--slate);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 220ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.text-link-light,
.section-dark .text-link {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.book-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
  font-style: italic;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 99rem;
  font-family: var(--display);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

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

.button-light {
  color: var(--slate-deep);
  background: var(--white);
  box-shadow: 0 0.8rem 2rem rgba(52, 50, 50, 0.1);
}

.button-light:hover {
  background: var(--yellow);
  box-shadow: 0 1rem 2.5rem rgba(52, 50, 50, 0.16);
}

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

.button-outline:hover {
  color: var(--slate-deep);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 1rem 2.5rem rgba(52, 50, 50, 0.16);
}

.about-section {
  background-image: radial-gradient(circle at 90% 45%, rgba(206, 207, 227, 0.42), transparent 28rem);
}

.line-flower {
  position: absolute;
  right: -3rem;
  bottom: 4rem;
  width: 17rem;
  height: 17rem;
  opacity: 0.24;
}

.line-flower::after {
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.line-flower span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6rem;
  height: 9rem;
  border: 1px solid var(--logo-blue);
  border-radius: 50%;
  transform-origin: 50% 0;
}

.line-flower span:nth-child(1) { transform: rotate(0deg) translate(-50%, -100%); }
.line-flower span:nth-child(2) { transform: rotate(72deg) translate(-50%, -100%); }
.line-flower span:nth-child(3) { transform: rotate(144deg) translate(-50%, -100%); }
.line-flower span:nth-child(4) { transform: rotate(216deg) translate(-50%, -100%); }
.line-flower span:nth-child(5) { transform: rotate(288deg) translate(-50%, -100%); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 8rem);
}

.contact-intro {
  max-width: 45rem;
}

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

.contact-details > a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  font-size: 0.88rem;
}

.social-links a {
  font-weight: 600;
}

.social-links span {
  margin-left: 0.25rem;
  font-weight: 300;
  opacity: 0.84;
}

.contact-form {
  max-width: 48rem;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.field-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.field-group label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 1px 0 var(--yellow);
}

.field-group input[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: var(--yellow);
}

.field-error {
  min-height: 1.2rem;
  color: var(--yellow);
  font-size: 0.76rem;
  line-height: 1.4;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.submit-button {
  min-width: 9rem;
  border: 0;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: var(--yellow);
}

.form-privacy-note {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  line-height: 1.55;
}

.form-privacy-note a {
  border-bottom: 1px solid currentColor;
  color: var(--white);
}

.contact-logo-frame {
  width: min(100%, 22rem);
  aspect-ratio: 1;
  padding: 1.4rem;
}

.contact-logo-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-visual > p {
  max-width: 18rem;
  margin: 1.5rem auto 0;
  font-style: italic;
  text-align: center;
}

@media (min-width: 901px) {
  .contact-layout {
    align-items: start;
  }
}

.site-footer {
  padding: 2.2rem 0;
  color: var(--white);
  background: var(--slate-deep);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 3rem), var(--content-width));
  margin: 0 auto;
  gap: 2rem;
  font-size: 0.75rem;
}

.footer-shell p {
  margin: 0;
  opacity: 0.78;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-link-button,
.inline-consent-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--yellow);
}

.consent-panel {
  position: fixed;
  z-index: 900;
  bottom: 1.25rem;
  left: 1.25rem;
  width: min(31rem, calc(100vw - 2.5rem));
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(92, 106, 128, 0.2);
  border-radius: 1.25rem;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 1.25rem 4rem rgba(52, 50, 50, 0.22);
}

.consent-panel[hidden] {
  display: none;
}

.consent-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--logo-blue);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consent-panel h2 {
  margin: 0;
  color: var(--slate);
  font-family: var(--display);
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.25;
}

.consent-panel > p:not(.consent-eyebrow) {
  margin: 0.8rem 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.consent-actions button,
.consent-actions a {
  display: grid;
  min-height: 3.15rem;
  padding: 0.65rem;
  place-items: center;
  border: 1px solid var(--slate);
  border-radius: 0.7rem;
  color: var(--slate);
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.consent-actions button:hover,
.consent-actions a:hover {
  color: var(--white);
  background: var(--slate);
  transform: translateY(-2px);
}

.privacy-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(206, 207, 227, 0.62), transparent 24rem),
    var(--cream);
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), 74rem);
  min-height: 6.5rem;
  margin: 0 auto;
  gap: 2rem;
}

.privacy-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
}

.privacy-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}

.privacy-back {
  color: var(--slate);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
}

.privacy-main {
  padding: 4rem 0 7rem;
}

.privacy-article {
  width: min(calc(100% - 3rem), 52rem);
  margin: 0 auto;
}

.privacy-intro {
  margin-bottom: 4.5rem;
}

.privacy-intro h1 {
  max-width: 45rem;
  margin: 0.35rem 0 0.75rem;
  color: var(--slate);
  font-family: var(--display);
  font-size: clamp(2.7rem, 8vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.privacy-updated {
  margin: 1.4rem 0 0;
  color: var(--logo-blue);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
}

.privacy-lead {
  max-width: 45rem;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.privacy-article section {
  padding: 2.3rem 0;
  border-top: 1px solid rgba(92, 106, 128, 0.2);
}

.privacy-article h2 {
  margin: 0 0 1rem;
  color: var(--slate);
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.25;
}

.privacy-article h3 {
  margin: 0 0 0.75rem;
  color: var(--slate);
  font-family: var(--display);
  font-size: 1.05rem;
}

.privacy-article p,
.privacy-article li {
  max-width: 48rem;
}

.privacy-article a,
.inline-consent-button {
  color: var(--logo-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.privacy-card {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(92, 106, 128, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.68);
}

.privacy-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.privacy-table-wrap {
  max-width: 100%;
  margin: 1.75rem 0;
  overflow-x: auto;
  border: 1px solid rgba(92, 106, 128, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.privacy-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  font-size: 0.84rem;
  line-height: 1.55;
}

.privacy-table th,
.privacy-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(92, 106, 128, 0.16);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  color: var(--white);
  background: var(--slate);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.privacy-table tbody tr:last-child td {
  border-bottom: 0;
}

.privacy-table code {
  color: var(--slate-deep);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 4.75rem;
  }

  .nav-shell {
    width: min(calc(100% - 2rem), var(--content-width));
  }

  .nav-brand {
    width: 3.25rem;
    height: 3.25rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

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

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    height: calc(100dvh - var(--header-height));
    align-content: start;
    justify-items: center;
    gap: clamp(0.65rem, 2.5dvh, 1.15rem);
    padding: clamp(1.25rem, 4dvh, 2rem) 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    visibility: hidden;
    background: rgba(251, 250, 247, 0.98);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links .nav-contact {
    margin-top: 0.5rem;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
  }

  .section {
    min-height: auto;
    padding: 6.5rem 0;
  }

  .section-shell {
    width: min(calc(100% - 2.5rem), 40rem);
  }

  .split-layout,
  .hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.75rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero .visual-column {
    order: 2;
  }

  .hero .content-column {
    order: 1;
  }

  .visual-first .visual-column {
    order: 2;
  }

  .visual-first .content-column {
    order: 1;
  }

  .hero-logo-frame {
    width: min(84vw, 24rem);
  }

  .photo-frame {
    width: min(82vw, 27rem);
  }

  .offset-frame {
    transform: none;
  }

  .contact-visual {
    order: -1;
  }

  .contact-logo-frame {
    width: min(72vw, 20rem);
    margin-inline: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .privacy-main {
    padding-top: 2rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .section {
    padding: 5.75rem 0;
  }

  .section-shell {
    width: min(calc(100% - 2rem), 35rem);
  }

  .split-layout .visual-column {
    order: -1;
  }

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

  .section h2 {
    font-size: clamp(2.7rem, 14vw, 3.7rem);
  }

  .section-subtitle {
    margin-bottom: 1.75rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .book-link-wrap,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .book-link-wrap .button {
    width: 100%;
  }

  .social-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .consent-panel {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

  .consent-actions button,
  .consent-actions a {
    min-height: 2.8rem;
  }

  .privacy-header,
  .privacy-article {
    width: min(calc(100% - 2rem), 52rem);
  }

  .privacy-header {
    min-height: 5.25rem;
  }

  .privacy-brand span {
    display: none;
  }
}

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

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

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