/* ==========================================================================
   Trudy Pompeus — BTS Photo + Video Portfolio
   Editorial · cinematic · cream + deep olive
   ========================================================================== */

:root {
  /* palette */
  --bone:        #ece4d3;   /* warm cream */
  --bone-2:      #e2d8c4;   /* deeper paper */
  --olive:       #42432f;   /* deep olive */
  --olive-deep:  #353627;
  --olive-tint:  #5a5a44;
  --ink:         #1d1b16;
  --ink-soft:    #4a4338;
  --line:        rgba(29, 27, 22, 0.16);

  /* type */
  --display: "Cormorant Garamond", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --pad:    clamp(20px, 4vw, 56px);
  --max:    1320px;

  --ease:   cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--olive); color: var(--bone); }

/* ==========================================================================
   NAV — fixed tall 3-column grid: links left, wordmark center, CTA right
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: clamp(105px, 13vh, 165px);
  padding: 0 var(--pad);
  color: var(--ink);
  background: rgba(236, 228, 211, 0.65);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 27, 22, 0.22);
  transition: background .5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(236, 228, 211, 0.94);
  border-bottom-color: rgba(29, 27, 22, 0.25);
}

.nav__side {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav__side--left  { justify-self: start; }
.nav__side--right { justify-self: end; }

.nav__side a {
  position: relative;
  padding: 6px 0;
}
.nav__side a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__side a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  text-transform: none;
  letter-spacing: 0.005em;
  text-align: center;
  white-space: nowrap;
  justify-self: center;
  line-height: 1;
  color: var(--olive-tint);
}

.nav__cta {
  white-space: nowrap;
}

/* Hamburger button — hidden on desktop, shown on mobile via media query below. */
.nav__hamburger {
  display: none;
  width: 26px;
  height: 20px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    min-height: 84px;
    padding: 0 18px;
  }
  .nav__side a { display: none; }
  .nav__side--left  { justify-self: start; }
  .nav__side--right { justify-self: end; }
  .nav__hamburger { display: flex; }
  .nav__mark { font-size: 30px; }
}

/* ==========================================================================
   MOBILE MENU — fullscreen overlay toggled by the hamburger. Mobile-only.
   ========================================================================== */

.mobile-menu { display: none; }

@media (max-width: 720px) {
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
    background-color: var(--bone);
    background-image:
      radial-gradient(ellipse at 28% 22%, rgba(255, 246, 222, 0.55) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 85%, rgba(150, 130, 90, 0.14) 0%, transparent 55%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity .35s var(--ease),
      transform .35s var(--ease),
      visibility 0s linear .35s;
    isolation: isolate;
  }
  .mobile-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
    opacity: 0.16;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
  }
  .mobile-menu > * { position: relative; z-index: 1; }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity .35s var(--ease),
      transform .35s var(--ease),
      visibility 0s;
  }

  .mobile-menu__close {
    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 2;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .mobile-menu__close::before,
  .mobile-menu__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transform-origin: center;
  }
  .mobile-menu__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .mobile-menu__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .mobile-menu__links a {
    position: relative;
    padding-bottom: 8px;
    font-family: var(--display);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 0.005em;
    color: var(--olive-tint);
  }
  .mobile-menu__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
  }
  .mobile-menu__links a:hover::after,
  .mobile-menu__links a:active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Lock body scroll when the menu is open. */
  body.menu-open { overflow: hidden; }
}

/* ==========================================================================
   HERO — editorial collage on warm cream; 1 center tile + 6 around it.
   Tiles accept either <img> or <video autoplay muted loop playsinline>.
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background-color: #e8dec6;
  background-image:
    radial-gradient(ellipse at 28% 22%, rgba(255, 246, 222, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 85%, rgba(150, 130, 90, 0.14) 0%, transparent 55%);
  padding: clamp(190px, 30vh, 360px) 0 clamp(40px, 6.5vh, 95px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: rgba(48, 42, 32, 1);
  text-align: center;
  padding: 0 var(--pad);
  margin: 0 0 14px;
}

.hero__collage {
  position: relative;
  width: 100%;
  max-width: var(--max);
  height: clamp(400px, 50vh, 540px);
  margin: 0 auto;
}

.collage-tile {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--bone-2);
  border: 1.5px solid rgba(29, 27, 22, 0.92);
  box-shadow:
    0 14px 30px rgba(28, 26, 22, 0.24),
    0 4px 10px rgba(28, 26, 22, 0.16);
}
.collage-tile > img,
.collage-tile > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collage-tile--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(260px, 28vw, 380px);
  aspect-ratio: 4 / 5;
  z-index: 2;
}
.collage-tile--l3 {
  left: calc((100% - 100vw) / 2);
  top: -22%;
  width: clamp(110px, 11vw, 160px);
  aspect-ratio: 1 / 1;
  z-index: 1;
}
.collage-tile--l1 {
  left: 11%;
  top: -3%;
  width: clamp(170px, 17vw, 240px);
  aspect-ratio: 4 / 5;
  z-index: 3;
}
.collage-tile--l2 {
  left: -2%;
  top: 36%;
  width: clamp(165px, 17vw, 240px);
  aspect-ratio: 3 / 4;
  z-index: 4;
}
.collage-tile--r3 {
  right: calc((100% - 100vw) / 2);
  top: -22%;
  width: clamp(110px, 11vw, 160px);
  aspect-ratio: 1 / 1;
  z-index: 1;
}
.collage-tile--r1 {
  right: 11%;
  top: -3%;
  width: clamp(170px, 17vw, 240px);
  aspect-ratio: 4 / 3;
  z-index: 3;
}
.collage-tile--r2 {
  right: -2%;
  top: 29%;
  width: clamp(180px, 19vw, 270px);
  aspect-ratio: 3 / 4;
  z-index: 4;
}

.collage-tile--center > img,
.collage-tile--center > video,
.collage-tile--l2 > img,
.collage-tile--l2 > video {
  filter: grayscale(1);
}

.collage-tile--r1 > img,
.collage-tile--r1 > video {
  filter: grayscale(1) contrast(1.45) brightness(0.82);
}

.collage-tile--r3 > img,
.collage-tile--r3 > video {
  filter: contrast(1.25) brightness(0.88);
}

.hero__caption {
  text-align: center;
  margin-top: clamp(40px, 5.5vh, 75px);
}
.hero__regions {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 820px) {
  .hero { padding: clamp(140px, 18vh, 180px) 0 clamp(50px, 7vh, 80px); }
  .hero__title { font-size: clamp(20px, 4.6vw, 28px); margin-bottom: 10px; }
  .hero__collage { height: clamp(360px, 52vh, 540px); }
  .collage-tile--center { width: clamp(200px, 50vw, 280px); }
  .collage-tile--l1, .collage-tile--r1 {
    width: clamp(80px, 22vw, 130px);
    top: 18%;
  }
  .collage-tile--l2, .collage-tile--r2,
  .collage-tile--l3, .collage-tile--r3 { display: none; }
}

/* Mobile hero — 5-tile editorial collage with overlap (preserves the desktop
   constellation feel; scaled down for ~390px viewports). Center is the focal
   tile; L1/R1 sit top-left/top-right; L2/R2 sit bottom-left/bottom-right and
   bleed slightly off the screen edge for the editorial feel. L3/R3 hidden. */
@media (max-width: 720px) {
  .hero {
    /* Top clearance scales with vw to match the collage's vw-based upward bleed
       (l1/r1 sit at top:-5% of the 138vw collage = -6.9vw). Fixed 140px base
       clears the 84px nav and leaves a consistent ~56px gap on every phone
       width — fixes top tiles touching the nav on wide phones (e.g. S24 Ultra). */
    padding: calc(140px + 7vw) 0 clamp(40px, 6vh, 60px);
  }
  .hero__title {
    font-size: clamp(22px, 5.5vw, 26px);
    margin-bottom: 14px;
  }
  .hero__collage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 138vw;
    margin: 0 auto;
  }

  /* Override desktop tile sizing/placement. L1/R1 kiss center's top edge with
     a small overlap; L2/R2 sit fully below center with a clear gap. Center
     floats with breathing room rather than being stacked-into. */
  .collage-tile--center {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 52vw;
    aspect-ratio: 4 / 5;
    z-index: 5;
  }
  .collage-tile--l1 {
    left: 0%;
    right: auto;
    top: -5%;
    width: 30vw;
    aspect-ratio: 4 / 5;
    z-index: 3;
  }
  .collage-tile--l2 {
    display: block;
    left: -3%;
    right: auto;
    top: 61%;
    width: 30vw;
    aspect-ratio: 3 / 4;
    z-index: 6;
  }
  .collage-tile--r1 {
    right: 0%;
    left: auto;
    top: -5%;
    width: 30vw;
    aspect-ratio: 4 / 5;
    z-index: 3;
  }
  .collage-tile--r2 {
    display: block;
    right: -3%;
    left: auto;
    top: 61%;
    width: 30vw;
    aspect-ratio: 3 / 4;
    z-index: 6;
  }
  .collage-tile--l3,
  .collage-tile--r3 { display: none; }

  .hero__caption { margin-top: clamp(10px, 2vh, 18px); }
}

/* ==========================================================================
   INTRO — flat olive-tint section between Hero and About
   ========================================================================== */

.intro {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--olive-tint);
  color: var(--bone);
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.intro__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vh, 100px) var(--pad);
  text-align: center;
}
.intro__quote {
  margin: 0 0 clamp(32px, 5vh, 60px);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.45;
  letter-spacing: 0.005em;
  color: rgba(236, 228, 211, 0.96);
}
.intro__regions {
  margin: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236, 228, 211, 0.78);
}

@media (max-width: 720px) {
  .intro__quote { font-size: 28px; }
}

/* ==========================================================================
   ABOUT — image left, copy right; cream + paper grain
   ========================================================================== */

.about {
  position: relative;
  background-color: var(--bone);
  height: 700px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  isolation: isolate;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.about > * { position: relative; z-index: 1; }

.about__portrait {
  flex: 0 0 45%;
  margin: 0;
  height: 700px;
}
.about__portrait img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  display: block;
}

/* Crossfade variant: two full-bleed portraits dissolving serious -> laughing. */
.about__portrait--crossfade {
  position: relative;
  overflow: hidden;
}
.about__portrait--crossfade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.about__portrait--crossfade .about__portrait-top {
  opacity: 0;
  animation: about-portrait-crossfade 5.5s ease-in-out infinite;
}
@keyframes about-portrait-crossfade {
  0%, 35% { opacity: 0; }
  45%, 85% { opacity: 1; }
  95%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .about__portrait--crossfade .about__portrait-top { animation: none; opacity: 0; }
}

.about__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(110px, 14vh, 180px) clamp(40px, 5vw, 90px) clamp(40px, 5vh, 70px);
  min-width: 0;
}

.about__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--olive-tint);
  margin: 0 0 50px;
}
.about__title-indent {
  display: block;
  padding-left: clamp(20px, 6vw, 90px);
}

.about__copy p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
}

@media (max-width: 820px) {
  .about {
    flex-direction: column;
    height: auto;
  }
  .about__portrait,
  .about__portrait img { height: auto; aspect-ratio: 3 / 4; }
  .about__copy { padding: clamp(60px, 9vh, 100px) var(--pad); }
}

@media (max-width: 720px) {
  .about__portrait,
  .about__portrait img { aspect-ratio: 4 / 5; }
  .about__title { text-align: left; font-size: 46px; }
  .about__title > span:first-child { display: block; padding-left: 24px; }
  .about__title-indent { padding-left: 0; padding-right: 56px; text-align: right; }
  .about__copy p { font-size: 15.5px; }
}

/* ==========================================================================
   LEAD-IN — flat olive-tint transition between About and Showcase
   ========================================================================== */

.lead {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--olive-tint);
  color: var(--bone);
}
.lead::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.lead__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 8vh, 100px) var(--pad);
  text-align: center;
}
.lead__sub {
  margin: 0 0 clamp(32px, 5vh, 60px);
  max-width: 38ch;
}
.lead__sub-eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(236, 228, 211, 0.78);
  margin-bottom: 12px;
}
.lead__sub-statement {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: rgba(236, 228, 211, 0.96);
}

.lead__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236, 228, 211, 0.78);
  transition: opacity .35s var(--ease);
}
.lead__cta:hover { opacity: 0.7; }
.lead__chevron {
  width: 14px;
  height: 8px;
  display: inline-block;
  flex-shrink: 0;
  transition: transform .45s var(--ease);
}
.lead__cta:hover .lead__chevron {
  transform: translateY(4px);
}

@media (max-width: 720px) {
  .lead__sub-eyebrow   { font-size: 18px; }
  .lead__sub-statement { font-size: 28px; }
}

/* ==========================================================================
   SHOWCASE — horizontal carousel of 9:16 cards (Maternity ×2, Wedding ×2, Family).
   Symmetric infinite loop (prepend + append clones injected by script.js).
   ========================================================================== */

.showcase {
  --card-w: clamp(220px, 20vw, 320px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bone);
  padding: clamp(40px, 5vh, 80px) 0;
  overflow: hidden;
  isolation: isolate;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.showcase > * { position: relative; z-index: 1; }

.showcase__head {
  text-align: center;
  margin-bottom: clamp(20px, 3vh, 40px);
  padding: 0 var(--pad);
}
.showcase__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.showcase__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 1;
  color: var(--olive-tint);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  min-height: 1em;
}
/* Title cross-fade scaffold: all category names are stacked in the same grid
   cell. The grid sizes to the widest child so there's no layout shift when
   the active class toggles. Only the .is-active swap is visible; the others
   sit invisibly underneath at opacity 0. */
.showcase__title-text,
.showcase__niche-label-text {
  display: inline-grid;
  grid-template-areas: "stack";
}
.showcase__swap {
  grid-area: stack;
  opacity: 0;
  transition: opacity 180ms var(--ease);
}
.showcase__swap.is-active {
  opacity: 1;
}

.showcase__viewport {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.showcase__track {
  flex: 1 1 auto;
  display: flex;
  /* Gap pushes adjacent cards just off-screen so only the centered card is visible. */
  gap: calc(100vw - var(--card-w));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Centers each card via padding-inline = (track width - card width) / 2 */
  padding: 15px calc(50% - var(--card-w) / 2);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.showcase__track::-webkit-scrollbar { display: none; }

.showcase__card {
  margin: 0;
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.showcase__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bone-2);
  border: 1.5px solid rgba(29, 27, 22, 0.85);
  box-shadow:
    0 18px 40px rgba(28, 26, 22, 0.20),
    0 6px 14px rgba(28, 26, 22, 0.12);
}
/* Aspect ratio per card orientation — set by JS from the manifest. */
.showcase__card[data-orientation="landscape"] .showcase__frame { aspect-ratio: 16 / 9; }
.showcase__card[data-orientation="square"]    .showcase__frame { aspect-ratio: 1 / 1; }
.showcase__frame > img,
.showcase__frame > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play-icon overlay shown on showcase video cards. The video itself is
   paused on the card (no autoplay) — the icon signals that the viewer
   should click to open the lightbox and watch. pointer-events: none lets
   clicks pass through to the figure so the lightbox handler fires. */
.showcase__play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(29, 27, 22, 0.55);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 240ms ease, transform 240ms ease;
}
.showcase__play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent rgba(232, 222, 198, 0.95);
  margin-left: 4px; /* nudges the triangle to look centered in the circle */
}
.showcase__card:hover .showcase__play-icon,
.showcase__card:focus-visible .showcase__play-icon {
  background: rgba(29, 27, 22, 0.78);
  transform: scale(1.08);
}

.showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(29, 27, 22, 0.45);
  background: rgba(245, 238, 224, 0.85);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.showcase__nav:hover {
  background: var(--bone);
  border-color: var(--ink);
}
.showcase__nav svg { width: 14px; height: 14px; }
.showcase__nav--prev { left: clamp(12px, 3vw, 50px); }
.showcase__nav--next { right: clamp(12px, 3vw, 50px); }

.showcase__hint {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: clamp(16px, 2.5vh, 32px) 0 0;
  text-align: center;
  opacity: 0.65;
}
.showcase__hint--mobile { display: none; }

/* Sticky niche label: appears below the track only when the main .showcase__title
   has scrolled behind the fixed nav. Text is mirrored from the centered card. */
.showcase__niche-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: clamp(14px, 2vh, 24px) 0 0;
  text-align: center;
  opacity: 0;
  transition: opacity 280ms var(--ease);
  pointer-events: none;
}
.showcase__niche-label.is-visible { opacity: 0.85; }

@media (max-width: 720px) {
  .showcase { --card-w: clamp(220px, 78vw, 340px); }
  .showcase__nav { display: none; }
  .showcase__eyebrow { font-size: 10px; }
  .showcase__hint--desktop { display: none; }
  .showcase__hint--mobile { display: inline; }
}

/* ==========================================================================
   READY — flat olive-tint CTA section between Showcase and Contact
   ========================================================================== */

.ready {
  position: relative;
  min-height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--olive-tint);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(60px, 8vh, 100px) var(--pad);
  text-align: center;
}
.ready::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.ready__content { position: relative; z-index: 1; }

.ready__title {
  margin: 0 0 clamp(32px, 5vh, 60px);
  max-width: 38ch;
  font-weight: 400;
}
.ready__title-eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(236, 228, 211, 0.78);
  margin-bottom: 12px;
}
.ready__title-statement {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.35;
  letter-spacing: 0.005em;
  color: rgba(236, 228, 211, 0.96);
}

.ready__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236, 228, 211, 0.78);
  transition: opacity .35s var(--ease);
}
.ready__cta:hover { opacity: 0.7; }
.ready__cta .lead__chevron {
  width: 14px;
  height: 8px;
  transition: transform .45s var(--ease);
}
.ready__cta:hover .lead__chevron {
  transform: translateY(4px);
}

/* Outlined button that surfaces the Process page on mobile (desktop reaches it
   via the nav's "Work with me", so it's hidden ≥721px). Shown in the 720px block. */
.ready__process-btn { display: none; }

@media (max-width: 720px) {
  .ready__title-eyebrow { font-size: 18px; }
  .ready__title-statement { font-size: 28px; }
  .ready__process-btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
    padding: 15px 32px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(236, 228, 211, 0.95);
    border: 1px solid rgba(236, 228, 211, 0.5);
    transition: background .35s var(--ease), color .35s var(--ease);
  }
  .ready__process-btn:hover,
  .ready__process-btn:active {
    background: rgba(236, 228, 211, 0.95);
    color: var(--olive);
  }
}

/* ==========================================================================
   CONTACT — italic lede on left, contact details on right
   ========================================================================== */

.contact {
  padding: clamp(28px, 4vw, 56px) var(--pad);
  background: var(--bone);
  color: var(--ink);
}
.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.contact__lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact__details li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  min-height: 72px;
}
.contact__details li:last-child { border-bottom: 1px solid var(--line); }
.contact__label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact__details a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .contact { padding: 56px var(--pad); }
  .contact__lede { font-size: 17px; }
  .contact__lede br { display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--olive-deep);
  color: rgba(236, 228, 211, 0.7);
  padding: 38px var(--pad);
  font-size: 12.5px;
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.footer__name {
  font-family: var(--display);
  font-size: 16px;
  color: var(--bone);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.footer__meta {
  margin: 0;
  text-align: right;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer__row { grid-template-columns: 1fr; text-align: center; }
  .footer__meta { text-align: center; }
}

/* ==========================================================================
   LIGHTBOX — enlarged view triggered by clicking a showcase card
   ========================================================================== */

.showcase__card {
  cursor: pointer;
}
.showcase__card:focus-visible {
  outline: 2px solid var(--olive-tint);
  outline-offset: 4px;
}

.lightbox {
  padding: 0;
  border: 0;
  background: transparent;
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  overflow: visible;
}
.lightbox::backdrop {
  background: rgba(20, 16, 10, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.lightbox__close {
  position: fixed;
  top: clamp(16px, 3vh, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px;
  height: 44px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  background: rgba(236, 228, 211, 0.92);
  border: 1px solid rgba(29, 27, 22, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 200ms var(--ease);
}
.lightbox__close:hover {
  background: var(--bone);
}
.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(29, 27, 22, 0.2);
  background: rgba(236, 228, 211, 0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 200ms var(--ease);
}
.lightbox__nav:hover {
  background: var(--bone);
}
.lightbox__nav svg {
  width: 14px;
  height: 14px;
}
.lightbox__nav--prev { left: clamp(12px, 3vw, 32px); }
.lightbox__nav--next { right: clamp(12px, 3vw, 32px); }

@media (max-width: 720px) {
  .lightbox__nav {
    top: auto;
    bottom: clamp(16px, 3vh, 32px);
    transform: none;
  }
}
.lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__media img,
.lightbox__media video {
  max-width: 92vw;
  max-height: 88vh;
  display: block;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  border: 1.5px solid rgba(29, 27, 22, 0.5);
}
/* Per-orientation max-width caps so wide screens don't blow portrait media up. */
.lightbox__media img[data-orientation="portrait"],
.lightbox__media video[data-orientation="portrait"] {
  max-width: min(92vw, 600px);
}
.lightbox__media img[data-orientation="square"],
.lightbox__media video[data-orientation="square"] {
  max-width: min(92vw, 720px);
}
.lightbox__media img[data-orientation="landscape"],
.lightbox__media video[data-orientation="landscape"] {
  max-width: min(92vw, 1100px);
}

/* ==========================================================================
   REVEAL on scroll — JS adds .reveal then toggles .is-in via IntersectionObserver
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

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

/* ==========================================================================
   THE PROCESS — standalone sub-page (process.html). Reuses the site palette,
   type, paper-grain, and the shared .ready CTA + nav + footer. All selectors
   below are new and scoped under .process-page, so the homepage is untouched.
   Cream <-> olive-tint bands alternate to match the homepage rhythm.
   ========================================================================== */

.process-page { background: var(--bone); }

/* Shared editorial bits used across the process sections */
.proc-eyebrow {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.proc-band-eyebrow { color: rgba(236, 228, 211, 0.72); }

/* --- HERO / intro -------------------------------------------------------- */
.process-hero {
  position: relative;
  isolation: isolate;
  background-color: var(--bone);
  padding: clamp(160px, 20vh, 220px) var(--pad) clamp(70px, 11vh, 130px);
  text-align: center;
  overflow: hidden;
}
.process-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.process-hero > * { position: relative; z-index: 1; }
.process-hero__title {
  margin: 0 0 clamp(22px, 3.5vh, 34px);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--olive-tint);
}
.process-hero__intro {
  margin: 0 auto;
  max-width: 640px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* --- STEPS (olive-tint band) -------------------------------------------- */
.steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--olive-tint);
  color: var(--bone);
  padding: clamp(70px, 11vh, 130px) var(--pad);
}
.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.steps__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: clamp(90px, 11vw, 160px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  padding: clamp(34px, 5vh, 56px) 0;
  border-top: 1px solid rgba(236, 228, 211, 0.22);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step:last-child { padding-bottom: 0; }
.step__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
  color: rgba(236, 228, 211, 0.42);
}
.step__title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: rgba(236, 228, 211, 0.97);
}
.step__body { max-width: 60ch; }
.step__body p {
  margin: 0 0 16px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.65;
  color: rgba(236, 228, 211, 0.86);
}
.step__body p:last-child { margin-bottom: 0; }

/* --- PACKAGES (cream band) ---------------------------------------------- */
.packages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--bone);
  padding: clamp(70px, 11vh, 130px) var(--pad);
}
.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.packages__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.packages__head { text-align: center; margin-bottom: clamp(40px, 6vh, 64px); }
.packages__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--olive-tint);
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: 0;
  align-items: stretch;
}
.package {
  --card-pad: clamp(32px, 4vw, 52px);
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  padding: var(--card-pad) var(--card-pad) 0;
  background: rgba(236, 228, 211, 0.5);
  border: 1px solid rgba(29, 27, 22, 0.32);
}
.package__body { padding-bottom: clamp(24px, 3vw, 32px); }
.package__name {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
  color: var(--olive-tint);
}
.package__tagline {
  margin: 0 0 28px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--ink-soft);
}
.package__group + .package__group { margin-top: 28px; }
.package__group-label {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.package__list { list-style: none; padding: 0; margin: 0; }
.package__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: clamp(14px, 1.3vw, 15.5px);
  line-height: 1.55;
  color: var(--ink);
}
.package__list li:last-child { margin-bottom: 0; }
.package__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 1px;
  background: var(--olive-tint);
}
.package__price {
  margin: 0 calc(-1 * var(--card-pad));
  padding: clamp(26px, 3vw, 34px) var(--card-pad) var(--card-pad);
  background: var(--bone-2);
  color: var(--ink-soft);
}
.package__price-label {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.package__rates {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.package__rates li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.package__rate-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.package__rate-value {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: 0.01em;
  color: var(--olive-tint);
}
.package__rate-value--was {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink-soft);
}
.package__rate-value--hero {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink-soft);
}
.package__rate--hero { margin-top: 4px; }
.package__rate--hero .package__rate-name {
  font-weight: 500;
  color: var(--ink-soft);
}
.package__price-note {
  margin: 0;
  font-family: var(--sans);
  font-style: italic;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  opacity: 0.8;
}
.package__price-note + .package__price-note { margin-top: 6px; }
.package__price-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.package__price-star {
  font-style: normal;
  font-weight: 500;
  margin-right: 3px;
  color: var(--olive-tint);
}

/* --- PRICING (olive-tint band) ------------------------------------------ */
.pricing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--olive-tint);
  color: var(--bone);
  padding: clamp(70px, 11vh, 130px) var(--pad);
  text-align: center;
}
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}
.pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.pricing__contact {
  margin-top: 0;
}
.pricing__contact-eyebrow {
  margin: 0 0 18px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236, 228, 211, 0.7);
}
.pricing__contact-email {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.01em;
  color: rgba(236, 228, 211, 0.97);
  text-decoration: none;
}
.pricing__contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.pricing__contact-loc {
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(236, 228, 211, 0.7);
}

/* --- Process page responsive -------------------------------------------- */
@media (max-width: 820px) {
  .packages__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: clamp(24px, 4vw, 36px);
  }
  .package {
    display: block;
    grid-row: auto;
    grid-template-rows: none;
  }
}
@media (max-width: 720px) {
  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .step__num { font-size: 52px; }

  /* Trim the tall empty gap under the nav at the top of the hero */
  .process-hero {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  /* Tighten the vertical rhythm of the stacked bands on phones */
  .steps,
  .packages,
  .pricing {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  /* Price panel: give the rates a touch more presence and keep the
     fine print comfortably readable at phone width */
  .package__rate-value,
  .package__rate-value--was,
  .package__rate-value--hero { font-size: 22px; }
  .package__price-note { font-size: 12px; }
}
