/* =========================================================
   Ms. Angelique Luna, The Pleasure Psychic
   Celestial / lunar purple theme
   ========================================================= */

:root {
  /* Night-sky purples */
  --bg:        #150a24;
  --bg-2:      #1d0e33;
  --panel:     #241140;
  --panel-2:   #2c1650;
  --line:      rgba(232, 183, 92, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);

  /* Accents */
  --violet:    #a855f7;
  --violet-2:  #8b5cf6;
  --violet-dk: #6d28d9;
  --gold:      #e8b75c;
  --gold-lt:   #f3d08a;
  --rose:      #e0518f;

  /* Text */
  --ink:       #f5eefc;
  --ink-soft:  #cbb9e4;
  --ink-mute:  #9a86bb;

  /* Type */
  --f-logo:    'Cinzel', Georgia, serif;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Effects */
  --grad-violet: linear-gradient(120deg, var(--violet), var(--rose));
  --grad-gold:   linear-gradient(120deg, var(--gold-lt), var(--gold));
  --shadow:      0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --radius:      18px;
  --container:   1180px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 700px at 80% -10%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(224, 81, 143, 0.12), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--violet); color: #fff; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: #2a1444; padding: 10px 18px; border-radius: 0 0 10px 10px;
  z-index: 200; font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }

.eyebrow {
  font-family: var(--f-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section__lede { color: var(--ink-soft); font-size: 1.12rem; margin-top: 18px; }

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: var(--pad-y) var(--pad-x); border-radius: 9px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  text-align: center; line-height: 1;
}
.btn--primary {
  background: var(--gold); color: #241140; border-color: var(--gold); font-weight: 600;
}
.btn--primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(232, 183, 92, 0.55); }
.btn--primary:focus-visible { outline-color: var(--ink); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(245, 238, 252, 0.28);
}
.btn--ghost:hover { background: rgba(245, 238, 252, 0.06); transform: translateY(-2px); border-color: rgba(245, 238, 252, 0.6); }
.btn--small { --pad-y: 11px; --pad-x: 22px; font-size: 0.85rem; }
.btn--lg { --pad-y: 18px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.link-gold { color: var(--gold); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.link-gold:hover { border-color: var(--gold); }

/* ---------- Crescent moon glyph ---------- */
.brand__moon {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  box-shadow: inset -8px -4px 0 0 var(--gold);
  filter: drop-shadow(0 0 7px rgba(232, 183, 92, 0.55));
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(21, 10, 36, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; max-width: var(--container); margin: 0 auto; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--f-logo); font-size: 1.18rem; letter-spacing: 0.08em; color: var(--ink); }
.brand__tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a:not(.btn) {
  font-size: 0.9rem; color: var(--ink-soft); font-weight: 400; letter-spacing: 0.03em;
  position: relative; padding: 4px 0; transition: color 0.2s;
}
.nav__links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__phone {
  color: var(--gold) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em !important;
  white-space: nowrap;
}
.nav__phone:hover { color: var(--ink) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding: 130px 0 90px; }
.hero__stars { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__moon {
  position: absolute; top: 8%; right: 7%; width: 200px; height: 200px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 38% 35%, #fff7e6, var(--gold) 55%, #b9863a 100%);
  box-shadow: 0 0 80px 12px rgba(232, 183, 92, 0.45), inset -22px -14px 36px rgba(120, 80, 20, 0.5);
  opacity: 0.92;
}
.hero__glow {
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.28), transparent 65%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(2.7rem, 6.6vw, 5rem); line-height: 1.02; letter-spacing: 0.005em;
  margin-bottom: 24px;
}
.hero__sub { color: var(--ink-soft); font-size: 1.18rem; max-width: 560px; margin-bottom: 34px; }
.hero__sub strong { color: var(--ink); font-weight: 500; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.04em; }
.hero__trust li { white-space: nowrap; }

.hero__portrait { position: relative; }
.hero__portrait-frame {
  position: relative; border-radius: 280px 280px 24px 24px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 3 / 5;
  background: #2a1148;
}
.hero__portrait-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(109, 40, 217, 0.15), rgba(21, 10, 36, 0.55)),
              linear-gradient(120deg, rgba(168, 85, 247, 0.25), rgba(224, 81, 143, 0.18));
  mix-blend-mode: multiply;
}
.hero__portrait-frame img { width: 100%; height: 100%; object-fit: contain; object-position: 50% 100%; background: #2a1148; }
.hero__portrait figcaption {
  text-align: center; margin-top: 16px; font-family: var(--f-display); font-style: italic;
  font-size: 1.1rem; color: var(--gold-lt);
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(232, 183, 92, 0.5); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scroll 1.8s infinite;
}
@keyframes scroll { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line); background: rgba(0, 0, 0, 0.2);
  overflow: hidden; padding: 20px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display); font-size: 1.5rem; font-style: italic; color: var(--ink-soft);
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__photo { position: relative; }
.about__photo img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; object-fit: cover; object-position: center 30%;
}
.about__badge {
  position: absolute; bottom: -16px; right: -10px;
  background: var(--panel); border: 1px solid var(--line); color: var(--ink-soft);
  padding: 12px 18px; border-radius: 12px; font-size: 0.82rem; box-shadow: var(--shadow);
}
.about__badge em { color: var(--gold); font-style: normal; font-weight: 600; }
.about__copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.06rem; }
.about__copy .section__title { margin-bottom: 24px; }
.about__quote {
  font-family: var(--f-display); font-style: italic; font-size: 1.5rem; line-height: 1.4;
  color: var(--ink); border-left: 3px solid var(--gold); padding: 6px 0 6px 24px; margin: 26px 0;
}
.about__quote em { color: var(--gold-lt); }
.creds {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 32px;
}
.creds li {
  font-size: 0.82rem; color: var(--ink); background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; letter-spacing: 0.02em;
}

/* ---------- Cards (expertise) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 36px 30px; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(420px 200px at 50% -20%, rgba(168, 85, 247, 0.25), transparent 70%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(232, 183, 92, 0.4); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 34px 26px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.price:hover { transform: translateY(-5px); border-color: rgba(232, 183, 92, 0.35); }
.price__name { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 6px; }
.price__amt { font-family: var(--f-display); font-size: 3rem; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 16px; }
.price__amt span { font-size: 1.4rem; vertical-align: super; margin-right: 2px; }
.price__amt--text { font-size: 2rem; font-style: italic; }
.price__desc { color: var(--ink-soft); font-size: 0.95rem; flex: 1; margin-bottom: 24px; }
.price__flag {
  position: absolute; top: -12px; left: 26px;
  background: var(--grad-violet); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
}
.price__flag--gold { background: var(--grad-gold); color: #3a230a; }
.price--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow); transform: translateY(-8px); }
.price--featured:hover { transform: translateY(-12px); }
.price--wide { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px 40px; }
.price--wide .price__name { width: 100%; }
.price--wide .price__amt { margin-bottom: 0; }
.price--wide .price__desc { flex: 1 1 300px; margin-bottom: 0; }
.price--wide .btn { flex: none; min-width: 240px; }

.sessions__note {
  text-align: center; margin-top: 36px; color: var(--ink-soft); font-size: 0.98rem;
  background: rgba(168, 85, 247, 0.08); border: 1px solid var(--line); border-radius: 100px;
  padding: 14px 28px; max-width: 760px; margin-inline: auto;
}

/* ---------- How it works ---------- */
.how { overflow: hidden; }
.how__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.14; filter: saturate(0.7);
}
.how::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg), transparent 20%, transparent 80%, var(--bg)),
              radial-gradient(circle at 50% 50%, transparent, rgba(21, 10, 36, 0.6));
}
.how > .container { position: relative; z-index: 2; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: rgba(36, 17, 64, 0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 30px; text-align: center;
}
.step__num {
  display: inline-grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 22px;
  font-family: var(--f-display); font-size: 1.8rem; font-weight: 700; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 24px -6px rgba(232, 183, 92, 0.6);
}
.step h3 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.quote {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 40px; position: relative;
}
.quote__mark { font-family: var(--f-display); font-size: 5rem; line-height: 0.6; color: var(--violet); height: 36px; }
.quote blockquote { font-family: var(--f-display); font-size: 1.6rem; font-style: italic; line-height: 1.4; color: var(--ink); }
.quote figcaption { margin-top: 20px; color: var(--gold); font-weight: 600; letter-spacing: 0.04em; }
.quote--feature { background: linear-gradient(150deg, rgba(168, 85, 247, 0.2), var(--bg-2)); }
.quote--invite { display: flex; flex-direction: column; justify-content: center; text-align: center; }
.quote--invite .quote__icon { font-size: 2.2rem; margin-bottom: 16px; }
.quote--invite blockquote { font-size: 1.3rem; }

/* ---------- Contact ---------- */
.contact { overflow: hidden; }
.contact__glow {
  position: absolute; top: -10%; right: -5%; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 81, 143, 0.18), transparent 65%); pointer-events: none;
}
/* Single centred column — the lead form that used to sit beside this is gone. */
.contact__inner {
  position: relative; z-index: 2;
  max-width: 620px; margin: 0 auto; text-align: center;
}
.contact__inner .section__title { margin-bottom: 20px; }
.contact__lede { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 30px; }
.contact__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 32px 0 28px;
}
.contact__actions .btn { min-width: 190px; }
.contact__photo { margin: 30px 0; }
.contact__photo img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact__photo figcaption { margin-top: 12px; font-size: 0.9rem; color: var(--ink-mute); font-style: italic; }
.contact__sister { font-size: 0.98rem; }

/* ---------- Form ---------- */
.form {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow); position: relative;
}
.form__row { margin-bottom: 20px; }
.form__two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label, .booking__form label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.03em; }
.form label span[aria-hidden], .booking__form label span[aria-hidden] { color: var(--rose); }
.form .muted, .booking__form .muted { color: var(--ink-mute); font-weight: 300; }
.form input, .form select, .form textarea,
.booking__form input, .booking__form select, .booking__form textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: rgba(0, 0, 0, 0.25); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 13px 16px; transition: border-color 0.2s, box-shadow 0.2s; font-weight: 300;
}
.form textarea, .booking__form textarea { resize: vertical; }
.form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8b75c' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form input::placeholder, .form textarea::placeholder,
.booking__form input::placeholder, .booking__form textarea::placeholder { color: var(--ink-mute); }
.form input:focus, .form select:focus, .form textarea:focus,
.booking__form input:focus, .booking__form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232, 183, 92, 0.18);
}
.form input.invalid, .form textarea.invalid,
.booking__form input.invalid, .booking__form textarea.invalid { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(224, 81, 143, 0.18); }
.form .btn { margin-top: 6px; }
.form__fineprint { text-align: center; font-size: 0.8rem; color: var(--ink-mute); margin-top: 14px; }

.form__success {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 8px; padding: 40px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); animation: fadeIn 0.5s var(--ease);
}
.form__success span { font-size: 3rem; }
.form__success h3 { font-family: var(--f-display); font-size: 1.8rem; font-weight: 600; }
.form__success p { color: var(--ink-soft); max-width: 320px; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: rgba(0, 0, 0, 0.25); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-family: var(--f-logo); font-size: 1.15rem; letter-spacing: 0.06em; }
.footer__tag { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; }
.footer__nav a { color: var(--ink-soft); font-size: 0.9rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__copy { color: var(--ink-mute); font-size: 0.82rem; font-style: italic; font-family: var(--f-display); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__copy { order: 2; }
  .hero__portrait { order: 1; max-width: 380px; margin: 0 auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__moon { width: 130px; height: 130px; top: 90px; right: 24px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 460px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-5px); }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .quotes { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px; padding: 40px;
    background: rgba(21, 10, 36, 0.97); backdrop-filter: blur(16px);
    border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }

  /* CRITICAL: `backdrop-filter` on .nav.scrolled turns .nav into a containing
     block for its position:fixed children, so the drawer resolved `inset:0`
     against the 61px bar instead of the viewport and collapsed to a sliver.
     Drop the filter while the menu is open — the solid background below keeps
     the bar legible, and the drawer has its own blur. */
  .nav.menu-open,
  .nav.menu-open.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(21, 10, 36, 0.92);
  }

  /* Dim the page behind the drawer so it reads as a layer, and give people
     something obvious to tap to dismiss it. */
  .nav.menu-open::after {
    content: '';
    position: fixed; inset: 0;
    background: rgba(10, 4, 20, 0.55);
    z-index: -1;
  }

  /* Long menus must still be reachable on short screens. */
  .nav__links { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .nav__links a:not(.btn) { font-size: 1.2rem; }
  /* `.nav__cta` carries .btn but no colour variant, so it rendered as bare
     text. In the drawer it needs to read as the primary action. */
  .nav__cta {
    margin-top: 18px; width: 100%;
    background: var(--gold); color: #241140; border-color: var(--gold);
    font-size: 0.95rem; padding: 14px 22px;
  }
  .nav__toggle { display: flex; z-index: 101; }

  /* Hero was 1.66 screens tall on a 375px phone — the headline and the
     "Book a Reading" button both sat below the fold. Shorten it and put the
     words first; the portrait follows. */
  .hero { min-height: auto; padding: 96px 0 52px; }
  .hero__inner { gap: 26px; }
  .hero__copy { order: 1; }
  .hero__portrait { order: 2; max-width: 200px; }
  .hero__portrait-frame { aspect-ratio: 3 / 4; border-radius: 20px; }
  .hero__sub { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  /* Decorative only. Sits partly off-canvas so it never crosses the eyebrow
     or the centred headline (the section clips it). */
  .hero__moon { width: 62px; height: 62px; top: 52px; right: -24px; opacity: 0.6; }
  .hero__scroll { display: none; }

  /* The tagline wrapped onto a second line and ran into the hamburger.
     The hero eyebrow restates it immediately, so drop it here. */
  .brand__tag { display: none; }
  .nav__inner { padding: 14px 18px; }

  .cards { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .price--wide { flex-direction: column; align-items: flex-start; }
  .price--wide .btn { width: 100%; }
  .form__two { grid-template-columns: 1fr; gap: 0; }

  .booking__types { grid-template-columns: 1fr; }
  .booking__steps { gap: 6px 12px; font-size: 0.68rem; }
  .booking__steps li span { width: 19px; height: 19px; font-size: 0.65rem; }
  .cal { max-width: none; }
  .cal__grid { min-height: 0; }
  .booking__summary-price { margin-left: 0; }

  .about__quote { font-size: 1.3rem; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .section__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }

  .events__list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .events__list { grid-template-columns: 1fr; }
}

/* ---------- Motion / accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ===================== EVENTS ===================== */
/* ---------- Booking (custom Calendly + Stripe form) ---------- */
.booking { background: linear-gradient(180deg, transparent, rgba(232,183,92,0.03), transparent); }

.booking__panel {
  margin-top: 40px;
  background: rgba(21, 10, 36, 0.6);
  border: 1px solid rgba(232, 183, 92, 0.18);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: clamp(22px, 4vw, 44px);
}

/* Step rail */
.booking__steps {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  padding-bottom: 22px; margin-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute);
}
.booking__steps li { display: flex; align-items: center; gap: 8px; transition: color 0.25s; }
.booking__steps li span {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid currentColor; font-size: 0.72rem;
}
.booking__steps li.is-active { color: var(--gold); }
.booking__steps li.is-active span { background: var(--gold); color: #2a1444; border-color: var(--gold); }
.booking__steps li.is-done { color: var(--ink-soft); }
.booking__steps li.is-done span { background: rgba(232,183,92,0.2); }

/* Loading / spinner */
.booking__state { display: grid; place-items: center; gap: 14px; padding: 60px 0; color: var(--ink-mute); }
.spinner {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(232, 183, 92, 0.25);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.booking__step { border: 0; }
.booking__step legend {
  font-family: var(--f-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink); margin-bottom: 18px;
}
.booking__back { margin-top: 24px; }
.booking__tz { color: var(--ink-mute); font-size: 0.88rem; margin: -8px 0 18px; }
.booking__empty { color: var(--ink-mute); padding: 24px 0; }

/* Session type cards */
.booking__types { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.type-card {
  display: flex; flex-direction: column; gap: 10px; text-align: left;
  padding: 18px 20px; cursor: pointer;
  background: rgba(44, 22, 80, 0.5);
  border: 1px solid var(--line-soft); border-radius: 14px;
  color: var(--ink); font-family: inherit; font-size: 1rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.type-card:hover { border-color: rgba(232,183,92,0.45); transform: translateY(-2px); }
.type-card.is-selected { border-color: var(--gold); background: rgba(232,183,92,0.1); }
.type-card__name { font-family: var(--f-display); font-size: 1.25rem; line-height: 1.25; }
.type-card__meta { display: flex; align-items: baseline; gap: 12px; }
.type-card__dur { color: var(--ink-mute); font-size: 0.85rem; }
.type-card__price { margin-left: auto; color: var(--gold); font-weight: 500; }

/* Calendar */
.cal { max-width: 420px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { font-family: var(--f-display); font-size: 1.25rem; }
.cal__nav {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--line-soft);
  color: var(--ink); font-size: 1.2rem; line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.cal__nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { margin-bottom: 6px; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-mute); text-align: center; }
.cal__grid { min-height: 240px; }
.cal__loading { grid-column: 1 / -1; display: grid; place-items: center; padding: 60px 0; }
.cal__pad { aspect-ratio: 1; }
.cal__day {
  aspect-ratio: 1; display: grid; place-items: center;
  background: transparent; border: 1px solid transparent; border-radius: 10px;
  color: var(--ink-mute); font-family: inherit; font-size: 0.95rem;
  cursor: default; transition: all 0.18s;
}
.cal__day.is-open {
  color: var(--ink); cursor: pointer;
  background: rgba(168, 85, 247, 0.16);
  border-color: rgba(168, 85, 247, 0.35);
}
.cal__day.is-open:hover { background: var(--gold); border-color: var(--gold); color: #2a1444; }
.cal__day:disabled { opacity: 0.35; }
.cal__empty { margin-top: 16px; color: var(--ink-mute); font-size: 0.9rem; }

/* Time chips */
.booking__times { display: flex; flex-wrap: wrap; gap: 10px; min-height: 80px; }
/* Messages inside the chip row must take a whole line, not sit beside a chip. */
.booking__times > .booking__error,
.booking__times > .booking__empty { flex: 1 0 100%; margin: 0; }
.time-chip {
  padding: 11px 18px; cursor: pointer;
  background: rgba(44, 22, 80, 0.5);
  border: 1px solid var(--line-soft); border-radius: 999px;
  color: var(--ink); font-family: inherit; font-size: 0.95rem;
  transition: all 0.18s;
}
.time-chip:hover { border-color: var(--gold); color: var(--gold); }
.time-chip.is-selected { background: var(--gold); border-color: var(--gold); color: #2a1444; font-weight: 500; }

/* Summary + submit */
.booking__summary {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  padding: 16px 20px; margin-bottom: 26px;
  background: rgba(232, 183, 92, 0.08);
  border: 1px solid rgba(232, 183, 92, 0.28); border-radius: 12px;
}
.booking__summary-name { font-family: var(--f-display); font-size: 1.2rem; }
.booking__summary-when { color: var(--ink-soft); font-size: 0.92rem; }
.booking__summary-price { margin-left: auto; color: var(--gold); font-weight: 500; }
.booking__error {
  margin: 16px 0 0; padding: 12px 16px; border-radius: 10px;
  background: rgba(224, 81, 143, 0.14); border: 1px solid rgba(224, 81, 143, 0.4);
  color: #ffd7e7; font-size: 0.92rem;
}

.booking__secure {
  text-align: center; font-size: 0.82rem; color: var(--ink-mute); margin-top: 12px;
}

/* Confirmed */
.booking__done { text-align: center; padding: 40px 0; }
.booking__done span { font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 12px; }
.booking__done h3 { font-family: var(--f-display); font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 10px; }
.booking__done p { color: var(--ink-soft); }
.booking__done .muted { font-size: 0.9rem; margin-top: 8px; }

/* Fallback */
.booking__fallback-panel { text-align: center; padding: 30px 0; color: var(--ink-soft); }
.booking__fallback-panel a { color: var(--gold); border-bottom: 1px solid rgba(232,183,92,0.4); }

.events { background: linear-gradient(180deg, transparent, rgba(232,183,92,0.04), transparent); }
.events__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 2rem auto 2.25rem;
  max-width: 900px;
}
.events__list li {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(232,183,92,0.35);
  border-radius: 12px;
  background: rgba(26,11,46,0.35);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  text-align: center;
  color: #f4e9d1;
}
.events__cta { text-align: center; margin-top: 1.5rem; }
.events__note { margin-top: 0.85rem; opacity: 0.85; font-size: 0.95rem; }
.events__note a { color: #e8b75c; text-decoration: none; border-bottom: 1px solid rgba(232,183,92,0.4); }

/* ===================== CONTACT DIRECT ===================== */
.contact__direct {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  /* Centre each row on its own content now that the column is centred. */
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}
.contact__direct li { display: flex; align-items: center; gap: 0.6rem; }
.contact__direct span[aria-hidden] { color: #e8b75c; font-size: 1.1rem; width: 1.25rem; text-align: center; }
.contact__direct a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(232,183,92,0.35); }
.contact__direct a:hover { color: #e8b75c; }
.contact__direct .muted { opacity: 0.6; font-size: 0.9rem; }

/* ===================== ABOUT AVAILABLE ===================== */
.about__available {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid #e8b75c;
  background: rgba(232,183,92,0.06);
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}
