/* ========================================
   ORLA — PHARO COLLECTION II
   Luxury Beauty Studio
======================================== */


/* ========================================
   1. DESIGN TOKENS
======================================== */

:root {
  --orla-ivory: #f4efe7;
  --orla-soft-ivory: #ebe3d8;
  --orla-limestone: #d8cbb9;
  --orla-sand: #b9aa95;
  --orla-oak: #9d8061;
  --orla-brass: #94714e;
  --orla-charcoal: #26231f;
  --orla-muted: #6f685f;
  --orla-white: #fffdf9;
  --orla-black: #171512;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", Arial, sans-serif;

  --page-gutter: clamp(1.4rem, 4vw, 5rem);
  --section-space: clamp(6rem, 12vw, 11rem);

  --header-height: 5.5rem;

  --transition-fast: 220ms ease;
  --transition-medium: 500ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 900ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* ========================================
   2. RESET
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--orla-ivory);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;

  color: var(--orla-charcoal);
  background: var(--orla-ivory);

  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin: 0;
}

address {
  font-style: normal;
}

::selection {
  color: var(--orla-white);
  background: var(--orla-brass);
}


/* ========================================
   3. ACCESSIBILITY
======================================== */

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;

  padding: 0.8rem 1rem;

  color: var(--orla-white);
  background: var(--orla-black);

  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}


/* ========================================
   4. SITE HEADER
======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  width: 100%;
  min-height: var(--header-height);
  padding: 0 var(--page-gutter);

  color: var(--orla-white);

  transition:
    color var(--transition-medium),
    background-color var(--transition-medium),
    backdrop-filter var(--transition-medium),
    box-shadow var(--transition-medium);
}

.site-header.is-scrolled {
  color: var(--orla-charcoal);
  background: rgba(244, 239, 231, 0.88);

  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);

  box-shadow: 0 1px 0 rgba(38, 35, 31, 0.08);
}

.site-header__brand {
  justify-self: start;

  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.site-header__collection {
  justify-self: center;

  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.27em;
  text-transform: uppercase;

  opacity: 0.76;
}

.site-header__menu-button {
  position: relative;
  z-index: 1002;

  justify-self: end;

  display: grid;
  gap: 0.42rem;

  width: 2.25rem;
  padding: 0.45rem 0;

  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-button span {
  display: block;
  width: 100%;
  height: 1px;

  background: currentColor;

  transform-origin: center;
  transition:
    transform var(--transition-medium),
    opacity var(--transition-medium);
}

.site-header__menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(0.23rem) rotate(45deg);
}

.site-header__menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-0.23rem) rotate(-45deg);
}


/* ========================================
   5. FULLSCREEN NAVIGATION
======================================== */

.site-navigation {
  position: fixed;
  inset: 0;
  z-index: 1001;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.5vh, 1.4rem);

  padding: 7rem 2rem 4rem;

  color: var(--orla-charcoal);
  background:
    linear-gradient(
      135deg,
      rgba(244, 239, 231, 0.98),
      rgba(227, 216, 201, 0.98)
    );

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition:
    opacity var(--transition-medium),
    visibility var(--transition-medium);
}

.site-navigation.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-navigation a {
  position: relative;

  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5.7rem);
  font-weight: 400;
  line-height: 0.95;

  opacity: 0;
  transform: translateY(1.5rem);

  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow),
    color var(--transition-fast);
}

.site-navigation.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.site-navigation.is-open a:nth-child(1) {
  transition-delay: 80ms;
}

.site-navigation.is-open a:nth-child(2) {
  transition-delay: 130ms;
}

.site-navigation.is-open a:nth-child(3) {
  transition-delay: 180ms;
}

.site-navigation.is-open a:nth-child(4) {
  transition-delay: 230ms;
}

.site-navigation.is-open a:nth-child(5) {
  transition-delay: 280ms;
}

.site-navigation.is-open a:nth-child(6) {
  transition-delay: 330ms;
}

.site-navigation a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;

  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ========================================
   6. GLOBAL CHAPTER SYSTEM
======================================== */

.chapter {
  position: relative;
  min-height: 100svh;
  overflow: hidden;

  isolation: isolate;
}

.chapter__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.chapter__media--full {
  width: 100%;
  height: 100%;
}

.chapter__image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.025);
  transition: transform 8s ease-out;
}

.chapter.is-visible .chapter__image {
  transform: scale(1);
}

.chapter__veil {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 18, 15, 0.48) 0%,
      rgba(20, 18, 15, 0.2) 40%,
      rgba(20, 18, 15, 0.03) 72%,
      rgba(20, 18, 15, 0) 100%
    );
}

.chapter__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: min(38rem, 100%);
  min-height: 100svh;
  padding:
    calc(var(--header-height) + 3rem)
    var(--page-gutter)
    5rem;

  color: var(--orla-white);
}

.chapter__content--left {
  margin-right: auto;
}

.chapter__content--right {
  margin-left: auto;
  text-align: left;
}

.chapter__content--right + .chapter__media .chapter__veil {
  background:
    linear-gradient(
      270deg,
      rgba(20, 18, 15, 0.5) 0%,
      rgba(20, 18, 15, 0.2) 42%,
      rgba(20, 18, 15, 0.03) 72%,
      rgba(20, 18, 15, 0) 100%
    );
}

.chapter__number {
  margin-bottom: 1rem;

  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.08em;

  opacity: 0.74;
}

.chapter__eyebrow {
  margin-bottom: 1.3rem;

  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  opacity: 0.84;
}

.chapter__title {
  max-width: 9ch;

  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.035em;
}

.chapter__copy {
  max-width: 32rem;
  margin-top: 1.8rem;

  font-size: clamp(0.86rem, 1.05vw, 1rem);
  line-height: 1.85;
  letter-spacing: 0.015em;

  opacity: 0.88;
}


/* ========================================
   7. ARRIVAL
======================================== */

.chapter--arrival {
  min-height: 100svh;
  color: var(--orla-white);
}

.chapter--arrival .chapter__image {
  object-position: center bottom;
}

.chapter--arrival .chapter__veil {
  background:
    linear-gradient(
      90deg,
      rgba(22, 18, 14, 0.5) 0%,
      rgba(22, 18, 14, 0.18) 42%,
      rgba(22, 18, 14, 0.02) 74%
    ),
    linear-gradient(
      0deg,
      rgba(18, 15, 12, 0.25) 0%,
      transparent 38%
    );
}

.chapter__content--arrival {
  justify-content: center;
  width: min(48rem, 100%);
}

.arrival-title {
  display: flex;
  flex-direction: column;

  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 7.5vw, 8.7rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.arrival-title span:last-child {
  margin-left: clamp(0rem, 5vw, 5.2rem);
  margin-top: 0.25rem;

  font-style: italic;
}

.arrival-mark {
  position: absolute;
  right: var(--page-gutter);
  bottom: clamp(2.5rem, 5vw, 5rem);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;

  color: var(--orla-white);
  text-align: right;
}

.arrival-mark span {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  letter-spacing: 0.23em;
}

.arrival-mark small {
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  opacity: 0.72;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;

  color: var(--orla-white);

  transform: translateX(-50%);
}

.scroll-cue > span:first-child {
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-cue__line {
  width: 1px;
  height: 3.5rem;

  background:
    linear-gradient(
      to bottom,
      var(--orla-white) 0 50%,
      rgba(255, 255, 255, 0.2) 50% 100%
    );

  background-size: 100% 200%;

  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    background-position: 0 100%;
  }

  50% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 -100%;
  }
}


/* ========================================
   8. STUDIO
======================================== */

.chapter--studio .chapter__image {
  object-position: center center;
}

.chapter--studio .chapter__veil {
  background:
    linear-gradient(
      270deg,
      rgba(28, 24, 19, 0.5) 0%,
      rgba(28, 24, 19, 0.2) 38%,
      rgba(28, 24, 19, 0.03) 72%
    );
}


/* ========================================
   9. EDITORIAL STATEMENT
======================================== */

.editorial-statement {
  position: relative;

  display: grid;
  place-items: center;

  min-height: 80svh;
  padding: var(--section-space) var(--page-gutter);

  text-align: center;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(255, 255, 255, 0.62),
      transparent 48%
    ),
    var(--orla-ivory);
}

.editorial-statement::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 1px;
  height: 5rem;

  background: rgba(38, 35, 31, 0.22);

  transform: translateX(-50%);
}

.editorial-statement__label {
  margin-bottom: 2rem;

  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: var(--orla-muted);
}

.editorial-statement__quote {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.editorial-statement__copy {
  max-width: 36rem;
  margin-top: 2rem;

  color: var(--orla-muted);

  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.9;
}


/* ========================================
   10. CONSULTATION
======================================== */

.chapter--consultation .chapter__image {
  object-position: center center;
}

.chapter--consultation .chapter__veil {
  background:
    linear-gradient(
      90deg,
      rgba(27, 23, 19, 0.53) 0%,
      rgba(27, 23, 19, 0.23) 40%,
      rgba(27, 23, 19, 0.03) 72%
    );
}


/* ========================================
   11. CRAFT
======================================== */

.chapter--craft .chapter__image {
  object-position: center center;
}

.chapter--craft .chapter__veil {
  background:
    linear-gradient(
      270deg,
      rgba(22, 18, 15, 0.58) 0%,
      rgba(22, 18, 15, 0.22) 42%,
      rgba(22, 18, 15, 0.03) 72%
    );
}


/* ========================================
   12. REFLECTION INTRO
======================================== */

.reflection-intro {
  display: grid;
  grid-template-columns: minmax(3rem, 0.25fr) minmax(0, 1fr);
  gap: 1.5rem 3rem;

  min-height: 72svh;
  padding: var(--section-space) var(--page-gutter);

  background: var(--orla-soft-ivory);
}

.reflection-intro__number {
  grid-row: 1 / span 3;

  align-self: start;

  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-style: italic;
  line-height: 1;

  color: rgba(38, 35, 31, 0.22);
}

.reflection-intro__eyebrow {
  align-self: end;

  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: var(--orla-muted);
}

.reflection-intro__title {
  max-width: 12ch;

  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.05em;
}


/* ========================================
   13. REFLECTION FEATURE
======================================== */

.reflection {
  position: relative;
  overflow: hidden;

  padding: var(--section-space) var(--page-gutter);

  background:
    linear-gradient(
      110deg,
      #cfc1ae 0%,
      #e8ded0 42%,
      #f4efe7 100%
    );
}

.reflection__canvas {
  position: relative;

  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(22rem, 0.9fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);

  width: min(90rem, 100%);
  margin: 0 auto;
}

.reflection__copy {
  position: relative;
  z-index: 2;
}

.reflection__copy .chapter__eyebrow {
  color: var(--orla-muted);
}

.reflection__title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 8.8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.05em;
}

.reflection__text {
  max-width: 28rem;
  margin-top: 2rem;

  color: var(--orla-muted);

  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  line-height: 1.9;
}

.reflection__figure {
  position: relative;
  z-index: 1;

  width: min(100%, 42rem);
  justify-self: end;
}

.reflection__figure::before {
  content: "";

  position: absolute;
  top: -1.3rem;
  right: -1.3rem;
  bottom: 1.3rem;
  left: 1.3rem;
  z-index: -1;

  border: 1px solid rgba(38, 35, 31, 0.16);
}

.reflection__image {
  aspect-ratio: 4 / 5.3;
  object-fit: cover;
  object-position: center center;

  box-shadow: 0 2rem 5rem rgba(47, 40, 31, 0.16);
}

.reflection__caption {
  margin-top: 1.2rem;

  color: var(--orla-muted);

  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reflection__word {
  position: absolute;
  right: -2vw;
  bottom: -0.09em;
  z-index: 0;

  color: rgba(255, 255, 255, 0.3);

  font-family: var(--font-serif);
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 400;
  line-height: 0.72;
  letter-spacing: -0.055em;

  pointer-events: none;
  user-select: none;
}


/* ========================================
   14. QUIET PASSAGE
======================================== */

.quiet-passage {
  display: grid;
  place-items: center;

  min-height: 58svh;
  padding: var(--section-space) var(--page-gutter);

  text-align: center;
  background: var(--orla-charcoal);
}

.quiet-passage p {
  max-width: 14ch;

  color: var(--orla-ivory);

  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.94;
  letter-spacing: -0.035em;
}


/* ========================================
   15. DEPARTURE / APPOINTMENT
======================================== */

.chapter--departure {
  min-height: 105svh;
}

.chapter--departure .chapter__image {
  object-position: center center;
}

.chapter__veil--departure {
  background:
    linear-gradient(
      90deg,
      rgba(25, 21, 17, 0.55) 0%,
      rgba(25, 21, 17, 0.2) 42%,
      rgba(25, 21, 17, 0.02) 75%
    ),
    linear-gradient(
      0deg,
      rgba(18, 15, 12, 0.35) 0%,
      transparent 45%
    );
}

.chapter__content--departure {
  justify-content: flex-end;

  width: min(41rem, 100%);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.chapter__content--departure .chapter__title {
  max-width: 8ch;
}

.appointment-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  width: min(100%, 24rem);
  margin-top: 2.5rem;
  padding: 1.15rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.62);

  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  transition:
    border-color var(--transition-fast),
    opacity var(--transition-fast);
}

.appointment-link:hover {
  border-color: var(--orla-white);
}

.appointment-link__arrow {
  font-size: 1rem;
  transition: transform var(--transition-medium);
}

.appointment-link:hover .appointment-link__arrow {
  transform: translate(0.25rem, -0.25rem);
}


/* ========================================
   16. FOOTER
======================================== */

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 4rem;

  padding:
    clamp(5rem, 8vw, 8rem)
    var(--page-gutter)
    2rem;

  color: var(--orla-ivory);
  background: var(--orla-black);
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  letter-spacing: 0.17em;
  line-height: 1;
}

.site-footer__descriptor {
  margin-top: 0.8rem;

  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;

  opacity: 0.58;
}

.site-footer__details,
.site-footer__collection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;

  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.site-footer__details a,
.site-footer__collection a {
  position: relative;

  opacity: 0.72;
  transition: opacity var(--transition-fast);
}

.site-footer__details a:hover,
.site-footer__collection a:hover {
  opacity: 1;
}

.site-footer__collection p {
  font-size: 0.59rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  opacity: 0.48;
}

.site-footer__copyright {
  grid-column: 1 / -1;

  margin-top: 4rem;
  padding-top: 1.4rem;

  border-top: 1px solid rgba(244, 239, 231, 0.11);

  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  opacity: 0.42;
}


/* ========================================
   17. REVEAL ANIMATIONS
======================================== */

.chapter__content > *,
.editorial-statement > *,
.reflection-intro > *,
.reflection__copy > *,
.reflection__figure,
.quiet-passage p {
  opacity: 0;
  transform: translateY(2rem);

  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.is-visible.chapter .chapter__content > *,
.editorial-statement.is-visible > *,
.reflection-intro.is-visible > *,
.reflection.is-visible .reflection__copy > *,
.reflection.is-visible .reflection__figure,
.quiet-passage.is-visible p {
  opacity: 1;
  transform: translateY(0);
}

.chapter__content > *:nth-child(1),
.editorial-statement > *:nth-child(1),
.reflection-intro > *:nth-child(1),
.reflection__copy > *:nth-child(1) {
  transition-delay: 80ms;
}

.chapter__content > *:nth-child(2),
.editorial-statement > *:nth-child(2),
.reflection-intro > *:nth-child(2),
.reflection__copy > *:nth-child(2) {
  transition-delay: 160ms;
}

.chapter__content > *:nth-child(3),
.editorial-statement > *:nth-child(3),
.reflection-intro > *:nth-child(3),
.reflection__copy > *:nth-child(3) {
  transition-delay: 240ms;
}

.chapter__content > *:nth-child(4),
.reflection__copy > *:nth-child(4) {
  transition-delay: 320ms;
}

.chapter__content > *:nth-child(5) {
  transition-delay: 400ms;
}

.reflection.is-visible .reflection__figure {
  transition-delay: 260ms;
}


/* ========================================
   18. LARGE SCREENS
======================================== */

@media (min-width: 1200px) {
  .chapter__content--right {
    padding-right: clamp(5rem, 9vw, 11rem);
  }

  .chapter__content--left {
    padding-left: clamp(5rem, 9vw, 11rem);
  }

  .chapter__content--arrival {
    padding-left: clamp(5rem, 8vw, 10rem);
  }

  .chapter__content--departure {
    padding-left: clamp(5rem, 8vw, 10rem);
  }
}


/* ========================================
   19. TABLET
======================================== */

@media (max-width: 900px) {
  :root {
    --header-height: 4.8rem;
  }

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .site-header__collection {
    display: none;
  }

  .chapter__content {
    width: min(34rem, 100%);
  }

  .reflection-intro {
    grid-template-columns: 1fr;
  }

  .reflection-intro__number {
    grid-row: auto;
  }

  .reflection__canvas {
    grid-template-columns: 1fr;
  }

  .reflection__copy {
    max-width: 40rem;
  }

  .reflection__figure {
    justify-self: center;
    width: min(100%, 35rem);
  }

  .reflection__word {
    right: -1rem;
    bottom: -0.02em;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}


/* ========================================
   20. MOBILE
======================================== */

@media (max-width: 680px) {
  :root {
    --page-gutter: 1.25rem;
    --section-space: 6rem;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .site-header__brand {
    font-size: 1.45rem;
  }

  .site-navigation {
    align-items: flex-start;
    padding-inline: 1.5rem;
  }

  .site-navigation a {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .chapter {
    min-height: 100svh;
  }

  .chapter__content {
    justify-content: flex-end;

    width: 100%;
    min-height: 100svh;

    padding:
      8rem
      var(--page-gutter)
      4.5rem;
  }

  .chapter__content--right,
  .chapter__content--left {
    margin: 0;
  }

  .chapter__title {
    max-width: 10ch;
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  .chapter__copy {
    max-width: 27rem;
    font-size: 0.84rem;
    line-height: 1.75;
  }

  .chapter__veil,
  .chapter--studio .chapter__veil,
  .chapter--consultation .chapter__veil,
  .chapter--craft .chapter__veil,
  .chapter__veil--departure {
    background:
      linear-gradient(
        0deg,
        rgba(19, 16, 13, 0.72) 0%,
        rgba(19, 16, 13, 0.32) 46%,
        rgba(19, 16, 13, 0.03) 78%
      );
  }

  .chapter--arrival .chapter__image {
    object-position: 57% bottom;
  }

  .chapter__content--arrival {
    justify-content: center;
    padding-bottom: 7.5rem;
  }

  .arrival-title {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  .arrival-title span:last-child {
    margin-left: 0;
  }

  .arrival-mark {
    right: auto;
    bottom: 2.1rem;
    left: var(--page-gutter);

    align-items: flex-start;
    text-align: left;
  }

  .scroll-cue {
    right: var(--page-gutter);
    bottom: 1.8rem;
    left: auto;

    transform: none;
  }

  .scroll-cue > span:first-child {
    display: none;
  }

  .scroll-cue__line {
    height: 2.8rem;
  }

  .chapter--studio .chapter__image {
    object-position: 42% center;
  }

  .chapter--consultation .chapter__image {
    object-position: 56% center;
  }

  .chapter--craft .chapter__image {
    object-position: 48% center;
  }

  .chapter--departure .chapter__image {
    object-position: 48% center;
  }

  .editorial-statement {
    min-height: 70svh;
  }

  .editorial-statement__quote {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .reflection-intro {
    min-height: auto;
  }

  .reflection-intro__number {
    font-size: 3rem;
  }

  .reflection-intro__title {
    font-size: clamp(3.4rem, 17vw, 5.8rem);
  }

  .reflection {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }

  .reflection__canvas {
    gap: 3.5rem;
  }

  .reflection__title {
    font-size: clamp(4rem, 19vw, 6.2rem);
  }

  .reflection__figure::before {
    top: -0.7rem;
    right: -0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
  }

  .reflection__caption {
    line-height: 1.7;
  }

  .reflection__word {
    right: -0.5rem;
    bottom: 0;

    font-size: 27vw;
  }

  .quiet-passage {
    min-height: 55svh;
  }

  .quiet-passage p {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .chapter--departure {
    min-height: 100svh;
  }

  .chapter__content--departure {
    justify-content: flex-end;
    padding-bottom: 4rem;
  }

  .appointment-link {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2.8rem;

    padding-top: 5rem;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__copyright {
    margin-top: 2rem;
  }
}


/* ========================================
   21. VERY SMALL SCREENS
======================================== */

@media (max-width: 390px) {
  .arrival-title {
    font-size: 3.25rem;
  }

  .chapter__title {
    font-size: 3.15rem;
  }

  .reflection__title {
    font-size: 3.8rem;
  }

  .editorial-statement__quote {
    font-size: 3.75rem;
  }
}


/* ========================================
   22. REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .chapter__image {
    transform: none;
  }

  .chapter__content > *,
  .editorial-statement > *,
  .reflection-intro > *,
  .reflection__copy > *,
  .reflection__figure,
  .quiet-passage p {
    opacity: 1;
    transform: none;
  }
}

.site-navigation a.is-active {
  font-style: italic;
}

.site-navigation a.is-active::after {
  transform: scaleX(1);
}

.site-footer__name {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-footer__name:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
