:root {
  --bg: #130d11;
  --bg-soft: #1a1117;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: #231721;
  --text: #fff7ef;
  --muted: #e6dacc;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f2a74c;
  --accent-2: #ffd19a;
  --accent-3: #ff7d68;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
  --radius: 22px;
  --radius-sm: 16px;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 8% -10%, rgba(242, 167, 76, 0.08), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(255, 125, 104, 0.06), transparent 30%),
    linear-gradient(180deg, var(--bg), #0d090d 42%, #130c10);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
.brand,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

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

.container {
  width: min(1120px, calc(100% - 1.4rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 12, 16, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #25170c;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(242, 167, 76, 0.24);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.2rem;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0.7rem;
  left: 0.7rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(19, 13, 17, 0.97);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .nav-members {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 167, 76, 0.6);
  background: rgba(242, 167, 76, 0.1);
  color: var(--accent-2);
}

.site-nav .nav-members:hover {
  color: #2b190b;
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.95), rgba(255, 125, 104, 0.85));
  border-color: rgba(255, 209, 154, 0.85);
}

.site-nav .nav-lang-group {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.18rem;
  min-height: 34px;
  padding: 0.16rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav .nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 42px;
  padding: 0.28rem 0.54rem;
  border-radius: 999px;
  border: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-nav .nav-lang:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-lang-active {
  color: #2b190b;
  border-color: rgba(255, 209, 154, 0.7);
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.95), rgba(255, 125, 104, 0.84));
  box-shadow: 0 6px 14px rgba(242, 167, 76, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
  background: var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(242, 167, 76, 0.18), transparent 38%),
    radial-gradient(circle at bottom right, rgba(255, 125, 104, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(53, 22, 16, 0.72), rgba(18, 13, 17, 0.86));
  pointer-events: none;
}

/* --- hero crossfade slideshow --- */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  animation-name: hero-fade, hero-pan-horizontal;
  animation-duration: 30s, 30s;
  animation-timing-function: ease-in-out, linear;
  animation-iteration-count: infinite, infinite;
  animation-fill-mode: both, both;
  will-change: opacity, transform;
}

.hero-slide--1 {
  background-image: url("images/Salamanca%20SBK.PNG");
  animation-delay: 0s, 0s;
}

.hero-slide--2 {
  background-image: url("images/Salamanca%20SBK%20B.PNG");
  animation-delay: 10s, 10s;
}

.hero-slide--3 {
  background-image: url("images/Salamanca%20SBK%20K.PNG");
  animation-delay: 20s, 20s;
}

@keyframes hero-fade {
  0%     { opacity: 0; }
  12%    { opacity: 1; }
  28%    { opacity: 1; }
  45%    { opacity: 0; }
  100%   { opacity: 0; }
}

@keyframes hero-pan-horizontal {
  0% {
    transform: translate(-3.2%, -0.22%) scale(1.095);
  }
  45% {
    transform: translate(3.2%, 0.22%) scale(1.095);
  }
  100% {
    transform: translate(3.2%, 0.22%) scale(1.095);
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.hero-content {
  display: grid;
  gap: 1rem;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.22rem;
  max-width: 44rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0 0 0.85rem;
  max-width: 11ch;
  font-size: clamp(2.45rem, 9vw, 4.85rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.68;
}

.hero-note {
  margin: 1rem 0 0;
  max-width: 32rem;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.98rem;
}

.hero-actions,
.center-action,
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 232, 198, 0.24);
  background: linear-gradient(135deg, #f2a74c, #f08a43 55%, #ff7d68);
  color: #2b190b;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(242, 167, 76, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(242, 167, 76, 0.3);
}

.button.secondary {
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.reveal-item {
  will-change: opacity, transform;
}

html.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.reveal-ready .hero-copy.reveal-item {
  transform: translateY(32px);
}

html.reveal-ready .hero-card.reveal-item,
html.reveal-ready .proof-item.reveal-item {
  transform: translateY(24px) scale(0.99);
}

.hero-card,
.quote-card,
.class-card,
.feature-card,
.pricing-card,
.contact-card,
.instructor-card,
.cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-card::before,
.quote-card::before,
.class-card::before,
.feature-card::before,
.pricing-card::before,
.contact-card::before,
.instructor-card::before,
.cta-card::before,
.proof-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 82%);
  pointer-events: none;
}

.quote-card,
.class-card,
.feature-card,
.pricing-card,
.contact-card,
.instructor-card {
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.quote-card:hover,
.class-card:hover,
.feature-card:hover,
.pricing-card:hover,
.contact-card:hover,
.instructor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 154, 0.35);
}

.hero-card {
  padding: 1.2rem;
}

.card-label {
  margin: 0 0 0.4rem;
  color: var(--accent-2);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.hero-list li + li {
  margin-top: 0.4rem;
}

.text-link {
  color: var(--accent-2);
  font-weight: 700;
}

.scroll-cue {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  margin-top: 1.45rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.proof-strip {
  position: relative;
  padding: 1rem 0 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 125, 104, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(12, 9, 13, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-grid {
  display: grid;
  gap: 0.65rem;
  align-items: stretch;
}

.proof-item {
  position: relative;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 209, 154, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.proof-item strong {
  display: block;
  color: var(--accent-2);
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.proof-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
}

.proof-rating strong {
  margin: 0;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.proof-item > span {
  display: block;
}

.proof-item .proof-stars {
  display: inline-block;
  margin: 0;
  color: #ffd58f;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(242, 167, 76, 0.24);
  opacity: 0.95;
}

.proof-item .proof-stars-main,
.proof-item .proof-stars-last {
  display: inline-block;
}

.proof-item .proof-stars-last {
  opacity: 0.90;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
}

.section-luxe {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 125, 104, 0.08), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(242, 167, 76, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(13, 10, 14, 0.95), rgba(10, 8, 11, 0.98));
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.72;
}

.quote-grid,
.feature-grid,
.pricing-grid,
.contact-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.quote-card,
.feature-card,
.pricing-card,
.contact-card,
.instructor-card {
  padding: 1.15rem;
}

.quote-photo {
  aspect-ratio: 16 / 10;
  margin: -0.2rem -0.2rem 0.9rem;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.18), rgba(255, 125, 104, 0.1));
}

.quote-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.14);
  transform-origin: center;
}

.quote-card--maria .quote-photo img {
  object-position: 52% 24%;
  transform: scale(1.18);
}

.quote-card--carlos .quote-photo img {
  object-position: 50% 18%;
  transform: scale(1.12);
}

.quote-card--laura .quote-photo img {
  object-position: 88% 16%;
  transform: scale(1.24);
}

.quote-card p {
  margin-top: 0;
}

.quote-card strong {
  color: var(--accent-2);
}

.vibe-feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  min-height: 410px;
}

.vibe-feature img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: 22% 12%;
  display: block;
}

.vibe-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 6, 9, 0.02), rgba(8, 6, 9, 0.14) 34%, transparent 46%),
    linear-gradient(180deg, rgba(8, 6, 9, 0.08) 0%, rgba(8, 6, 9, 0.2) 42%, rgba(8, 6, 9, 0.82) 100%),
    radial-gradient(circle at 78% 70%, rgba(242, 167, 76, 0.24), transparent 42%);
}

.vibe-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.2rem;
}

.vibe-kicker {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vibe-overlay h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  line-height: 1.03;
}

.vibe-overlay p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
}

.vibe-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.class-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
}

.class-card {
  padding: 1.2rem;
  scroll-snap-align: start;
}

.class-strip-secondary {
  margin-top: 1rem;
}

.class-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 167, 76, 0.25);
  background: rgba(242, 167, 76, 0.12);
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.class-card h3,
.pricing-card h3,
.contact-card h3,
.instructor-card h3 {
  margin-bottom: 0.35rem;
}

.feature-card span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(242, 167, 76, 0.16);
  color: var(--accent-2);
  font-weight: 800;
}

.schedule-list {
  display: grid;
  gap: 0.75rem;
}

.schedule-interactive {
  display: grid;
  gap: 0.9rem;
}

.schedule-day-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}

.schedule-day-tab {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.schedule-day-tab.is-active {
  color: #2b190b;
  border-color: rgba(255, 209, 154, 0.7);
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.95), rgba(255, 125, 104, 0.84));
}

.schedule-day-panel {
  display: grid;
  gap: 0.75rem;
}

.schedule-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.schedule-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  cursor: pointer;
  list-style: none;
}

.schedule-card summary::-webkit-details-marker {
  display: none;
}

.schedule-time {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-name {
  margin: 0.1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.schedule-course-stack {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.1rem;
}

.schedule-course-line {
  display: grid;
  gap: 0.05rem;
}

.schedule-room {
  color: #ffe6bf;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-room-separator {
  margin-top: 0.1rem;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.schedule-focus {
  color: var(--muted);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-expand {
  color: var(--muted);
  font-size: 1rem;
}

.schedule-card-body {
  padding: 0 1.05rem 1rem;
  color: var(--muted);
}

.schedule-card-body p {
  margin: 0.2rem 0;
}

.schedule-card-actions {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.schedule-member-button {
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(242, 167, 76, 0.24);
}

.schedule-member-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.schedule-newbie-button {
  font-weight: 700;
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.16), rgba(255, 125, 104, 0.1));
  border: 1px solid rgba(242, 167, 76, 0.36);
  color: var(--accent-2);
  box-shadow: 0 8px 20px rgba(242, 167, 76, 0.14);
}

.schedule-newbie-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.28), rgba(255, 125, 104, 0.2));
  box-shadow: 0 10px 24px rgba(242, 167, 76, 0.24);
}

.schedule-poster {
  margin: 0 0 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.schedule-poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.schedule-poster figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.schedule-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.schedule-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

.schedule-item summary::-webkit-details-marker {
  display: none;
}

.schedule-item small {
  color: var(--accent-2);
}

.schedule-body {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.schedule-body p {
  margin: 0.25rem 0;
}

.compact-heading {
  margin-bottom: 0.8rem;
}

.about-note {
  margin: 0;
  color: var(--muted);
}

.avatar-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0.9rem 0 1rem;
}

.avatar-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.95), rgba(255, 125, 104, 0.85));
  color: #24150d;
  font-weight: 800;
}

.mini-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.mini-list li + li {
  margin-top: 0.4rem;
}

.pair-role {
  color: var(--accent-2);
  font-weight: 700;
}

.price {
  margin: 0.2rem 0 0.5rem;
  color: var(--accent-2);
  font-size: 1.5rem;
  font-weight: 800;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

.shop-card {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.shop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 154, 0.35);
}

.shop-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.shop-card:hover .shop-image img {
  transform: scale(1.03);
}

.shop-copy h3 {
  margin: 0 0 0.35rem;
}

.shop-copy p {
  margin: 0;
  color: var(--muted);
}

.shop-price {
  margin-top: 0.65rem;
  color: var(--accent-2);
  font-size: 1.45rem;
  font-weight: 800;
}

.shop-controls {
  display: grid;
  gap: 0.85rem;
}

.shop-field {
  display: grid;
  gap: 0.38rem;
}

.shop-field span,
.shop-name-field span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-size,
.shop-name-input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font: inherit;
  outline: none;
}

.shop-size:focus,
.shop-name-input:focus {
  border-color: rgba(242, 167, 76, 0.85);
  box-shadow: 0 0 0 3px rgba(242, 167, 76, 0.16);
}

.shop-swatches {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: var(--swatch);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.swatch:hover {
  transform: scale(1.04);
}

.swatch.is-selected {
  border-color: rgba(255, 209, 154, 0.95);
  box-shadow: 0 0 0 3px rgba(242, 167, 76, 0.16);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 46px;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 800;
}

.shop-name-field {
  display: grid;
  gap: 0.38rem;
}

.shop-name-field[hidden] {
  display: none;
}

.featured {
  background: linear-gradient(180deg, rgba(242, 167, 76, 0.12), rgba(35, 23, 33, 0.86));
  border-color: rgba(242, 167, 76, 0.28);
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(242, 167, 76, 0.12), rgba(255, 125, 104, 0.08)), rgba(31, 25, 36, 0.86);
}

.contact-grid {
  margin-top: 1rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-action {
  width: 100%;
  margin-top: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #061b0d;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.wa-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  color: #ffffff;
}

.site-footer {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  background: #09070b;
  padding: 2.2rem 0 1.4rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1.05rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.55rem;
  color: var(--text);
}

.footer-grid h3 {
  font-size: 1.2rem;
}

.footer-grid h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-grid p,
.footer-grid li {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 0.42rem;
}

.footer-grid a {
  color: var(--accent-2);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 760px) {
  .button {
    width: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .contact-action {
    width: 100%;
  }

  .hero-actions,
  .center-action,
  .cta-actions {
    flex-direction: row;
    align-items: center;
  }

  .quote-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .vibe-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .schedule-day-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  .proof-strip {
    z-index: 3;
    margin-top: -2.35rem;
    padding-top: 0;
    background: transparent;
    border-top: 0;
    border-bottom: 0;
  }

  .proof-grid {
    position: relative;
    z-index: 3;
  }

  .proof-item {
    background: linear-gradient(180deg, rgba(31, 22, 29, 0.86), rgba(20, 14, 19, 0.94));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-content: center;
    gap: 1.2rem;
  }

  .hero-card {
    align-self: end;
    margin-bottom: 0.35rem;
  }

  .hero-actions {
    gap: 0.9rem;
    margin-top: 1.35rem;
  }

  .class-strip {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

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

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
