:root {
  --fuchsia: #c2185b;
  --fuchsia-deep: #8f1244;
  --fuchsia-dark: #4b102c;
  --ink: #211b1e;
  --muted: #6e6569;
  --silver: #e8e8e8;
  --silver-soft: #f5f3f4;
  --pearl: #fbf9f8;
  --white: #ffffff;
  --line: rgba(33, 27, 30, 0.14);
  --shadow: 0 32px 80px rgba(66, 23, 41, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --header-height: 88px;
}

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

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

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

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(194, 24, 91, 0.35);
  outline-offset: 4px;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--fuchsia-deep);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--fuchsia-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: #e9a7c2;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 em,
h2 em {
  color: var(--fuchsia);
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.3;
  text-align: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button svg,
.text-link svg {
  flex: 0 0 auto;
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

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

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--fuchsia);
  box-shadow: 0 16px 35px rgba(194, 24, 91, 0.2);
}

.button-primary:hover {
  background: var(--fuchsia-deep);
  box-shadow: 0 20px 44px rgba(143, 18, 68, 0.27);
}

.button-light {
  color: var(--fuchsia-deep);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--fuchsia);
  font-size: 0.72rem;
}

.button-full {
  width: 100%;
}

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

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(251, 249, 248, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 36px rgba(33, 27, 30, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: inherit;
}

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

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--white);
  background: var(--fuchsia-deep);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.59rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.45vw, 24px);
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
  color: #51494c;
  font-size: 0.76rem;
  font-weight: 500;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--fuchsia);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 55px) 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 0 0 54%;
  z-index: -3;
  background: linear-gradient(150deg, #eee9e9 0%, #f7f4f4 52%, #e7e1e3 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto auto -30vw -25vw;
  z-index: -3;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(194, 24, 91, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding-top: 24px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.65rem, 6vw, 6.35rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.hero h1 em {
  display: block;
  margin-left: clamp(28px, 5vw, 78px);
  font-style: italic;
}

.hero-intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: #5d5458;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.button-hero {
  max-width: 570px;
  justify-content: flex-start;
  padding: 17px 22px;
  text-align: left;
}

.button-hero span {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.button-hero svg {
  margin-left: auto;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0 2px;
  color: #82777b;
  font-size: 0.75rem;
}

.microcopy svg {
  width: 16px;
  fill: none;
  stroke: var(--fuchsia-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  margin: 0 0 0 auto;
}

.hero-photo-frame {
  position: relative;
  height: min(68svh, 730px);
  min-height: 550px;
  overflow: hidden;
  box-shadow: 28px 34px 80px rgba(72, 41, 54, 0.19);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 11, 25, 0.24));
  content: "";
  pointer-events: none;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.photo-index {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1;
}

.hero-visual figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  bottom: 64px;
  left: -62px;
  z-index: 3;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  color: var(--fuchsia-deep);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 16px 50px rgba(62, 28, 43, 0.18);
}

.hero-seal svg {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  animation: seal-rotate 22s linear infinite;
}

.hero-seal text {
  fill: var(--fuchsia-deep);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
}

.hero-seal > span {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-style: italic;
}

.hero-orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(143, 18, 68, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 9%;
  right: -14%;
  width: 46vw;
  height: 46vw;
}

.hero-orbit-two {
  top: 20%;
  right: -8%;
  width: 33vw;
  height: 33vw;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #766b6f;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(33, 27, 30, 0.16);
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--fuchsia);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

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

@keyframes seal-rotate {
  to { transform: rotate(360deg); }
}

/* Mirror */
.section-dark {
  color: var(--white);
  background: var(--fuchsia-dark);
}

.mirror-section {
  position: relative;
  padding: 130px 0 120px;
  overflow: hidden;
}

.mirror-section::before {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-heading {
  max-width: 780px;
  margin-bottom: 62px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

.quote-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-track blockquote {
  position: relative;
  min-height: 265px;
  margin: 0;
  padding: 30px 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 220ms ease;
}

.quote-track blockquote:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-track blockquote:nth-child(1),
.quote-track blockquote:nth-child(2),
.quote-track blockquote:nth-child(3) {
  grid-column: span 2;
}

.quote-track blockquote:nth-child(4),
.quote-track blockquote:nth-child(5) {
  grid-column: span 3;
  min-height: 220px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.quote-track blockquote:hover {
  background: rgba(255, 255, 255, 0.06);
}

.quote-track blockquote > span {
  display: block;
  margin-bottom: 48px;
  color: #e8a6c0;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.quote-track blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.62rem);
  line-height: 1.35;
}

.mirror-closing {
  max-width: 850px;
  margin: 68px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.5;
  text-align: center;
}

.mirror-closing strong {
  color: var(--white);
  font-weight: 500;
}

/* Guide */
.guide-section {
  padding: 150px 0;
  background:
    linear-gradient(rgba(33, 27, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 27, 30, 0.035) 1px, transparent 1px),
    var(--silver-soft);
  background-size: 64px 64px;
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.05fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.guide-preview {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
}

.guide-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(194, 24, 91, 0.22), rgba(194, 24, 91, 0) 68%);
  border-radius: 50%;
  filter: blur(10px);
}

.book {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(360px, 80vw);
  min-height: 500px;
  color: var(--white);
  background: linear-gradient(145deg, #a5134c, #5e0c30);
  box-shadow:
    -24px 26px 0 rgba(113, 101, 106, 0.12),
    26px 40px 70px rgba(60, 16, 35, 0.28);
  transform: perspective(1200px) rotateY(8deg) rotateZ(-2deg);
}

.book::after {
  position: absolute;
  right: -13px;
  bottom: -8px;
  width: 13px;
  height: 96%;
  background: linear-gradient(90deg, #ded8d9, #fff 50%, #c9c1c4);
  content: "";
  transform: skewY(-44deg);
  transform-origin: left bottom;
}

.book-spine {
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(49, 6, 24, 0.18);
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 48px 40px 35px 52px;
  overflow: hidden;
}

.book-cover::before,
.book-cover::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.book-cover::before {
  top: 30px;
  right: -150px;
  width: 370px;
  height: 370px;
}

.book-cover::after {
  top: 92px;
  right: -91px;
  width: 250px;
  height: 250px;
}

.book-cover p,
.book-cover > span,
.book-cover strong,
.book-cover small {
  position: relative;
  z-index: 1;
}

.book-cover p {
  margin-bottom: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.book-cover .book-rule {
  width: 36px;
  height: 1px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.65);
}

.book-cover strong {
  max-width: 230px;
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.95;
}

.book-cover strong i {
  display: inline-block;
  font-size: 5rem;
  font-weight: 500;
  line-height: 0.65;
}

.book-cover > span {
  max-width: 225px;
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.45;
}

.book-cover small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-note {
  position: absolute;
  right: -6px;
  bottom: 42px;
  z-index: 3;
  padding: 13px 18px;
  color: var(--fuchsia-deep);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(48, 34, 40, 0.12);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-content h2 {
  margin-bottom: 25px;
  font-size: clamp(2.65rem, 4vw, 4.4rem);
}

.section-lead {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.guide-list {
  margin-bottom: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.guide-list > p {
  margin-bottom: 10px;
  font-weight: 600;
}

.guide-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  padding: 9px 0;
  color: #544c50;
  font-size: 0.9rem;
  line-height: 1.55;
}

.guide-list li span {
  color: var(--fuchsia);
  font-family: var(--serif);
  font-size: 0.77rem;
}

.lead-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(33, 27, 30, 0.1);
  box-shadow: 0 24px 60px rgba(49, 35, 41, 0.09);
}

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

.field {
  position: relative;
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #6b6266;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--pearl);
  border: 1px solid rgba(33, 27, 30, 0.16);
  border-radius: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:hover {
  border-color: rgba(143, 18, 68, 0.45);
}

.field input:focus {
  border-color: var(--fuchsia);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.09);
  outline: 0;
}

.field input[aria-invalid="true"] {
  border-color: #a00f36;
}

.field small {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: #a00f36;
  font-size: 0.7rem;
  line-height: 1.3;
}

.field small:not(:empty) {
  min-height: 1em;
}

.lead-form .button {
  min-height: 56px;
  margin-top: 2px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.form-status.is-success {
  color: #1e5e42;
  background: #edf8f3;
  border: 1px solid #bde3d2;
}

.form-status.is-error {
  color: #82112f;
  background: #fff0f3;
  border: 1px solid #efc0cb;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 13px 0 0;
  color: #81767b;
  font-size: 0.67rem;
  line-height: 1.5;
}

.form-privacy svg {
  flex: 0 0 auto;
  width: 14px;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* About */
.about-section {
  padding: 150px 0 0;
  background: var(--white);
}

.about-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.2fr);
  gap: clamp(70px, 11vw, 160px);
  padding-bottom: 115px;
}

.about-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.about-title h2 {
  max-width: 430px;
  margin-bottom: 32px;
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
}

.about-title h2 em {
  display: block;
  font-style: italic;
}

.signature {
  color: rgba(194, 24, 91, 0.25);
  font-family: var(--serif);
  font-size: 3.1rem;
  font-style: italic;
  transform: rotate(-8deg);
}

.about-story p {
  max-width: 700px;
  margin-bottom: 28px;
  color: #62595d;
  font-size: 1rem;
  line-height: 1.9;
}

.about-story .story-opening {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.55;
}

.about-story strong {
  color: var(--fuchsia-deep);
  font-weight: 500;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
  padding: 70px 0 115px;
  border-top: 1px solid var(--line);
}

.credentials-intro > span {
  color: var(--fuchsia-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credentials-intro p {
  max-width: 260px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.35;
}

.credentials ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.credentials li > span {
  color: var(--fuchsia);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.credentials li p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.credentials li strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Method */
.method-section {
  position: relative;
  padding: 145px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 20%, rgba(194, 24, 91, 0.28), transparent 30%),
    #24131b;
}

.method-section::after {
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.method-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 90px;
}

.method-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.method-intro h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}

.method-intro h2 em {
  display: block;
  color: #eda6c3;
  font-style: italic;
}

.method-intro > p:last-child {
  max-width: 480px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

.method-steps {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.method-steps article {
  display: grid;
  grid-template-columns: 165px 1fr;
  padding: 40px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  transition:
    background 200ms ease,
    padding 200ms ease;
}

.method-steps article:hover {
  padding-right: 30px;
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.045);
}

.method-number {
  color: #e79ab9;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.method-copy {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.method-copy > p {
  grid-column: 1 / -1;
  margin: 0 0 -26px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.method-copy > span {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}

/* Programs */
.programs-section {
  padding: 150px 0;
  background: var(--pearl);
}

.programs-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.programs-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

.programs-heading > p {
  max-width: 410px;
  margin-bottom: 10px;
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.program-card {
  display: flex;
  min-height: 550px;
  padding: 34px 28px 30px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition:
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.program-card:first-child {
  border-left: 1px solid var(--line);
}

.program-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.program-card-featured {
  padding: 0 0 30px;
  background: var(--white);
}

.program-card-featured .program-card-top,
.program-card-featured .program-card-body,
.program-card-featured .text-link {
  margin-inline: 28px;
}

.retreat-photo {
  position: relative;
  height: 185px;
  margin-bottom: 28px;
  overflow: hidden;
}

.retreat-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(44, 13, 27, 0.52));
  content: "";
}

.retreat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.program-card:hover .retreat-photo img {
  transform: scale(1.04);
}

.retreat-photo > span {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-bottom: 54px;
  color: var(--fuchsia-deep);
}

.program-card-featured .program-card-top {
  margin-bottom: 28px;
}

.program-card-top > span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.program-card-top > strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.program-card-top small {
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.program-card-body {
  margin-bottom: 36px;
}

.program-card-body h3 {
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 2.45vw, 2.5rem);
  line-height: 1.12;
}

.program-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.program-card-body .program-subtitle {
  margin-top: -14px;
  color: var(--fuchsia-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.program-card-body li {
  padding: 5px 9px;
  color: #64595e;
  background: var(--silver-soft);
  font-size: 0.66rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--fuchsia-deep);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

/* Experience */
.experience-section {
  padding: 135px 0;
  background: var(--white);
}

.experience-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.experience-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -32px;
}

.experience-heading h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.experience-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-grid article {
  min-height: 290px;
  padding: 32px 32px 28px;
  border: 1px solid var(--line);
  border-right: 0;
}

.experience-grid article:last-child {
  border-right: 1px solid var(--line);
}

.experience-grid article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--fuchsia);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.experience-grid h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.experience-grid p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.experience-grid small {
  display: block;
  margin-top: 24px;
  color: #9b8e93;
  font-size: 0.59rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* CTA */
.second-cta {
  position: relative;
  padding: 125px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, var(--fuchsia-deep), var(--fuchsia));
}

.second-cta::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.35;
}

.second-cta-orbit {
  position: absolute;
  top: -210px;
  right: -80px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.second-cta-orbit::before {
  position: absolute;
  inset: 72px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.second-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  text-align: center;
}

.second-cta .eyebrow {
  justify-content: center;
}

.second-cta h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
}

.second-cta-inner > p:not(.eyebrow) {
  max-width: 730px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

/* Contact */
.contact-section {
  padding: 145px 0;
  background:
    linear-gradient(115deg, transparent 0 70%, rgba(194, 24, 91, 0.04) 70%),
    var(--silver-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(80px, 12vw, 170px);
  align-items: center;
}

.contact-copy h2 {
  max-width: 730px;
  margin-bottom: 25px;
  font-size: clamp(3.1rem, 5.6vw, 5.7rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 42px 40px;
  flex-direction: column;
  color: var(--white);
  background: #28131d;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card::after {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.contact-monogram {
  margin: -28px 0 auto;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--serif);
  font-size: 7.4rem;
  letter-spacing: -0.1em;
  line-height: 1;
}

.contact-card p {
  margin-bottom: 18px;
  color: #e8a2bd;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card > span {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.79rem;
}

.contact-card a:hover {
  color: var(--white);
}

/* Footer */
.site-footer {
  padding: 85px 0 25px;
  color: var(--white);
  background: #160c11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.95fr 0.9fr;
  gap: 55px;
  padding-bottom: 70px;
}

.brand-footer .brand-mark {
  background: var(--fuchsia);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand > p {
  margin: 26px 0 0 56px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links p {
  margin-bottom: 20px;
  color: #dc8ead;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
  transition: color 160ms ease;
}

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

.footer-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-note p {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.4;
}

.footer-arrow {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-arrow:hover {
  color: #eca1bf;
  border-color: #eca1bf;
  transform: translateY(-3px);
}

.footer-arrow svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.64rem;
}

.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal][data-reveal-delay="1"] {
  transition-delay: 110ms;
}

[data-reveal][data-reveal-delay="2"] {
  transition-delay: 220ms;
}

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

/* Privacy page */
.legal-page {
  min-height: 100vh;
  background: var(--silver-soft);
}

.legal-header {
  position: static;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-main {
  padding: 90px 0 120px;
}

.legal-shell {
  max-width: 820px;
}

.legal-shell h1 {
  margin-bottom: 42px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.legal-shell h2 {
  margin: 42px 0 14px;
  font-size: 1.8rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell a {
  color: var(--fuchsia-deep);
  text-decoration: underline;
}

.legal-updated {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}

/* Tablet */
@media (max-width: 1060px) {
  :root {
    --header-height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px 9px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    margin-left: auto;
    background: var(--ink);
    transition:
      transform 180ms ease,
      width 180ms ease;
  }

  .nav-toggle > span:last-child {
    width: 18px;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    width: 25px;
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    width: 25px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 110px 24px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    background: rgba(251, 249, 248, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 200ms ease,
      transform 200ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 10px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    text-align: center;
  }

  .main-nav .button {
    width: min(380px, 100%);
    margin: 20px auto 0;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 6.6vw, 5.4rem);
  }

  .hero-photo-frame {
    height: 620px;
    min-height: 0;
  }

  .hero-seal {
    left: -40px;
    width: 105px;
    height: 105px;
  }

  .guide-grid {
    gap: 65px;
  }

  .guide-preview {
    min-height: 580px;
  }

  .preview-note {
    right: -20px;
  }

  .about-top {
    gap: 70px;
  }

  .method-copy {
    grid-template-columns: 0.75fr 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    border: 0;
  }

  .program-card {
    min-height: 0;
    padding: 34px;
    border: 1px solid var(--line);
  }

  .program-card-featured {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    column-gap: 34px;
    padding: 0 34px 0 0;
  }

  .program-card-featured .retreat-photo {
    grid-row: 1 / 4;
    height: 100%;
    min-height: 390px;
    margin: 0;
  }

  .program-card-featured .program-card-top,
  .program-card-featured .program-card-body,
  .program-card-featured .text-link {
    margin-inline: 0;
  }

  .program-card-featured .program-card-top {
    padding-top: 32px;
  }

  .program-card-featured .text-link {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 1fr;
  }

  .footer-note {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --container: min(100% - 32px, 620px);
  }

  .hero {
    padding: 118px 0 72px;
  }

  .hero::before {
    inset: 48% 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

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

  .hero-intro {
    font-size: 0.96rem;
  }

  .button-hero {
    width: 100%;
    flex-wrap: wrap;
    overflow: hidden;
  }

  .button-hero span {
    width: 100%;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .button-hero svg {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 28px);
  }

  .hero-photo-frame {
    height: 570px;
  }

  .hero-seal {
    bottom: 45px;
    left: -28px;
    width: 94px;
    height: 94px;
  }

  .scroll-cue {
    display: none;
  }

  .mirror-section,
  .guide-section,
  .method-section,
  .programs-section,
  .experience-section,
  .contact-section {
    padding: 95px 0;
  }

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

  .section-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .quote-track {
    display: flex;
    width: calc(100% + 16px);
    padding-bottom: 12px;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quote-track::-webkit-scrollbar {
    display: none;
  }

  .quote-track blockquote,
  .quote-track blockquote:nth-child(n) {
    min-width: 84%;
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    scroll-snap-align: start;
  }

  .quote-track blockquote:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mirror-closing {
    margin-top: 45px;
    text-align: left;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .guide-preview {
    min-height: 520px;
  }

  .book {
    width: min(320px, 82vw);
    min-height: 455px;
  }

  .book-cover {
    min-height: 455px;
    padding: 40px 30px 30px 44px;
  }

  .book-cover p {
    margin-bottom: 74px;
  }

  .preview-note {
    right: 0;
    bottom: 15px;
  }

  .guide-content h2 {
    font-size: clamp(2.55rem, 10.5vw, 4rem);
  }

  .lead-form {
    padding: 22px 18px;
  }

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

  .about-section {
    padding-top: 95px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 72px;
  }

  .about-title {
    position: static;
  }

  .about-title h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .credentials {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 55px 0 80px;
  }

  .credentials ul {
    grid-template-columns: 1fr;
  }

  .method-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 55px;
  }

  .method-intro .eyebrow {
    margin-bottom: 0;
  }

  .method-intro h2 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .method-steps article {
    grid-template-columns: 45px 1fr;
    padding: 32px 0;
  }

  .method-steps article:hover {
    padding: 32px 12px;
  }

  .method-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .method-copy > p {
    grid-column: auto;
    margin: 0 0 -9px;
  }

  .method-copy h3 {
    font-size: 2.3rem;
  }

  .programs-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .programs-heading h2 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .program-card {
    padding: 27px 22px;
  }

  .program-card-top {
    margin-bottom: 35px;
  }

  .program-card-featured {
    display: flex;
    padding: 0 22px 27px;
  }

  .program-card-featured .retreat-photo {
    width: calc(100% + 44px);
    height: 220px;
    min-height: 0;
    margin: 0 -22px 26px;
  }

  .program-card-featured .program-card-top {
    width: 100%;
    padding: 0;
  }

  .program-card-featured .text-link {
    margin-bottom: 0;
  }

  .experience-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-heading .eyebrow {
    margin-bottom: 0;
  }

  .experience-heading h2 {
    font-size: clamp(2.8rem, 11.5vw, 4.3rem);
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .experience-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .experience-grid article > span {
    margin-bottom: 25px;
  }

  .second-cta {
    padding: 90px 0;
  }

  .second-cta h2 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-copy h2 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .contact-card {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .legal-main {
    padding: 65px 0 90px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: calc(100% - 24px);
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

  .brand-copy small {
    font-size: 0.51rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-photo-frame {
    height: 500px;
  }

  .guide-preview {
    min-height: 480px;
  }

  .book-cover strong {
    font-size: 2.7rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
