/* ============================================================
   ANGEL CITY TAROT — theme
   Art Deco line work on cream · gold, ink, warm sand
   Generated stylesheet: edit here, not in dist/
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --paper: #faf4ed;
  --paper-2: #f5ece0;
  --sand: #efe3d3;
  --ink: #1a1613;
  --body: #3a342e;
  --muted: #6b625a;

  /* Two golds on purpose: the light one is for line work and ornament only,
     the deep one wherever gold has to carry words — 5.20:1 on paper and
     4.85:1 on the sand sections, so it passes AA on both grounds. */
  --gold-line: #c0985c;
  --gold-text: #8f5b2c;
  --gold-hair: rgba(192, 152, 92, 0.42);
  --gold-faint: rgba(192, 152, 92, 0.2);

  --font-display: "Italiana", "Didot", "Bodoni MT", Georgia, serif;
  --font-body: "Jost", "Futura", "Century Gothic", "Avenir Next", system-ui, sans-serif;
  --font-script: "Cormorant Garamond", Georgia, serif;

  --shell: min(1220px, 92vw);
  --section-y: clamp(4.5rem, 11vh, 8.5rem);
  --nav-h: 5.4rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.98rem, 0.95rem + 0.18vw, 1.05rem);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.12; color: var(--ink); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-text); outline-offset: 3px; }

.skip {
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -140%);
  z-index: 100;
  padding: 0.8rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* ---------- typography primitives ---------- */
.display { font-family: var(--font-display); letter-spacing: 0.06em; text-wrap: balance; }
.eyebrow {
  margin: 0;
  font-size: clamp(0.62rem, 0.58rem + 0.14vw, 0.72rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.prose { color: var(--body); max-width: 60ch; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose em { font-family: var(--font-script); font-style: italic; font-size: 1.1em; color: var(--gold-text); }
.prose a { color: var(--gold-text); border-bottom: 1px solid var(--gold-hair); }
.prose a:hover { border-bottom-color: var(--gold-text); }

/* ---------- layout ---------- */
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding-block: var(--section-y); }
.section--sand { background: var(--paper-2); }

.section-head { display: grid; justify-items: center; gap: 0.85rem; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--left { justify-items: start; text-align: left; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.2rem + 3.1vw, 3.2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-head .ornament { width: clamp(7rem, 12vw, 10rem); color: var(--gold-line); }
.eyebrow-mark { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--gold-text); }
.eyebrow-mark svg { width: 0.72em; height: 0.72em; color: var(--gold-line); flex: none; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.btn svg { width: 0.72em; height: 0.72em; color: var(--gold-line); flex: none; transition: transform 0.5s var(--ease); }
.btn:hover { background: var(--gold-text); border-color: var(--gold-text); transform: translateY(-2px); }
.btn:hover svg { transform: rotate(90deg); color: var(--paper); }

.btn--ghost { color: var(--gold-text); background: transparent; border-color: var(--gold-hair); }
.btn--ghost:hover { color: var(--paper); background: var(--gold-text); border-color: var(--gold-text); transform: translateY(-2px); }
.btn[disabled] { opacity: 0.55; cursor: progress; transform: none; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.link-more::after { content: "\2192"; transition: transform 0.4s var(--ease); }
.link-more:hover::after { transform: translateX(5px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--gold-faint);
  transition: box-shadow 0.5s var(--ease);
}
body.is-scrolled .nav { box-shadow: 0 12px 34px -28px rgba(26, 22, 19, 0.5); }
.nav__inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--nav-h);
}
/* The wordmark sits in the middle column, so the two link groups have to be
   grid items in their own right — display:contents lifts them out of their
   wrapper, which stays a real element for the mobile overlay. */
.nav-links { display: contents; }
.nav-group { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 2.2rem); }
.nav-group:first-child { grid-column: 1; }
.nav-group:last-child { grid-column: 3; justify-content: flex-end; }
.nav__inner .lockup { grid-column: 2; grid-row: 1; }   /* nav only — the footer reuses .lockup in a plain stack */
.nav-links a {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--body);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 1px;
  background: var(--gold-line);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 0.7rem 1.4rem; font-size: 0.66rem; letter-spacing: 0.2em; }

.lockup { display: grid; justify-items: center; gap: 0.25rem; text-align: center; padding-block: 0.7rem; }
.lockup__mark { width: 3.4rem; color: var(--gold-line); }
.lockup__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.15rem);
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.lockup__rule { width: 5.5rem; color: var(--gold-line); }

.nav-toggle {
  display: none;
  width: 2.7rem; height: 2.7rem;
  padding: 0;
  background: none;
  border: 1px solid var(--gold-hair);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1px;
  margin-inline: auto;
  background: currentColor;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.nav-toggle span::before { transform: translateY(-5px); }
.nav-toggle span::after { transform: translateY(4px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(1px); }

@media (max-width: 900px) {
  /* equal outer columns so the wordmark is centred against the toggle */
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav-toggle { justify-self: start; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s var(--ease), visibility 0.45s;
  }
  .nav-group { flex-direction: column; gap: 2rem; }
  .nav-group:first-child, .nav-group:last-child { grid-column: auto; justify-content: center; }
  .nav-links a { font-size: 0.9rem; letter-spacing: 0.3em; }
  body.nav-open .nav-links { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav__inner .lockup { grid-column: 2; justify-self: center; }
}

/* ============================================================
   HERO — split: type on cream, line-art panel alongside
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  min-height: min(88svh, 780px);
  border-bottom: 1px solid var(--gold-faint);
  overflow: hidden;
}
.hero__content {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.4rem;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  padding-left: max(calc((100vw - var(--shell)) / 2), 1.5rem);
}
.hero__corner {
  position: absolute;
  width: clamp(7rem, 14vw, 12rem);
  color: var(--gold-line);
  opacity: 0.75;
  pointer-events: none;
  transform: translate3d(0, calc(var(--p, 0) * 26px), 0);
}
.hero__corner--tl { top: 1.6rem; left: 1.6rem; }
.hero__corner--bl { bottom: 1.6rem; left: 1.6rem; transform: scaleY(-1) translate3d(0, calc(var(--p, 0) * -26px), 0); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.2rem + 5.6vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-wrap: balance;
}
.hero__rule { width: clamp(8rem, 14vw, 11rem); color: var(--gold-line); }
.hero__sub {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
  line-height: 1.5;
  color: var(--gold-text);
  max-width: 22ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.5rem; }
.hero__sun {
  width: clamp(6rem, 11vw, 9rem);
  color: var(--gold-line);
  margin-top: 1.2rem;
  opacity: 0.8;
  transform: translate3d(0, calc(var(--p, 0) * 40px), 0);
}

.hero__panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(70% 60% at 60% 34%, rgba(240, 222, 196, 0.9), transparent 72%),
    linear-gradient(200deg, var(--sand), var(--paper-2) 62%, var(--paper));
  overflow: hidden;
}
.hero__panel::before {
  content: "";
  position: absolute;
  inset: 1.4rem;
  border: 1px solid var(--gold-faint);
  pointer-events: none;
}
.hero__art {
  width: min(100%, 30rem);
  color: var(--gold-line);
  transform: translate3d(0, calc(var(--p, 0) * -46px), 0);
  will-change: transform;
}
.hero__photo { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__content {
    justify-items: center;
    text-align: center;
    padding-inline: 1.5rem;
    padding-block: clamp(3.5rem, 10vw, 5rem);
  }
  .hero__sub { max-width: 30ch; }
  .hero__corner { display: none; }
  .hero__panel { min-height: 24rem; }
}
@media (max-width: 520px) {
  .hero__actions { flex-direction: column; width: min(20rem, 100%); }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   ABOUT — arch-framed image beside centred welcome copy
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about__figure { position: relative; }
.about__arch {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: end center;
  padding: clamp(1.5rem, 3vw, 2.6rem) clamp(1.5rem, 3vw, 2.6rem) clamp(3rem, 6vw, 4.5rem);
  /* the arch is the container's own border, so the outline can never drift
     out of register with the shape the way an overlaid SVG frame did */
  border: 1px solid var(--gold-line);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--sand), var(--paper-2));
  overflow: hidden;
}
.about__arch::after {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid var(--gold-faint);
  border-radius: 999px 999px 2px 2px;
  pointer-events: none;
}
.about__scene { width: 100%; color: var(--gold-line); }
.about__sun {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: clamp(4.5rem, 8vw, 6.5rem);
  transform: translateX(-50%);
  color: var(--gold-line);
  pointer-events: none;
}
.about__arch img { width: 100%; height: 100%; object-fit: cover; }

.about__caption {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.about__body { position: relative; display: grid; justify-items: center; gap: 1.2rem; text-align: center; }
.about__body .prose { text-align: center; max-width: 46ch; }
.about__moon {
  position: absolute;
  top: -2rem; right: -1.5rem;
  width: clamp(4rem, 7vw, 6.5rem);
  color: var(--gold-line);
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__figure { max-width: 22rem; margin-inline: auto; }
  .about__moon { display: none; }
}

/* ============================================================
   GATHERINGS
   ============================================================ */
.gatherings__lede { margin-inline: auto; text-align: center; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.gather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  border: 1px solid var(--gold-hair);
}
.gather {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-right: 1px solid var(--gold-faint);
  transition: background 0.5s var(--ease);
}
.gather:last-child { border-right: 0; }
.gather:hover { background: var(--paper-2); }
.gather__num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-text); }
.gather__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.8rem;
}
.gather__body { color: var(--body); font-size: 0.92rem; }
.gatherings__cta { margin-top: clamp(2.2rem, 4vw, 3rem); text-align: center; }
@media (max-width: 700px) {
  .gather { border-right: 0; border-bottom: 1px solid var(--gold-faint); }
  .gather:last-child { border-bottom: 0; }
}

/* ============================================================
   READINGS — bordered panel, three columns split by hairlines
   ============================================================ */
.readings__panel {
  border: 1px solid var(--gold-hair);
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.2rem, 3vw, 2.5rem);
  background: var(--paper);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}
.card {
  display: grid;
  /* cards stretch to the tallest sibling; without this the leftover height is
     shared out between the auto rows and the three headings stop aligning */
  align-content: start;
  gap: 0.9rem;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  border-right: 1px solid var(--gold-faint);
  text-align: center;
  justify-items: center;
}
.card:last-child { border-right: 0; }
/* Fixed square slot so every icon occupies the same box and the three
   headings always share a baseline, whatever art is dropped in. */
.card__icon {
  width: 4.2rem;
  aspect-ratio: 1;
  color: var(--gold-line);
  transition: transform 0.55s var(--ease);
}
.card__icon svg { width: 100%; height: 100%; }
.card:hover .card__icon { transform: translateY(-4px) scale(1.04); }
.card__title {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.card__body { color: var(--body); font-size: 0.93rem; max-width: 30ch; }
.readings__note { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) {
  .card { border-right: 0; border-bottom: 1px solid var(--gold-faint); }
  .card:last-child { border-bottom: 0; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: clamp(1.4rem, 2.6vw, 2.2rem);
}
.review {
  position: relative;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  border: 1px solid var(--gold-hair);
  background: var(--paper);
  text-align: center;
}
.review__body { font-family: var(--font-script); font-style: italic; font-size: 1.12rem; color: var(--body); }
.review__who { margin-top: 1.1rem; font-size: 0.67rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-text); }
.review__ctx { display: block; margin-top: 0.35rem; color: var(--muted); letter-spacing: 0.18em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--gold-faint); }
.faq details:first-of-type { border-top: 1px solid var(--gold-faint); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.3rem);
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-text); }
.faq summary i { position: relative; flex: none; width: 13px; height: 13px; }
.faq summary i::before, .faq summary i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--gold-line);
  transition: transform 0.45s var(--ease);
}
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--gold-text); }
.faq details[open] summary i::after { transform: rotate(0deg); }
.faq__body { padding: 0 0 1.6rem; color: var(--body); max-width: 58ch; }

/* ============================================================
   BOOKING
   ============================================================ */
.book__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.book__aside { display: grid; gap: 1.5rem; align-content: start; }
.book__aside .ornament { width: 9rem; color: var(--gold-line); }
.contact-line { display: grid; gap: 0.25rem; }
.contact-line dt { font-size: 0.64rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.contact-line dd { margin: 0; color: var(--ink); }
.contact-line dd a:hover { color: var(--gold-text); }

.form { display: grid; gap: 1.4rem; }
.form p { margin: 0; }
/* auto rows + default stretch would share leftover height between the label
   and the input, so fields in the same row drifted out of alignment */
.field { display: grid; gap: 0.45rem; align-content: start; }
.field > * { align-self: start; }
.field label { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--gold-text); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--gold-hair);
  border-radius: 0;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.field textarea { resize: vertical; min-height: 7.5rem; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-text);
  background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #7d736b; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238F5B2C' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 11px 8px;
}
.field select option { background: var(--paper); color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: start; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.form__note { font-size: 0.76rem; color: var(--muted); }
.form__status { font-size: 0.9rem; min-height: 1.4em; }
.form__status[data-state="ok"] { color: var(--gold-text); }
.form__status[data-state="err"] { color: #a3341f; }
@media (max-width: 860px) {
  .book__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-block: clamp(2.8rem, 6vw, 4.2rem);
  border-top: 1px solid var(--gold-faint);
  background: var(--paper-2);
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}
.footer .ornament { width: 10rem; color: var(--gold-line); }
.footer__meta { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.footer__meta a:hover { color: var(--gold-text); }
.footer__note { font-size: 0.76rem; color: var(--muted); max-width: 44ch; }

/* ============================================================
   LANDING (valleytarot.com)
   ============================================================ */
.landing {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 32%, rgba(240, 222, 196, 0.75), transparent 70%),
    var(--paper);
}
.landing__inner { display: grid; justify-items: center; gap: 1.4rem; width: var(--shell); position: relative; }
.landing__mark { width: clamp(4.5rem, 9vw, 6.5rem); color: var(--gold-line); }
.landing__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.1rem + 4.4vw, 4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.08;
  text-wrap: balance;
}
.landing__body { max-width: 42ch; }
.landing__body em { font-family: var(--font-script); font-size: 1.15em; }
.landing__sun { width: clamp(7rem, 12vw, 10rem); color: var(--gold-line); opacity: 0.8; margin-top: 0.5rem; }
.landing__corner {
  position: absolute;
  width: clamp(6rem, 12vw, 10rem);
  color: var(--gold-line);
  opacity: 0.45;
  pointer-events: none;
}
.landing__corner--tl { top: 2rem; left: 2rem; }
.landing__corner--br { bottom: 2rem; right: 2rem; transform: scale(-1); }
.landing__foot {
  position: absolute;
  left: 0; right: 0; bottom: 1.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 700px) { .landing__corner { display: none; } }

/* ============================================================
   SCROLL REVEALS — progressive enhancement
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero__art, .hero__corner, .hero__sun { transform: none !important; }
}

@media print {
  .nav, .hero__panel, .hero__corner { display: none; }
  body { background: #fff; }
}
