/* TB Music — one-page, motion-forward (respects prefers-reduced-motion) */

:root {
  --bg-deep: #05040a;
  --bg-elevated: #0c0a14;
  --surface: rgba(18, 14, 32, 0.65);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f4f2ff;
  --muted: rgba(244, 242, 255, 0.62);
  --faint: rgba(244, 242, 255, 0.35);
  --magenta: #ff2d92;
  --cyan: #00f0ff;
  --gold: #ffd447;
  --violet: #8b5cff;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 1.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .gallery__cell:hover img,
  .gallery__cell:focus-within img,
  .hero__photo {
    transform: none !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top,
#about,
#services,
#experience,
#areas,
#faq,
#gallery,
#reviews,
#contact {
  scroll-margin-top: calc(var(--nav-h) + 0.75rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--cyan);
  color: #000;
  font-weight: 600;
  border-radius: 0.25rem;
}

.skip-link:focus {
  left: 0.5rem;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(139, 92, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(255, 45, 146, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(0, 240, 255, 0.1), transparent 45%),
    var(--bg-deep);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, backdrop-filter 0.35s;
}

.nav[data-scrolled="true"] {
  background: rgba(5, 4, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--stroke);
}

.nav__inner {
  width: min(72rem, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.nav__logo-dot {
  color: var(--magenta);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
  margin-left: 0.35rem;
  color: var(--bg-deep) !important;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  font-weight: 600 !important;
}

.nav__cta:hover {
  color: #fff !important;
  filter: brightness(1.08);
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__drawer {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(5, 4, 10, 0.95);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.nav__drawer[hidden] {
  display: none;
}

.nav__drawer a {
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
}

.nav__drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
  gap: 2rem;
}

.hero__media {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  pointer-events: none;
  overflow: hidden;
}

.hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero__media-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(5, 4, 10, 0.94) 0%, rgba(5, 4, 10, 0.72) 38%, rgba(5, 4, 10, 0.35) 72%, rgba(5, 4, 10, 0.55) 100%),
    linear-gradient(185deg, rgba(5, 4, 10, 0.45) 0%, transparent 42%, rgba(5, 4, 10, 0.88) 100%);
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.hero__glow {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__glow--1 {
  width: min(50vw, 28rem);
  height: min(50vw, 28rem);
  top: 10%;
  right: 5%;
  background: var(--magenta);
  animation: float-glow 14s ease-in-out infinite;
}

.hero__glow--2 {
  width: min(40vw, 22rem);
  height: min(40vw, 22rem);
  bottom: 15%;
  left: 0;
  background: var(--cyan);
  animation: float-glow 18s ease-in-out infinite reverse;
}

@keyframes float-glow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(8%, -6%) scale(1.08);
  }
  66% {
    transform: translate(-6%, 4%) scale(0.95);
  }
}

.hero__grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: linear-gradient(105deg, var(--cyan) 0%, var(--magenta) 45%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hue-shift 10s ease-in-out infinite alternate;
}

@keyframes hue-shift {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(25deg);
  }
}

.hero__tagline {
  margin: -0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255, 212, 71, 0.25);
}

.hero__lead {
  margin: 0 0 2rem;
  max-width: 28rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  color: #05040a;
  background: linear-gradient(135deg, var(--cyan), #7af0ff);
  box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
}

.btn--primary:hover {
  box-shadow: 0 0 32px rgba(0, 240, 255, 0.35);
  filter: brightness(1.05);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* Hero visualizer */
.hero__viz {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 14rem;
  padding-bottom: 2rem;
}

@media (min-width: 960px) {
  .hero__viz {
    min-height: 22rem;
  }
}

.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 10rem;
  padding: 0 1rem;
  z-index: 2;
}

.eq__bar {
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  height: 28%;
  animation: eq-bounce 1.1s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0.9;
}

@keyframes eq-bounce {
  0%,
  100% {
    height: 22%;
  }
  50% {
    height: 100%;
  }
}

.hero__orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  width: min(70vw, 22rem);
  height: min(70vw, 22rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: spin-slow 28s linear infinite;
}

.hero__ring--delay {
  width: min(55vw, 17rem);
  height: min(55vw, 17rem);
  border-color: rgba(0, 240, 255, 0.2);
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.marquee__chunk {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}

.marquee__dot {
  color: var(--magenta);
  font-size: 0.5rem;
  opacity: 0.8;
}

/* ——— Photo gallery ——— */
.section--gallery {
  padding-top: 3.5rem;
}

.gallery__grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.25rem;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(200px, 55vw);
}

@media (min-width: 720px) {
  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, 14vw);
    gap: 1rem;
  }

  .gallery__cell--venue {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
  }

  .gallery__cell--worship {
    grid-column: 5 / span 2;
    grid-row: 1;
  }

  .gallery__cell--concert {
    grid-column: 5 / span 2;
    grid-row: 2;
  }

  .gallery__cell--wedding {
    grid-column: 1 / span 3;
    grid-row: 3;
  }

  .gallery__cell--party {
    grid-column: 4 / span 3;
    grid-row: 3;
  }
}

.gallery__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.2rem);
  border: 1px solid var(--stroke);
  background: var(--bg-elevated);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.gallery__cell img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out), opacity 0.35s;
}

.gallery__cell:hover img,
.gallery__cell:focus-within img {
  transform: scale(1.06);
}

.gallery__cell::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 4, 10, 0.88) 100%);
  opacity: 0.85;
  transition: opacity 0.35s;
}

.gallery__cell:hover::after,
.gallery__cell:focus-within::after {
  opacity: 0.95;
}

.gallery__cell figcaption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 242, 255, 0.95);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

.section__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__deck {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__head--split {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section__head--split {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }

  .section__head--split .section__deck {
    margin-bottom: 0.25rem;
  }
}

.text-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Story cards */
.story__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .story__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .card--tall {
    grid-row: span 2;
  }
}

.card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(0, 240, 255, 0.25);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.card__icon {
  font-size: 1.25rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card--tall {
  background:
    linear-gradient(145deg, rgba(139, 92, 255, 0.15), transparent 55%),
    var(--surface);
}

/* Bento */
.bento {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
  }

  .bento__cell--wide {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
}

.bento__cell {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--stroke);
  min-height: 10rem;
}

.bento__cell--wide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento__tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.bento__text {
  margin: 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 1rem;
}

.bento__cell--accent {
  background: linear-gradient(160deg, rgba(255, 45, 146, 0.2), rgba(5, 4, 10, 0.9));
  border-color: rgba(255, 45, 146, 0.25);
}

.bento__cell--accent .bento__tag {
  color: var(--gold);
}

.bento__wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 4.5rem;
  margin-top: 1.5rem;
}

.bento__wave-bar {
  flex: 1;
  min-width: 4px;
  max-width: 12px;
  height: var(--h, 40%);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  opacity: 0.5;
  animation: wave-dance 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.06s);
}

.bento__wave-bar:nth-child(odd) {
  animation-delay: 0.15s;
}

@keyframes wave-dance {
  0%,
  100% {
    transform: scaleY(0.6);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.85;
  }
}

/* Vibe banner */
.section--vibe {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.vibe__banner {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid var(--stroke);
  background: linear-gradient(120deg, #120a1e 0%, #1a0a24 40%, #0a1420 100%);
}

.vibe__banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(255, 45, 146, 0.12), transparent, rgba(0, 240, 255, 0.1), transparent);
  animation: spin-slow 20s linear infinite;
}

.vibe__banner-inner {
  position: relative;
  padding: 3rem 1.75rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .vibe__banner-inner {
    padding: 3.5rem 2rem 2rem;
  }
}

.vibe__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
}

.vibe__headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
}

.vibe__stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--stroke);
  border-top: 1px solid var(--stroke);
}

@media (min-width: 640px) {
  .vibe__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(5, 4, 10, 0.85);
}

.stat__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.05em;
}

.stat__num,
.stat__suffix {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__suffix {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--faint);
}

/* Reviews wall */
.section--reviews {
  padding-bottom: 4rem;
}

.reviews__disclaimer {
  margin: -0.5rem 0 1.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.reviews__wall {
  display: grid;
  gap: 1.15rem;
  margin-top: 0.5rem;
}

@media (min-width: 720px) {
  .reviews__wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .reviews__wall {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 20rem;
  }

  .review-card--spotlight {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  .reviews__wall .review-card:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .reviews__wall .review-card:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .reviews__wall .review-card:nth-of-type(4) {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
}

.review-card {
  position: relative;
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%),
    linear-gradient(210deg, rgba(139, 92, 255, 0.12), transparent 55%),
    var(--surface);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.45s var(--ease-out);
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.35rem;
  left: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 6.5rem);
  line-height: 1;
  background: linear-gradient(165deg, rgba(0, 240, 255, 0.35), rgba(255, 45, 146, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.55;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.25deg);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 240, 255, 0.12),
    0 0 48px rgba(255, 45, 146, 0.08);
}

.review-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.25deg);
}

.review-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 48%,
    transparent 56%
  );
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}

.review-card:hover .review-card__shine {
  transform: translateX(100%);
}

.review-card--spotlight {
  padding: 1.75rem 1.5rem 1.5rem;
  background:
    radial-gradient(ellipse 90% 80% at 20% 0%, rgba(255, 45, 146, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(0, 240, 255, 0.1), transparent 45%),
    var(--surface);
  border-color: rgba(0, 240, 255, 0.22);
}

.review-card--spotlight .review-card__quote p {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
}

.review-card__tag {
  position: relative;
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.review-card__stars {
  position: relative;
  margin-bottom: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 212, 71, 0.35);
}

.review-card__quote {
  position: relative;
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
}

.review-card__quote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(244, 242, 255, 0.88);
  font-style: italic;
}

.review-card__byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.review-card__name::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.35rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
}

/* CTA & contact */
.section--cta {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.flash-stack {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.flash {
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--stroke);
}

.flash--success {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.35);
  color: #b8fbff;
}

.flash--error {
  background: rgba(255, 45, 146, 0.1);
  border-color: rgba(255, 45, 146, 0.35);
  color: #ffc8e6;
}

.cta {
  position: relative;
  text-align: center;
  padding: 3.5rem 1.75rem;
  border-radius: calc(var(--radius) + 0.5rem);
  border: 1px solid rgba(0, 240, 255, 0.2);
  overflow: hidden;
  background: radial-gradient(ellipse 80% 120% at 50% 120%, rgba(255, 45, 146, 0.25), transparent 50%), var(--bg-elevated);
}

@media (min-width: 960px) {
  .cta--split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem 2rem;
    text-align: left;
    align-items: start;
    padding: 3rem 2.5rem;
  }

  .cta--split .cta__glow {
    left: 30%;
  }

  .cta--split .cta__title,
  .cta--split .cta__text {
    margin-left: 0;
    margin-right: 0;
  }

  .cta--split .cta__callout {
    margin-top: 0.5rem;
  }
}

.cta__glow {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 65%);
  pointer-events: none;
}

.cta__title {
  position: relative;
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
}

.cta__text {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 26rem;
  color: var(--muted);
}

.cta__row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta__hint {
  font-size: 0.8rem;
  color: var(--faint);
  max-width: 22rem;
}

.cta__hint code {
  font-size: 0.75em;
  padding: 0.1em 0.35em;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.cta__callout {
  margin: 0;
}

.inline-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  position: relative;
  text-align: left;
  max-width: 32rem;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .cta--split .contact-form {
    margin: 0;
    max-width: none;
  }
}

.form__row {
  margin-bottom: 1rem;
}

.form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.req {
  color: var(--magenta);
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--stroke);
  border-radius: 0.65rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__input:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 8rem;
}

.form__submit {
  position: relative;
  width: 100%;
  min-height: 3.2rem;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.form__submit-label {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.form__submit.is-loading {
  cursor: wait;
  pointer-events: none;
}

.form__submit.is-loading .form__submit-label {
  opacity: 0;
  visibility: hidden;
}

.form__submit.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  margin: -0.675rem 0 0 -0.675rem;
  border-radius: 50%;
  border: 2px solid rgba(5, 4, 10, 0.2);
  border-top-color: #05040a;
  animation: form-submit-spin 0.65s linear infinite;
}

@keyframes form-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .form__submit.is-loading::after {
    animation-duration: 1.2s;
  }
}

.form__fineprint {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.45;
}

.section--areas .areas__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.section--areas .areas__list li {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.section--faq .faq__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .section--faq .faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq__item {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--surface);
}

.faq__q {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.faq__a {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.seo-prose strong {
  color: #e4e0f5;
  font-weight: 600;
}

/* Footer */
.footer {
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--stroke);
}

.footer__row {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--faint);
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted);
}

.footer__url {
  word-break: break-all;
}

.footer__phone {
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
}

.footer__phone:hover {
  text-decoration: underline;
}

.footer__meta {
  color: var(--cyan);
  text-decoration: none;
}

.footer__meta:hover {
  text-decoration: underline;
}

.footer__seo {
  max-width: 72rem;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(244, 242, 255, 0.22);
  text-align: center;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
