/* ============================================================
   Aelpha Collective — cPanel-friendly vanilla CSS
   Mirrors the visual language of the partner's React build
   (dark theme, Inter body, Bebas Neue display font).
   No build step. No framework. Drop into cPanel as-is.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --bg-0:    #0a0a0a;        /* neutral-950 */
  --bg-1:    #171717;        /* neutral-900 */
  --bg-2:    #1f1f1f;        /* slight lift from 900 */
  --line:    rgba(255,255,255,0.08);
  --line-2:  rgba(255,255,255,0.14);
  --fg:      #ffffff;
  --fg-dim:  rgba(255,255,255,0.72);
  --fg-mute: rgba(255,255,255,0.50);
  --fg-fade: rgba(255,255,255,0.40);
  --fg-ghost:rgba(255,255,255,0.20);

  --max:     1280px;
  --pad-x:   clamp(1.25rem, 4vw, 4rem);

  --display: 'podium-sharp-variable';
  --body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    ui-monospace, SFMono-Regular, Menlo, monospace;

  --tr-fast: 160ms ease;
  --tr-mid:  320ms cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--fg); color: var(--bg-0); }

.font-podium { font-family: var(--display); letter-spacing: 0.02em; font-weight: 400; }

.skip-link {
  position: absolute; top: -40px; left: 1rem; z-index: 200;
  background: var(--fg); color: var(--bg-0);
  padding: .5rem .75rem; border-radius: 2px;
}
.skip-link:focus { top: .75rem; }

main { display: block; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.25rem var(--pad-x);
  background: transparent;
  transition: background var(--tr-mid), border-color var(--tr-mid), padding var(--tr-mid);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  padding-top: .85rem; padding-bottom: .85rem;
}

.brand { display: inline-flex; align-items: center; gap: .85rem; }
.brand img {
  width: 40px; height: 40px; object-fit: contain;
  border-radius: 999px; border: 1px solid var(--line);
  background: rgba(10,10,10,0.7); padding: 2px;
  transition: transform .4s ease;
}
.brand:hover img { transform: rotate(12deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.05rem;
}
.brand-text em {
  font-style: normal; font-weight: 500; color: var(--fg-mute);
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  margin-top: .25rem;
}

.primary-nav { display: flex; align-items: center; gap: 2.25rem; }
.primary-nav a {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-dim); padding: .35rem 0;
  transition: color var(--tr-fast);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--fg); }

.book-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  padding: .65rem 1rem;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  transition: background var(--tr-fast), border-color var(--tr-fast);
}
.book-cta svg { width: 12px; height: 12px; color: rgba(255,255,255,0.7); transition: transform var(--tr-fast); }
.book-cta:hover { background: rgba(255,255,255,0.08); border-color: var(--line); }
.book-cta:hover svg { transform: translate(2px, -2px); }

/* Phone call button (header) — circular icon, visible on desktop AND mobile */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  transition: background var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
  text-decoration: none;
  margin-left: auto;
}
.call-btn svg { width: 16px; height: 16px; }
.call-btn:hover {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.5);
  color: var(--fg);
  text-decoration: none;
  transform: scale(1.05);
}

.nav-toggle {
  display: none; align-items: center; gap: .35rem;
  flex-direction: column; padding: .35rem .25rem;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--fg); transition: width var(--tr-fast); }
.nav-toggle span:nth-child(3) { width: 16px; margin-left: 6px; }
.nav-toggle b { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--fg-mute); margin-top: 4px; }

@media (max-width: 880px) {
  .primary-nav { display: none; }
  .book-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  /* On mobile: brand | phone | hamburger (hamburger pushed to far right) */
  .call-btn { margin-left: auto; order: 2; }
  .nav-toggle { order: 3; margin-left: 0.5rem; }
}

/* Mobile menu (CSS-only via :target would require unique URLs; we use
   a checkbox hack-free approach with .is-open toggled from main.js). */
.mobile-nav {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.25rem var(--pad-x);
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--tr-mid), transform var(--tr-mid);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav nav a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.75rem, 8vw, 3rem); color: var(--fg-dim);
}
.mobile-nav nav a:hover { color: var(--fg); transform: translateX(6px); }
.mobile-nav .mobile-close { align-self: flex-end; padding: .5rem; border-radius: 999px; background: rgba(255,255,255,0.05); }
@media (min-width: 881px) { .mobile-nav { display: none; } }

/* ---------- Buttons & shared ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 600;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  padding: .95rem 1.5rem;
  border: 1px solid transparent;
  transition: background var(--tr-fast), color var(--tr-fast), border-color var(--tr-fast), transform var(--tr-fast);
}
.btn svg { width: 14px; height: 14px; }
.btn-primary { background: var(--fg); color: var(--bg-0); }
.btn-primary:hover { background: #e5e5e5; }
.btn-primary:hover svg { transform: translate(2px, -2px); }
.btn-ghost { border-color: var(--line-2); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--line); background: rgba(255,255,255,0.05); }
.btn-soft { background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--fg); }
.btn-soft:hover { background: rgba(255,255,255,0.10); }

.text-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600;
  color: var(--fg); border-bottom: 1px solid var(--line-2); padding-bottom: .2rem;
  transition: border-color var(--tr-fast), color var(--tr-fast);
}
.text-link:hover { border-color: var(--fg); }
.text-link svg { width: 12px; height: 12px; }
.text-link--muted { color: var(--fg-mute); border-color: transparent; }
.text-link--muted:hover { color: var(--fg); border-color: transparent; }

.divider-dot { color: var(--fg-ghost); padding: 0 .25rem; }

.eyebrow {
  display: inline-block; font-size: .68rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--fg-mute); margin-bottom: 1rem;
  font-weight: 800;
}
.eyebrow--light { color: var(--fg-mute); }
.eyebrow--mono { font-family: var(--mono); font-size: .65rem; letter-spacing: .25em; }

.pill {
  display: inline-block; padding: .25rem .6rem; font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--fg-dim);
}
.pill--ghost { background: transparent; color: var(--fg-dim); }
.pill--faint { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: var(--fg-dim); }

/* ---------- Section padding helper ---------- */
.section-pad { padding: clamp(4rem, 10vw, 8rem) var(--pad-x); }

/* ---------- HERO ---------- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; padding: 5rem var(--pad-x) 0;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out, transform 6s ease-in-out;
  transform: scale(1.02);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 45%, rgba(10,10,10,0.88) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding-bottom: 6rem;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .9rem; border-radius: 999px;
  background: rgba(10,10,10,0.6); backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  width: fit-content;
  margin-bottom: .25rem;
  animation: fadeUp .9s ease both;
}
.hero-aperture { width: 14px; height: 14px; color: rgba(255,255,255,0.85); animation: spin 12s linear infinite; display: inline-flex; }
.hero-aperture svg { width: 100%; height: 100%; }
.hero-tagline-text { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; font-weight: 500; }

.hero-headline {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; line-height: 1; letter-spacing: 0.01em;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  margin: 0;
}
.hero-headline .line { display: block; opacity: 0; transform: translateY(20px); animation: fadeUp .9s ease forwards; }
.hero-headline .line:nth-child(1) { animation-delay: .15s; }
.hero-headline .line:nth-child(2) { animation-delay: .30s; }
.hero-headline .line:nth-child(3) { animation-delay: .45s; }

/* All H1, H2, H3 elements using .font-podium match the original React
   source's inherited font-bold (700) default — the React source's
   index.css doesn't set font-weight anywhere on .font-podium, so headers
   fell through to the browser default. The hero-headline above has its
   own font-weight declaration and is unaffected. */
h1.font-podium,
h2.font-podium,
h3.font-podium { font-weight: 900; }

/* Display headings: Black weight (900) and tight line-height (1.05) so
   wrapped multi-line headings stack close together without descenders
   kissing the next line. Applies to ALL H2/H3 site-wide so every
   display heading reads as a single visual block. H1 gets the same
   weight but even tighter line-height (1) since it tends to be one
   line of larger text.

   Weight 900 matches the original React source's FSP DEMO - PODIUM
   Sharp 4.11 (which only ships in Black) so the variable Typekit
   version reads with comparable visual density. font-variation-settings
   is used instead of font-weight for the H1/H2/H3 cascade because
   some browsers round weight:900 on variable fonts down to 800; the
   wght axis syntax bypasses that rounding. */
h1, h2, h3 {
  font-weight: 900;
  font-variation-settings: "wght" 900;
  line-height: 1.05;
}
h1 { line-height: 1; }

/* Slight tracking tightening on display headings to compensate for the
   heavier weight — Black weight + default tracking reads slightly
   loose. -0.01em is a subtle nudge, not a redesign. */
h1, h2, h3 { letter-spacing: -0.005em; }

.hero-sub {
  max-width: 38rem; color: var(--fg-dim);
  font-size: clamp(.92rem, 1.2vw, 1rem);
  opacity: 0; animation: fadeUp .9s ease .6s forwards;
}
.hero-sub strong { color: var(--fg); font-weight: 600; }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; animation: fadeUp .9s ease .75s forwards;
}

.hero-stats {
  position: absolute; left: var(--pad-x); right: var(--pad-x);
  bottom: 4.5rem; z-index: 2;
  display: flex; gap: clamp(1.5rem, 6vw, 5rem);
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s ease .9s forwards;
}
.hero-stat { display: flex; flex-direction: column; gap: .25rem; }
.hero-stat + .hero-stat { padding-left: clamp(1.5rem, 6vw, 5rem); border-left: 1px solid var(--line); }
.stat-headline { font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: var(--fg); margin: 0; }
.stat-sub { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--fg-fade); margin: 0; }

.hero-dots {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
  z-index: 3; display: flex; flex-direction: column; gap: .5rem;
}
.hero-dot {
  width: 6px; height: 18px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: background var(--tr-fast), width var(--tr-mid);
}
.hero-dot.is-active { background: var(--fg); width: 6px; height: 28px; }
.hero-dot:hover { background: rgba(255,255,255,0.5); }
@media (max-width: 720px) {
  .hero-dots { display: none; }

  /* Hero bottom stack — actions vertical, stats in-flow (not absolute). */
  .hero {
    height: auto; min-height: 100svh;
    padding-top: 5.5rem; padding-bottom: 1.5rem;
    justify-content: flex-start;
  }
  .hero-content { gap: 1.25rem; }
  .hero-actions {
    flex-direction: column; align-items: stretch;
    gap: .75rem; width: 100%;
  }
  .hero-actions .btn { width: 100%; padding: 1.05rem 1.25rem; }
  .hero-stats {
    position: static; margin-top: 1.5rem;
    flex-direction: column; gap: 1rem;
    padding-top: 1.25rem;
  }
  .hero-stat + .hero-stat {
    padding-left: 0; border-left: 0;
    padding-top: 1rem; border-top: 1px solid var(--line);
  }
  /* Darken the bottom of the overlay so stacked content reads cleanly. */
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(10,10,10,0.62) 0%,
      rgba(10,10,10,0.32) 45%,
      rgba(10,10,10,0.92) 100%);
  }
}

.hero-discover {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: inline-flex; flex-direction: column; align-items: center; gap: .35rem;
  color: var(--fg-fade); font-size: .55rem; letter-spacing: .3em; text-transform: uppercase;
  animation: bounceY 2.2s ease-in-out infinite;
}
.hero-discover svg { width: 16px; height: 16px; }
@media (max-width: 720px) { .hero-discover { display: none; } }

/* ---------- Intro band ---------- */
.intro-band {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  text-align: center;
}
.intro-inner { max-width: 56rem; margin: 0 auto; }
.intro-band h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  margin: 0 0 1.25rem;
}
.intro-lede { color: var(--fg-dim); max-width: 36rem; margin: 0 auto 2.5rem; }
.intro-pills { padding-top: 2rem; border-top: 1px solid var(--line); }
.intro-pills-label {
  font-size: .55rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--fg-fade); margin: 0 0 1rem;
}
.pill-row {
  display: flex; flex-wrap: wrap; gap: .55rem;
  justify-content: center;
}
.pill-row li {
  padding: .35rem .85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--fg-dim);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.pill-row li:hover { background: rgba(255,255,255,0.08); color: var(--fg); }

/* ---------- Process ---------- */
.process { padding: clamp(4rem, 9vw, 7rem) var(--pad-x); background: var(--bg-0); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.process-inner { position: relative; max-width: var(--max); margin: 0 auto; }
.section-header {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 0;
}
.section-aside {
  max-width: 18rem; color: var(--fg-mute);
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  margin: 0;
}
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.process-card {
  position: relative;
  background: rgba(23,23,23,0.4);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--tr-fast), border-color var(--tr-fast), background var(--tr-fast);
}
.process-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--fg);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr-mid);
}
.process-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: rgba(23,23,23,0.6); }
.process-card:hover::after { transform: scaleX(1); }
.process-card-head { display: flex; justify-content: space-between; align-items: center; }
.process-step-num {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-mute);
}
.process-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-dim);
}
.process-icon svg { width: 18px; height: 18px; }
.process-card h3 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .02em;
  margin: 0;
}
.process-card p { color: var(--fg-dim); margin: 0; font-size: .9rem; }

/* ---------- Services ---------- */
.services {
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  background: rgba(23,23,23,0.4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-inner { max-width: var(--max); margin: 0 auto; }
.services-header {
  max-width: 36rem; margin: 0 auto 5rem; text-align: center;
}
.services-header h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 0;
}
.services-rule { width: 3rem; height: 2px; background: rgba(255,255,255,0.18); margin: 1.5rem auto 0; }
.services-stack { display: flex; flex-direction: column; gap: clamp(4rem, 9vw, 7rem); }
.service-row {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .service-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-row--odd .service-photo { order: 2; }
}
.service-photo {
  display: block; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-0); border: 1px solid var(--line);
  position: relative;
}
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-photo:hover img { transform: scale(1.05); }

/* Decorative gradient tile — used by 404 page in place of a missing
   photo. Keeps the 4:3 aspect + border so the layout matches the
   image variant. */
.service-photo--gradient {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-1) 60%, color-mix(in srgb, var(--bg-2) 60%, white 6%) 100%);
  display: flex; align-items: center; justify-content: center;
}
.service-photo-glyph { color: rgba(255,255,255,0.28); display: inline-flex; }
.service-photo-glyph svg { width: clamp(3rem, 8vw, 5rem); height: auto; }

.service-copy { display: flex; flex-direction: column; gap: .85rem; align-items: flex-start; }
.service-copy h3 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900; font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  text-transform: uppercase; letter-spacing: .02em; margin: 0;
}
.service-copy p { color: var(--fg-dim); margin: 0; font-size: .95rem; }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(4rem, 9vw, 7rem) var(--pad-x); }
.gallery-inner { max-width: var(--max); margin: 0 auto; }
.gallery-header {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.gallery-header h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 0;
}
.gallery-filters { display: flex; flex-wrap: wrap; gap: .35rem; }
.filter-chip {
  padding: .55rem .85rem;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(255,255,255,0.04); color: var(--fg-dim);
  border: 1px solid var(--line); border-radius: 2px;
  transition: background var(--tr-fast), color var(--tr-fast);
}
.filter-chip:hover { background: rgba(255,255,255,0.10); color: var(--fg); }
.filter-chip.is-active { background: var(--fg); color: var(--bg-0); border-color: var(--fg); font-weight: 700; }

.gallery-grid {
  columns: 1; column-gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
@media (min-width: 1280px) { .gallery-grid { columns: 4; } }
.gallery-item {
  display: block; break-inside: avoid; margin-bottom: 1rem;
  background: var(--bg-1); border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: opacity var(--tr-mid), border-color var(--tr-fast);
}
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; height: auto; max-height: 500px; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.7);
  opacity: 0; transition: opacity var(--tr-mid);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-top { display: flex; justify-content: space-between; align-items: flex-start; }
.gallery-overlay-bottom { display: flex; flex-direction: column; gap: .25rem; }
.gallery-index { font-family: var(--mono); font-size: .65rem; color: var(--fg-fade); }
.gallery-title { font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; margin: 0; color: var(--fg); }
.gallery-cta { font-size: .65rem; color: var(--fg-mute); display: inline-flex; align-items: center; gap: .35rem; margin: 0; }
.gallery-cta svg { width: 12px; height: 12px; color: var(--fg-fade); }

.gallery-footer { text-align: center; margin-top: 3rem; }

/* ---------- Pull-quote ---------- */
.pullquote {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pullquote-glow {
  position: absolute; width: 24rem; height: 24rem;
  border-radius: 999px; background: rgba(255,255,255,0.025);
  filter: blur(48px); pointer-events: none;
}
.pullquote-glow--tl { top: -50%; left: -25%; }
.pullquote-glow--br { bottom: -50%; right: -25%; }
.pullquote-inner { position: relative; max-width: 56rem; margin: 0 auto; text-align: center; }
.pullquote-heart {
  width: 40px; height: 40px;
  display: inline-flex; margin: 0 auto 2rem; color: rgba(255,255,255,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.pullquote-heart svg { width: 100%; height: 100%; }
.pullquote blockquote {
  font-family: var(--display); font-weight: 400; font-style: italic;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.15; margin: 0; color: var(--fg);
}
.pullquote cite {
  display: block; margin-top: 1.5rem;
  font-style: normal; font-size: .7rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--fg-mute);
}

/* ---------- About ---------- */
.about { padding: clamp(4rem, 9vw, 7rem) var(--pad-x); background: var(--bg-0); }
.about-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .about-inner { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.about-card {
  position: relative;
  padding: 3rem;
  border: 1px solid var(--line);
  background: rgba(23,23,23,0.4);
  text-align: center;
}
.about-corner { position: absolute; width: 32px; height: 32px; }
.about-corner--tl { top: -1px; left: -1px; border-top: 1px solid var(--line-2); border-left: 1px solid var(--line-2); }
.about-corner--br { bottom: -1px; right: -1px; border-bottom: 1px solid var(--line-2); border-right: 1px solid var(--line-2); }
.about-logo { width: 112px; height: 112px; object-fit: contain; margin: 0 auto 2rem; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-1); }
.about-name { font-family: var(--display); font-size: 1.5rem; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.about-sub { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--fg-mute); margin: .5rem 0 0; }
.about-meta { padding-top: 1.5rem; margin-top: 2rem; border-top: 1px solid var(--line); font-size: .75rem; color: var(--fg-fade); }
.about-meta p { margin: .25rem 0; }
.about-meta-bold { color: var(--fg-dim); font-weight: 600; }

.about-copy { display: flex; flex-direction: column; gap: 1rem; }
.about-copy h2 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}
.about-copy p { color: var(--fg-dim); font-size: 1rem; margin: 0; }
.about-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--line);
}

/* ---------- Inquiry widget ---------- */
.inquiry {
  padding: clamp(4rem, 9vw, 7rem) var(--pad-x);
  background: var(--bg-1);
  border-top: 1px solid var(--line);
}
.inquiry-inner { max-width: 56rem; margin: 0 auto; }
.inquiry-card {
  background: var(--bg-0);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.inquiry-head { text-align: center; max-width: 32rem; margin: 0 auto 2.5rem; }
.inquiry-head h3 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 .5rem;
}
.inquiry-sub { font-size: .85rem; color: var(--fg-mute); margin: 0; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.inquiry-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 600;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--fg);
  font-size: .85rem; letter-spacing: 0;
  text-transform: none;
  border-radius: 2px;
  transition: border-color var(--tr-fast);
}
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { outline: none; border-color: var(--fg); }
.inquiry-form textarea { resize: vertical; min-height: 7rem; }
.inquiry-form select { appearance: none; cursor: pointer; }

.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row--two { grid-template-columns: 1fr 1fr; } }

.form-submit-row {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  padding-top: 1rem;
}
.form-disclaimer { color: var(--fg-fade); font-size: .6rem; max-width: 24rem; margin: 0; }

.honeypot {
  position: absolute !important; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden;
  opacity: 0; pointer-events: none;
}

.inquiry-success { text-align: center; padding: 1.5rem 0; }
.inquiry-success-icon {
  display: inline-flex; width: 56px; height: 56px;
  background: rgba(255,255,255,0.05); border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--fg);
  align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.inquiry-success-icon svg { width: 32px; height: 32px; }
.inquiry-success h4 { font-family: var(--display); font-size: 1.5rem; letter-spacing: .02em; text-transform: uppercase; margin: 0 0 .5rem; }
.inquiry-success p { color: var(--fg-dim); max-width: 32rem; margin: 0 auto 2rem; }
.inquiry-success-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.inquiry-error {
  padding: .85rem 1rem; background: rgba(127, 29, 29, 0.5);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fecaca; font-size: .85rem;
}

/* ---------- Site footer ---------- */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 4rem var(--pad-x) 2rem;
}
.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Row 1: CTA intro + cards grid */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-2);
}
@media (min-width: 880px) {
  .footer-cta {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.footer-cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: var(--fg);
}
.footer-cta-address {
  display: inline-flex; gap: .65rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-cta-address svg { width: 22px; height: 22px; color: var(--fg-dim); flex-shrink: 0; margin-top: 4px; }
.footer-cta-address-name { color: var(--fg); margin: 0; font-weight: 500; }
.footer-cta-address-line { color: var(--fg-mute); margin: 0; font-size: .9rem; }
.footer-cta-service {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  font-size: .7rem; color: var(--fg-fade);
  margin: 0;
}
.footer-cta-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cta-cards .contact-card {
  flex: 1 1 14rem;
}

.contact-pulse {
  width: 8px; height: 8px; border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulseDot 1.6s ease-out infinite;
}

.contact-card {
  flex: 1 1 14rem;
  padding: 2rem;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 2rem;
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast);
}
.contact-card--solid { background: var(--fg); color: var(--bg-0); }
.contact-card--solid:hover { background: #e5e5e5; }
.contact-card--ghost { background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--fg); }
.contact-card--ghost:hover { background: rgba(255,255,255,0.08); }
.contact-card-icon { width: 24px; height: 24px; margin-bottom: 1.5rem; opacity: .5; }
.contact-card--ghost .contact-card-icon { color: var(--fg-mute); }
.contact-card-title {
  font-family: var(--display); font-weight: 400; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .02em; margin: 0 0 .5rem;
  text-align: left;
}
.contact-card-sub { font-size: .8rem; opacity: .7; margin: 0; text-align: left; }
.contact-card-cta {
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: .35rem;
  align-self: flex-end;
}
.contact-card-cta svg { width: 14px; height: 14px; }
.contact-card--ghost .contact-card-cta { color: rgba(255,255,255,0.8); }
.contact-card--ghost .contact-card-cta svg { color: rgba(255,255,255,0.6); }

.contact-bottom {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
  padding-top: 3rem;
}
.contact-brand { display: inline-flex; align-items: center; gap: 1rem; }
.contact-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 999px; border: 1px solid var(--line); padding: 4px; }
.contact-brand-name { font-family: var(--display); font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; margin: 0; }
.contact-brand-sub { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--fg-mute); margin: .25rem 0 0; }

.contact-nav { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .75rem; }
.contact-nav a { color: var(--fg-mute); transition: color var(--tr-fast); }
.contact-nav a:hover { color: var(--fg); }

.contact-socials { display: flex; gap: .5rem; }
.contact-social {
  display: inline-flex; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 999px; color: var(--fg-dim);
  transition: background var(--tr-fast), color var(--tr-fast);
}
.contact-social svg { width: 20px; height: 20px; }
.contact-social:hover { background: rgba(255,255,255,0.10); color: var(--fg); }

.contact-meta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: .65rem; color: var(--fg-fade);
}
.contact-meta p { margin: 0; }
.contact-meta a {
  display: inline-flex; align-items: center; gap: .25rem;
  color: var(--fg); text-transform: uppercase; letter-spacing: .02em;
  transition: text-decoration-color var(--tr-fast);
}
.contact-meta a:hover { text-decoration: underline; }
.contact-meta svg { width: 12px; height: 12px; }

/* ---------- Site footer ---------- */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 4rem var(--pad-x) 2rem;
}
.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* Row 1: CTA intro + cards grid */
.footer-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .footer-cta {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.footer-cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: var(--fg);
}
.footer-cta-address {
  display: inline-flex; gap: .65rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-cta-address svg { width: 22px; height: 22px; color: var(--fg-dim); flex-shrink: 0; margin-top: 4px; }
.footer-cta-address-name { color: var(--fg); margin: 0; font-weight: 500; }
.footer-cta-address-line { color: var(--fg-mute); margin: 0; font-size: .9rem; }
.footer-cta-service {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1rem;
  background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  font-size: .7rem; color: var(--fg-fade);
  margin: 0;
}
.footer-cta-cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cta-cards .contact-card {
  flex: 1 1 14rem;
}

/* ---------- Contact page (separate route) ---------- */
.page-hero {
  padding: clamp(6rem, 14vw, 10rem) var(--pad-x) clamp(3rem, 8vw, 6rem);
  text-align: center;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 48rem; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--display); font-weight: 900; font-variation-settings: "wght" 900;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1.2rem, 5.2vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
@media (max-width: 480px) {
  .page-hero h1 { letter-spacing: 0; }
}
.page-hero-sub { color: var(--fg-dim); margin: 0; }
.page-hero-sub a { border-bottom: 1px solid var(--line); }
.page-hero-sub a:hover { border-color: var(--fg); }

.contact-page-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-page-inner { grid-template-columns: 1fr 1.4fr; gap: 4rem; } }

.contact-page-card h2 { font-family: var(--display); font-size: 1.5rem; letter-spacing: .02em; text-transform: uppercase; margin: 0 0 .85rem; }
.contact-page-card p { color: var(--fg-dim); margin: 0 0 1.5rem; }
.contact-info-list { display: flex; flex-direction: column; gap: .65rem; }
.contact-info-list li { display: grid; grid-template-columns: 5rem 1fr; gap: 1rem; align-items: baseline; font-size: .9rem; }
.contact-info-list strong { color: var(--fg-fade); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }
.contact-info-list span { color: var(--fg-dim); }

.contact-page-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-page-form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 600;
}
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  padding: .85rem 1rem;
  background: var(--bg-1);
  border: 1px solid var(--line);
  color: var(--fg); font-size: .9rem; text-transform: none;
  border-radius: 2px;
  transition: border-color var(--tr-fast);
}
.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus { outline: none; border-color: var(--fg); }
.contact-page-form select { appearance: none; cursor: pointer; }
.contact-page-form textarea { resize: vertical; }

.notice { padding: .85rem 1rem; font-size: .9rem; border-radius: 2px; }
.notice--success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #bbf7d0; }
.notice--error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #fecaca; }

/* ---------- Reveal on scroll ----------
   Default: visible. JS opts IN to animation by adding `.js-reveal-ready`
   to the html element, which then hides everything with .reveal and lets
   the IntersectionObserver progressively show each one. This way:
     - No-JS visitors see the page immediately (accessibility / SEO).
     - JS-disabled crawlers and headless screenshot tools see the page.
     - JS-enabled browsers get the staggered fade-up effect.
*/
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js-reveal-ready .reveal { opacity: 0; transform: translateY(12px); }
.js-reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bounceY {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -6px); }
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-slide { transition: none; }
  .hero-slideshow { display: block; }
  .hero-slide:not(.is-active) { display: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .hero-dots, .hero-discover, .nav-toggle { display: none !important; }
  body { background: white; color: black; }
}

/* ---------- Special font hooks (placeholder; Bebas Neue covers &, +, and
   quotes natively, so these spans render identically to surrounding text.) ---------- */
.font-special-ampersand { font-family: var(--display); font-weight: 400; display: inline; }
.font-special-symbol { font-family: var(--display); display: inline; }
/* ---------- Phone modal (desktop) ---------- */
.phone-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}
.phone-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.phone-modal {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem 2.25rem 1.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 200ms ease;
}
.phone-modal-backdrop.is-open .phone-modal {
  transform: scale(1);
}
.phone-modal-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.phone-modal-number {
  font-family: var(--display);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  letter-spacing: 0.04em;
  color: var(--fg);
  margin: 0 0 1.5rem;
  user-select: all;
  -webkit-user-select: all;
}
.phone-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.phone-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-2);
  color: var(--fg);
  border-radius: 4px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  font-family: inherit;
}
.phone-modal-btn:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.5);
}
.phone-modal-btn-primary {
  background: var(--fg);
  color: var(--bg-0);
  border-color: var(--fg);
}
.phone-modal-btn-primary:hover {
  background: var(--fg);
  color: var(--bg-0);
  border-color: var(--fg);
  opacity: 0.9;
}
.phone-modal-hint {
  margin: 1.25rem 0 0;
  font-size: 0.7rem;
  color: var(--fg-fade);
  letter-spacing: 0.05em;
}
