:root {
  --ink: #070706;
  --black: #0d0c0a;
  --graphite: #171512;
  --graphite-soft: #24211c;
  --ivory: #f4efe4;
  --muted: #c4b9a6;
  --muted-dark: #8d8271;
  --gold: #b49a63;
  --gold-deep: #7a6338;
  --oxblood: #341a18;
  --moss: #273126;
  --line: rgba(244, 239, 228, 0.16);
  --line-strong: rgba(180, 154, 99, 0.38);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --serif: "arpona", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "arponasans", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

body::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.16));
  border-bottom: 1px solid rgba(244, 239, 228, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell,
.container {
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  transition: opacity 180ms ease;
}

.menu-open .site-header > .nav-shell {
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 36%, rgba(180, 154, 99, 0.2), transparent 46%),
    rgba(13, 12, 10, 0.68);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.brand-logo img {
  width: 118%;
  height: 118%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.32));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  background: rgba(13, 12, 10, 0.58);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.brand small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.language-option {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(244, 239, 228, 0.13);
  border-radius: 999px;
  background: rgba(13, 12, 10, 0.48);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-option:hover,
.language-option.is-active {
  border-color: var(--line-strong);
  background: rgba(180, 154, 99, 0.12);
  color: var(--ivory);
  transform: translateY(-1px);
}

.flag {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 228, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(7, 7, 6, 0.24), 0 0 18px rgba(180, 154, 99, 0.1);
}

.flag-br {
  background: #12663c;
}

.flag-br::before,
.flag-br::after,
.flag-en::before,
.flag-en::after {
  content: "";
  position: absolute;
}

.flag-br::before {
  width: 12px;
  height: 12px;
  inset: 50% auto auto 50%;
  background: #f1cf4d;
  transform: translate(-50%, -50%) rotate(45deg);
}

.flag-br::after {
  width: 7px;
  height: 7px;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  background: #243b8f;
  transform: translate(-50%, -50%);
}

.flag-fr {
  background: linear-gradient(90deg, #243f8f 0 33.33%, #f4efe4 33.33% 66.66%, #a82d37 66.66% 100%);
}

.flag-en {
  background: #1b2a63;
}

.flag-en::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 39%, #f4efe4 39% 61%, transparent 61%),
    linear-gradient(0deg, transparent 39%, #f4efe4 39% 61%, transparent 61%);
}

.flag-en::after {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 44%, #b4353f 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, #b4353f 44% 56%, transparent 56%);
}

.nav-membership,
.menu-toggle,
.menu-close,
.footer-links a,
.footer-email {
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.nav-membership:hover,
.menu-toggle:hover,
.menu-close:hover,
.footer-links a:hover,
.footer-email:hover {
  color: var(--ivory);
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0;
}

.menu-toggle i {
  width: 34px;
  height: 34px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  width: 14px;
  height: 1px;
  position: absolute;
  background: var(--gold);
  transition: transform 240ms ease;
}

.menu-toggle i::before {
  transform: translateY(-4px);
}

.menu-toggle i::after {
  transform: translateY(4px);
}

.menu-open .menu-toggle i::before {
  transform: rotate(45deg);
}

.menu-open .menu-toggle i::after {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  min-height: 100svh;
  background:
    linear-gradient(135deg, rgba(52, 26, 24, 0.72), rgba(7, 7, 6, 0.12) 38%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.98), rgba(13, 12, 10, 0.96));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 280ms ease, transform 280ms ease;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(33.333% - 1px), rgba(244, 239, 228, 0.06) 33.333%, transparent calc(33.333% + 1px)),
    linear-gradient(90deg, transparent 0, transparent calc(66.666% - 1px), rgba(244, 239, 228, 0.06) 66.666%, transparent calc(66.666% + 1px));
  pointer-events: none;
}

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

.menu-panel-inner {
  width: min(100% - 2rem, 1160px);
  min-height: 100%;
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 2rem;
  padding: 1rem 0 2rem;
}

.menu-panel-top,
.menu-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-list {
  display: grid;
  align-content: center;
}

.menu-list a {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 8vw, 6.6rem);
  font-weight: 300;
  line-height: 0.94;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.menu-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-list a span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
}

.menu-list a:hover {
  color: var(--gold);
  padding-left: 0.8rem;
}

.menu-panel-footer {
  align-items: end;
}

.menu-panel-footer-copy {
  display: grid;
  gap: 1rem;
}

.menu-panel-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-hero {
  min-height: 86svh;
  position: relative;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 7.25rem 0 4.25rem;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("gallery/0006_DXVLVvbDVUQ_01.webp");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.72);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(180, 154, 99, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(7, 7, 6, 0.98) 0%, rgba(7, 7, 6, 0.74) 48%, rgba(7, 7, 6, 0.32) 100%),
    linear-gradient(0deg, var(--ink) 0%, rgba(7, 7, 6, 0) 34%);
}

.hero-content {
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
  padding-top: 2rem;
  animation: revealUp 800ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  font-size: 2.72rem;
  font-weight: 300;
}

h2 {
  font-size: 2.55rem;
  font-weight: 300;
}

h3 {
  font-size: 1.45rem;
  font-weight: 300;
}

.hero-copy {
  max-width: 590px;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-ghost,
.button-plan {
  color: var(--ivory);
  border-color: var(--line-strong);
  background: rgba(13, 12, 10, 0.42);
}

.button-ghost:hover,
.button-plan:hover {
  border-color: var(--gold);
  background: rgba(180, 154, 99, 0.12);
}

.hero-status {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: min(100% - 2rem, 1160px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-status span {
  border-left: 1px solid var(--gold);
  padding: 0.35rem 0 0.35rem 0.55rem;
  background: linear-gradient(90deg, rgba(180, 154, 99, 0.11), transparent);
}

.manifesto {
  background:
    linear-gradient(135deg, rgba(52, 26, 24, 0.55), rgba(7, 7, 6, 0) 38%),
    var(--black);
  border-top: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  gap: 2rem;
}

.manifesto-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.manifesto-copy p {
  margin: 0;
}

.manifesto-copy p + p {
  margin-top: 1.15rem;
}

.credential-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 48%, rgba(180, 154, 99, 0.16), transparent 32%),
    linear-gradient(180deg, var(--black), #0a0908);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.credential-copy {
  max-width: 720px;
}

.credential-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.04rem;
}

.desktop-logo-showcase {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.desktop-logo-showcase:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 10px;
}

.desktop-logo-showcase::before {
  content: "";
  position: absolute;
  width: 232px;
  height: 232px;
  border: 1px solid rgba(180, 154, 99, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(180, 154, 99, 0.14), transparent 62%),
    linear-gradient(135deg, rgba(244, 239, 228, 0.08), transparent);
  box-shadow:
    0 0 52px rgba(180, 154, 99, 0.13),
    inset 0 0 42px rgba(180, 154, 99, 0.07);
  animation: haloBreathe 5.5s ease-in-out infinite;
  z-index: -1;
}

.logo-orbit {
  position: absolute;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: orbitSpin 22s linear infinite;
}

.logo-orbit::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 50px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(180, 154, 99, 0.75);
}

.desktop-logo-showcase img {
  width: min(226px, 72%);
  height: auto;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
  filter:
    saturate(0.95)
    contrast(1.04)
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
  animation: logoFloat 6.5s ease-in-out infinite;
}

.section-dark {
  background: linear-gradient(180deg, var(--ink), var(--graphite));
}

.membership-section {
  background:
    linear-gradient(135deg, rgba(39, 49, 38, 0.52), rgba(7, 7, 6, 0) 32%),
    var(--black);
}

.section-header {
  max-width: 730px;
  margin-bottom: 2.2rem;
}

.section-header p:not(.section-kicker),
.apply-intro p,
.final-cta p {
  color: var(--muted);
}

.narrow {
  max-width: 620px;
}

.membership-grid,
.process-steps {
  display: grid;
  gap: 1rem;
}

.experience-flow {
  --flow-line-x: 1.45rem;
  --flow-line-offset: 0.75rem;
  --flow-beam-height: 7rem;
  position: relative;
  display: grid;
  gap: 1rem;
  isolation: isolate;
}

.experience-flow::before,
.experience-flow::after {
  content: "";
  position: absolute;
  left: var(--flow-line-x);
  top: var(--flow-line-offset);
  bottom: var(--flow-line-offset);
  width: 1px;
  z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(180, 154, 99, 0.62), rgba(244, 239, 228, 0.16), rgba(180, 154, 99, 0.62), transparent);
}

.experience-flow::after {
  height: auto;
  width: 2px;
  z-index: 2;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 12%,
      rgba(180, 154, 99, 0.16) 18%,
      rgba(180, 154, 99, 0.92) 23%,
      rgba(244, 239, 228, 0.96) 25%,
      var(--gold) 28%,
      rgba(180, 154, 99, 0.18) 34%,
      transparent 42%,
      transparent 100%
    );
  background-size: 100% 240%;
  background-position: 0 100%;
  filter:
    drop-shadow(0 0 10px rgba(244, 239, 228, 0.42))
    drop-shadow(0 0 18px rgba(180, 154, 99, 0.68));
  pointer-events: none;
  animation: flowTrace 5.4s linear infinite;
}

.gallery-section {
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.95), rgba(7, 7, 6, 0.98)),
    var(--black);
  border-top: 1px solid var(--line);
}

.gallery-header {
  max-width: none;
  display: grid;
  gap: 1rem;
}

.gallery-header p:not(.section-kicker) {
  max-width: 420px;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.gallery-item {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--graphite);
  isolation: isolate;
}

.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.gallery-item::before {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.05), rgba(7, 7, 6, 0.76)),
    linear-gradient(90deg, rgba(7, 7, 6, 0.48), rgba(7, 7, 6, 0));
}

.gallery-item::after {
  inset: 0.7rem;
  border: 1px solid rgba(180, 154, 99, 0.34);
  opacity: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.01);
  transition: transform 700ms ease, filter 300ms ease;
}

.gallery-lightbox-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-lightbox-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -5px;
}

.gallery-instagram-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--ivory);
  border: 1px solid rgba(246, 239, 219, 0.32);
  border-radius: 50%;
  background: rgba(7, 7, 6, 0.58);
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.gallery-instagram-link:hover,
.gallery-instagram-link:focus-visible {
  color: var(--gold);
  border-color: rgba(180, 154, 99, 0.78);
  background: rgba(7, 7, 6, 0.78);
  transform: translateY(-2px);
}

.gallery-item-kids-closeup img {
  object-fit: contain;
  object-position: 50% 0%;
  transform: scale(1);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 1.1rem 1.1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ivory);
  transform: translateY(0.4rem);
  transition: transform 240ms ease;
  pointer-events: none;
}

.gallery-item figcaption span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.gallery-item figcaption strong {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gallery-item:hover img {
  filter: saturate(0.72) contrast(1.12) brightness(0.86);
  transform: scale(1.08);
}

.gallery-item-kids-closeup:hover img {
  transform: scale(1.015);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.experience-card,
.membership-card,
.process-step,
.form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(244, 239, 228, 0.055), rgba(244, 239, 228, 0.018));
  box-shadow: var(--shadow);
}

.process-step {
  padding: 1.35rem;
}

.experience-card {
  min-height: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.05rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 1.1rem;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: flowCardIn 560ms ease both;
  animation-delay: calc(var(--step) * 95ms);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto 28%;
  height: 120%;
  background: radial-gradient(circle, rgba(180, 154, 99, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.experience-card__marker {
  width: 2.9rem;
  height: 2.9rem;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 154, 99, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(180, 154, 99, 0.2), transparent 58%),
    var(--black);
  box-shadow:
    inset 0 0 18px rgba(180, 154, 99, 0.08),
    0 0 0 6px rgba(7, 7, 6, 0.86),
    0 16px 28px rgba(0, 0, 0, 0.24);
}

.experience-card__marker::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(180, 154, 99, 0.16);
  border-radius: inherit;
  animation: markerPulse 3.2s ease-in-out infinite;
  animation-delay: calc(var(--step) * 180ms);
}

.experience-card__body {
  position: relative;
  z-index: 1;
}

.experience-card__body h3 {
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
}

.experience-card:hover,
.membership-card:hover,
.process-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(180, 154, 99, 0.12), rgba(244, 239, 228, 0.025));
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card:hover .experience-card__marker {
  border-color: var(--line-strong);
}

.card-number,
.process-step span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.experience-card p,
.membership-card p,
.process-step p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

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

.membership-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% 28%;
  height: 58%;
  background: radial-gradient(circle, rgba(180, 154, 99, 0.13), transparent 66%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-inner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.service-aside {
  display: flex;
  align-items: flex-start;
}

.service-photo {
  width: 86px;
  height: 86px;
  padding: 0;
  border: 1px solid rgba(180, 154, 99, 0.28);
  border-radius: 50%;
  background: var(--graphite);
  box-shadow:
    inset 0 0 22px rgba(180, 154, 99, 0.06),
    0 18px 32px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  transform: scale(1.18);
  transition: transform 240ms ease, filter 240ms ease;
}

.service-card-hair .service-photo img {
  object-position: 53% 32%;
}

.service-card-beard .service-photo img {
  object-position: 48% 34%;
}

.service-card-combo .service-photo img,
.service-card-combo-brows .service-photo img {
  object-position: 50% 32%;
}

.service-card-kids .service-photo img {
  object-position: 55% 34%;
}

.service-card:hover .service-photo,
.service-photo:focus-visible {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 22px rgba(180, 154, 99, 0.12),
    0 20px 38px rgba(0, 0, 0, 0.32);
  outline: none;
}

.service-card:hover .service-photo img,
.service-photo:focus-visible img {
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.24);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-meta span {
  color: var(--ivory);
}

.service-content p {
  margin-top: 0.75rem;
}

.featured-plan {
  border-color: var(--line-strong);
  background:
    linear-gradient(145deg, rgba(180, 154, 99, 0.16), rgba(244, 239, 228, 0.025)),
    rgba(13, 12, 10, 0.88);
}

.membership-head {
  display: grid;
  gap: 0.5rem;
}

.membership-head span {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
}

.membership-head strong {
  color: var(--gold);
  font-size: 0.9rem;
}

.membership-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.membership-card li {
  position: relative;
  padding-left: 1.1rem;
}

.membership-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.42rem;
  height: 1px;
  background: var(--gold);
}

.button-plan {
  margin-top: auto;
}

.process {
  background: var(--graphite);
}

.process-step {
  min-height: 210px;
}

.apply-section {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0), rgba(52, 26, 24, 0.34)),
    var(--black);
}

.apply-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.apply-intro {
  max-width: 540px;
}

.form-shell {
  padding: 1rem;
}

.booking-panel {
  display: grid;
  gap: 1.15rem;
}

.booking-panel__head {
  display: grid;
  gap: 0.65rem;
  padding: 0.35rem 0.25rem 0.15rem;
}

.booking-panel__head h3 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.75rem);
}

.booking-panel__head p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.booking-options {
  display: grid;
  gap: 0.75rem;
}

.booking-facts {
  display: grid;
  gap: 0.75rem;
}

.booking-fact {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(180, 154, 99, 0.12), transparent 38%),
    rgba(7, 7, 6, 0.4);
}

.booking-fact span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-fact strong,
.booking-fact a {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.32rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.booking-fact a:hover {
  color: var(--gold);
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-option {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.35rem 1rem;
  padding: 1rem;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(180, 154, 99, 0.12), transparent 38%),
    rgba(7, 7, 6, 0.4);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking-option:hover {
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(180, 154, 99, 0.18), transparent 42%),
    rgba(13, 12, 10, 0.78);
  transform: translateY(-2px);
}

.booking-option span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-option strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.booking-option em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.booking-panel__button {
  width: 100%;
}

.application-form {
  display: grid;
  gap: 1rem;
}

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

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

.form-field label,
.application-form__label {
  color: var(--ivory);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.application-form__input,
.application-form__textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 6px;
  background: rgba(7, 7, 6, 0.56);
  color: var(--ivory);
  font: inherit;
  padding: 0.9rem 0.95rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-field textarea,
.application-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.application-form__input::placeholder,
.application-form__textarea::placeholder {
  color: rgba(196, 185, 166, 0.62);
}

.form-field input:focus,
.form-field textarea:focus,
.application-form__input:focus,
.application-form__textarea:focus {
  border-color: var(--gold);
  background: rgba(7, 7, 6, 0.78);
}

.application-form__submit {
  min-height: 50px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.application-form__submit:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

.application-form__response:empty {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.form-alert,
.application-alert {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  color: var(--ivory);
  background: rgba(7, 7, 6, 0.52);
}

.form-alert-success,
.application-alert--success {
  border-color: rgba(180, 154, 99, 0.52);
  background: rgba(39, 49, 38, 0.42);
}

.form-alert-error,
.application-alert--error {
  border-color: rgba(176, 91, 77, 0.58);
  background: rgba(52, 26, 24, 0.48);
}

.form-alert ul,
.application-alert__list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.application-alert__title {
  margin: 0;
  color: var(--ivory);
  font-weight: 700;
}

.loading-line {
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1rem;
  background: rgba(244, 239, 228, 0.04);
}

.htmx-request .loading-line {
  animation: pulse 900ms ease infinite alternate;
}

.final-cta {
  background:
    linear-gradient(rgba(7, 7, 6, 0.88), rgba(7, 7, 6, 0.88)),
    url("gallery/thumbs/0004_DXsei9XjV3o_01.webp");
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta-inner {
  max-width: 780px;
}

.final-cta .button {
  margin-top: 1.2rem;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(7, 7, 6, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.photo-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox__image {
  max-width: min(92vw, 1080px);
  max-height: 86vh;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.photo-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.6rem 0.9rem;
  background: rgba(13, 12, 10, 0.86);
  color: var(--ivory);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.photo-lightbox__close:hover,
.photo-lightbox__close:focus-visible {
  border-color: var(--line-strong);
  outline: none;
}

.site-footer {
  padding: 2rem 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  width: 62px;
  height: 62px;
  flex-basis: 62px;
}

.footer-email {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-instagram {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.instagram-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-locations,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-legal p {
  margin: 0;
}

.footer-credit {
  width: fit-content;
  color: var(--muted);
}

.footer-credit b {
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 0 9px rgba(180, 154, 99, 0.52);
  animation: rvDesignGlow 1.8s ease-in-out infinite;
}

.footer-credit:hover b,
.footer-credit:focus-visible b {
  color: var(--ivory);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes flowTrace {
  0% {
    opacity: 0;
    background-position: 0 100%;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: 0 -100%;
  }
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.94);
  }

  45% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes pulse {
  from {
    opacity: 0.58;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.015);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes haloBreathe {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.03);
  }
}

@keyframes rvDesignGlow {
  0%,
  100% {
    opacity: 0.72;
    text-shadow: 0 0 7px rgba(180, 154, 99, 0.38);
  }

  48% {
    opacity: 1;
    text-shadow:
      0 0 10px rgba(180, 154, 99, 0.88),
      0 0 24px rgba(180, 154, 99, 0.5);
  }
}

@media (max-width: 760px) {
  .nav-language,
  .nav-membership {
    display: none;
  }

  .nav-actions {
    gap: 0.65rem;
  }

  .menu-panel-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-language {
    flex-wrap: wrap;
  }
}

@media (min-width: 700px) {
  .section {
    padding: 6.5rem 0;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.25rem;
  }

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

  .experience-flow {
    --flow-line-x: calc(50% - 1px);
    gap: 1.1rem;
  }

  .experience-card {
    width: calc(50% - 2.35rem);
    overflow: visible;
  }

  .experience-card::after {
    content: "";
    position: absolute;
    top: 2.48rem;
    width: 2.35rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(180, 154, 99, 0.46), rgba(244, 239, 228, 0.08));
  }

  .experience-card:nth-child(odd) {
    grid-template-columns: minmax(0, 1fr) 3.05rem;
    justify-self: start;
    text-align: right;
  }

  .experience-card:nth-child(odd)::after {
    right: -2.35rem;
  }

  .experience-card:nth-child(odd) .experience-card__marker {
    grid-column: 2;
  }

  .experience-card:nth-child(odd) .experience-card__body {
    grid-column: 1;
    grid-row: 1;
  }

  .experience-card:nth-child(even) {
    justify-self: end;
  }

  .experience-card:nth-child(even)::after {
    left: -2.35rem;
    background: linear-gradient(90deg, rgba(244, 239, 228, 0.08), rgba(180, 154, 99, 0.46));
  }

  .gallery-header {
    grid-template-columns: 1fr 0.65fr;
    align-items: end;
  }

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

  .gallery-item {
    min-height: 410px;
  }

  .gallery-item:nth-child(n+11) {
    display: none;
  }

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

  .field-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .section-hero {
    min-height: 90svh;
  }

  h1 {
    font-size: 5.2rem;
  }

  .manifesto-grid,
  .apply-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .credential-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  }

  .desktop-logo-showcase {
    min-height: 410px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
  }

  .desktop-logo-showcase::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(180, 154, 99, 0.28);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(180, 154, 99, 0.15), transparent 62%),
      linear-gradient(135deg, rgba(244, 239, 228, 0.08), transparent);
    box-shadow:
      0 0 75px rgba(180, 154, 99, 0.14),
      inset 0 0 55px rgba(180, 154, 99, 0.08);
    animation: haloBreathe 5.5s ease-in-out infinite;
    z-index: -1;
  }

  .logo-orbit {
    position: absolute;
    width: 386px;
    height: 386px;
    border: 1px solid rgba(244, 239, 228, 0.12);
    border-radius: 50%;
    animation: orbitSpin 22s linear infinite;
  }

  .logo-orbit::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 72px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 22px rgba(180, 154, 99, 0.75);
  }

  .desktop-logo-showcase img {
    width: min(340px, 74%);
    position: relative;
    z-index: 1;
    filter:
      saturate(0.95)
      contrast(1.04)
      drop-shadow(0 32px 44px rgba(0, 0, 0, 0.46));
    animation: logoFloat 6.5s ease-in-out infinite;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .gallery-item {
    min-height: 0;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
