/* ═══ SELECT — Salon & Events — Mobile First ═══ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit
}

ul,
ol {
  list-style: none
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none
}

:root {
  /* ── Surfaces ── */
  --bg: #ffffff;
  --surface: hsl(45, 20%, 97%);
  /* warm off-white */
  --surface-up: hsl(45, 15%, 94%);
  --border: hsl(42, 12%, 86%);
  --border-light: hsl(42, 10%, 92%);

  /* ── Text — pure black for OLED contrast ── */
  --text: #000000;
  --text-dim: hsl(0, 0%, 38%);
  /* neutral mid-gray, no blue cast */

  /* ── Gold accent — warm, saturated, elegant ── */
  --accent: hsl(42, 78%, 46%);
  --accent-hover: hsl(42, 82%, 38%);
  --accent-subtle: hsla(42, 78%, 46%, .07);
  --accent-glow: hsla(42, 78%, 46%, .18);
  --brand-purple: #b66187;
  --brand-purple-glow: hsla(336, 33%, 55%, .15);
  --brand-purple-subtle: hsla(336, 33%, 55%, .08);
  --gold-gradient: linear-gradient(135deg, hsl(42, 60%, 35%), hsl(42, 78%, 55%), hsl(42, 60%, 40%), hsl(42, 78%, 60%), hsl(42, 60%, 35%));
  --gold-gradient-hover: linear-gradient(135deg, hsl(42, 78%, 50%), hsl(42, 85%, 65%), hsl(42, 78%, 55%), hsl(42, 85%, 70%), hsl(42, 78%, 50%));

  /* ── Utility ── */
  --white: #ffffff;
  --black: #000000;
  --overlay: hsla(0, 0%, 0%, .5);
  --overlay-heavy: hsla(0, 0%, 0%, .72);
  --nav-blur: hsla(255, 0%, 100%, .94);
  --hero-text: hsla(0, 0%, 100%, .92);
  --hero-text-dim: hsla(0, 0%, 100%, .65);
  --form-border: hsla(0, 0%, 100%, .22);
  --form-placeholder: hsla(0, 0%, 100%, .5);
  --lightbox-bg: hsla(0, 0%, 0%, .95);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Layout ── */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --gutter: 1.25rem;
  --section-py: 4rem;
  --nav-h: 60px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  /* 16px base — never go below for body */
  font-weight: 400;
  /* regular, not light — readability first */
  line-height: 1.75;
  /* generous for body text */
  letter-spacing: -.01em;
  /* tighten Inter slightly */
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 500;
  /* medium for headings — crisp on OLED */
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--black);
}

h1 {
  font-size: 2.2rem
}

h2 {
  font-size: 1.65rem
}

h3 {
  font-size: 1.3rem
}

h4 {
  font-size: 1.1rem
}

p:not([class]) {
  max-width: 65ch
}

/* optimal reading width — only plain paragraphs */
.label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  /* semibold labels for clarity */
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

em {
  font-style: italic;
  color: var(--accent)
}

/* Gold border hover intensification */
.split__mosaic-item:hover,
.event-card:hover,
.feature:hover,
.type-card:hover,
.testimonial:hover,
.gallery-grid__item:hover {
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient-hover) border-box;
  box-shadow: 0 4px 20px var(--accent-glow)
}

.section--dark .split__mosaic-item:hover,
.section--dark .feature:hover,
.section--dark .type-card:hover,
.section--dark .testimonial:hover,
.section--dark .gallery-grid__item:hover {
  background: linear-gradient(#0a0a0a, #0a0a0a) padding-box, var(--gold-gradient-hover) border-box
}

/* Image tint — OLED B&W with deep contrast; full colour on hover / lightbox */
img:not([class*="logo"]):not([class*="Logo"]):not(.nav__logo-img):not(.footer__logo) {
  filter: grayscale(1) contrast(1.15) brightness(.95);
  transition: filter .5s var(--ease), opacity .4s var(--ease);
  background: var(--surface);
}

img[loading="lazy"] {
  opacity: 0
}

img.loaded {
  opacity: 1
}

a:hover>img:not([class*="logo"]),
.split__img:hover img,
.split__mosaic-item:hover img,
.event-card:hover .event-card__img,
.gallery-grid__item:hover img,
.gallery-strip__item:hover img,
.feature:hover img,
img:not([class*="logo"]):not([class*="Logo"]):hover {
  filter: grayscale(0) sepia(0) saturate(1) hue-rotate(0deg) contrast(1) brightness(1) !important
}

.lightbox__img {
  filter: none !important
}

/* Layout */
.container {
  width: calc(100% - var(--gutter)*2);
  margin-inline: auto
}

.section {
  position: relative;
  z-index: 1;
  padding-block: var(--section-py)
}

.text-center {
  text-align: center
}

/* Section — dark OLED variant */
.section--dark {
  background: #0a0a0a;
  color: var(--hero-text);
  position: relative;
  overflow: hidden
}

.section--dark>.container,
.section--dark>.highlights {
  position: relative;
  z-index: 1
}

.section--dark__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  opacity: .08;
  pointer-events: none
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white)
}

.section--dark p,
.section--dark .split__text p {
  color: hsla(0, 0%, 100%, .65)
}

.section--dark .label,
.section--dark em {
  color: var(--accent)
}

.section--dark .section__desc {
  color: hsla(0, 0%, 100%, .6)
}

.section--dark .feature,
.section--dark .type-card,
.section--dark .gallery-grid__item,
.section--dark .split__mosaic-item {
  background: #0a0a0a90 !important;
}

.section--dark .testimonial {
  background: #0a0a0a90 !important;
}

.section--dark .feature__text,
.section--dark .highlight {
  color: hsla(0, 0%, 100%, .6)
}

.section--dark .highlight {
  border-color: hsla(0, 0%, 100%, .1)
}

.section--dark .highlights {
  border-color: hsla(0, 0%, 100%, .1)
}

.section--dark .btn {
  border-color: var(--accent);
  color: var(--accent)
}

.section--dark .btn:hover {
  color: var(--white)
}

.section--dark .btn--solid {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent)
}

.section--dark .btn--solid:hover {
  background: var(--accent-hover);
  color: var(--white)
}

.section--dark .menu-tab {
  color: hsla(0, 0%, 100%, .5)
}

.section--dark .menu-tab:hover {
  color: var(--white)
}

.section--dark .menu-course__desc,
.section--dark .menu-note {
  color: hsla(0, 0%, 100%, .6)
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2.4rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
  z-index: -1;
  border-radius: var(--radius)
}

.btn:hover {
  color: var(--white)
}

.btn:hover::before {
  transform: scaleX(1)
}

.btn--solid {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent)
}

.btn--solid::before {
  background: var(--accent-hover)
}

.btn--solid:hover {
  color: var(--white)
}

/* ── Nav (mobile base) ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease), box-shadow .4s var(--ease)
}

.header--transparent {
  background: transparent
}

.header--solid,
.header.scrolled {
  background: var(--nav-blur);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-light)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-inline: var(--gutter);
  position: relative
}

.nav__left,
.nav__right {
  display: none
}

.nav__cta-mobile {
  position: absolute;
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 101;
  padding: .5rem;
  transition: color .3s var(--ease)
}

.nav__cta-mobile:hover {
  color: var(--accent-hover)
}

.header--transparent .nav__cta-mobile {
  color: var(--white)
}

.header--transparent.scrolled .nav__cta-mobile {
  color: var(--accent)
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0
}

.nav__logo-img {
  height: 28px;
  width: auto
}

.nav__link {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: .3rem 0;
  transition: color .3s var(--ease)
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease)
}

.nav__link:hover,
.nav__link--active {
  color: var(--text)
}

.nav__link--active::after,
.nav__link:hover::after {
  transform: scaleX(1)
}

.nav__link--cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: .45rem 1.2rem;
  border-radius: var(--radius);
  transition: all .3s var(--ease)
}

.nav__link--cta::after {
  display: none
}

.nav__link--cta:hover {
  background: var(--accent);
  color: var(--white)
}

/* Transparent state (over hero) */
.header--transparent .nav__link {
  color: var(--hero-text-dim)
}

.header--transparent .nav__link:hover,
.header--transparent .nav__link--active {
  color: var(--white)
}

.header--transparent .nav__link--cta {
  border-color: var(--hero-text-dim);
  color: var(--white)
}

.header--transparent .nav__link--cta:hover {
  background: var(--white);
  color: var(--text)
}

.header--transparent .nav__toggle span {
  background: var(--white)
}

.header--transparent.scrolled .nav__link {
  color: var(--text-dim)
}

.header--transparent.scrolled .nav__link:hover {
  color: var(--text)
}

.header--transparent.scrolled .nav__link--cta {
  border-color: var(--accent);
  color: var(--accent)
}

.header--transparent.scrolled .nav__link--cta:hover {
  background: var(--accent);
  color: var(--white)
}

.header--transparent.scrolled .nav__toggle span {
  background: var(--text)
}

/* Logo swap + golden tint on scroll (driven by JS) */
.nav__logo-img {
  transition: filter .3s var(--ease)
}

.header--transparent .nav__logo-img--dark {
  display: none
}

.header--transparent .nav__logo-img--light {
  display: block
}

.header--transparent.scrolled .nav__logo-img--dark {
  display: block
}

.header--transparent.scrolled .nav__logo-img--light {
  display: none
}

.header--solid .nav__logo-img--dark {
  display: block
}

.header--solid .nav__logo-img--light {
  display: none
}

/* Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 101;
  position: absolute;
  left: var(--gutter)
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all .3s var(--ease)
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease)
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dim);
  transition: color .3s var(--ease)
}

.nav__mobile-link:hover,
.nav__mobile-link--active {
  color: var(--text)
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero--short {
  height: 60svh;
  min-height: 400px
}

.hero__bg {
  position: absolute;
  inset: 0
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--overlay) 0%, hsla(0, 0%, 0%, .3) 50%, var(--overlay-heavy) 100%)
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--gutter)
}

.hero__logo {
  height: 70px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s var(--ease) both
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--hero-text);
  max-width: 500px;
  margin-inline: auto;
  animation: fadeUp 1.2s var(--ease) .3s both
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--hero-text-dim);
  margin-top: .8rem;
  max-width: 600px;
  margin-inline: auto;
  animation: fadeUp 1.2s var(--ease) .5s both
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: fadeUp 1.2s var(--ease) .8s both
}

.hero__scroll-text {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--hero-text-dim)
}

.hero__scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: pulse 2s ease infinite
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.7)
  }

  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* Hero — Animated CSS/SVG variant */
.hero--animated {
  background: radial-gradient(ellipse at 50% 40%, hsl(42, 20%, 8%) 0%, hsl(0, 0%, 3%) 70%)
}

.hero--animated .hero__bg video {
  opacity: .35
}

.hero--animated .hero__content {
  z-index: 3
}

.hero__ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vmin;
  height: 100vmin;
  max-width: 780px;
  max-height: 780px;
  z-index: 1;
  opacity: .7
}

.hero__arc {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: arcDraw 3s var(--ease) forwards;
}

.hero__arc--1 {
  animation-delay: .3s
}

.hero__arc--2 {
  animation-delay: .6s;
  animation-duration: 2.5s
}

.hero__arc--3 {
  animation-delay: .9s;
  animation-duration: 2s
}

.hero__arc--4 {
  animation-delay: .1s;
  animation-duration: 3.5s
}

@keyframes arcDraw {
  to {
    stroke-dashoffset: 0
  }
}

/* Slow rotation */
.hero__ornament {
  animation: ornamentSpin 120s linear infinite
}

@keyframes ornamentSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

/* Diamond accents */
.hero__diamond {
  animation: diamondIn .6s var(--ease) forwards
}

.hero__diamond--1 {
  animation-delay: 1.5s
}

.hero__diamond--2 {
  animation-delay: 1.7s
}

.hero__diamond--3 {
  animation-delay: 1.9s
}

.hero__diamond--4 {
  animation-delay: 2.1s
}

@keyframes diamondIn {
  to {
    opacity: .6
  }
}

/* Golden glow */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(circle, hsla(42, 78%, 46%, .12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(.8);
    opacity: .5
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1
  }
}

/* Expanding golden line */
.hero__line {
  width: 0;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: lineExpand 1.5s var(--ease) .8s forwards;
}

@keyframes lineExpand {
  to {
    width: 120px
  }
}

/* Section header */
.section__header {
  margin-bottom: 2.5rem
}

.section__label {
  margin-bottom: .6rem
}

.section__title {
  margin-bottom: .8rem
}

.section__desc {
  color: var(--text-dim);
  max-width: 600px
}

.section__header.text-center .section__desc {
  margin-inline: auto
}

/* Split layout */
.split {
  display: grid;
  gap: 2rem;
  align-items: center
}

.split__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem
}

.split__mosaic-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), filter .5s var(--ease);
  border: 1px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box
}

.split__mosaic-item:nth-child(1) {
  transition-delay: 0s
}

.split__mosaic-item:nth-child(2) {
  transition-delay: .2s
}

.split__mosaic-item:nth-child(3) {
  transition-delay: .4s
}

.split__mosaic-item:nth-child(4) {
  transition-delay: .6s
}

.revealed .split__mosaic-item {
  opacity: 1;
  transform: none
}

.split__mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease)
}

.split__mosaic-item:hover img {
  transform: scale(1.05)
}

.split__img {
  overflow: hidden;
  border-radius: var(--radius-lg)
}

.split__img img {
  width: 100%;
  transition: transform .8s var(--ease)
}

.split__img:hover img {
  transform: scale(1.03)
}

.split__text {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.split__text p {
  color: var(--text-dim)
}

/* Event cards */
.event-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box;
  transition: box-shadow .4s var(--ease)
}

.event-card:hover {
  box-shadow: 0 8px 30px var(--accent-glow)
}

.event-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.event-card:hover .event-card__img {
  transform: scale(1.05)
}

.event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-heavy) 0%, transparent 60%)
}

.event-card__body {
  position: relative;
  z-index: 2;
  padding: 1.2rem;
  width: 100%;
  color: var(--white)
}

.event-card__title {
  font-size: 1.2rem;
  margin-bottom: .2rem;
  color: var(--white)
}

.event-card__sub {
  font-size: .75rem;
  color: var(--hero-text-dim)
}

.event-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0;
  transform: translate(-5px, -5px);
  transition: all .4s var(--ease)
}

.event-card:hover .event-card__arrow {
  opacity: 1;
  transform: none
}

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem
}

.feature {
  padding: 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box;
  transition: background .3s var(--ease), box-shadow .3s var(--ease)
}

.feature:hover {
  box-shadow: 0 4px 20px var(--accent-glow)
}

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: .8rem;
  color: var(--accent)
}

.feature__icon svg {
  width: 28px;
  height: 28px
}

.feature__title {
  font-size: 1.05rem;
  margin-bottom: .4rem
}

.feature__text {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.6
}

/* Highlights */
.highlights {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.highlight {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
  color: var(--text-dim)
}

.highlight:last-child {
  border-bottom: none
}

.highlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem;
  color: var(--accent)
}

.highlight__icon svg {
  width: 22px;
  height: 22px
}

/* Menus */
.menus {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light)
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem
}

.menu-tab {
  flex: 1;
  padding: .8rem 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .3s var(--ease)
}

.menu-tab:hover {
  color: var(--text)
}

.menu-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent)
}

.menu-panel {
  display: none
}

.menu-panel.active {
  display: block;
  animation: fadeIn .5s var(--ease)
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.menu-card {
  max-width: 720px;
  margin-inline: auto
}

.menu-card__header {
  text-align: center;
  margin-bottom: 2rem
}

.menu-card__badge {
  display: inline-block;
  padding: .35rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .6rem
}

.menu-course {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-light)
}

.menu-course:last-child {
  border-bottom: none
}

.menu-course__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: .3rem
}

.menu-course__weight {
  font-size: .72rem;
  color: var(--text-dim);
  margin-left: .4rem;
  font-weight: 400
}

.menu-course__desc {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.6
}

.menu-note {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--accent-subtle);
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.6;
  border-left: 3px solid var(--accent)
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

.testimonial {
  padding: 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  font-style: italic;
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.8;
  position: relative;
  background: linear-gradient(hsla(0, 0%, 100%, .03), hsla(0, 0%, 100%, .03)) padding-box, var(--gold-gradient) border-box;
  transition: background .3s var(--ease), box-shadow .3s var(--ease)
}


.testimonial__stars {
  display: flex;
  gap: .15rem;
  margin-bottom: .6rem
}

.testimonial__text {
  margin-bottom: 1rem;
  font-style: italic
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--border-light)
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box;
  flex-shrink: 0
}

.testimonial__name {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
  letter-spacing: .02em
}

.testimonial__event {
  display: block;
  font-style: normal;
  font-size: .72rem;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .15rem
}

.section--dark .testimonial__author {
  border-top-color: hsla(0, 0%, 100%, .1)
}

.section--dark .testimonial__name {
  color: var(--white)
}

/* Gallery */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
  padding: .4rem
}

.gallery-strip__item {
  overflow: hidden;
  aspect-ratio: 1
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.gallery-strip__item:hover img {
  transform: scale(1.08)
}

.gallery-grid {
  columns: 1;
  column-gap: .8rem
}

.gallery-grid__item {
  break-inside: avoid;
  margin-bottom: .8rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box;
  transition: box-shadow .3s var(--ease)
}

.gallery-grid__item:hover {
  box-shadow: 0 4px 16px var(--accent-glow)
}

.gallery-grid__item img {
  width: 100%;
  display: block;
  transition: transform .6s var(--ease)
}

.gallery-grid__item:hover img {
  transform: scale(1.04)
}

/* Lightbox — full screen on mobile */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--lightbox-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease)
}

.lightbox.active {
  opacity: 1;
  pointer-events: all
}

.lightbox__img {
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  object-fit: contain;
  padding: .5rem
}

.lightbox__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  font-size: 1.6rem;
  color: var(--white);
  padding: .5rem;
  z-index: 2;
  transition: color .3s var(--ease)
}

.lightbox__close:hover {
  color: var(--accent)
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  padding: 1rem;
  transition: color .3s var(--ease)
}

.lightbox__nav:hover {
  color: var(--accent)
}

.lightbox__nav--prev {
  left: 0
}

.lightbox__nav--next {
  right: 0
}

/* Location */
.location {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto
}

.location__info {
  padding: var(--section-py) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--surface)
}

.location__item {
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.location__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent)
}

.location__value {
  font-size: .92rem;
  color: var(--text-dim)
}

.location__value a {
  color: var(--text);
  transition: color .3s var(--ease)
}

.location__value a:hover {
  color: var(--accent)
}

.location__social {
  display: flex;
  gap: 1rem;
  margin-top: .3rem
}

.location__social-link {
  color: var(--text-dim);
  transition: color .3s var(--ease)
}

.location__social-link:hover {
  color: var(--accent)
}

.location__map {
  position: relative;
  min-height: 300px
}

.location__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.5) contrast(.9);
  opacity: .85
}

/* Contact */
.contact {
  position: relative;
  z-index: 1;
  overflow: hidden
}

.contact__bg {
  position: absolute;
  inset: 0
}

.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1)
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-heavy)
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding: var(--section-py) var(--gutter);
  max-width: 560px;
  margin-inline: auto
}

.contact__title {
  text-align: center;
  margin-bottom: .4rem;
  color: var(--white)
}

.contact__subtitle {
  text-align: center;
  color: var(--hero-text-dim);
  font-size: .88rem;
  margin-bottom: 2rem
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem
}

.form__field {
  margin-bottom: .75rem
}

.form__input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.form__input::placeholder {
  color: var(--text-dim);
  font-weight: 400
}

.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-subtle);
  outline: none
}

.form__input--textarea {
  resize: vertical;
  min-height: 80px
}

.form__gdpr {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 1rem 0
}

.form__gdpr input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  border-radius: var(--radius)
}

.form__gdpr span {
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.5
}

.form__gdpr a {
  color: var(--accent);
  text-decoration: underline
}

.form__submit {
  width: 100%;
  margin-top: .5rem
}

.form__status {
  text-align: center;
  padding: .8rem;
  margin-top: .8rem;
  font-size: .85rem;
  display: none
}

.form__status--success {
  display: block;
  color: hsl(140, 50%, 40%)
}

.form__status--error {
  display: block;
  color: hsl(0, 60%, 50%)
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem var(--gutter) 1.5rem;
  background: var(--surface)
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center
}

.footer__logo {
  height: 28px;
  width: auto;
  opacity: .4;
  transition: opacity .3s var(--ease)
}

.footer__logo:hover {
  opacity: 1
}

.footer__social {
  display: flex;
  gap: 1rem
}

.footer__social-link {
  color: var(--text-dim);
  transition: color .3s var(--ease)
}

.footer__social-link:hover {
  color: var(--accent)
}

.footer__copy {
  font-size: .72rem;
  color: var(--text-dim);
  opacity: .6;
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  width: 100%
}

.footer__copy a {
  color: var(--text-dim);
  transition: color .3s var(--ease)
}

.footer__copy a:hover {
  color: var(--accent)
}

/* Policy */
.policy {
  padding-top: calc(var(--nav-h) + 2rem)
}

.policy__section {
  margin-bottom: 2rem
}

.policy__section h2 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--accent)
}

.policy__section p {
  color: var(--text-dim);
  margin-bottom: .6rem
}

.policy__section ul {
  padding-left: 1rem;
  margin-bottom: .6rem
}

.policy__section li {
  color: var(--text-dim);
  margin-bottom: .3rem;
  position: relative;
  padding-left: 1rem
}

.policy__section li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent)
}

.policy__section a {
  color: var(--accent);
  text-decoration: underline
}

.policy__date {
  font-size: .85rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem
}

/* Type grid */
.type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem
}

.type-card {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--gold-gradient) border-box;
  transition: box-shadow .3s var(--ease)
}

.type-card:hover {
  box-shadow: 0 4px 16px var(--accent-glow)
}

.type-card__title {
  font-size: 1rem
}

.type-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .6rem;
  color: var(--accent)
}

.type-card__icon svg {
  width: 26px;
  height: 26px
}

/* CTA Section */
.cta-section {
  background: var(--surface)
}

.section--dark.cta-section {
  background: #0a0a0a
}

.cta-section__title {
  margin-bottom: .5rem
}

.cta-section__sub {
  color: var(--text-dim);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  margin-inline: auto
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center
}

/* Scroll Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease)
}

[data-reveal].revealed {
  opacity: 1;
  transform: none
}

[data-reveal-delay="1"] {
  transition-delay: .1s
}

[data-reveal-delay="2"] {
  transition-delay: .2s
}

[data-reveal-delay="3"] {
  transition-delay: .3s
}

[data-reveal-delay="4"] {
  transition-delay: .4s
}

/* ── FAB ── */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: .6rem
}

.fab__trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow), 0 2px 8px rgba(0, 0, 0, .15);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.fab__trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px var(--accent-glow), 0 4px 12px rgba(0, 0, 0, .2)
}

.fab__icon--close {
  display: none
}

.fab--open .fab__icon--open {
  display: none
}

.fab--open .fab__icon--close {
  display: block
}

.fab--open .fab__trigger {
  background: var(--black)
}

.fab__menu {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .3s var(--ease)
}

.fab--open .fab__menu {
  opacity: 1;
  pointer-events: all;
  transform: none
}

.fab__option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.2rem .65rem .8rem;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all .25s var(--ease);
}

.fab__option:hover {
  background: var(--surface);
  transform: translateX(-4px)
}

.fab__option--wa {
  color: hsl(142, 70%, 35%)
}

.fab__option--phone {
  color: var(--accent)
}

.fab__option--email {
  color: var(--text-dim)
}

.fab__option svg {
  flex-shrink: 0
}

/* ── Form Modal — full screen on mobile ── */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease)
}

.form-modal.active {
  opacity: 1;
  pointer-events: all
}

.form-modal__overlay {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 0%, .5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px)
}

.form-modal__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 2rem 1.5rem calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}

.form-modal.active .form-modal__content {
  transform: none
}

.form-modal__close {
  position: absolute;
  top: .8rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--text-dim);
  padding: .3rem;
  transition: color .2s var(--ease)
}

.form-modal__close:hover {
  color: var(--black)
}

.form-modal__title {
  font-size: 1.5rem;
  margin-bottom: .3rem;
  text-align: center
}

.form-modal__sub {
  text-align: center;
  color: var(--text-dim);
  font-size: .88rem;
  margin-bottom: 1.5rem
}

.form-modal .form__gdpr span {
  color: var(--text-dim)
}

.form-modal .form__status--success {
  color: hsl(140, 50%, 35%)
}

.form-modal .form__status--error {
  color: hsl(0, 60%, 50%)
}

/* ═══ TABLET (min 640px) ═══ */
@media(min-width:640px) {
  :root {
    --gutter: 1.75rem;
    --section-py: 5rem
  }

  .event-cards {
    grid-template-columns: 1fr 1fr
  }

  .event-card {
    aspect-ratio: 3/4
  }

  .features {
    grid-template-columns: 1fr 1fr
  }

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .gallery-grid {
    columns: 2
  }

  .form__row {
    grid-template-columns: 1fr 1fr;
    gap: .75rem
  }

  .type-grid {
    grid-template-columns: 1fr 1fr
  }

  .highlights {
    flex-direction: row;
    flex-wrap: wrap
  }

  .highlight {
    flex: 1;
    min-width: 160px;
    border-bottom: none;
    border-right: 1px solid var(--border)
  }

  .highlight:last-child {
    border-right: none
  }

  .cta-section__buttons {
    flex-direction: row;
    justify-content: center
  }

  .lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    padding: 2rem
  }

  .form-modal {
    align-items: center;
    padding: 2rem
  }

  .form-modal__content {
    max-width: 480px;
    border-radius: var(--radius-lg);
    transform: translateY(24px);
    max-height: 85vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
  }
}

/* ═══ DESKTOP (min 1024px) ═══ */
@media(min-width:1024px) {
  :root {
    --gutter: 2rem;
    --section-py: 7rem;
    --nav-h: 70px
  }

  body {
    font-size: 1.05rem
  }

  h1 {
    font-size: 3.5rem
  }

  h2 {
    font-size: 2.5rem
  }

  h3 {
    font-size: 1.75rem
  }

  h4 {
    font-size: 1.2rem
  }

  .container {
    max-width: var(--container)
  }

  .nav {
    justify-content: space-between;
    padding-inline: 2.5rem
  }

  .nav__left,
  .nav__right {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    flex: 1
  }

  .nav__right {
    justify-content: flex-end
  }

  .nav__toggle,
  .nav__cta-mobile {
    display: none
  }

  .nav__logo {
    padding: 0 2.5rem
  }

  .nav__logo-img {
    height: 36px
  }

  .hero__logo {
    height: 100px
  }

  .hero__tagline {
    font-size: 1.5rem
  }

  .hero__glow {
    width: 500px;
    height: 500px
  }

  .hero__line {
    animation-delay: .8s
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem
  }

  .event-cards {
    grid-template-columns: repeat(4, 1fr)
  }

  .features {
    grid-template-columns: repeat(3, 1fr)
  }

  .testimonials {
    grid-template-columns: repeat(3, 1fr)
  }

  .gallery-strip {
    grid-template-columns: repeat(6, 1fr)
  }

  .gallery-grid {
    columns: 3;
    column-gap: 1rem
  }

  .location {
    grid-template-columns: 1fr 1fr;
    min-height: 500px
  }

  .location__info {
    padding: 4rem
  }

  .location__map {
    min-height: auto
  }

  .section__header {
    margin-bottom: 3.5rem
  }

  .menu-tab {
    padding: 1rem 2.5rem;
    flex: none
  }

  .type-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}