/* ==========================================================================
   Tarot With G — Design System v2
   Two colors only: Navy #002133 + White. Gold #ce9647 accent throughout.
   Headings: Playfair Display (bold, readable). Accent script: Cormorant Garamond.
   Body/UI: Montserrat.
   ========================================================================== */

:root {
  --navy: #002133;
  --navy-deep: #001420;
  --gold: #ce9647;
  --gold-light: #e6bd85;
  --gold-dim: rgba(206, 150, 71, 0.14);
  --line-gold: rgba(206, 150, 71, 0.35);
  --white: #ffffff;
  --off: #f7f5f1;
  --ink: #0f1b22;
  --muted: #566067;
  --muted-on-dark: #c3cdd2;
  --on-dark: #ffffff;

  --font-head: 'Playfair Display', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
.grid-2, .grid-3, .grid-4, .grid-5 { min-width: 0; }
.grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-5 > * { min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); display: inline-block; }

.display {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section--dark .display { color: var(--white); }
h1.display { font-size: clamp(36px, 5.2vw, 62px); }
h2.display { font-size: clamp(28px, 3.6vw, 42px); }
h3.display { font-size: clamp(21px, 2.2vw, 26px); }

.section-title { font-family: var(--font-head); font-weight: 700; color: var(--navy); }
.section--dark .section-title { color: var(--white); }

.lede {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}
.section--dark .lede { color: var(--muted-on-dark); }

.body-copy { font-family: var(--font-sans); font-size: 17px; line-height: 1.8; color: var(--muted); }
.section--dark .body-copy { color: var(--muted-on-dark); }
.body-copy strong { color: var(--navy); }
.section--dark .body-copy strong { color: var(--white); }

/* ---------- Sections: TWO backgrounds only ---------- */
.section { padding: 92px 0; }
.section--light { background: var(--white); color: var(--ink); }
.section--dark { background: var(--navy); color: var(--on-dark); position: relative; }
.section--dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../assets/img/starfield-bg.jpg'); background-size: 900px; opacity: 0.10; mix-blend-mode: screen; pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }
.section--dark.is-cosmic::before { animation: driftStars 140s linear infinite; opacity: 0.16; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--tight { padding: 56px 0; }

.divider--h { height: 2px; width: 64px; background: var(--gold); margin: 22px 0; }

/* ---------- Buttons — solid only, always readable ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px;
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: normal;
  text-align: center;
  max-width: 100%;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(206,150,71,0.6); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0,33,51,0.5); }
.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(0,0,0,0.25); }
.btn--sm { padding: 12px 22px; font-size: 12px; }
.link-inline { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ---------- Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(0, 20, 32, 0.0);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.is-scrolled { background: rgba(0, 20, 32, 0.92); backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 1px 0 var(--line-gold); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1360px; }
.brand img { height: 76px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; flex-shrink: 0; }
.nav-links a { font-size: 11px; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600; color: var(--white); opacity: 0.88; position: relative; padding: 4px 0; white-space: nowrap; flex-shrink: 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; color: var(--gold-light); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 26px; position: relative; z-index: 200; }

@media (max-width: 1240px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
    background: var(--navy-deep); flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 40px; gap: 26px; transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.4); z-index: 150;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* ---------- Footer (has image texture) ---------- */
.footer-banner { height: 240px; background-image: url('../assets/img/footer-spread.jpg'); background-size: cover; background-position: center 35%; position: relative; }
.footer-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,33,51,0) 0%, var(--navy) 96%); }
@media (max-width: 700px) { .footer-banner { height: 160px; } }
.site-footer { background: var(--navy); color: var(--muted-on-dark); padding: 56px 0 26px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/img/starfield-bg.jpg'); background-size: 800px; opacity: 0.12; mix-blend-mode: screen; }
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(206,150,71,0.22); }
.footer-grid img.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-grid h4 { font-family: var(--font-sans); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-grid a, .footer-grid p { font-size: 14.5px; line-height: 2.1; color: var(--muted-on-dark); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { min-width: 0; flex: 1 1 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { border: 1px solid rgba(206,150,71,0.4); border-radius: 999px; padding: 8px 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Grids / cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid rgba(0,33,51,0.1); border-radius: var(--radius); padding: 36px 30px; box-shadow: 0 24px 50px -32px rgba(0,33,51,0.3); }

/* enquiry form */
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field label { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 15.5px; color: var(--navy);
  background: var(--white); border: 1.5px solid rgba(0,33,51,0.15); border-radius: 10px;
  padding: 13px 16px; width: 100%; transition: border-color 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.section--dark .card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); box-shadow: none; }
.card img.badge { width: 88px; height: 88px; margin-bottom: 20px; border-radius: 0; }

/* ---------- Reveal-on-scroll (subtle, inner pages only) ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-28px); } [data-reveal="left"].in-view { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); } [data-reveal="right"].in-view { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.96); } [data-reveal="scale"].in-view { transform: scale(1); }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 100ms); }

/* ---------- Page hero — ALWAYS has an image, split layout ---------- */
.page-hero { padding: 150px 0 0; background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/img/starfield-bg.jpg'); background-size: 700px; opacity: 0.14; mix-blend-mode: screen; animation: driftStars 100s linear infinite; }
.page-hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: end; padding-bottom: 0; }
.page-hero-copy { padding-bottom: 60px; }
.breadcrumb { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 700; }
.page-hero-img { align-self: end; }
.page-hero-img img { display: block; width: 100%; max-height: 480px; object-fit: cover; object-position: top center; border-radius: 20px 20px 0 0; }
.page-hero-img.is-cutout img { object-fit: contain; max-height: 460px; margin: 0 auto; }
.page-hero-img.is-cutout { position: relative; display: flex; align-items: center; justify-content: center; }
.frame.cutout { position: relative; display: flex; align-items: center; justify-content: center; }
.page-hero-img.is-cutout .glow, .frame.cutout .glow { position: absolute; width: 55%; height: 55%; background: radial-gradient(circle, rgba(206,150,71,0.32), transparent 70%); filter: blur(20px); animation: pulseGlow 5s ease-in-out infinite; z-index: -1; pointer-events: none; }

.page-hero .display, .page-hero .section-title { color: var(--white); }
.page-hero .lede { color: var(--muted-on-dark); }
.page-hero .body-copy { color: var(--muted-on-dark); }
@media (max-width: 900px) { .page-hero .wrap { grid-template-columns: 1fr; } .page-hero-img img { max-height: 320px; } }

/* ---------- Pill / tag ---------- */
.pill { display: inline-block; padding: 7px 18px; border: 1.5px solid var(--gold); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

/* ---------- Testimonial slider ---------- */
.t-slider { position: relative; max-width: 800px; margin: 0 auto; text-align: center; min-height: 240px; }
.t-slide { display: none; }
.t-slide.is-active { display: block; animation: fadeUp .7s var(--ease); }
.t-slide .stars { color: var(--gold); font-size: 18px; letter-spacing: 5px; margin-bottom: 22px; }
.t-slide q { font-family: var(--font-accent); font-style: italic; font-size: clamp(21px, 2.6vw, 28px); line-height: 1.55; color: var(--white); quotes: '"' '"'; }
.t-slide cite { display: block; margin-top: 22px; font-style: normal; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.t-dots { display: flex; gap: 10px; justify-content: center; margin-top: 36px; }
.t-dots button { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--gold); background: transparent; padding: 0; }
.t-dots button.is-active { background: var(--gold); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }

/* ---------- Accordion (FAQ) ---------- */
.acc-item { border-bottom: 1px solid rgba(0,33,51,0.14); }
.acc-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 28px 0; font-family: var(--font-head); font-weight: 700; font-size: 20px; text-align: left; width: 100%; background: none; border: none; color: var(--navy); }
.acc-q .plus { color: var(--gold); font-size: 24px; transition: transform .3s var(--ease); flex-shrink: 0; }
.acc-item.is-open .plus { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc-a p { padding-bottom: 26px; max-width: 68ch; font-size: 16.5px; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 56px; }
.mt-md { margin-top: 30px; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; align-items: center; gap: 16px; }
.scarcity-note { font-family: var(--font-accent); font-style: italic; font-size: 23px; color: var(--gold); }

.price-card { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 36px 32px; }
.price-card .amount { font-family: var(--font-head); font-weight: 700; font-size: 44px; color: var(--gold-light); line-height: 1; }
.price-card .amount-label { font-family: var(--font-sans); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-on-dark); margin-top: 8px; display: block; }
.price-card .loyalty { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 15px; color: var(--muted-on-dark); }
.price-card .loyalty strong { color: var(--gold-light); }

.icon-num { width: 56px; height: 56px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--navy-deep); flex-shrink: 0; font-size: 22px; }
.icon-badge { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }

/* image frame — rectangular, no circle crops */
.frame img { border-radius: var(--radius); width: 100%; }
.frame.cutout { text-align: center; }
.frame.cutout img { border-radius: 0; max-height: 560px; width: auto; margin: 0 auto; }

/* sub-nav (services page) */
.subnav { position: sticky; top: 78px; z-index: 40; background: var(--navy); padding: 16px 0; }
.subnav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.subnav-links a { padding: 10px 22px; border-radius: 999px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); border: 1px solid rgba(206,150,71,0.4); }
.subnav-links a:hover { background: var(--gold-dim); }

.region-toggle { display: inline-flex; border: 1.5px solid var(--gold); border-radius: 999px; padding: 5px; gap: 4px; }
.region-toggle button { border: none; background: transparent; padding: 10px 22px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-on-dark); }
.region-toggle button.is-active { background: var(--gold); color: var(--navy-deep); }

.service-block { padding: 80px 0; border-bottom: 1px solid rgba(0,33,51,0.08); }
.service-block:last-child { border-bottom: none; }
.dur-tag { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

.coming-soon-tag { position: absolute; top: 24px; right: 24px; }

/* End CTA banners — always with image */
.cta-banner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--navy); border-radius: 0; overflow: hidden; }
.cta-banner-copy { padding: 70px 56px; display: flex; flex-direction: column; justify-content: center; }
.cta-banner-copy .display, .cta-banner-copy .section-title { color: var(--white); text-wrap: balance; }
.cta-banner-copy .body-copy { color: var(--muted-on-dark); }
.cta-banner-copy .lede { color: var(--muted-on-dark); }
.cta-banner-img { min-height: 440px; background-size: cover; background-position: center; }
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; } .cta-banner-img { min-height: 320px; order: -1; } .cta-banner-copy { padding: 48px 30px; } }

/* Speaking page "Have Something Else In Mind" CTA */
.speaking-cta { position: relative; overflow: hidden; min-height: 420px; border-top: 1px solid rgba(206,150,71,0.4); border-bottom: 1px solid rgba(206,150,71,0.4); }
.speaking-cta-img { position: absolute; left: 0; top: 0; height: 100%; width: 46%; object-fit: cover; object-position: center; pointer-events: none; -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%); mask-image: linear-gradient(to right, black 65%, transparent 100%); }
.speaking-cta-inner { position: relative; z-index: 2; min-height: 420px; padding: 64px 0; display: flex; align-items: center; justify-content: flex-end; }
.speaking-cta-text { max-width: 480px; text-align: left; }
@media (max-width: 700px) {
  .speaking-cta { min-height: 0; }
  .speaking-cta-img { position: relative; width: 100%; height: 220px; -webkit-mask-image: none; mask-image: none; }
  .speaking-cta-inner { min-height: 0; padding: 32px 20px; justify-content: flex-start; background: var(--navy); }
  .speaking-cta-text { max-width: 100%; text-align: left; }
}

/* Float CTA */
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; background: var(--gold); color: var(--navy-deep); border-radius: 999px; padding: 14px 22px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 14px 30px -12px rgba(0,0,0,0.5); display: flex; align-items: center; gap: 8px; }

#scroll-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 200; width: 0%; }

/* ==========================================================================
   HOME — cinematic hero (kept: moving starfield background)
   ========================================================================== */
.hero { min-height: 92vh; display: flex; align-items: center; background: radial-gradient(120% 90% at 50% -10%, #073349 0%, var(--navy) 45%, var(--navy-deep) 100%); position: relative; overflow: hidden; padding: 150px 0 70px; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: url('../assets/img/starfield-bg.jpg'); background-size: 900px; opacity: 0.22; mix-blend-mode: screen; animation: driftStars 90s linear infinite; }
@keyframes driftStars { from { background-position: 0 0; } to { background-position: -900px -900px; } }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
.hero-copy .eyebrow { opacity: 0; animation: riseIn .9s var(--ease) .2s forwards; }
.hero-copy h1 { opacity: 0; animation: riseIn 1s var(--ease) .4s forwards; color: var(--white); }
.hero-copy .lede { opacity: 0; animation: riseIn 1s var(--ease) .65s forwards; margin-top: 22px; color: var(--muted-on-dark); }
.hero-copy .hero-ctas { opacity: 0; animation: riseIn 1s var(--ease) .9s forwards; margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-copy .hero-meta { opacity: 0; animation: riseIn 1s var(--ease) 1.1s forwards; margin-top: 44px; display: flex; gap: 30px; flex-wrap: wrap; }
.hero-meta .item { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 9px; }
.hero-meta .item span { color: var(--muted-on-dark); text-transform: none; letter-spacing: 0; font-family: var(--font-accent); font-style: italic; font-size: 16px; font-weight: 400; }
@keyframes riseIn { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: translateY(0);} }

.hero-photo { position: relative; display: flex; align-items: center; justify-content: center; opacity: 0; animation: riseIn 1.3s var(--ease) .5s forwards; }
.hero-photo img { max-height: 620px; width: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)); }
.hero-photo .glow { position: absolute; width: 60%; height: 60%; background: radial-gradient(circle, rgba(206,150,71,0.32), transparent 70%); filter: blur(20px); animation: pulseGlow 5s ease-in-out infinite; z-index: -1; }
@keyframes pulseGlow { 0%, 100% { opacity: 0.6; transform: scale(1);} 50% { opacity: 1; transform: scale(1.08);} }
.hero-sparkle { position: absolute; color: var(--gold); opacity: 0; animation: sparkle 2.4s ease-in-out infinite; pointer-events: none; }
.ring-dot { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.65; pointer-events: none; }
@keyframes sparkle { 0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg);} 50% { opacity: 1; transform: scale(1) rotate(90deg);} }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--gold); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; opacity: 0; animation: riseIn 1s var(--ease) 1.5s forwards; font-weight: 700; }
.scroll-cue::after { content: ''; display: block; width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); margin: 10px auto 0; animation: cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove { 0% { transform: scaleY(0.3); opacity: 0.3; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(0.3); opacity: 0.3; } }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .hero-ctas, .hero-meta { justify-content: center; }
  .hero-photo img { max-height: 400px; margin-top: 30px; }
}

/* page preview tiles (home) */
.preview-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.preview-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.preview-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.preview-tile:hover img { transform: scale(1.08); }
.preview-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,32,0.1), rgba(0,20,32,0.9)); }
.preview-tile .tile-label { position: absolute; left: 20px; bottom: 20px; right: 20px; z-index: 1; }
.preview-tile .tile-label .eyebrow { margin-bottom: 8px; font-size: 10.5px; }
.preview-tile .tile-label h4 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--white); }
@media (max-width: 980px) { .preview-tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .preview-tiles { grid-template-columns: 1fr; } }
