/*
Theme Name: Jaly Dance Fit
Theme URI: https://toctoc.ky/
Author: Toc Toc Marketing
Author URI: https://toctoc.ky/
Description: Theme a medida para Jaly Dance Fit — programas de dance fitness, movilidad y bienestar. Convertido 1:1 desde el diseño original (Lovable/React) manteniendo colores, imágenes y textos. Desarrollado por Toc Toc Marketing (https://toctoc.ky/).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
Text Domain: jalydancefit
*/

/* ---------------------------------------------------------------
   1. Reset & base
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, dl, dd, dt, blockquote, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------------------------------------------------------------
   2. Design tokens (same values as the original Tailwind theme)
--------------------------------------------------------------- */
:root {
  --font-display: "Poppins", "Inter", sans-serif;
  --font-sans: "Inter", sans-serif;

  /* Teal from JalyDanceFit */
  --primary: oklch(0.72 0.13 205);
  --primary-foreground: oklch(0.99 0 0);
  /* Deep navy/purple from the site */
  --ink: oklch(0.24 0.11 285);
  --ink-foreground: oklch(0.98 0.01 200);
  --background: oklch(0.99 0.005 200);
  --foreground: oklch(0.22 0.05 275);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.22 0.05 275);
  --secondary: oklch(0.96 0.02 200);
  --secondary-foreground: oklch(0.24 0.11 285);
  --accent: oklch(0.85 0.12 190);
  --accent-foreground: oklch(0.22 0.11 285);
  --muted: oklch(0.96 0.01 240);
  --muted-foreground: oklch(0.5 0.03 260);
  --border: oklch(0.9 0.02 220);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* ---------------------------------------------------------------
   3. Shared utilities (buttons, decorative backgrounds, animations)
--------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, oklch(0.72 0.13 205), oklch(0.62 0.15 220));
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 30px -10px oklch(0.62 0.15 220 / 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px oklch(0.62 0.15 220 / 0.65); }
.btn-primary svg { height: 1rem; width: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 9999px;
  border: 1.5px solid oklch(1 0 0 / 0.6);
  color: white;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
}
.btn-ghost:hover { background: oklch(1 0 0 / 0.15); }

.topo {
  background-image:
    radial-gradient(circle at 20% 30%, oklch(1 0 0 / 0.06) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, oklch(1 0 0 / 0.06) 0, transparent 40%);
}

@keyframes kenburns {
  0% { transform: scale(1.05) translate(0, 0); }
  50% { transform: scale(1.15) translate(-1%, -1%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.ken-burns { animation: kenburns 18s ease-in-out infinite; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.float-slow { animation: float-slow 6s ease-in-out infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.animate-pulse { animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

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

/* ---------------------------------------------------------------
   4. Site header / nav
--------------------------------------------------------------- */
.site-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
.site-nav__row {
  margin-inline: auto;
  max-width: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.site-nav__logo-badge {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  background: oklch(0.72 0.13 205 / 0.9);
  backdrop-filter: blur(8px);
}
.site-nav__logo-badge svg { height: 1.25rem; width: 1.25rem; }
.site-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(1 0 0 / 0.9);
}
.site-nav__links a:hover { color: #fff; }
.site-nav__call { padding: 0.75rem; font-size: 0.875rem; }
.site-nav__call svg { height: 1.125rem; width: 1.125rem; }
.site-nav__call-text { display: none; }

@media (min-width: 48rem) {
  .site-nav__links { display: flex; }
  .site-nav__call { padding: 0.625rem 1.25rem; }
  .site-nav__call svg { height: 1rem; width: 1rem; }
  .site-nav__call-text { display: inline; }
}

.site-nav--static {
  position: relative;
  background: var(--ink);
}
.site-nav--static .site-nav__links { color: oklch(1 0 0 / 0.9); }

/* ---------------------------------------------------------------
   5. Hero
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero__video-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100%;
}
.hero__cell {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.hero__cell--optional { display: none; }
.hero__cell img, .hero__cell video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0.24 0.11 285 / 0.7), oklch(0.24 0.11 285 / 0.5) 50%, oklch(0.24 0.11 285 / 0.95));
}
.hero__topo { position: absolute; inset: 0; }

.hero__content {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 80rem;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 6rem;
}
.hero__inner { max-width: 48rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid oklch(1 0 0 / 0.2);
  background: oklch(1 0 0 / 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}
.hero__title {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
}
.hero__title-gradient {
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: oklch(1 0 0 / 0.8);
}
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.6);
}

@media (min-width: 40rem) {
  .hero__title { font-size: 4.5rem; }
}
@media (min-width: 48rem) {
  .hero__video-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__cell--optional { display: block; }
  .hero__title { font-size: 6rem; }
}

/* ---------------------------------------------------------------
   5b. Trust bar
--------------------------------------------------------------- */
.trust { background: var(--secondary); padding: 2.5rem 0; }
.trust__container {
  margin-inline: auto;
  display: grid;
  max-width: 80rem;
  gap: 2rem;
  padding: 0 1.5rem;
  text-align: center;
}
.trust__item { padding: 0 0.5rem; }
.trust__stat { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--ink); }
.trust__label { margin-top: 0.375rem; font-size: 0.875rem; color: var(--muted-foreground); }

@media (min-width: 48rem) {
  .trust__container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust__item { border-left: 1px solid var(--border); }
  .trust__item:first-child { border-left: none; }
}

/* ---------------------------------------------------------------
   6. Club 6 AM
--------------------------------------------------------------- */
.club {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--ink), var(--ink), oklch(0.32 0.13 260));
  padding: 6rem 0;
  color: #fff;
}
.club__topo { position: absolute; inset: 0; opacity: 0.6; }
.club__blob {
  position: absolute;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  filter: blur(64px);
}
.club__blob--primary { top: -8rem; right: -8rem; background: oklch(0.72 0.13 205 / 0.2); }
.club__blob--accent { bottom: -8rem; left: -8rem; background: oklch(0.85 0.12 190 / 0.2); }

.club__grid {
  position: relative;
  margin-inline: auto;
  display: grid;
  max-width: 80rem;
  gap: 3rem;
  padding: 0 1.5rem;
}
.club__media { position: relative; }
.club__media-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 1.5rem;
  background: linear-gradient(to top right, oklch(0.72 0.13 205 / 0.4), oklch(0.85 0.12 190 / 0.4));
  filter: blur(40px);
}
.club__media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid oklch(1 0 0 / 0.1);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.club__media-frame img, .club__media-frame video { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; display: block; }
.club__media-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.95);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.club__eyebrow {
  display: inline-flex;
  border-radius: 9999px;
  background: oklch(0.72 0.13 205 / 0.2);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.club__title { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 900; line-height: 1.25; }
.club__title span { color: var(--primary); }
.club__lead { margin-top: 1rem; font-size: 1.125rem; color: oklch(1 0 0 / 0.7); }

.club__list-heading { margin-top: 2rem; font-weight: 700; color: #fff; }
.club__list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.club__list li { display: flex; align-items: flex-start; gap: 0.75rem; color: oklch(1 0 0 / 0.85); }
.club__check {
  margin-top: 0.25rem;
  display: grid;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  place-items: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--ink);
}
.club__check svg { height: 0.75rem; width: 0.75rem; }

.club__needs {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid oklch(1 0 0 / 0.1);
  background: oklch(1 0 0 / 0.05);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
.club__needs-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: oklch(1 0 0 / 0.6); }
.club__needs-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: oklch(1 0 0 / 0.85); }
.club__needs-list li { padding-left: 1rem; position: relative; }
.club__needs-list li::before { content: "·"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.club__needs-note { margin-top: 0.75rem; font-size: 0.875rem; color: oklch(1 0 0 / 0.6); }

.club__cta-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.club__price-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: oklch(1 0 0 / 0.6); }
.club__price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: #fff; }
.club__price small { font-size: 1.125rem; font-weight: 600; color: oklch(1 0 0 / 0.5); }

@media (min-width: 40rem) {
  .club { padding: 8rem 0; }
  .club__title { font-size: 3.75rem; }
}
@media (min-width: 64rem) {
  .club__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
}

/* ---------------------------------------------------------------
   7. Clases (class cards)
--------------------------------------------------------------- */
.clases { background: var(--background); padding: 6rem 0; }
.clases__container { margin-inline: auto; max-width: 80rem; padding: 0 1.5rem; }
.clases__header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.clases__header-copy { max-width: 42rem; }
.clases__eyebrow {
  display: inline-flex;
  border-radius: 9999px;
  background: oklch(0.24 0.11 285 / 0.05);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.clases__title { margin-top: 1rem; font-size: 2.25rem; font-weight: 900; color: var(--ink); }
.clases__intro { max-width: 28rem; color: var(--muted-foreground); }

.clases__grid { margin-top: 3rem; display: grid; gap: 1.5rem; align-items: start; }
.clase-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--card);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  outline: 1px solid var(--border);
  outline-offset: -1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.clase-card:hover { transform: translateY(-0.25rem); box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.clase-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.clase-card__media--vertical { aspect-ratio: 9 / 16; }
.clase-card__media img, .clase-card__media video { height: 100%; width: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.clase-card:hover .clase-card__media img, .clase-card:hover .clase-card__media video { transform: scale(1.05); }
.clase-card__body { padding: 1.75rem; }
.clase-card__kicker { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.clase-card__title { margin-top: 0.5rem; font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.clase-card__desc { margin-top: 0.5rem; color: var(--muted-foreground); }
.clase-card__footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.875rem;
}
.clase-card__when { font-weight: 600; color: var(--ink); }
.clase-card__price { color: var(--muted-foreground); }
.clase-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}
.clase-card__link:hover { gap: 0.5rem; }
.clase-card__link svg { height: 1rem; width: 1rem; }

@media (min-width: 40rem) {
  .clases { padding: 8rem 0; }
  .clases__title { font-size: 3rem; }
}
@media (min-width: 48rem) {
  .clases__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 64rem) {
  .clases__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------------------------------------------------------------
   8. Historia (quote)
--------------------------------------------------------------- */
.historia { position: relative; overflow: hidden; background: var(--secondary); padding: 6rem 0; }
.historia__grid {
  margin-inline: auto;
  display: grid;
  max-width: 80rem;
  gap: 3rem;
  padding: 0 1.5rem;
}
.historia__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.historia__eyebrow { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--primary); }
.historia__quote { margin-top: 1.5rem; font-size: 1.875rem; font-weight: 700; line-height: 1.25; color: var(--ink); }
.historia__quote span {
  background: linear-gradient(to right, var(--primary), oklch(0.4 0.15 285));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.historia__text { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-foreground); }
.historia__signature { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }

@media (min-width: 40rem) {
  .historia { padding: 8rem 0; }
  .historia__quote { font-size: 2.75rem; }
}
@media (min-width: 64rem) {
  .historia__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
}

/* ---------------------------------------------------------------
   8b. Testimonios
--------------------------------------------------------------- */
.testimonios { background: var(--background); padding: 6rem 0; }
.testimonios__container { margin-inline: auto; max-width: 80rem; padding: 0 1.5rem; }
.testimonios__header { max-width: 42rem; }
.testimonios__eyebrow {
  display: inline-flex;
  border-radius: 9999px;
  background: oklch(0.24 0.11 285 / 0.05);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.testimonios__title { margin-top: 1rem; font-size: 2.25rem; font-weight: 900; color: var(--ink); }
.testimonios__intro { margin-top: 0.75rem; font-size: 1.125rem; color: var(--muted-foreground); }

.testimonios__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.testimonial-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--ink);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.testimonial-card__video { height: 100%; width: 100%; object-fit: cover; display: block; background: var(--ink); }

@media (min-width: 26rem) {
  .testimonios__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 40rem) {
  .testimonios { padding: 8rem 0; }
  .testimonios__title { font-size: 3rem; }
}
@media (min-width: 48rem) {
  .testimonios__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 64rem) {
  .testimonios__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------------------------------------------------------------
   8c. FAQ
--------------------------------------------------------------- */
.faq { background: var(--secondary); padding: 6rem 0; }
.faq__container { margin-inline: auto; max-width: 48rem; padding: 0 1.5rem; }
.faq__eyebrow {
  display: inline-flex;
  border-radius: 9999px;
  background: oklch(1 0 0 / 0.6);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.faq__title { margin-top: 1rem; font-size: 2.25rem; font-weight: 900; color: var(--ink); }

.faq__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  padding: 1.25rem 1.5rem;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary);
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { margin-top: 0.75rem; color: var(--muted-foreground); }

@media (min-width: 40rem) {
  .faq { padding: 8rem 0; }
  .faq__title { font-size: 3rem; }
}

/* ---------------------------------------------------------------
   9. CTA
--------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; background: var(--ink); padding: 6rem 0; color: #fff; }
.cta__container { position: relative; margin-inline: auto; max-width: 56rem; padding: 0 1.5rem; text-align: center; }
.cta__title { font-size: 2.25rem; font-weight: 900; line-height: 1.25; }
.cta__title span { color: var(--primary); }
.cta__lead { margin: 1rem auto 0; max-width: 36rem; color: oklch(1 0 0 / 0.7); }
.cta__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.cta__actions .btn-primary svg { height: 1.25rem; width: 1.25rem; }

.cta__meta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.cta__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: oklch(1 0 0 / 0.7);
  transition: color 0.2s ease;
}
.cta__social:hover { color: #fff; }
.cta__social svg { height: 1rem; width: 1rem; }

.cta__map {
  margin: 2.5rem auto 0;
  max-width: 40rem;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.cta__map iframe { display: block; width: 100%; aspect-ratio: 4 / 3; border: 0; }

@media (min-width: 40rem) {
  .cta__title { font-size: 3.75rem; }
  .cta__map iframe { aspect-ratio: 16 / 9; }
}

/* ---------------------------------------------------------------
   10. Footer
--------------------------------------------------------------- */
.site-footer { border-top: 1px solid oklch(1 0 0 / 0.1); background: var(--ink); padding: 2.5rem 0; font-size: 0.875rem; color: oklch(1 0 0 / 0.6); }
.site-footer__row {
  margin-inline: auto;
  display: flex;
  max-width: 80rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
}
.site-footer__credit {
  margin: 1.25rem auto 0;
  max-width: 80rem;
  padding: 0.75rem 1.5rem 0;
  border-top: 1px solid oklch(1 0 0 / 0.08);
  text-align: center;
  font-size: 0.75rem;
  color: oklch(1 0 0 / 0.4);
}
.site-footer__credit a {
  color: oklch(1 0 0 / 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer__credit a:hover { color: #fff; }

/* ---------------------------------------------------------------
   11. Generic page template (extra wp-admin pages)
--------------------------------------------------------------- */
.page-content { padding: 8rem 0 6rem; }
.page-content__container { margin-inline: auto; max-width: 48rem; padding: 0 1.5rem; }
.page-content__title { font-size: 2.25rem; font-weight: 800; color: var(--ink); }
.page-content__body { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.7; color: var(--foreground); }
.page-content__body p { margin-top: 1rem; }
.page-content__body a { color: var(--primary); text-decoration: underline; }

/* ---------------------------------------------------------------
   12. 404
--------------------------------------------------------------- */
.error-404-page {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 0 1rem;
}
.error-404-page__inner { max-width: 28rem; text-align: center; }
.error-404-page__code { font-size: 4.5rem; font-weight: 700; color: var(--foreground); }
.error-404-page__title { margin-top: 1rem; font-size: 1.25rem; font-weight: 600; color: var(--foreground); }
.error-404-page__text { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.error-404-page__link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: background-color 0.2s ease;
}
.error-404-page__link:hover { background: oklch(0.72 0.13 205 / 0.9); }
