/*
  Identidad visual basada en el logo real: negro, blanco y grafito.
  El acento amarillo se usa solo para llamados a la accion y elementos comerciales.
*/
:root {
  --color-ink: #050505;
  --color-ink-soft: #151515;
  --color-panel: #202020;
  --color-text: #181818;
  --color-muted: #6c7178;
  --color-surface: #ffffff;
  --color-bg: #f4f4f1;
  --color-primary: #f4c542;
  --color-primary-strong: #ffe06a;
  --color-whatsapp: #20b25b;
  --color-accent: #ffffff;
  --color-border: #deded8;
  --shadow-soft: 0 18px 54px rgba(5, 5, 5, 0.14);
  --shadow-card: 0 14px 36px rgba(5, 5, 5, 0.09);
  --radius-card: 8px;
  --container: 1140px;
  --header-height: 106px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(244, 197, 66, 0.95);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--color-primary);
  color: var(--color-ink);
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 10px 30px rgba(5, 5, 5, 0.28);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #ffffff;
}

.brand-logo {
  width: auto;
  height: 82px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-card);
  object-fit: contain;
  background: #000000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.brand-text {
  display: grid;
  gap: 0;
  font-size: 0.76rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text strong {
  color: var(--color-primary);
  font-size: 1rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  font-weight: 800;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding-block: 8px;
}

.nav-menu > a:not(.btn)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--color-primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-menu > a:not(.btn):hover::after,
.nav-menu > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  grid-column: 1;
  grid-row: 1;
  background: #ffffff;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-ink);
  box-shadow: 0 14px 28px rgba(244, 197, 66, 0.28);
}

.btn-primary:hover {
  background: var(--color-primary-strong);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(32, 178, 91, 0.24);
}

.btn-whatsapp:hover {
  background: #15994b;
}

.btn-outline {
  border-color: rgba(5, 5, 5, 0.16);
  background: #ffffff;
  color: var(--color-ink);
}

.btn-outline:hover {
  border-color: var(--color-ink);
  box-shadow: var(--shadow-card);
}

.btn-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.74) 48%,
      rgba(5, 5, 5, 0.36) 100%
    ),
    linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.76) 100%);
}

.hero-content {
  padding-block: calc(var(--header-height) + 92px) 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.28rem, 5vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.quick-info {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  padding: 20px;
  background: var(--color-ink);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.quick-card:hover {
  transform: translateY(-3px);
  background: var(--color-panel);
}

.quick-card span {
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quick-card strong {
  line-height: 1.2;
}

.section {
  padding-block: 92px;
}

.section-muted {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.34)
    ),
    var(--color-bg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.section-copy h2,
.cta-content h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.03rem;
}

.about-grid,
.schedule-grid,
.benefits-grid,
.location-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: visible;
  aspect-ratio: 4 / 5;
  z-index: 0;
  border-radius: var(--radius-card);
  background: transparent;
}

.about-media::before {
  position: absolute;
  inset: 20px -16px -16px 20px;
  z-index: -1;
  border-radius: var(--radius-card);
  background: var(--color-primary);
  content: "";
}

.about-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.mini-features li,
.benefit-list li {
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 850;
}

.mini-features li {
  padding: 9px 13px;
  font-size: 0.9rem;
}

.service-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.price-card,
.schedule-card,
.contact-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.service-card {
  min-height: 250px;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, 0.28);
}

.service-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-primary);
  font-size: 1.32rem;
}

.service-card h3,
.contact-panel strong {
  margin: 22px 0 10px;
  color: var(--color-ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.price-card li,
.price-note,
.contact-panel span {
  margin: 0;
  color: var(--color-muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  padding: 28px;
}

.price-card.is-featured {
  border-color: rgba(244, 197, 66, 0.76);
  background:
    linear-gradient(
      180deg,
      rgba(244, 197, 66, 0.18),
      rgba(255, 255, 255, 0) 42%
    ),
    var(--color-surface);
  transform: translateY(-12px);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--color-ink);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-name {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.18rem, 4vw, 3rem);
  line-height: 1;
}

.price-note {
  margin-top: 12px;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.28);
  color: var(--color-ink);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.schedule-section {
  background: var(--color-ink);
  color: #ffffff;
}

.schedule-section .section-copy h2 {
  color: #ffffff;
}

.schedule-section .section-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.schedule-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.schedule-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.07);
}

.schedule-card span {
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-card strong {
  text-align: right;
  font-size: 1.08rem;
}

.benefits-section {
  background: #ffffff;
}

.benefits-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 66px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: var(--radius-card);
  padding: 16px 18px 16px 46px;
  background: var(--color-ink);
  color: #ffffff;
}

.benefit-list li::before {
  position: absolute;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
  box-shadow: 0 0 0 5px rgba(244, 197, 66, 0.14);
}

.location-grid {
  align-items: stretch;
}

.map-embed {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius-card);
  background: #ededeb;
  box-shadow: var(--shadow-card);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 86px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.74)),
    url("./public/images/adictos-gym/04-area-fuerza-panoramica.jpeg")
      center/cover;
  color: #ffffff;
}

.cta-content {
  max-width: 760px;
}

.cta-content h2 {
  color: #ffffff;
}

.cta-content p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.contact-grid {
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-panel article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 18px;
  background: #f8f8f5;
}

.contact-panel span,
.contact-panel strong,
.contact-panel small {
  display: block;
}

.contact-panel strong {
  margin: 4px 0 0;
}

.contact-panel small {
  margin-top: 3px;
  color: var(--color-muted);
  font-weight: 700;
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 34px;
  padding-block: 54px 38px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 6px;
}

.footer-links,
.social-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 18px;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 13px;
    font-size: 0.86rem;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 96px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 12px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.btn) {
    padding: 12px 4px;
  }

  .nav-menu .btn {
    margin-top: 4px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.88) 0%,
        rgba(5, 5, 5, 0.68) 52%,
        rgba(5, 5, 5, 0.92) 100%
      ),
      rgba(5, 5, 5, 0.42);
  }

  .quick-grid,
  .about-grid,
  .schedule-grid,
  .benefits-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.is-featured {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 86px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-logo {
    height: 64px;
  }

  .brand-text {
    font-size: 0.72rem;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-block: calc(var(--header-height) + 58px) 46px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .quick-info {
    margin-top: 0;
    padding-top: 16px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .about-grid,
  .schedule-grid,
  .benefits-grid,
  .location-grid,
  .contact-grid {
    gap: 34px;
  }

  .about-media::before {
    inset: 14px -10px -10px 14px;
  }

  .service-grid,
  .pricing-grid,
  .benefit-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card {
    min-height: auto;
    padding: 22px;
  }

  .schedule-card div {
    display: grid;
    gap: 4px;
  }

  .schedule-card strong {
    text-align: left;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }

  .cta-section {
    padding-block: 70px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section-heading h2,
  .section-copy h2,
  .cta-content h2 {
    font-size: 1.86rem;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .mini-features li {
    width: 100%;
    text-align: center;
  }
}

/* Industrial editorial redesign */
:root {
  --color-ink: #080909;
  --color-ink-soft: #141616;
  --color-panel: #1c1e1d;
  --color-text: #111312;
  --color-muted: #626863;
  --color-surface: #f7f6f0;
  --color-bg: #e8e7df;
  --color-primary: #f2d327;
  --color-primary-strong: #ffe84d;
  --color-whatsapp: #22ad5c;
  --color-border: #b8bbb4;
  --shadow-soft: 14px 14px 0 rgba(8, 9, 9, 0.12);
  --shadow-card: 7px 7px 0 rgba(8, 9, 9, 0.1);
  --radius-card: 0;
  --container: 1220px;
  --header-height: 84px;
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Barlow", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  overflow-x: hidden;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(rgba(8, 9, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 9, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  font-family: var(--font-body);
}

html {
  overflow-x: clip;
}

.container {
  width: min(var(--container), calc(100% - 64px));
}

.site-header {
  height: var(--header-height);
  background: rgba(8, 9, 9, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 22%;
  height: 4px;
  background: var(--color-primary);
  content: "";
  transform: skewX(-32deg);
  transform-origin: right;
}

.site-header.is-scrolled {
  background: rgba(8, 9, 9, 0.98);
  box-shadow: 0 12px 0 rgba(8, 9, 9, 0.14);
}

.brand {
  gap: 11px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.brand-text {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.brand-text strong {
  margin-top: 5px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.nav-menu {
  gap: 22px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu > a:not(.btn)::after {
  bottom: 0;
  height: 4px;
}

.btn {
  position: relative;
  min-height: 52px;
  border-radius: 0;
  padding: 14px 24px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    background 180ms ease;
}

.btn:hover {
  transform: translate(-3px, -3px);
}

.btn-primary {
  box-shadow: 7px 7px 0 rgba(242, 211, 39, 0.18);
}

.btn-primary:hover {
  box-shadow: 10px 10px 0 rgba(242, 211, 39, 0.22);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--color-ink);
}

.btn-outline {
  border: 2px solid var(--color-ink);
  background: transparent;
  box-shadow: none;
}

.btn-whatsapp {
  box-shadow: 7px 7px 0 rgba(34, 173, 92, 0.18);
}

.btn-small {
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.78rem;
}

.hero {
  min-height: 850px;
  align-items: stretch;
  background: var(--color-ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 67%, rgba(242, 211, 39, 0.13) 67% 68%, transparent 68%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px);
  content: "";
  pointer-events: none;
}

.hero-image {
  filter: none;
  object-position: 58% center;
  opacity: 1;
  transform: scale(1.02);
  animation: hero-image-in 1.2s var(--ease-out) both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.88) 45%, rgba(8, 9, 9, 0.2) 76%),
    linear-gradient(180deg, rgba(8, 9, 9, 0.2) 0%, rgba(8, 9, 9, 0.92) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: end;
  padding-block: calc(var(--header-height) + 108px) 116px;
}

.hero-main {
  max-width: 850px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(242, 211, 39, 0.16);
  animation: status-pulse 1.8s ease-in-out infinite;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  background: currentColor;
  content: "";
  transform: skewX(-28deg);
}

.hero h1 {
  max-width: 900px;
  font-family: var(--font-body);
  font-size: clamp(2.65rem, 4.7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
  animation: hero-copy-in 760ms 120ms var(--ease-out) both;
}

.hero h1 em {
  display: inline-block;
  margin-top: 0.08em;
  color: var(--color-primary);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 570px;
  margin-top: 32px;
  padding-left: 18px;
  border-left: 4px solid var(--color-primary);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.5;
  animation: hero-copy-in 760ms 220ms var(--ease-out) both;
}

.hero-actions {
  margin-top: 36px;
  animation: hero-copy-in 760ms 300ms var(--ease-out) both;
}

.hero-panel {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 9, 9, 0.88);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 10px 10px 0 rgba(242, 211, 39, 0.14);
  animation: hero-copy-in 760ms 380ms var(--ease-out) both;
}

.hero-panel-label {
  margin: 0;
  padding: 16px 18px;
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-panel-block {
  display: grid;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px;
}

.hero-panel-block span {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.35;
}

.hero-panel-block strong {
  color: #ffffff;
  font-weight: 850;
}

.hero-panel-contact a {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-panel-action {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  background: var(--color-whatsapp);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.hero-panel-action:hover {
  background: #ffffff;
  color: var(--color-ink);
}

.hero-coordinate {
  position: absolute;
  right: 18px;
  top: 50%;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.training-strip {
  overflow: hidden;
  border-block: 1px solid var(--color-ink);
  background: var(--color-primary);
}

.training-track {
  display: flex;
  width: max-content;
  animation: strip-move 28s linear infinite;
}

.training-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 24px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-track span::after {
  width: 8px;
  height: 8px;
  background: var(--color-ink);
  content: "";
  transform: rotate(45deg);
}

.quick-info {
  margin-top: 0;
  border-bottom: 1px solid var(--color-border);
  padding-block: 24px;
  background: var(--color-surface);
}

.quick-grid {
  gap: 0;
  border: 1px solid var(--color-ink);
}

.quick-card {
  position: relative;
  min-height: 116px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 64px 24px 24px;
  box-shadow: none;
}

.quick-card:last-child {
  border-right: 0;
}

.quick-card::after {
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--color-primary);
  content: "\2197";
  font-family: var(--font-display);
  font-size: 1.8rem;
  transform: translateY(-50%);
  transition: transform 240ms var(--ease-out);
}

.quick-card:hover::after {
  transform: translate(4px, -65%);
}

.quick-card span {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.quick-card strong {
  max-width: 250px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: 118px;
}

.section::before {
  position: absolute;
  left: max(18px, calc((100vw - var(--container)) / 2 - 42px));
  top: 122px;
  color: rgba(8, 9, 9, 0.24);
  content: "AGRC";
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.section-muted {
  border-block: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08)),
    var(--color-bg);
}

.section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 26px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.section-heading h2,
.section-copy h2,
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading p,
.section-copy p {
  color: var(--color-muted);
  line-height: 1.65;
}

.section-heading > p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--color-primary);
}

.about-grid,
.schedule-grid,
.benefits-grid,
.location-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 82px;
}

.about-grid {
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.about-media {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  z-index: 0;
  justify-self: center;
  border-radius: 24px;
  background: transparent;
}

.about-media::before {
  inset: 18px -18px -18px 18px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(135deg, var(--color-primary) 0 8px, var(--color-ink) 8px 10px);
}

.about-media::after {
  position: absolute;
  left: -18px;
  top: -18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
  background: var(--color-ink);
  color: var(--color-primary);
  content: "01 / DISCIPLINA";
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  max-height: none;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 1;
  box-shadow: 12px 12px 0 rgba(8, 9, 9, 0.12);
}

.mini-features {
  gap: 0;
  border: 1px solid var(--color-ink);
}

.mini-features li {
  flex: 1 1 150px;
  border: 0;
  border-right: 1px solid var(--color-ink);
  border-radius: 0;
  padding: 12px 14px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.mini-features li:last-child {
  border-right: 0;
}

.service-grid {
  gap: 12px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid var(--color-ink);
  padding: 28px;
  box-shadow: none;
  transition:
    color 260ms var(--ease-out),
    background 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.service-card::after {
  position: absolute;
  right: 14px;
  top: 8px;
  color: rgba(8, 9, 9, 0.09);
  content: "0" counter(service);
  counter-increment: service;
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.service-grid {
  counter-reset: service;
}

.service-card:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #ffffff;
  transform: translateY(-7px);
}

.service-card:hover h3,
.service-card:hover p {
  color: inherit;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  clip-path: polygon(0 0, 78% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
}

.service-card h3,
.contact-panel strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-grid {
  gap: 0;
  border: 1px solid var(--color-ink);
}

.price-card {
  min-height: 480px;
  border: 0;
  border-right: 1px solid var(--color-ink);
  padding: 30px;
  box-shadow: none;
}

.price-card:last-child {
  border-right: 0;
}

.price-card.is-featured {
  border-color: var(--color-ink);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px),
    var(--color-ink);
  color: #ffffff;
  transform: translateY(-18px);
  box-shadow: 12px 12px 0 var(--color-primary);
}

.price-card.is-featured h3,
.price-card.is-featured .plan-name,
.price-card.is-featured .price-note,
.price-card.is-featured li {
  color: #ffffff;
}

.plan-badge {
  border-radius: 0;
  background: var(--color-primary);
  color: var(--color-ink);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.price-card .price-note {
  font-weight: 700;
  line-height: 1.55;
}

.price-card li::before {
  border-radius: 0;
  clip-path: polygon(0 0, 75% 0, 100% 25%, 100% 100%, 25% 100%, 0 75%);
}

.plans-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--color-ink);
  padding: 28px 30px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 10px),
    var(--color-ink);
  color: #ffffff;
  box-shadow: 10px 10px 0 rgba(242, 211, 39, 0.16);
}

.plans-cta-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.plans-cta p:not(.plans-cta-title) {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.plans-cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px !important;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plans-cta-contact span {
  color: var(--color-primary);
}

.plans-cta-contact a {
  color: #ffffff;
  text-decoration: none;
}

.plans-cta-contact a:hover {
  color: var(--color-primary);
}

.plans-cta-actions {
  display: grid;
  min-width: min(100%, 280px);
  gap: 12px;
}

.plans-cta .btn {
  width: 100%;
}

.plans-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #ffffff;
}

.plans-cta .btn-outline:hover {
  background: #ffffff;
  color: var(--color-ink);
}

.schedule-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 211, 39, 0.12), transparent 34%),
    linear-gradient(180deg, #050505 0%, #0b0d12 100%);
  color: #ffffff;
}

.schedule-section::before {
  display: none;
}

.schedule-section::after {
  display: none;
}

.schedule-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.schedule-header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.62fr);
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 26px;
}

.schedule-header h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: none;
  text-wrap: balance;
}

.schedule-header p:not(.eyebrow) {
  max-width: 460px;
  margin: 0;
  border-left: 4px solid var(--color-primary);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.55;
}

.schedule-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.95fr));
  gap: 16px;
}

.schedule-card {
  position: relative;
  display: grid;
  min-height: 168px;
  align-content: space-between;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  box-shadow: none;
}

.schedule-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--color-primary);
  content: "";
}

.schedule-card span,
.schedule-card strong {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: none;
}

.schedule-card span {
  color: var(--color-primary);
  font-size: 0.98rem;
  font-weight: 900;
}

.schedule-card strong {
  color: #ffffff;
  text-align: left;
  font-size: clamp(1.55rem, 2.05vw, 2.16rem);
  line-height: 1.05;
}

.schedule-card-featured {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-ink);
  box-shadow: 0 18px 44px rgba(242, 197, 66, 0.14);
}

.schedule-card-featured::before {
  background: var(--color-ink);
}

.schedule-card-featured span,
.schedule-card-featured strong {
  color: var(--color-ink);
}

.schedule-card-featured strong {
  font-size: clamp(1.72rem, 2.5vw, 2.55rem);
}

.schedule-cta {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.schedule-cta .btn {
  min-width: min(100%, 320px);
  text-transform: none;
}

.benefits-section {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.benefit-list {
  gap: 0;
  border: 1px solid var(--color-ink);
}

.benefit-list li {
  min-height: 84px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-embed {
  border: 1px solid var(--color-ink);
  box-shadow: 12px 12px 0 rgba(8, 9, 9, 0.14);
  filter: none;
}

.map-embed:hover {
  filter: none;
}

.location-media {
  display: grid;
  gap: 14px;
}

.location-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.location-photos img {
  width: 100%;
  height: clamp(170px, 18vw, 250px);
  border: 1px solid var(--color-ink);
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.location-photos img:hover {
  filter: none;
}

.location-media .map-embed,
.location-media .map-embed iframe {
  min-height: 340px;
}

.cta-section {
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.97), rgba(8, 9, 9, 0.58)),
    url("./public/images/adictos-gym/04-area-fuerza-panoramica.jpeg")
      center/cover;
}

.cta-section::after {
  position: absolute;
  right: -5%;
  top: -20%;
  z-index: -1;
  width: 48%;
  aspect-ratio: 1;
  border: 64px solid rgba(242, 211, 39, 0.14);
  content: "";
  transform: rotate(45deg);
}

.cta-content {
  max-width: 900px;
}

.contact-panel {
  gap: 0;
  border: 1px solid var(--color-ink);
  padding: 0;
  box-shadow: 10px 10px 0 rgba(8, 9, 9, 0.12);
}

.contact-section .section-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-panel article {
  border: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 20px 22px;
  background: var(--color-surface);
}

.contact-panel .btn {
  width: calc(100% - 40px);
  margin: 20px;
}

.faq-section {
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08)),
    var(--color-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  min-height: 230px;
  border: 1px solid var(--color-ink);
  padding: 26px;
  background: var(--color-surface);
  box-shadow: 8px 8px 0 rgba(8, 9, 9, 0.08);
}

.faq-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.faq-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 650;
  line-height: 1.58;
}

.site-footer {
  position: relative;
  border-top: 6px solid var(--color-primary);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 10px),
    var(--color-ink);
}

.site-footer h2,
.footer-links,
.social-links {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

.service-photo {
  width: calc(100% + 56px);
  max-width: none;
  height: clamp(160px, 14vw, 210px);
  flex: 0 0 auto;
  margin: -28px -28px 22px;
  border-bottom: 1px solid var(--color-ink);
  object-fit: cover;
  object-position: center center;
  filter: none;
  transition: transform 260ms var(--ease-out);
}

.service-card > picture {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  height: clamp(160px, 14vw, 210px);
  flex: 0 0 auto;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-ink);
}

.service-card > picture .service-photo {
  width: 100%;
  height: 100%;
  margin: 0;
  border-bottom: 0;
  object-fit: cover;
  object-position: center center;
}

.service-card:hover .service-photo {
  filter: none;
  transform: scale(1.02);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes status-pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(242, 211, 39, 0.04);
  }
}

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

@media (max-width: 1120px) {
  .nav-menu {
    gap: 14px;
    font-size: 0.76rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .nav-menu {
    top: calc(var(--header-height) + 10px);
    border-radius: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-block: calc(var(--header-height) + 88px) 72px;
  }

  .hero-panel {
    width: min(100%, 580px);
  }

  .hero-coordinate {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .section-heading > p:not(.eyebrow) {
    max-width: 620px;
  }

  .schedule-header,
  .schedule-cards {
    grid-template-columns: 1fr;
  }

  .schedule-card-featured {
    box-shadow: 0 14px 32px rgba(242, 197, 66, 0.12);
  }

  .about-grid,
  .schedule-grid,
  .benefits-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-media {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-media img {
    height: 100%;
    max-height: none;
  }

  .service-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .quick-card:last-child {
    border-bottom: 0;
  }

  .price-card.is-featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text {
    display: none;
  }

  .hero-content {
    gap: 42px;
    padding-block: calc(var(--header-height) + 70px) 58px;
  }

  .hero-status {
    margin-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9.6vw, 3.05rem);
    letter-spacing: 0;
    line-height: 1;
  }

  .hero-copy {
    margin-top: 26px;
  }

  .hero-panel {
    box-shadow: 7px 7px 0 rgba(242, 211, 39, 0.16);
  }

  .training-track span {
    padding: 11px 18px;
  }

  .section {
    padding-block: 78px;
  }

  .section::before {
    display: none;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-content h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.25rem);
  }

  .contact-section .section-copy h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.35rem);
    letter-spacing: 0;
    line-height: 1;
  }

  .about-grid,
  .schedule-grid,
  .benefits-grid,
  .location-grid,
  .contact-grid {
    gap: 40px;
  }

  .about-media::before {
    inset: 14px -10px -10px 14px;
    border-radius: 20px;
  }

  .about-media::after {
    left: -8px;
    top: -12px;
  }

  .about-media {
    max-width: min(100%, 360px);
  }

  .about-media img {
    height: 100%;
    max-height: none;
    border-radius: 20px;
  }

  .mini-features {
    display: grid;
  }

  .mini-features li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--color-ink);
  }

  .mini-features li:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 250px;
  }

  .service-grid,
  .pricing-grid,
  .faq-grid,
  .benefit-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-card {
    min-height: auto;
    padding: 22px;
    box-shadow: 6px 6px 0 rgba(8, 9, 9, 0.08);
  }

  .pricing-grid {
    border: 0;
    gap: 14px;
  }

  .price-card {
    border: 1px solid var(--color-ink);
    min-height: auto;
    padding: 24px;
  }

  .price-card h3 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

  .price-card.is-featured {
    box-shadow: 7px 7px 0 var(--color-primary);
  }

  .plans-cta {
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 22px;
    box-shadow: 7px 7px 0 rgba(242, 211, 39, 0.16);
  }

  .plans-cta-actions {
    min-width: 0;
  }

  .plans-cta-contact {
    font-size: 1rem;
  }

  .schedule-section {
    padding-block: 58px;
  }

  .schedule-layout {
    gap: 18px;
  }

  .schedule-header {
    gap: 14px;
    padding-bottom: 18px;
  }

  .schedule-header h2 {
    font-size: clamp(2.15rem, 9.6vw, 2.9rem);
    line-height: 1;
  }

  .schedule-header p:not(.eyebrow) {
    border-left-width: 3px;
    padding-left: 14px;
    font-size: 0.96rem;
  }

  .schedule-card {
    min-height: 112px;
    gap: 12px;
    padding: 18px 20px;
  }

  .schedule-card strong {
    font-size: clamp(1.42rem, 7.2vw, 1.85rem);
    line-height: 1.08;
  }

  .schedule-card span {
    font-size: 0.9rem;
  }

  .schedule-cta .btn {
    width: 100%;
    min-height: 52px;
  }

  .benefit-list li {
    border-right: 0;
  }

  .map-embed {
    box-shadow: 7px 7px 0 rgba(8, 9, 9, 0.14);
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .service-card img,
  .location-photos img,
  .about-media img {
    object-fit: cover;
    object-position: center center;
    filter: none;
    opacity: 1;
  }

  .service-photo,
  .service-card > picture {
    height: min(62vw, 380px);
    max-height: 380px;
    object-fit: cover;
    object-position: center center;
  }

  .service-card > picture .service-photo {
    height: 100%;
    max-height: none;
  }

  .location-photos {
    grid-template-columns: 1fr;
  }

  .location-photos img {
    height: min(62vw, 380px);
    max-height: 380px;
  }

  .about-media {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .about-media img {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 22px;
    object-fit: cover;
    object-position: center center;
    filter: none;
    display: block;
    margin: 0 auto;
  }
}

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}
