/* Open Dawn Entertainment — shared site styles.
   Design system lifted from the live offer page (offer/index.html):
   navy/gold palette, Oswald display, Inter body, gold-glow hovers. */

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  src: url(/assets/fonts/oswald.woff2) format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  src: url(/assets/fonts/inter.woff2) format('woff2');
  font-display: swap;
}

:root {
  color-scheme: dark;
  --navy: #0F172A;
  --card: #1E293B;
  --line: #334155;
  --line-soft: #475569;
  --white: #F8FAFC;
  --muted: #B6C0D0;
  --gold: #F0A621;
  --gold-bright: #FFD82B;
  --display: 'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}
:root[data-theme="light"], :root[data-theme="dark"] { color-scheme: dark; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--navy); }
body {
  font-family: var(--body);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 24px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
/* Animated lockup logo (site-wide) — passive shine at rest, active glow on hover.
   The passive/active WebP files (canvas 1057x889) are ~73% transparent headroom, so the
   artwork is scaled up inside a fixed layout box: the visible logo stays large while the
   nav bar height (85px) is untouched. The glow is baked into the active file, so the old
   brightness/drop-shadow hover is dropped. */
.nav-logo { position: relative; display: block; height: 96px; aspect-ratio: 1057 / 889; margin-right: auto; margin-top: -18px; margin-bottom: -18px; transition: transform 0.35s ease; }
.nav-logo img { position: absolute; inset: 0; width: 100%; height: 100%; transform: scale(2.38); transition: opacity 0.35s ease; }
.nav-logo .logo-b { opacity: 0; }
.nav-logo:hover { transform: scale(1.12); filter: none; }
.nav-logo:hover .logo-a { opacity: 0; }
.nav-logo:hover .logo-b { opacity: 1; }
.nav a.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}
.nav a.nav-link:hover { color: var(--white); border-color: var(--gold); text-shadow: 0 0 14px rgba(240, 166, 33, 0.55); }
.nav a.nav-link[aria-current="page"] { color: var(--gold); border-color: var(--gold); }
.nav a.nav-cta {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px 7px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.nav a.nav-cta:hover { background: var(--gold-bright); box-shadow: 0 0 22px rgba(255, 216, 43, 0.45); transform: translateY(-1px); }
@media (max-width: 760px) {
  .nav-inner { gap: 14px; }
  .nav a.nav-link { font-size: 0.74rem; letter-spacing: 0.1em; }
}

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 72px 0 8px; }
.eyebrow {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
/* Keyword kicker inside the H1: looks identical to the eyebrow, but sits in
   the heading so the page's H1 carries a service + location term. */
h1 .h1-kicker {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  line-height: 1.65;
  color: var(--gold);
  margin-bottom: 14px;
}
h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin: 14px 0 20px;
  text-wrap: balance;
}
.lede { font-size: 1.1rem; color: var(--muted); max-width: 34em; margin-inline: auto; transition: color 0.4s ease; }
.lede:hover { color: var(--white); }

/* ---------- Section headings ---------- */
section { margin: 72px 0; }
h2.sec {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.sec-sub { color: var(--muted); max-width: 40em; margin-bottom: 30px; }

/* ---------- Trust strip ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  margin: 56px 0;
}
.trust > div { padding: 20px 22px; border-left: 1px solid var(--line); transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; cursor: pointer; }
.trust > div:first-child { border-left: none; }
.trust > div:hover { background: var(--card); box-shadow: inset 0 2px 0 var(--gold), inset 0 -2px 0 var(--gold); padding-block: 27px; }
.trust b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.28rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.trust span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 720px) {
  .trust { grid-template-columns: 1fr; }
  .trust > div { border-left: none; border-top: 1px solid var(--line); }
  .trust > div:first-child { border-top: none; }
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { border-color: var(--gold); box-shadow: 0 18px 40px -18px rgba(240, 166, 33, 0.4); transform: translateY(-3px); }
.card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 0.97rem; }
.card .price-line { font-family: var(--display); color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.card .price-line b { color: var(--gold); font-weight: 600; font-size: 1.7rem; letter-spacing: 0.01em; font-variant-numeric: tabular-nums; transition: color 0.3s ease, text-shadow 0.3s ease; }
.card:hover .price-line b { color: var(--gold-bright); text-shadow: 0 0 16px rgba(255, 216, 43, 0.5); }
.card .price-line span { display: block; font-family: var(--body); color: var(--muted); font-size: 0.85rem; }
.card .go {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.25s ease, text-shadow 0.25s ease, letter-spacing 0.25s ease;
}
.card:hover .go { color: var(--gold-bright); text-shadow: 0 0 14px rgba(255, 216, 43, 0.55); letter-spacing: 0.2em; }
.chip {
  position: absolute;
  top: -13px;
  left: 30px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 12px 2px;
}

/* ---------- Tick lists ---------- */
ul.inc { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 14px 0 6px; }
ul.inc li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; }
ul.inc .tick { color: var(--gold); font-weight: 600; flex: 0 0 auto; transform: translateY(1px); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; margin-top: 14px; }
.step { counter-increment: step; border-top: 2px solid var(--line-soft); padding: 14px 16px 18px; transition: border-color 0.3s ease, background 0.3s ease; cursor: pointer; }
.step:hover { border-top-color: var(--gold); background: var(--card); }
.step::before {
  content: "0" counter(step);
  font-family: var(--display);
  font-weight: 500;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  transition: text-shadow 0.3s ease;
}
.step:hover::before { text-shadow: 0 0 12px rgba(240, 166, 33, 0.65); }
.step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 6px 0 8px;
}
.step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px 12px;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--gold-bright); box-shadow: 0 0 30px rgba(255, 216, 43, 0.5); transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn.ghost:hover { color: var(--navy); background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  border-block: 1px solid var(--line);
  padding: 64px 24px;
  margin: 88px 0 0;
  transition: background 0.4s ease;
}
.cta-band:hover { background: var(--card); }
.cta-band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 12px;
  text-wrap: balance;
}
.cta-band p { color: var(--muted); max-width: 36em; margin: 0 auto; }

/* ---------- Forms ---------- */
form.contact { display: grid; gap: 18px; max-width: 560px; margin-top: 26px; }
form.contact label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
form.contact label .req { color: var(--gold-bright); }
form.contact label .opt { color: var(--muted); font-weight: 400; letter-spacing: 0.06em; text-transform: none; }
form.contact input, form.contact textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
form.contact input:hover, form.contact textarea:hover { border-color: var(--line-soft); }
form.contact input:focus, form.contact textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 166, 33, 0.2);
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  margin-top: 0;
  padding: 40px 24px 48px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
/* Footer uses the same animated lockup (passive shine / active glow), scaled up inside a
   fixed box the same way as the nav; negative margins keep the footer's vertical rhythm. */
footer.site .foot-logo { position: relative; display: block; height: 104px; aspect-ratio: 1057 / 889; margin: -6px auto 8px; transition: transform 0.35s ease; }
footer.site .foot-logo img { position: absolute; inset: 0; width: 100%; height: 100%; transform: scale(2.7); transition: opacity 0.35s ease; }
footer.site .foot-logo .logo-b { opacity: 0; }
footer.site .foot-logo:hover { transform: scale(1.1); filter: none; }
footer.site .foot-logo:hover .logo-a { opacity: 0; }
footer.site .foot-logo:hover .logo-b { opacity: 1; }
footer.site a { color: var(--white); transition: color 0.25s ease, text-shadow 0.25s ease; }
footer.site a:hover { color: var(--gold-bright); text-shadow: 0 0 12px rgba(255, 216, 43, 0.5); }
footer.site .foot-nav { margin-top: 14px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
footer.site .foot-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
footer.site .foot-nav a:hover { color: var(--gold); }
footer.site .fine { margin-top: 18px; font-size: 0.85rem; }

/* ---------- Video ---------- */
.video-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.video-card:hover { border-color: var(--gold); box-shadow: 0 22px 48px -20px rgba(240, 166, 33, 0.45); transform: translateY(-3px); }
.video-card video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--navy); }
.video-card.vertical { max-width: 430px; margin-inline: auto; }
.video-card.vertical video { aspect-ratio: 9 / 16; }
.video-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.video-row .video-card { max-width: none; margin: 0; }
.video-row .video-card video { aspect-ratio: 9 / 16; }
.video-row .video-cap { padding: 12px 6px 4px; }
.video-row .video-cap b { font-size: 0.95rem; }
.video-cap {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px 8px 6px;
}
.video-cap b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.video-cap span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Photo grids ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.photo-grid.three { grid-template-columns: repeat(3, 1fr); }
.photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.photo-grid figure:hover { border-color: var(--gold); box-shadow: 0 18px 40px -18px rgba(240, 166, 33, 0.45); transform: translateY(-3px); }
.photo-grid img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; filter: saturate(1); transition: filter 0.3s ease; }
.photo-grid figure:hover img { filter: saturate(1.08) brightness(1.05); }
.photo-grid figcaption { color: var(--muted); font-size: 0.85rem; padding: 10px 6px 4px; }
.photo-grid.four { grid-template-columns: repeat(4, 1fr); }
.photo-grid.portrait img { aspect-ratio: 2 / 3; }
.photo-grid figure.wide { grid-column: 1 / -1; }
.photo-grid figure.wide img { aspect-ratio: 16 / 9; }
@media (max-width: 720px) {
  .photo-grid, .photo-grid.three { grid-template-columns: 1fr; }
  .photo-grid.four { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Prose ---------- */
.prose { max-width: 44em; }
.prose p { margin-bottom: 18px; }
.prose p.big { font-size: 1.15rem; color: var(--white); }
.prose strong { color: var(--gold); font-weight: 600; }

/* ---------- Newsletter signup ---------- */
.subscribe {
  border-block: 1px solid var(--line);
  margin: 88px 0 0;
  padding: 64px 24px;
  background:
    radial-gradient(120% 140% at 50% -10%, rgba(240, 166, 33, 0.14), rgba(15, 23, 42, 0) 60%);
}
.subscribe-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.subscribe-pitch .kick {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.subscribe-pitch h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 16px;
}
.subscribe-pitch h2 em { color: var(--gold); font-style: normal; }
.subscribe-pitch p { color: var(--muted); max-width: 34em; }
.subscribe-pitch .reassure {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.subscribe-pitch .reassure b { color: var(--gold); font-weight: 700; }

.subscribe-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.subscribe-card:hover { border-color: var(--line-soft); box-shadow: 0 22px 48px -24px rgba(240, 166, 33, 0.35); }

form.signup { display: grid; gap: 16px; }
form.signup .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.signup .field { display: block; }
form.signup label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
form.signup label .req { color: var(--gold-bright); }
form.signup label .opt { color: var(--muted); font-weight: 400; letter-spacing: 0.06em; }
form.signup input,
form.signup select {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
form.signup select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23F0A621' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
form.signup select:invalid { color: var(--muted); }
form.signup input:hover, form.signup select:hover { border-color: var(--line-soft); }
form.signup input:focus, form.signup select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 166, 33, 0.2);
}
form.signup .btn { width: 100%; margin-top: 4px; }
form.signup .foot-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 2px; }
form.signup .foot-note a { color: var(--gold); }

.signup-done { display: none; text-align: center; padding: 20px 8px; }
.subscribe-card.done form.signup { display: none; }
.subscribe-card.done .signup-done { display: block; }
.signup-done .check {
  width: 56px; height: 56px; margin: 0 auto 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(240, 166, 33, 0.15);
  color: var(--gold);
  font-size: 1.8rem;
  border: 1px solid var(--gold);
}
.signup-done h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.signup-done p { color: var(--muted); max-width: 24em; margin: 0 auto; }
.signup-error {
  display: none;
  color: #FCA5A5;
  font-size: 0.88rem;
  text-align: center;
}
.subscribe-card.errored .signup-error { display: block; }

@media (max-width: 820px) {
  .subscribe-inner { grid-template-columns: 1fr; gap: 32px; }
  .subscribe { padding: 52px 24px; margin-top: 64px; }
}
@media (max-width: 460px) {
  form.signup .row { grid-template-columns: 1fr; }
}

/* ---------- Pinned signup tab + modal ---------- */
.signup-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 11px;
  border: none;
  border-radius: 0 0 6px 6px;
  cursor: pointer;
  box-shadow: -4px 0 22px -6px rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.signup-tab:hover {
  background: var(--gold-bright);
  box-shadow: -4px 0 30px -4px rgba(255, 216, 43, 0.6);
  padding-right: 15px;
}
.signup-tab .tab-star { display: inline-block; margin-bottom: 8px; }

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 9, 18, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.signup-modal.open { opacity: 1; visibility: visible; }
.signup-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 40px -10px rgba(240, 166, 33, 0.35);
  padding: 32px 28px 28px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}
.signup-modal.open .signup-modal-card { transform: translateY(0) scale(1); }
.signup-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease;
}
.signup-modal-close:hover { color: var(--gold-bright); background: rgba(255, 216, 43, 0.12); }
.signup-modal-card .kick {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.signup-modal-card h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.04;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  text-wrap: balance;
}
.signup-modal-card h2 em { color: var(--gold); font-style: normal; }
.signup-modal-card > p.lead { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
body.modal-open { overflow: hidden; }
.signup-modal-card.done form.signup { display: none; }
.signup-modal-card.done .signup-done { display: block; }
.signup-modal-card.errored .signup-error { display: block; }

@media (max-width: 600px) {
  .signup-tab {
    writing-mode: horizontal-tb;
    transform: none;
    top: auto;
    bottom: 16px;
    right: 16px;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 0.82rem;
    box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.6);
  }
  .signup-tab:hover { padding-right: 20px; }
  .signup-tab .tab-star { margin-bottom: 0; margin-right: 6px; }
}

/* ---------- Booking (Calendly) ---------- */
.booking-card {
  border: 1px solid var(--line);
  background: var(--card);
  padding: 10px;
  margin-top: 26px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-card:hover { border-color: var(--gold); box-shadow: 0 22px 48px -22px rgba(240, 166, 33, 0.4); }
.booking-card .calendly-inline-widget { border-radius: 2px; overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}
