@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");


/* =========================================================
   SIX NINE — GLOBAL DESIGN SYSTEM
   File: assets/css/base/global.css
   ========================================================= */


/* =========================================================
   TOKENS
   ========================================================= */

:root {
  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;

  /* Core */
  --color-black: #0c0c0d;
  --color-graphite: #171719;
  --color-charcoal: #232326;

  --color-ivory: #f2eee5;
  --color-ivory-soft: #f7f4ed;
  --color-sand: #d8cfbe;
  --color-gold: #b99a5b;
  --color-white: #ffffff;

  /* Experience accents */
  --color-padel: #ff2e8a;
  --color-coffee: #6a4a34;
  --color-pilates: #a9b29a;

  /* Text */
  --text-primary: #111112;
  --text-secondary: #625f59;
  --text-muted: #8a857c;
  --text-light: rgba(255, 255, 255, 0.72);
  --text-light-muted: rgba(255, 255, 255, 0.48);

  /* Surfaces */
  --surface-primary: var(--color-ivory);
  --surface-light: var(--color-ivory-soft);
  --surface-dark: var(--color-black);
  --surface-graphite: var(--color-graphite);

  /* Borders */
  --border-light: rgba(12, 12, 13, 0.12);
  --border-light-soft: rgba(12, 12, 13, 0.07);

  --border-dark: rgba(255, 255, 255, 0.14);
  --border-dark-soft: rgba(255, 255, 255, 0.08);

  /* Layout */
  --container-max: 1360px;
  --container-wide: 1640px;

  --gutter:
    clamp(
      18px,
      3.5vw,
      56px
    );

  --section-space:
    clamp(
      96px,
      11vw,
      176px
    );

  --section-space-small:
    clamp(
      64px,
      7vw,
      110px
    );

  /* Navbar */
  --navbar-top: 18px;
  --navbar-height: 70px;

  /* Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Motion */
  --ease-premium:
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

  --ease-out:
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );

  --duration-fast: 180ms;
  --duration-normal: 380ms;
  --duration-slow: 800ms;

  /* Z-index */
  --z-base: 1;
  --z-navbar: 100;
  --z-overlay: 500;
  --z-modal: 700;
  --z-loader: 9999;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;
  scroll-padding-top:
    calc(
      var(--navbar-height) +
      36px
    );
}

body {
  margin: 0;

  min-width: 320px;

  background: var(--surface-primary);
  color: var(--text-primary);

  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  overflow-x: hidden;
}

body.is-loading,
body.menu-open,
body.modal-open {
  overflow: hidden;
}

main {
  display: block;

  width: 100%;
}

section {
  position: relative;
}

img,
picture,
video,
canvas,
svg {
  display: block;

  max-width: 100%;
}

img {
  height: auto;
}

video {
  width: 100%;
}

button,
input,
textarea,
select {
  margin: 0;

  font: inherit;
  color: inherit;
}

button {
  padding: 0;

  border: 0;

  background: none;

  cursor: pointer;
}

input,
select,
textarea {
  border-radius: 0;
}

a {
  color: inherit;

  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;

  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--color-gold);
  color: var(--color-black);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

:focus-visible {
  outline:
    2px solid
    var(--color-gold);

  outline-offset: 4px;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(
    0,
    0,
    0,
    0
  );

  white-space: nowrap;

  border: 0;
}


/* =========================================================
   CONTAINERS
   ========================================================= */

.container {
  width:
    min(
      calc(
        100% -
        (
          var(--gutter) * 2
        )
      ),
      var(--container-max)
    );

  margin-inline: auto;
}

.container-wide {
  width:
    min(
      calc(
        100% -
        (
          var(--gutter) * 2
        )
      ),
      var(--container-wide)
    );

  margin-inline: auto;
}

.container-fluid {
  width: 100%;

  padding-inline:
    var(--gutter);
}


/* =========================================================
   SECTION SYSTEM
   ========================================================= */

.section {
  padding-block:
    var(--section-space);
}

.section-small {
  padding-block:
    var(--section-space-small);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.display-font {
  font-family:
    var(--font-display);
}

.body-font {
  font-family:
    var(--font-body);
}


/* =========================================================
   DISPLAY
   ========================================================= */

.display-xl {
  font-family:
    var(--font-display);

  font-size:
    clamp(
      4rem,
      8vw,
      8rem
    );

  font-weight: 500;

  line-height: 0.87;

  letter-spacing: -0.06em;
}

.display-lg {
  font-family:
    var(--font-display);

  font-size:
    clamp(
      3.2rem,
      6.3vw,
      6.3rem
    );

  font-weight: 500;

  line-height: 0.91;

  letter-spacing: -0.052em;
}

.display-md {
  font-family:
    var(--font-display);

  font-size:
    clamp(
      2.6rem,
      4.7vw,
      4.8rem
    );

  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -0.044em;
}

.heading-lg {
  font-family:
    var(--font-display);

  font-size:
    clamp(
      2.15rem,
      3.6vw,
      3.8rem
    );

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -0.038em;
}

.heading-md {
  font-family:
    var(--font-display);

  font-size:
    clamp(
      1.75rem,
      2.8vw,
      2.8rem
    );

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.032em;
}


/* =========================================================
   BODY TEXT
   ========================================================= */

.body-xl {
  font-size:
    clamp(
      1.08rem,
      1.35vw,
      1.3rem
    );

  line-height: 1.72;
}

.body-lg {
  font-size:
    clamp(
      0.98rem,
      1.16vw,
      1.12rem
    );

  line-height: 1.72;
}

.body-md {
  font-size: 0.94rem;

  line-height: 1.72;
}

.body-sm {
  font-size: 0.82rem;

  line-height: 1.68;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  width: fit-content;

  font-family:
    var(--font-body);

  font-size: 0.66rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 22px;
  height: 1px;

  flex-shrink: 0;

  background: currentColor;

  opacity: 0.75;
}


/* =========================================================
   TEXT COLORS
   ========================================================= */

.text-primary {
  color:
    var(--text-primary);
}

.text-secondary {
  color:
    var(--text-secondary);
}

.text-muted {
  color:
    var(--text-muted);
}

.text-white {
  color:
    var(--color-white);
}

.text-gold {
  color:
    var(--color-gold);
}

.text-padel {
  color:
    var(--color-padel);
}

.text-coffee {
  color:
    var(--color-coffee);
}

.text-pilates {
  color:
    var(--color-pilates);
}


/* =========================================================
   BACKGROUNDS
   ========================================================= */

.bg-black {
  background:
    var(--color-black);
}

.bg-graphite {
  background:
    var(--color-graphite);
}

.bg-ivory {
  background:
    var(--color-ivory);
}

.bg-white {
  background:
    var(--color-white);
}

.bg-sand {
  background:
    var(--color-sand);
}


/* =========================================================
   BUTTON SYSTEM
   ========================================================= */

.btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding:
    0
    22px;

  border:
    1px solid
    transparent;

  border-radius:
    var(--radius-xs);

  font-size: 0.68rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.11em;

  text-align: center;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color
      var(--duration-normal)
      var(--ease-premium),
    background-color
      var(--duration-normal)
      var(--ease-premium),
    border-color
      var(--duration-normal)
      var(--ease-premium),
    transform
      var(--duration-normal)
      var(--ease-premium);
}

.btn:hover {
  transform:
    translateY(-1px);
}

.btn:active {
  transform:
    translateY(0);
}


/* =========================================================
   BUTTON VARIANTS
   ========================================================= */

.btn-primary {
  background:
    var(--color-black);

  color:
    var(--color-white);
}

.btn-primary:hover {
  background:
    var(--color-graphite);
}

.btn-light {
  background:
    var(--color-ivory);

  color:
    var(--color-black);
}

.btn-light:hover {
  background:
    var(--color-white);
}

.btn-outline-dark {
  border-color:
    rgba(
      12,
      12,
      13,
      0.42
    );

  color:
    var(--color-black);
}

.btn-outline-dark:hover {
  border-color:
    var(--color-black);

  background:
    var(--color-black);

  color:
    var(--color-white);
}

.btn-outline-light {
  border-color:
    rgba(
      255,
      255,
      255,
      0.32
    );

  color:
    var(--color-white);
}

.btn-outline-light:hover {
  border-color:
    rgba(
      255,
      255,
      255,
      0.88
    );

  background:
    rgba(
      255,
      255,
      255,
      0.09
    );
}


/* =========================================================
   BUTTON ICON
   ========================================================= */

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;

  flex-shrink: 0;

  transition:
    transform
    var(--duration-normal)
    var(--ease-premium);
}

.btn-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
}

.btn:hover
.btn-icon {
  transform:
    translateX(3px);
}


/* =========================================================
   ICON SYSTEM
   ========================================================= */

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-stroke svg {
  fill: none;
  stroke: currentColor;
}

.icon-fill svg {
  fill: currentColor;
  stroke: none;
}


/* =========================================================
   LINK ARROW
   ========================================================= */

.link-arrow {
  position: relative;

  display: inline-flex;
  align-items: center;

  gap: 11px;

  width: fit-content;

  padding-bottom: 5px;

  font-size: 0.68rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.105em;

  text-transform: uppercase;
}

.link-arrow::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 1px;

  background: currentColor;

  transform:
    scaleX(0.25);

  transform-origin: left;

  opacity: 0.55;

  transition:
    transform
    var(--duration-normal)
    var(--ease-premium),
    opacity
    var(--duration-normal)
    var(--ease-premium);
}

.link-arrow svg,
.link-arrow .icon {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  transition:
    transform
    var(--duration-normal)
    var(--ease-premium);
}

.link-arrow:hover::after {
  transform:
    scaleX(1);

  opacity: 1;
}

.link-arrow:hover svg,
.link-arrow:hover .icon {
  transform:
    translateX(4px);
}


/* =========================================================
   IMAGE SYSTEM
   ========================================================= */

.media-cover {
  position: relative;

  overflow: hidden;
}

.media-cover img,
.media-cover video {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.image-overlay {
  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(12, 12, 13, 0.02),
      rgba(12, 12, 13, 0.42)
    );
}


/* =========================================================
   PARALLAX
   ========================================================= */

[data-parallax] {
  will-change: transform;
}

.parallax-media {
  position: relative;

  overflow: hidden;
}

.parallax-media img,
.parallax-media video {
  width: 100%;
  height: 110%;

  object-fit: cover;

  transform:
    translate3d(
      0,
      -5%,
      0
    );

  will-change: transform;
}


/* =========================================================
   REVEAL
   ========================================================= */

[data-reveal] {
  opacity: 0;

  transform:
    translateY(28px);

  transition:
    opacity
      850ms
      var(--ease-premium),
    transform
      850ms
      var(--ease-premium);
}

[data-reveal].is-visible {
  opacity: 1;

  transform:
    translate3d(
      0,
      0,
      0
    );
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform:
    translateX(-28px);
}

[data-reveal="right"] {
  transform:
    translateX(28px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform:
    translateX(0);
}


/* =========================================================
   PRELOADER
   ========================================================= */

.preloader {
  position: fixed;

  inset: 0;

  z-index:
    var(--z-loader);

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    var(--color-black);

  color:
    var(--color-ivory);

  transition:
    opacity
      750ms
      var(--ease-premium),
    visibility
      750ms
      var(--ease-premium);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;

  pointer-events: none;
}

.preloader__inner {
  width:
    min(
      480px,
      calc(
        100% - 44px
      )
    );
}

.preloader__brand {
  margin-bottom: 32px;

  font-family:
    var(--font-display);

  font-size:
    clamp(
      3.2rem,
      7vw,
      5.8rem
    );

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.06em;

  text-align: center;
}

.preloader__track {
  position: relative;

  width: 100%;
  height: 1px;

  overflow: hidden;

  background:
    rgba(
      255,
      255,
      255,
      0.16
    );
}

.preloader__bar {
  width: 0;
  height: 100%;

  background:
    var(--color-gold);

  transition:
    width
    220ms
    ease-out;
}

.preloader__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin-top: 12px;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  font-size: 0.61rem;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* =========================================================
   GLOBAL NAVBAR
   ========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index:
    var(--z-navbar);

  width: 100%;

  padding:
    var(--navbar-top)
    var(--gutter)
    0;

  pointer-events: none;

  transition:
    transform
    550ms
    var(--ease-premium);
}

.site-header.is-hidden {
  transform:
    translateY(
      calc(
        -100% -
        28px
      )
    );
}


/* =========================================================
   NAVBAR CONTAINER
   ========================================================= */

.site-header
.container-wide {
  width: 100%;

  max-width:
    var(--container-wide);

  margin-inline: auto;

  pointer-events: auto;
}


/* =========================================================
   NAVBAR SURFACE
   ========================================================= */

.navbar {
  position: relative;

  display: grid;

  grid-template-columns:
    auto
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap:
    clamp(
      28px,
      3vw,
      50px
    );

  min-height:
    var(--navbar-height);

  padding:
    8px
    9px
    8px
    22px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  border-radius:
    var(--radius-pill);

  background:
    linear-gradient(
      180deg,
      rgba(18, 18, 20, 0.78),
      rgba(10, 10, 11, 0.72)
    );

  box-shadow:
    0
    12px
    40px
    rgba(
      0,
      0,
      0,
      0.12
    );

  backdrop-filter:
    blur(22px)
    saturate(125%);

  -webkit-backdrop-filter:
    blur(22px)
    saturate(125%);

  transition:
    min-height
      var(--duration-normal)
      var(--ease-premium),
    background
      var(--duration-normal)
      var(--ease-premium),
    border-color
      var(--duration-normal)
      var(--ease-premium),
    box-shadow
      var(--duration-normal)
      var(--ease-premium);
}


/* =========================================================
   NAVBAR SCROLLED
   ========================================================= */

.site-header.is-scrolled
.navbar {
  min-height: 64px;

  background:
    rgba(
      10,
      10,
      11,
      0.92
    );

  border-color:
    rgba(
      255,
      255,
      255,
      0.13
    );

  box-shadow:
    0
    14px
    44px
    rgba(
      0,
      0,
      0,
      0.2
    );
}


/* =========================================================
   BRAND
   ========================================================= */

.navbar__brand {
  position: relative;

  z-index: 2;

  display: inline-flex;
  align-items: center;

  width: fit-content;

  flex-shrink: 0;

  color:
    var(--color-white);

  white-space: nowrap;
}

.navbar__brand:hover {
  color:
    var(--color-white);
}

.navbar__brand
.brand-wordmark {
  display: block;

  font-family:
    var(--font-display);

  font-size:
    clamp(
      1.7rem,
      1.8vw,
      2rem
    );

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.055em;
}


/* =========================================================
   NAVIGATION MENU
   ========================================================= */

.navbar__menu {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  gap:
    clamp(
      18px,
      1.75vw,
      28px
    );
}

.navbar__link {
  position: relative;

  display: inline-flex;
  align-items: center;

  min-height: 40px;

  color:
    rgba(
      255,
      255,
      255,
      0.62
    );

  font-size:
    clamp(
      0.66rem,
      0.7vw,
      0.74rem
    );

  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.035em;

  white-space: nowrap;

  transition:
    color
    var(--duration-fast)
    ease;
}

.navbar__link::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 4px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background:
    var(--color-gold);

  opacity: 0;

  transform:
    translateX(-50%)
    translateY(3px);

  transition:
    opacity
      var(--duration-normal)
      var(--ease-premium),
    transform
      var(--duration-normal)
      var(--ease-premium);
}

.navbar__link:hover,
.navbar__link.is-active {
  color:
    var(--color-white);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  opacity: 1;

  transform:
    translateX(-50%)
    translateY(0);
}


/* =========================================================
   NAVBAR ACTIONS
   ========================================================= */

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 8px;

  flex-shrink: 0;
}


/* =========================================================
   NAVBAR BOOKING BUTTON
   ========================================================= */

.navbar__booking {
  min-height: 46px;

  padding:
    0
    21px;

  border-radius:
    var(--radius-pill);

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  background:
    var(--color-ivory);

  color:
    var(--color-black);

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  white-space: nowrap;

  transition:
    background-color
      var(--duration-fast)
      ease,
    color
      var(--duration-fast)
      ease,
    transform
      var(--duration-fast)
      ease,
    box-shadow
      var(--duration-fast)
      ease;
}

.navbar__booking:hover {
  background:
    var(--color-white);

  color:
    var(--color-black);

  transform:
    translateY(-1px);

  box-shadow:
    0
    8px
    24px
    rgba(
      0,
      0,
      0,
      0.15
    );
}


/* =========================================================
   NAVBAR MOBILE TOGGLE
   ========================================================= */

.navbar__toggle {
  display: none;

  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex-shrink: 0;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.13
    );

  border-radius:
    50%;

  color:
    var(--color-white);

  transition:
    background-color
      var(--duration-fast)
      ease,
    border-color
      var(--duration-fast)
      ease;
}

.navbar__toggle:hover {
  background:
    rgba(
      255,
      255,
      255,
      0.08
    );

  border-color:
    rgba(
      255,
      255,
      255,
      0.22
    );
}

.navbar__toggle svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
}


/* =========================================================
   NAVBAR DESKTOP SAFETY
   ========================================================= */

@media (max-width: 1380px) {
  .navbar {
    gap: 28px;

    padding-left: 20px;
  }

  .navbar__menu {
    gap: 18px;
  }

  .navbar__link {
    font-size: 0.65rem;
  }

  .navbar__booking {
    padding-inline: 18px;
  }
}


/* =========================================================
   NAVBAR COLLAPSE
   ========================================================= */

@media (max-width: 1180px) {
  .navbar {
    grid-template-columns:
      auto
      auto;

    justify-content: space-between;

    min-height: 64px;

    padding:
      8px
      8px
      8px
      20px;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__booking {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }
}


/* =========================================================
   MOBILE NAVBAR
   ========================================================= */

@media (max-width: 768px) {
  :root {
    --navbar-top: 10px;
    --navbar-height: 58px;
  }

  .site-header {
    padding-inline: 12px;
  }

  .navbar {
    min-height: 58px;

    padding:
      6px
      6px
      6px
      17px;
  }

  .navbar__brand
  .brand-wordmark {
    font-size: 1.55rem;
  }

  .navbar__toggle {
    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
  position: fixed;

  top: 0;
  right: 0;
  bottom: 0;

  z-index:
    calc(
      var(--z-overlay) + 20
    );

  width:
    min(
      430px,
      100%
    );

  height: 100dvh;

  display: flex;
  flex-direction: column;

  padding: 24px;

  overflow-x: hidden;
  overflow-y: auto;

  background:
    var(--color-black);

  color:
    var(--color-white);

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transform:
    translate3d(
      100%,
      0,
      0
    );

  transition:
    transform
      650ms
      var(--ease-premium),
    opacity
      300ms
      var(--ease-premium),
    visibility
      650ms
      var(--ease-premium);

  will-change:
    transform;

  contain:
    layout
    paint;
}


/* Explicit closed state */
.mobile-menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transform:
    translate3d(
      100%,
      0,
      0
    );
}


/* Open state */
.mobile-menu.is-open,
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;

  transform:
    translate3d(
      0,
      0,
      0
    );
}


/* =========================================================
   MOBILE MENU HEADER
   ========================================================= */

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding-bottom: 28px;

  border-bottom:
    1px solid
    var(--border-dark-soft);
}

.mobile-menu__header
.brand-wordmark {
  font-family:
    var(--font-display);

  font-size: 1.8rem;

  line-height: 1;

  letter-spacing: -0.05em;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  border:
    1px solid
    var(--border-dark);

  border-radius: 50%;

  color:
    var(--color-white);
}

.mobile-menu__close svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
}


/* =========================================================
   LINKS
   ========================================================= */

.mobile-menu__links {
  display: grid;

  margin-top: 26px;
}

.mobile-menu__links a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  min-height: 64px;

  border-bottom:
    1px solid
    var(--border-dark-soft);

  color:
    var(--color-white);

  font-family:
    var(--font-display);

  font-size:
    clamp(
      1.55rem,
      6vw,
      2rem
    );

  font-weight: 500;

  line-height: 1;

  letter-spacing: -0.03em;

  transition:
    color
    var(--duration-fast)
    ease;
}

.mobile-menu__links a:hover {
  color:
    var(--color-sand);
}

.mobile-menu__links a span {
  color:
    var(--color-pilates);

  font-family:
    var(--font-body);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER
   ========================================================= */

.mobile-menu__footer {
  margin-top: auto;

  padding-top: 32px;
}

.mobile-menu__footer
.btn {
  width: 100%;
}


/* =========================================================
   MOBILE MENU OVERLAY ORDER
   ========================================================= */

.site-overlay {
  z-index:
    var(--z-overlay);
}

.mobile-menu {
  z-index:
    calc(
      var(--z-overlay) + 20
    );
}

/* =========================================================
   SITE OVERLAY
   ========================================================= */

.site-overlay {
  position: fixed;

  inset: 0;

  z-index:
    var(--z-overlay);

  opacity: 0;
  visibility: hidden;

  background:
    rgba(
      12,
      12,
      13,
      0.58
    );

  backdrop-filter:
    blur(7px);

  -webkit-backdrop-filter:
    blur(7px);

  transition:
    opacity
      var(--duration-normal)
      var(--ease-premium),
    visibility
      var(--duration-normal)
      var(--ease-premium);
}

.site-overlay.is-active {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

.form-group {
  display: grid;

  gap: 9px;
}

.form-label {
  color:
    inherit;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.form-control {
  width: 100%;

  min-height: 52px;

  padding:
    14px
    15px;

  border:
    1px solid
    var(--border-light);

  border-radius:
    var(--radius-xs);

  background:
    transparent;

  color:
    var(--color-black);

  outline: none;

  transition:
    border-color
      var(--duration-fast)
      ease,
    background-color
      var(--duration-fast)
      ease;
}

.form-control:hover {
  border-color:
    rgba(
      12,
      12,
      13,
      0.24
    );
}

.form-control:focus {
  border-color:
    var(--color-black);
}

.form-control::placeholder {
  color:
    var(--text-muted);
}

textarea.form-control {
  min-height: 140px;

  resize: vertical;
}


/* =========================================================
   DIVIDERS
   ========================================================= */

.divider {
  width: 100%;
  height: 1px;

  background:
    var(--border-light);
}

.divider-light {
  background:
    var(--border-dark);
}


/* =========================================================
   UTILITIES
   ========================================================= */

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden,
[hidden] {
  display: none !important;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background:
    var(--color-black);
}

::-webkit-scrollbar-thumb {
  background:
    #46423c;

  border-radius:
    var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background:
    var(--color-gold);
}


/* =========================================================
   TOUCH
   ========================================================= */

@media (hover: none) {
  .btn:hover {
    transform: none;
  }

  .navbar__booking:hover {
    transform: none;

    box-shadow: none;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (
  prefers-reduced-motion: reduce
) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;

    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}

/* =========================================================
   SIX NINE — GLOBAL FOOTER
   Shared across all pages
   ========================================================= */

.site-footer {
  position: relative;

  width: 100%;

  padding:
    82px
    0
    26px;

  overflow: hidden;

  background:
    var(--color-black);

  color:
    var(--color-white);

  border-top:
    1px solid
    var(--border-dark-soft);
}


/* =========================================================
   FOOTER TOP
   ========================================================= */

.site-footer__top {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.72fr)
    minmax(0, 1.28fr);

  gap:
    clamp(
      60px,
      8vw,
      120px
    );

  align-items: start;

  padding-bottom:
    clamp(
      56px,
      7vw,
      82px
    );
}


/* =========================================================
   FOOTER BRAND
   ========================================================= */

.site-footer__brand {
  display: grid;

  align-content: start;

  gap: 22px;
}

.site-footer__wordmark {
  display: inline-block;

  width: fit-content;

  color:
    var(--color-white);

  font-family:
    var(--font-display);

  font-size:
    clamp(
      3.4rem,
      6vw,
      6.4rem
    );

  font-weight: 500;

  line-height: 0.86;

  letter-spacing: -0.06em;

  text-decoration: none;
}

.site-footer__brand p {
  max-width: 250px;

  margin: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.48
    );

  font-size: 0.84rem;

  line-height: 1.7;
}


/* =========================================================
   FOOTER NAVIGATION
   ========================================================= */

.site-footer__nav {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap:
    32px;
}

.site-footer__column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}

.site-footer__label {
  display: block;

  margin-bottom: 10px;

  color:
    var(--color-gold);

  font-size: 0.58rem;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* =========================================================
   FOOTER LINKS / BUTTONS
   ========================================================= */

.site-footer__column a,
.site-footer__column button {
  display: inline-flex;

  align-items: center;

  width: fit-content;

  margin: 0;
  padding: 0;

  border: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.6
    );

  background:
    transparent;

  font-family:
    var(--font-body);

  font-size: 0.77rem;
  font-weight: 500;

  line-height: 1.5;

  text-align: left;

  text-decoration: none;

  cursor: pointer;

  transition:
    color
      var(--duration-fast)
      ease,
    transform
      var(--duration-fast)
      ease;
}

.site-footer__column a:hover,
.site-footer__column button:hover {
  color:
    var(--color-white);

  transform:
    translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.site-footer__bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 22px;

  border-top:
    1px solid
    var(--border-dark-soft);

  color:
    rgba(
      255,
      255,
      255,
      0.34
    );

  font-size: 0.62rem;

  line-height: 1.5;

  letter-spacing: 0.055em;
}


/* =========================================================
   FOOTER — TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 68px;
  }


  .site-footer__top {
    grid-template-columns: 1fr;

    gap: 52px;
  }


  .site-footer__brand p {
    max-width: 320px;
  }


  .site-footer__nav {
    grid-template-columns:
      repeat(
        4,
        minmax(0, 1fr)
      );

    gap:
      28px
      22px;
  }
}


/* =========================================================
   FOOTER — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .site-footer {
    padding:
      58px
      0
      calc(
        94px +
        env(safe-area-inset-bottom)
      );
  }


  .site-footer__top {
    grid-template-columns: 1fr;

    gap: 44px;

    padding-bottom: 46px;
  }


  .site-footer__brand {
    gap: 18px;
  }


  .site-footer__wordmark {
    font-size:
      clamp(
        3.8rem,
        18vw,
        5.6rem
      );
  }


  .site-footer__brand p {
    max-width: 100%;

    font-size: 0.78rem;
  }


  .site-footer__nav {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      38px
      24px;
  }


  .site-footer__column {
    gap: 10px;
  }


  .site-footer__label {
    margin-bottom: 7px;
  }


  .site-footer__column a,
  .site-footer__column button {
    font-size: 0.74rem;
  }


  .site-footer__bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

    padding-top: 20px;
  }
}


/* =========================================================
   FOOTER — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
  .site-footer {
    padding-top: 50px;
  }


  .site-footer__nav {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .site-footer__top {
    gap: 38px;
  }
}


/* =========================================================
   FOOTER — VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {
  .site-footer__wordmark {
    font-size: 3.5rem;
  }
}


/* =========================================================
   FOOTER — TOUCH DEVICES
   ========================================================= */

@media (hover: none) {
  .site-footer__column a:hover,
  .site-footer__column button:hover {
    color:
      rgba(
        255,
        255,
        255,
        0.6
      );

    transform: none;
  }
}


/* =========================================================
   FOOTER — REDUCED MOTION
   ========================================================= */

@media (
  prefers-reduced-motion: reduce
) {
  .site-footer__column a,
  .site-footer__column button {
    transition: none;
  }
}