:root {
  color-scheme: dark;
  --bg: #0d0c0b;
  --bg-soft: #171411;
  --panel: rgba(25, 21, 17, 0.82);
  --panel-strong: rgba(34, 28, 22, 0.96);
  --text: #f1eadf;
  --muted: #c9b9a2;
  --line: rgba(255, 213, 92, 0.22);
  --accent: #f5b82e;
  --accent-strong: #ffd84d;
  --accent-hot: #fff06a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 216, 77, 0.28), transparent 30%),
    linear-gradient(180deg, #19120a 0%, var(--bg) 52%, #0b0908 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 240, 106, 0.08), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(245, 184, 46, 0.08), transparent 20%),
    radial-gradient(circle at 78% 74%, rgba(255, 216, 77, 0.05), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 100% 44px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 44px 100%;
  opacity: 0.72;
  z-index: 0;
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 10;
  margin-bottom: 2rem;
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  min-width: 0;
  padding: 0.45rem;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.08), rgba(8, 7, 6, 0.9) 34%),
    rgba(9, 8, 7, 0.9);
  backdrop-filter: blur(14px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(255, 216, 77, 0.15),
    inset 0 1px 0 rgba(255, 240, 106, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-lockup-header {
  flex: 0 0 260px;
  align-self: stretch;
  justify-content: center;
  padding: 0.95rem 1.2rem;
  border: 1px solid rgba(255, 216, 77, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.14), transparent 58%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 240, 106, 0.1);
}

.header-brand-title {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.header-brand-meta {
  margin: 0;
  color: rgba(241, 234, 223, 0.76);
  font-size: 0.82rem;
  line-height: 1.4;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-hero {
  width: min(100%, 610px);
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 18px rgba(255, 216, 77, 0.16));
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a,
.site-nav-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(255, 216, 77, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 216, 77, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.18), transparent 70%),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.site-nav a.is-current {
  color: #16110b;
  border-color: rgba(255, 240, 106, 0.7);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-hot));
  box-shadow:
    0 0 0 1px rgba(255, 240, 106, 0.14),
    0 12px 24px rgba(255, 216, 77, 0.18);
}

.site-nav-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.hero,
.section {
  border: 1px solid rgba(255, 216, 77, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 240, 106, 0.09), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(245, 184, 46, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(30, 24, 16, 0.96), rgba(12, 10, 9, 0.98));
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 240, 106, 0.12);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.65fr);
  grid-template-areas:
    "banner banner"
    "copy panel";
  gap: 2rem;
  padding: 3.15rem 4rem 4rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.75;
}

.hero::before {
  inset: auto auto 12% -10%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.22), transparent 65%);
}

.hero::after {
  inset: 8% -6% auto auto;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(245, 184, 46, 0.18), transparent 62%);
}

.hero-copy {
  grid-area: copy;
  position: relative;
}

.hero-copy-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 1.9rem 1.9rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(18, 15, 11, 0.78);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 240, 106, 0.1);
}

.hero-copy-banner::before {
  content: "";
  position: absolute;
  inset: 1rem auto 1rem 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-hot), rgba(255, 216, 77, 0.1));
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.28);
}

.hero-banner {
  grid-area: banner;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  margin: 0 auto 1.5rem;
}

.brand-logo-hero {
  width: 100%;
  max-width: none;
  justify-self: center;
}

.hero-banner-image-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: center;
  border: 1px solid rgba(255, 216, 77, 0.28);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(245, 184, 46, 0.16),
    inset 0 1px 0 rgba(255, 240, 106, 0.16);
}

.hero-banner-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.04), rgba(10, 8, 7, 0.48)),
    radial-gradient(circle at 70% 20%, rgba(255, 240, 106, 0.2), transparent 22%);
  pointer-events: none;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.78;
}

.hero-text {
  max-width: 50rem;
  margin: 0 0 1.75rem;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.media-card {
  position: relative;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(24, 20, 17, 0.94), rgba(15, 12, 10, 0.98));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.1);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.media-card:hover,
.media-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 240, 106, 0.42);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 240, 106, 0.14);
}

.media-card-equipment {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.media-card-social {
  display: grid;
  grid-template-rows: minmax(220px, 320px) auto;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(183, 138, 85, 0.12), rgba(20, 17, 14, 0.96)),
    linear-gradient(180deg, rgba(24, 20, 17, 0.94), rgba(15, 12, 10, 0.98));
}

.media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 1.5rem;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 60%);
}

.media-image {
  display: block;
  width: 100%;
  height: auto;
}

.media-image-contain {
  max-width: 420px;
  object-fit: contain;
}

.technology-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
}

.technology-image-pair .media-image-contain {
  max-width: none;
  width: 100%;
  transform: scale(2);
  transform-origin: center;
}

.media-image-cover {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.media-frame-social {
  padding-bottom: 0;
}

.media-copy {
  padding: 1.6rem;
}

.technology-actions {
  margin-top: 1.25rem;
}

.gallery-carousel {
  padding: 1.25rem;
}

.gallery-carousel-track {
  position: relative;
  min-height: 460px;
}

.gallery-slide {
  display: none;
  margin: 0;
}

.gallery-slide.is-active {
  display: block;
}

.gallery-slide .media-frame {
  min-height: 460px;
  padding: 1rem;
}

.gallery-slide .media-image-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.25rem;
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-button {
  min-width: 118px;
  min-height: 2.9rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(210, 164, 110, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border: 1px solid rgba(210, 164, 110, 0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--accent-strong);
  transform: scale(1.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.contact-link:focus-visible,
.contact-map-overlay:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid rgba(255, 240, 106, 0.82);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-strong) 45%, var(--accent));
  color: #120f0d;
  box-shadow:
    0 14px 32px rgba(255, 216, 77, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button-book {
  flex: 0 0 auto;
  min-width: 210px;
  min-height: 4.35rem;
  padding: 1.05rem 2rem;
  font-size: 1.18rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  min-width: 250px;
}

.book-cta-inline {
  width: 100%;
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.14), transparent 72%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 240, 106, 0.08);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.86;
}

.button-disabled:hover {
  transform: none;
}

.book-note {
  margin: 0;
  color: var(--accent-hot);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

.book-cta-inline .book-note {
  max-width: none;
  text-align: right;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(214, 61, 61, 0.4);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(214, 61, 61, 0.22), rgba(255, 255, 255, 0.03) 58%),
    rgba(17, 14, 11, 0.92);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 145, 145, 0.18);
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 120, 120, 0.18), transparent 32%);
  pointer-events: none;
}

.promo-banner-label,
.promo-banner-copy {
  position: relative;
  z-index: 1;
  margin: 0;
}

.promo-banner-label {
  color: #ff7a7a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-banner-copy {
  color: #ffd3d3;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
}

.promo-banner-top {
  margin: 0.9rem 0 1.5rem;
}

.promo-banner-inline {
  margin: 0 0 1.5rem;
}

@media (max-width: 720px) {
  .promo-banner {
    padding: 0.9rem 1rem;
  }

  .promo-banner-copy {
    font-size: 1.25rem;
  }
}

.book-cta-inline .button-book {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border-color: rgba(255, 240, 106, 0.75);
  opacity: 1;
  animation: booking-pulse 2.8s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255, 240, 106, 0.18),
    0 0 24px rgba(255, 216, 77, 0.44),
    0 16px 36px rgba(255, 190, 46, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.book-cta-inline .button-book::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 240, 106, 0.38), transparent 66%);
}

@keyframes booking-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 240, 106, 0.18),
      0 0 22px rgba(255, 216, 77, 0.38),
      0 16px 36px rgba(255, 190, 46, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 240, 106, 0.34),
      0 0 34px rgba(255, 216, 77, 0.62),
      0 20px 44px rgba(255, 190, 46, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-cta-inline .button-book {
    animation: none;
  }
}

.booking-section {
  scroll-margin-top: 6rem;
}

.booking-widget-card {
  overflow: hidden;
  min-height: 960px;
  padding: 1rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(12, 10, 9, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 106, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.booking-widget-card iframe {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.button-secondary {
  border-color: rgba(255, 216, 77, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.launch-note {
  color: var(--text);
}

.hero-panel {
  grid-area: panel;
  display: flex;
  align-items: end;
}

.panel-card,
.card,
.contact-panel {
  border: 1px solid rgba(255, 216, 77, 0.22);
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.panel-card {
  position: relative;
  width: 100%;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.panel-label {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  position: relative;
  margin-top: 1.5rem;
  padding: 3rem;
}

.section-heading {
  position: relative;
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  max-width: 46rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 216, 77, 0.22);
}

.section-heading::before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  margin-left: -1.35rem;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-hot), rgba(255, 216, 77, 0.12));
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.38);
}

.section-heading h2 {
  max-width: 15ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

#experience .card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 216, 77, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  backdrop-filter: blur(10px);
}

#experience {
  scroll-margin-top: 7.5rem;
}

.card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.card::before,
.panel-card::before,
.prices-feature-card::before,
.prices-photo-card::before,
.page-intro-image-wrap::before,
.custom-fitting-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 240, 106, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
  opacity: 0.72;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 240, 106, 0.42);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 240, 106, 0.14);
}

.card-large {
  min-height: 220px;
}

.section-highlight {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 240, 106, 0.12), transparent 20%),
    radial-gradient(circle at 82% 72%, rgba(245, 184, 46, 0.1), transparent 18%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.18), rgba(16, 14, 12, 0.95)),
    linear-gradient(180deg, rgba(29, 24, 20, 0.94), rgba(17, 14, 12, 0.96));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.split-layout > * {
  min-width: 0;
}

.page-intro-layout {
  align-items: stretch;
}

.page-intro-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.page-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.25rem;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-intro-media {
  display: grid;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}

.page-intro-image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.12);
}

.page-intro-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.page-intro-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.08), rgba(8, 7, 6, 0.46)),
    radial-gradient(circle at 75% 18%, rgba(255, 240, 106, 0.18), transparent 24%);
  pointer-events: none;
}

.page-intro-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.2);
  border-radius: 20px;
  background: rgba(12, 10, 9, 0.76);
  backdrop-filter: blur(10px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.page-intro-badge span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-hot);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-intro-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.page-intro-fact {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 216, 77, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(17, 14, 12, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 240, 106, 0.08);
  overflow-wrap: anywhere;
}

.page-intro-fact strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-hot);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.page-intro-fact span {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.55;
}

.lessons-hero {
  margin-top: 1rem;
  padding: 0;
  overflow: hidden;
}

.lessons-hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 32px;
}

.lessons-intro {
  margin-top: 0;
}

.lessons-intro .section-heading,
.lessons-intro .supporting-text,
.lessons-intro .lessons-contact-prompt {
  max-width: none;
}

.lessons-intro .section-heading h2 {
  max-width: none;
}

.lessons-head-pro .section-heading,
.lessons-head-pro .supporting-text {
  max-width: none;
}

.lessons-head-pro .section-heading h2 {
  max-width: none;
}

.lessons-head-pro .lessons-offer-card {
  max-width: none;
}

.lessons-offer-grid {
  align-items: stretch;
  margin-top: 1.5rem;
}

.lessons-offer-card {
  min-height: 100%;
}

.lessons-offer-card .panel-label {
  margin-bottom: 0.9rem;
}

.lessons-rate-list {
  display: grid;
  gap: 0.7rem;
}

.lessons-rate-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.lessons-rate-cell {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.lessons-rate-cell span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.lessons-rate-cell strong {
  color: var(--accent-hot);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lessons-rate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.lessons-rate-row span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.lessons-rate-row strong {
  color: var(--accent-hot);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lessons-contact-prompt {
  max-width: 62rem;
  margin-top: 1.5rem;
}

.supporting-text {
  max-width: 48rem;
}

.professional-shop-copy {
  max-width: 58rem;
}

.professional-shop-copy p:last-child {
  margin-bottom: 0;
}

.professional-shop-intro {
  margin-top: 0;
}

.shop-brand-strip {
  margin-top: 2rem;
}

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

.shop-brand-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.035);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 240, 106, 0.42);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 240, 106, 0.14);
}

.shop-brand-logo {
  display: block;
  width: min(100%, 220px);
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.shop-brand-logo-ogio {
  width: min(100%, 295px);
  height: 98px;
}

.shop-brand-logo-puma {
  width: min(100%, 282px);
  height: 94px;
}

.shop-brand-logo-cobra {
  width: min(100%, 282px);
  height: 94px;
}

.shop-brand-logo-mizuno {
  filter: brightness(0) invert(1);
}

.professional-shop-image-wrap {
  position: relative;
  margin: 2rem 0 0;
  border: 1px solid rgba(255, 216, 77, 0.28);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    var(--shadow),
    0 0 34px rgba(245, 184, 46, 0.14);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.professional-shop-image {
  display: block;
  width: 100%;
  height: auto;
}

.custom-fitting-intro {
  margin-top: 0;
}

.custom-fitting-lead {
  gap: 2.5rem;
  align-items: stretch;
}

.custom-fitting-lead h2 {
  margin-bottom: 1.35rem;
}

.custom-fitting-hero-media {
  display: grid;
  gap: 0.9rem;
}

.custom-fitting-image-wrap,
.custom-fitting-data-card {
  position: relative;
  border: 1px solid rgba(255, 216, 77, 0.28);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.custom-fitting-image-wrap:hover,
.custom-fitting-data-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 240, 106, 0.16);
}

.custom-fitting-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.custom-fitting-caption {
  margin: 0;
  color: var(--accent-hot);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.custom-fitting-benefits {
  align-items: stretch;
}

.custom-fitting-card {
  min-height: 100%;
}

.custom-fitting-card p:last-child {
  margin-bottom: 0;
}

.custom-fitting-data-layout {
  gap: 1.4rem;
}

.custom-fitting-data-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.custom-fitting-data-card {
  padding: 0.75rem;
}

.custom-fitting-data-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.prices-intro {
  margin-top: 0;
}

.prices-table-wrap {
  margin-top: 2rem;
}

.prices-photo-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.12);
}

.prices-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 190px;
  object-fit: cover;
}

.prices-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(24, 20, 17, 0.94), rgba(15, 12, 10, 0.98));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.1);
  overflow: hidden;
}

.prices-table-cell {
  padding: 1.4rem 1.5rem;
}

.prices-table-cell + .prices-table-cell {
  border-right: 1px solid rgba(255, 216, 77, 0.14);
}

.prices-table-column {
  display: grid;
  gap: 0.9rem;
}

.prices-period,
.prices-rate {
  margin: 0;
}

.prices-period {
  color: var(--text);
  font-weight: 700;
}

.prices-label {
  margin: 0;
  color: var(--accent-hot);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prices-rate + .prices-rate {
  margin-top: 0;
}

.prices-rate strong {
  color: var(--accent-hot);
}

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

.membership-card {
  min-height: 100%;
}

.membership-card-highlight {
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.16), rgba(30, 24, 16, 0.9)),
    var(--panel);
}

.membership-tier {
  margin-bottom: 0.65rem;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.05;
}

.membership-price {
  margin-bottom: 1rem;
}

.membership-price strong {
  color: var(--accent-hot);
}

.membership-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.9;
}

.membership-contact-link {
  display: inline-flex;
  margin-top: 0.75rem;
}

.cta {
  text-align: center;
}

.cta .supporting-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-form-card,
.contact-details-card {
  position: relative;
  padding: 1.6rem;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  backdrop-filter: blur(10px);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 240, 106, 0.08);
}

.contact-form-card::before,
.contact-details-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 240, 106, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
  opacity: 0.72;
  pointer-events: none;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 18px;
  background: rgba(10, 9, 8, 0.72);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255, 240, 106, 0.06);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(201, 185, 162, 0.72);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 240, 106, 0.46);
  box-shadow:
    0 0 0 3px rgba(255, 216, 77, 0.12),
    inset 0 1px 0 rgba(255, 240, 106, 0.08);
  background: rgba(10, 9, 8, 0.9);
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.form-checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  accent-color: var(--accent-strong);
}

.form-checkbox span {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
}

.contact-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-status.is-error {
  color: #ffb7a8;
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-details-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.contact-details-list {
  display: grid;
  gap: 0.8rem;
}

.contact-detail {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 216, 77, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-detail-location {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 0;
  overflow: hidden;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--accent-hot);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1;
}

.contact-detail p {
  margin-bottom: 0;
}

.contact-email-link {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--text);
  font-weight: 800;
}

.contact-link {
  display: inline-flex;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-link-top {
  margin: 1.15rem auto 0;
}

.contact-map-card {
  position: relative;
  min-height: 320px;
  height: 320px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(255, 216, 77, 0.22);
  border-radius: 24px;
  background: rgba(12, 10, 9, 0.95);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 240, 106, 0.1);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-map-card:hover,
.contact-map-card:focus-visible {
  border-color: rgba(255, 240, 106, 0.54);
  transform: translateY(-2px);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(255, 216, 77, 0.18),
    inset 0 1px 0 rgba(255, 240, 106, 0.16);
}

.contact-map-embed {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 0;
  border: 0;
}

.contact-map-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 216, 77, 0.18);
  border-radius: 18px;
  background: rgba(12, 10, 9, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-map-overlay h3 {
  margin-bottom: 0.25rem;
}

.contact-map-overlay p:last-child {
  margin-bottom: 0;
}

.contact-map-overlay:hover,
.contact-map-overlay:focus-visible {
  border-color: rgba(255, 240, 106, 0.38);
  background: rgba(12, 10, 9, 0.88);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.message {
  min-height: 1.75em;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-map-embed {
    min-height: 0;
  }

  .contact-map-card {
    height: 260px;
    min-height: 260px;
  }

  .contact-map-overlay {
    right: 1rem;
  }
}

@media (max-width: 960px) {
  .hero,
  .media-strip,
  .media-card-equipment,
  .split-layout,
  .grid-three,
  .grid-two,
  .custom-fitting-data-pair {
    grid-template-columns: 1fr;
  }

  .prices-table {
    grid-template-columns: 1fr;
  }

  .prices-table-cell + .prices-table-cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 216, 77, 0.14);
  }

  .prices-table-cell:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-areas:
      "banner"
      "copy"
      "panel";
  }

  .hero-panel {
    align-items: stretch;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .page-intro-fact-grid,
  .prices-feature-grid {
    grid-template-columns: 1fr;
  }

  .media-card-social {
    min-height: 0;
  }

  .custom-fitting-image {
    aspect-ratio: 16 / 10;
  }

  .technology-image-pair {
    grid-template-columns: 1fr;
  }

  .gallery-carousel-track,
  .gallery-slide .media-frame {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 1rem, 1200px);
    padding-top: 0.5rem;
  }

  .site-header {
    position: static;
    margin-bottom: 1rem;
  }

  .site-nav {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .header-actions {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0.35rem;
    gap: 1rem;
  }

  .brand-lockup-header {
    flex: 1 1 auto;
    width: 100%;
  }

  .site-nav a,
  .site-nav-disabled {
    min-height: 2.45rem;
    padding: 0.55rem 0.45rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .hero,
  .section {
    padding: 2rem 1.35rem;
    border-radius: 28px;
  }

  .lessons-hero {
    margin-top: 0.75rem;
    padding: 0;
  }

  .prices-table-cell {
    padding: 1.15rem 1.1rem;
  }

  .professional-shop-intro {
    padding-top: 1.4rem;
  }

  .custom-fitting-lead {
    gap: 1.5rem;
  }

  .lessons-rate-table {
    grid-template-columns: 1fr;
  }

  .media-copy,
  .media-frame {
    padding: 1.25rem;
  }

  .gallery-carousel {
    padding: 1rem;
  }

  .gallery-carousel-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-carousel-track,
  .gallery-slide .media-frame {
    min-height: 260px;
  }

  .carousel-button {
    min-width: 0;
    flex: 1 1 140px;
  }

  .brand-logo-hero {
    width: min(100%, 500px);
    max-width: 500px;
  }

  .button-book {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-size: 0.94rem;
  }

  .book-cta {
    width: 100%;
    align-items: center;
    align-self: auto;
    margin-bottom: 0;
  }

  .book-cta-inline {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
  }

  .book-cta-inline .button-book {
    width: 100%;
  }

  .book-note {
    max-width: none;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .book-cta-inline .book-note {
    text-align: left;
  }

  .booking-widget-card {
    min-height: 1120px;
    padding: 0.75rem;
  }

  .booking-widget-card iframe {
    min-height: 1080px;
    border-radius: 18px;
  }

  .hero-banner-badge {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    gap: 0.5rem;
    padding: 0.72rem 0.85rem;
    font-size: 0.85rem;
  }

  .page-intro-image {
    min-height: 220px;
  }

  .prices-photo {
    min-height: 160px;
  }

  .shop-brand-grid {
    grid-template-columns: 1fr;
  }

  .shop-brand-card {
    min-height: 110px;
    padding: 1rem;
  }

  .shop-brand-logo {
    width: min(100%, 180px);
    height: 56px;
  }

  .shop-brand-logo-ogio {
    width: min(100%, 240px);
    height: 77px;
  }

  .shop-brand-logo-puma,
  .shop-brand-logo-cobra {
    width: min(100%, 228px);
    height: 72px;
  }

  .custom-fitting-data-card {
    padding: 0.55rem;
  }

  .lessons-hero-image {
    height: auto;
    border-radius: 28px;
  }
}
