/* ============================================================
   Kris Garin — Life & Financial Coach
   Mobile-first. Ivory canvas, ink type, brass accent.
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
  --ivory: #FAF6EF;
  --ivory-deep: #F3EDE2;
  --ink: #1C1712;
  --ink-soft: #4A4238;
  --brass: #B08A47;
  --brass-deep: #8C6B32;
  --brass-soft: #E9DCC3;
  --rose: #D9A79C;
  --sage: #A8B39A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --pad-x: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brass-soft); color: var(--ink); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(2.1rem, 6.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 em, h1 em { font-style: italic; color: var(--brass-deep); }

.center { text-align: center; }
.lead { max-width: 34em; margin-inline: auto; color: var(--ink-soft); }

.section { padding: clamp(4.5rem, 12vw, 8.5rem) var(--pad-x); position: relative; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-deep);
  margin-bottom: 1.1rem;
  display: block;
}
.eyebrow--center { text-align: center; }
.eyebrow--light { color: var(--brass-soft); }

/* ---------- grain + veil ---------- */
.grain {
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 60; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,3%); }
  40% { transform: translate(3%,-2%); }
  60% { transform: translate(-3%,-3%); }
  80% { transform: translate(2%,2%); }
}

.page-veil {
  position: fixed; inset: 0; background: var(--ivory);
  z-index: 70; pointer-events: none;
  transform-origin: top;
  animation: veil 1.1s var(--ease-lux) 0.15s forwards;
}
@keyframes veil { to { transform: scaleY(0); } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x); height: 68px;
  transition: transform 0.5s var(--ease-lux), background 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(250, 246, 239, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(28, 23, 18, 0.07);
}
.nav--hidden { transform: translateY(-100%); }

.nav__logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--ink); text-decoration: none; letter-spacing: 0.01em;
  display: flex; align-items: baseline;
}
.nav__logo em { font-style: normal; color: var(--brass); margin-left: 6px; font-size: 0.8em; }

.nav__links { display: none; }

.nav__cta {
  display: none;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; color: var(--ivory);
  background: var(--ink); padding: 0.85em 1.7em; border-radius: 99px;
  transition: background 0.35s;
}
.nav__cta:hover { background: var(--brass-deep); }

.nav__burger {
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  display: grid; place-content: center; gap: 7px; z-index: 55;
}
.nav__burger span {
  display: block; width: 26px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  clip-path: circle(0% at calc(100% - 44px) 34px);
  transition: clip-path 0.8s var(--ease-lux);
  visibility: hidden;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 44px) 34px); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(2rem, 9vw, 3rem);
  color: var(--ivory); text-decoration: none; display: block;
  padding: 0.32em 0; line-height: 1;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.6s var(--ease-lux), color 0.3s;
  transition-delay: 0s;
}
.mobile-menu.open a {
  opacity: 1; transform: none;
  transition-delay: calc(0.25s + var(--i) * 0.06s);
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-menu__foot {
  position: absolute; bottom: 5vh; left: 8vw;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass);
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 6.5rem var(--pad-x) 4rem;
  position: relative; overflow: hidden;
}

.aurora { position: absolute; inset: 0; overflow: hidden; filter: blur(60px); }
.aurora__blob { position: absolute; border-radius: 50%; opacity: 0.55; }
.aurora__blob--1 {
  width: 55vmax; height: 55vmax; left: -15vmax; top: -12vmax;
  background: radial-gradient(circle, #EAD9BC 0%, transparent 65%);
  animation: drift1 18s ease-in-out infinite alternate;
}
.aurora__blob--2 {
  width: 46vmax; height: 46vmax; right: -14vmax; top: 8vmax;
  background: radial-gradient(circle, #E7C9BF 0%, transparent 65%);
  animation: drift2 22s ease-in-out infinite alternate;
}
.aurora__blob--3 {
  width: 42vmax; height: 42vmax; left: 22vw; bottom: -18vmax;
  background: radial-gradient(circle, #CBD3BE 0%, transparent 65%);
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(9vmax, 7vmax) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-8vmax, 9vmax) scale(0.9); } }
@keyframes drift3 { to { transform: translate(6vmax, -8vmax) scale(1.2); } }

.hero__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 500; color: var(--brass-deep); margin-bottom: 1.6rem;
  position: relative;
}

.hero__title {
  font-size: clamp(2.6rem, 11vw, 5.8rem);
  font-weight: 500; letter-spacing: -0.015em; line-height: 1.04;
  position: relative; max-width: 11em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > * { display: inline; }
.hero__title .line {
  clip-path: inset(0 0 110% 0);
  transform: translateY(0.6em);
  animation: lineUp 1.1s var(--ease-lux) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.55s; }
.hero__title .line:nth-child(2) { animation-delay: 0.68s; }
.hero__title .line:nth-child(3) { animation-delay: 0.81s; }
@keyframes lineUp { to { clip-path: inset(0 0 -20% 0); transform: none; } }

.shimmer {
  background: linear-gradient(100deg, var(--brass-deep) 20%, #E3C68B 40%, var(--brass-deep) 60%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 4.5s linear 1.6s infinite;
  font-style: italic;
}
@keyframes shimmer { to { background-position: -220% 0; } }

.hero__sub {
  max-width: 30em; color: var(--ink-soft);
  margin-top: 1.7rem; font-size: clamp(0.98rem, 2.6vw, 1.12rem);
  position: relative;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center;
  margin-top: 2.3rem; position: relative;
}

.reveal-line { opacity: 0; animation: fadeUp 1s var(--ease-lux) forwards; }
.hero__eyebrow.reveal-line { animation-delay: 0.4s; }
.hero__sub.reveal-line { animation-delay: 1.05s; }
.hero__actions.reveal-line { animation-delay: 1.2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 52px; overflow: hidden;
}
.hero__scroll span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(var(--ink), transparent);
  animation: scrollHint 2s var(--ease-lux) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1.05em 2.1em; border-radius: 99px; border: 1px solid transparent;
  transition: transform 0.35s var(--ease-lux), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.btn--primary {
  background: var(--ink); color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(28, 23, 18, 0.45);
}
.btn--primary:hover { background: var(--brass-deep); box-shadow: 0 18px 34px -14px rgba(140, 107, 50, 0.55); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: rgba(28, 23, 18, 0.28);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(28, 23, 18, 0.04); }
.btn--gold {
  background: var(--brass); color: #fff; border: 0; width: 100%;
  box-shadow: 0 16px 32px -14px rgba(176, 138, 71, 0.7);
}
.btn--gold:hover { background: #C29A55; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(28,23,18,0.1); border-bottom: 1px solid rgba(28,23,18,0.1);
  padding: 0.85rem 0; background: var(--ivory-deep);
}
.marquee__track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; color: var(--ink-soft); letter-spacing: 0.06em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { display: flex; flex-direction: column; gap: 3rem; max-width: 1120px; margin-inline: auto; }

.portrait-frame { position: relative; width: min(78vw, 340px); margin-inline: auto; }
.portrait-frame__img {
  aspect-ratio: 4 / 5; border-radius: 999px 999px 12px 12px;
  background:
    radial-gradient(120% 90% at 30% 20%, #E9DCC3 0%, transparent 55%),
    linear-gradient(160deg, #DCCBAA 0%, #C9AE7F 48%, #A9885A 100%);
  display: grid; place-content: center;
  overflow: hidden;
}
.portrait-frame__initials {
  font-family: var(--serif); font-size: 5.5rem; font-style: italic;
  color: rgba(255, 253, 247, 0.85); letter-spacing: 0.04em;
}
.portrait-frame__ring {
  position: absolute; inset: -14px; border: 1px solid rgba(140, 107, 50, 0.45);
  border-radius: 999px 999px 18px 18px;
  animation: ringPulse 5s ease-in-out infinite;
}
@keyframes ringPulse { 50% { transform: scale(1.025); opacity: 0.55; } }

.about__copy h2 { margin-bottom: 1.3rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 36em; }

.about__stats {
  list-style: none; display: flex; gap: 2.2rem; margin-top: 2rem; flex-wrap: wrap;
}
.about__stats li { display: flex; flex-direction: column; }
.about__stats strong {
  font-family: var(--serif); font-size: 2.3rem; font-weight: 500; color: var(--brass-deep);
  line-height: 1;
}
.about__stats span {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: 0.45rem;
}

/* ---------- pillars ---------- */
.pillars { max-width: 1120px; margin-inline: auto; }
.pillars h2 { margin-bottom: 2.8rem; }

.pillars__grid { display: grid; gap: 1.4rem; }

.pillar {
  background: #FFFDF8; border: 1px solid rgba(28, 23, 18, 0.09);
  border-radius: 20px; padding: 2.2rem 1.8rem 2rem; position: relative;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
  transform-style: preserve-3d;
}
.pillar:hover {
  box-shadow: 0 30px 60px -30px rgba(28, 23, 18, 0.25);
}
.pillar--gold { background: linear-gradient(165deg, #FFFDF8 0%, #F6EBD6 100%); }
.pillar__num {
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--brass);
  letter-spacing: 0.1em;
}
.pillar h3 { font-size: 1.75rem; margin: 0.5rem 0 0.9rem; }
.pillar p { color: var(--ink-soft); font-size: 0.97rem; }
.pillar ul { list-style: none; margin-top: 1.3rem; }
.pillar li {
  padding: 0.55rem 0; border-top: 1px solid rgba(28, 23, 18, 0.08);
  font-size: 0.92rem; color: var(--ink);
}
.pillar li::before { content: "✦ "; color: var(--brass); font-size: 0.8em; }

.pillars__quote { margin-top: 3.5rem; text-align: center; }
.pillars__quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.35rem, 4.5vw, 2rem); max-width: 26em; margin-inline: auto;
  line-height: 1.4;
}
.pillars__quote cite {
  display: block; margin-top: 1rem; font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brass-deep);
}

/* ---------- tiktok ---------- */
.tiktok { background: var(--ivory-deep); }
.tiktok h2 { margin-bottom: 0.9rem; }
.tiktok .lead { margin-bottom: 2.6rem; }

.tiktok__grid {
  display: grid; gap: 1.1rem; max-width: 1120px; margin: 0 auto 2.2rem;
}
.tiktok-card {
  aspect-ratio: 9 / 14; border-radius: 18px; overflow: hidden;
  position: relative; text-decoration: none;
  background:
    radial-gradient(120% 100% at 20% 10%, rgba(233, 220, 195, 0.5) 0%, transparent 50%),
    linear-gradient(160deg, #2A241D 0%, #1C1712 70%);
  display: flex; align-items: flex-end; padding: 1.3rem;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s;
}
.tiktok-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(28,23,18,0.5); }
.tiktok-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid rgba(250, 246, 239, 0.5); color: var(--ivory);
  display: grid; place-content: center; font-size: 0.9rem;
  transition: background 0.35s, transform 0.5s var(--ease-lux);
}
.tiktok-card:hover .tiktok-card__play { background: rgba(176, 138, 71, 0.85); transform: translate(-50%, -60%) scale(1.12); }
.tiktok-card__label {
  color: var(--ivory); font-family: var(--serif); font-style: italic;
  font-size: 1.15rem; line-height: 1.3;
}
.tiktok .center .btn { margin: 0.35rem; }

/* ---------- journal ---------- */
.journal { max-width: 1120px; margin-inline: auto; }
.journal h2 { margin-bottom: 2.4rem; }
.journal__list { border-top: 1px solid rgba(28,23,18,0.12); margin-bottom: 2rem; }
.journal-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: 0.2rem 1rem; padding: 1.3rem 0.2rem;
  border-bottom: 1px solid rgba(28,23,18,0.12);
  text-decoration: none; color: var(--ink);
  transition: background 0.35s, padding 0.4s var(--ease-lux);
}
.journal-row:hover { background: rgba(176, 138, 71, 0.07); padding-left: 0.8rem; }
.journal-row__date {
  grid-column: 1 / -1;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-deep);
}
.journal-row__title { font-family: var(--serif); font-size: clamp(1.3rem, 4.4vw, 1.9rem); line-height: 1.2; }
.journal-row__arrow {
  font-size: 1.3rem; color: var(--brass);
  transition: transform 0.4s var(--ease-lux);
}
.journal-row:hover .journal-row__arrow { transform: translateX(6px); }

/* ---------- book ---------- */
.book { background: var(--ink); color: var(--ivory); overflow: hidden; }
.book__inner {
  max-width: 1120px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 3rem; text-align: center;
}
.book__copy h2 { color: var(--ivory); margin-bottom: 1rem; }
.book__copy h2 em { color: var(--brass); }
.book__copy p { color: rgba(250, 246, 239, 0.75); max-width: 30em; margin: 0 auto 1.8rem; }

.book3d { perspective: 1200px; width: 190px; margin-inline: auto; }
.book3d__cover {
  position: relative; aspect-ratio: 2 / 3; border-radius: 4px 10px 10px 4px;
  background: linear-gradient(150deg, #C9A868 0%, #B08A47 55%, #8C6B32 100%);
  box-shadow: 18px 26px 60px -18px rgba(0,0,0,0.65), inset 4px 0 8px rgba(0,0,0,0.25);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1rem; padding: 1.4rem;
  transform: rotateY(-16deg) rotateX(4deg);
  animation: bookFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes bookFloat {
  0%, 100% { transform: rotateY(-16deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(2deg) translateY(-12px); }
}
.book3d__star { color: rgba(255, 253, 245, 0.9); font-size: 1.2rem; }
.book3d__title {
  font-family: var(--serif); font-size: 1.55rem; line-height: 1.15;
  color: #FFFDF5; letter-spacing: 0.02em;
}
.book3d__author {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,253,245,0.85);
}

.book .btn--primary {
  background: var(--brass); color: #FFFDF5;
  box-shadow: 0 16px 32px -14px rgba(176, 138, 71, 0.7);
}
.book .btn--primary:hover { background: #C29A55; }

/* ---------- booking ---------- */
.booking {
  background:
    radial-gradient(90% 70% at 80% 0%, rgba(176, 138, 71, 0.18) 0%, transparent 60%),
    var(--ink);
  padding-top: 0;
}
.booking::before {
  content: ""; display: block; height: 1px;
  background: rgba(250, 246, 239, 0.12);
  margin-bottom: clamp(4.5rem, 12vw, 8.5rem);
}
.booking__card {
  max-width: 620px; margin-inline: auto; text-align: center;
  color: var(--ivory);
}
.booking__card h2 { color: var(--ivory); margin-bottom: 0.6rem; }
.booking__price { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: rgba(250,246,239,0.8); }
.booking__price span {
  font-style: normal; font-size: 2.6rem; color: var(--brass);
  font-weight: 500; margin-right: 0.25em;
}
.booking__blurb { color: rgba(250, 246, 239, 0.72); max-width: 30em; margin: 1.1rem auto 2.4rem; }

.booking__form { display: grid; gap: 1.1rem; grid-template-columns: 1fr; text-align: left; }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(250, 246, 239, 0.06);
  border: 1px solid rgba(250, 246, 239, 0.22); border-radius: 12px;
  color: var(--ivory); font-family: var(--sans); font-weight: 300;
  font-size: 1rem; padding: 1.25rem 1.1rem 0.6rem;
  outline: none; transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { padding-top: 1.35rem; cursor: pointer; }
.field select option { color: var(--ink); background: var(--ivory); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass); background: rgba(250, 246, 239, 0.1);
}
.field label {
  position: absolute; left: 1.1rem; top: 0.95rem;
  font-size: 0.95rem; color: rgba(250, 246, 239, 0.55);
  pointer-events: none; transition: all 0.25s var(--ease-lux);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field .label--select {
  top: 0.4rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
}
.field .label--select { position: absolute; }

.booking__note { font-size: 0.78rem; color: rgba(250, 246, 239, 0.5); text-align: center; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: var(--ivory); padding: 5rem var(--pad-x) 2.5rem; text-align: center; }
.footer__big { font-size: clamp(3rem, 13vw, 6.5rem); color: var(--ivory); }
.footer__big em { color: var(--brass); }
.footer__mail {
  display: inline-block; margin-top: 1.4rem;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 4.5vw, 1.7rem);
  color: var(--ivory); text-decoration: none;
  border-bottom: 1px solid rgba(176, 138, 71, 0.6);
  padding-bottom: 0.15em;
  transition: color 0.3s, border-color 0.3s;
}
.footer__mail:hover { color: var(--brass); border-color: var(--brass); }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; margin-top: 2.6rem; }
.footer__links a {
  color: rgba(250, 246, 239, 0.75); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--brass); }
.footer__fine { margin-top: 3.2rem; font-size: 0.72rem; color: rgba(250, 246, 239, 0.4); letter-spacing: 0.08em; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s ease, transform 1s var(--ease-lux);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- blog pages ---------- */
.post-hero { padding: 9rem var(--pad-x) 3rem; max-width: 760px; margin-inline: auto; }
.post-hero h1 { font-size: clamp(2.4rem, 8vw, 4.2rem); line-height: 1.06; margin: 0.8rem 0 1.2rem; }
.post-hero .meta { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass-deep); }
.post-body { max-width: 680px; margin-inline: auto; padding: 0 var(--pad-x) 5rem; }
.post-body p { color: var(--ink-soft); margin-bottom: 1.4rem; font-size: 1.04rem; }
.post-body h2 { font-size: 1.9rem; margin: 2.4rem 0 1rem; }
.post-body blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem; line-height: 1.5;
  border-left: 2px solid var(--brass); padding-left: 1.4rem; margin: 2.2rem 0; color: var(--ink);
}
.post-back {
  display: inline-block; margin-bottom: 0.6rem; text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep);
}

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

/* ============================================================
   Desktop
   ============================================================ */
@media (min-width: 800px) {
  :root { --pad-x: 6vw; }

  .nav { height: 84px; }
  .nav__links { display: flex; gap: 2rem; }
  .nav__links a {
    color: var(--ink); text-decoration: none; font-size: 0.8rem;
    letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
    position: relative; padding: 0.3em 0;
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
    background: var(--brass-deep); transform: scaleX(0); transform-origin: right;
    transition: transform 0.45s var(--ease-lux);
  }
  .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav__cta { display: inline-block; }
  .nav__burger { display: none; }
  .mobile-menu { display: none; }

  .about { flex-direction: row; align-items: center; gap: 6vw; }
  .about__media { flex: 0 0 38%; }
  .about__copy { flex: 1; }

  .pillars__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pillar { padding: 3rem 2.6rem 2.6rem; }

  .tiktok__grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

  .journal-row { grid-template-columns: 140px 1fr auto; padding: 1.7rem 0.4rem; }
  .journal-row__date { grid-column: auto; }

  .book__inner { flex-direction: row; text-align: left; }
  .book__object { flex: 0 0 34%; }
  .book__copy p { margin-inline: 0; }
  .book3d { width: 230px; }

  .booking__form { grid-template-columns: 1fr 1fr; }
  .field--full, .booking__form .btn, .booking__note { grid-column: 1 / -1; }
}
