/* =========================================================
   Reformed Pilates Sweden — Premium Design System
   Bodoni Moda × Jost | Luxury Dark | 2025
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400;1,6..96,500&family=Jost:wght@300;400;500;600&display=swap');

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --black:        #060605;
  --off-black:    #0D0C0B;
  --surface:      #161513;
  --surface-2:    #1E1C1A;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);

  --nude:         #C8A898;
  --nude-light:   #DEC4B8;
  --nude-dark:    #A88070;
  --gold:         #B8965A;

  --white:        #F5F0EB;
  --text:         #E0D9D1;
  --text-muted:   #8A8480;
  --text-dim:     #4A4540;

  --font-serif:   'Bodoni Moda', Georgia, serif;
  --font-sans:    'Jost', system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  --max-width: 1200px;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;

  --shadow:    0 4px 32px rgba(0,0,0,0.55);
  --shadow-lg: 0 8px 64px rgba(0,0,0,0.65);
  --glow:      0 0 48px rgba(200,168,152,0.10);

  --ease:      cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out:  cubic-bezier(0.16,1,0.3,1);
  --t:         0.3s var(--ease);
  --t-slow:    0.65s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ─── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2.6rem,6vw,5.5rem); }
h2 { font-size: clamp(2rem,4vw,3.5rem); }
h3 { font-size: clamp(1.3rem,2vw,1.8rem); }
h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--white);
}
p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

a {
  color: var(--nude);
  text-decoration: none;
  transition: color var(--t);
}
a:hover { color: var(--nude-light); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nude);
  display: block;
  margin-bottom: 1rem;
}

/* ─── Layout Helpers ─────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section          { padding: var(--space-xl) 0; }
.section--alt,
.section.alt      { background: var(--surface); }
.section--darker  { background: var(--off-black); }
.center           { text-align: center; }
.sr-only          { position: absolute; left: -9999px; clip: rect(0,0,0,0); }

.mt-2  { margin-top: 0.75rem; }
.mt-3  { margin-top: 1rem; }
.mt-4  { margin-top: 2rem; }
.mt-6  { margin-top: 3rem; }
.mt-8  { margin-top: 4rem; }

.small { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Divider ────────────────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--nude);
  opacity: 0.5;
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

/* ─── Scroll Reveal ──────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  text-decoration: none;
  line-height: 1;
}

.btn.primary,
.btn--primary {
  background: var(--nude);
  color: var(--black);
}
.btn.primary:hover,
.btn--primary:hover {
  background: var(--nude-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,152,0.28);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--outline:hover {
  border-color: var(--nude);
  color: var(--nude);
  transform: translateY(-2px);
}

.btn.white,
.btn--white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
}
.btn.white:hover,
.btn--white:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* ─── Header / Nav ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}

.header.is-scrolled {
  background: rgba(6,6,5,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__brand { line-height: 0; }
.header__brand img { width: 158px; height: auto; }

/* Desktop nav */
.nav.desktop {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav.desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,240,235,0.65);
  transition: color var(--t);
}
.nav.desktop a:hover { color: var(--white); }
.nav.desktop a.active { color: var(--nude); }

/* ─── Nav Dropdown ───────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245,240,235,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t);
}
.nav-dropdown__toggle:hover { color: var(--white); }
.nav-dropdown__toggle.active { color: var(--nude); }

.nav-dropdown__toggle {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(200,168,152,0.35);
}
.nav-dropdown__toggle:hover {
  text-decoration-color: rgba(245,240,235,0.6);
}
.nav-dropdown__toggle.active {
  text-decoration-color: var(--nude);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(8,7,6,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 220px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 200;
}
/* Bridge the gap between button and menu so hover doesn't break */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -10px;
  right: -10px;
  height: 16px;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown__menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(245,240,235,0.6);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.nav-dropdown__menu a:hover {
  color: var(--nude);
  background: rgba(200,168,152,0.07);
}
.nav-dropdown__menu a.active { color: var(--nude); }

/* ─── Mobile subnav accordion ────────────────────────────── */
.mobile-subnav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  transition: color var(--t), padding-left var(--t);
}
.mobile-subnav__toggle:hover { color: var(--nude); padding-left: 0.5rem; }
.mobile-subnav__toggle.active { color: var(--nude); }
.mobile-subnav__toggle[aria-expanded="true"] {
  color: var(--nude);
  border-bottom-color: transparent;
}

.mobile-subnav__chevron {
  transition: transform 0.22s;
  flex-shrink: 0;
  opacity: 0.55;
}
.mobile-subnav__toggle[aria-expanded="true"] .mobile-subnav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.mobile-subnav__items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.mobile-subnav__items.open {
  max-height: 260px;
}

.mobile-subnav__items a {
  padding-left: 1rem !important;
  font-size: 0.95rem !important;
  color: rgba(245,240,235,0.65) !important;
  border-bottom-color: rgba(255,255,255,0.05) !important;
}
.mobile-subnav__items a:hover { color: var(--nude) !important; }
.mobile-subnav__items a.active { color: var(--nude) !important; }
.mobile-subnav__items a:last-child { border-bottom: 1px solid var(--border) !important; }

/* Burger */
[data-burger] {
  display: none !important;
}
@media (max-width: 1024px) {
  [data-burger] { display: inline-flex !important; }
  .nav.desktop { display: none !important; }
}

/* Mobile menu */
#mobile-menu {
  background: rgba(6,6,5,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.5rem;
}

#mobile-menu .grid {
  display: flex;
  flex-direction: column;
}

#mobile-menu nav a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--t), padding-left var(--t);
}
#mobile-menu nav a:hover {
  color: var(--nude);
  padding-left: 0.5rem;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero .wrap {
  position: absolute;
  inset: 0;
  display: contents;
}

.hero > img,
.hero .wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  will-change: transform;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,6,5,0.25) 0%,
    rgba(6,6,5,0.05) 35%,
    rgba(6,6,5,0.65) 70%,
    rgba(6,6,5,0.96) 100%
  );
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__logo {
  width: 54px;
  height: auto;
  margin-bottom: 1.75rem;
  opacity: 0.88;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem,9vw,7.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.0;
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--nude-light);
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(245,240,235,0.65);
  max-width: 42ch;
  margin-bottom: 2.25rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,235,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(200,168,152,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: 0.9;  transform: scaleY(1.15); }
}

/* ─── App Promo ──────────────────────────────────────────── */
.app-promo {
  padding: var(--space-xl) 0;
}

.app-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.app-promo__text h2 {
  font-size: clamp(1.9rem,3.5vw,2.9rem);
  margin-bottom: 1rem;
}

.app-promo__text p {
  max-width: 40ch;
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

.app-downloads {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-promo__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone silhouette with logo inside */
.phone-mock {
  width: 200px;
  height: 400px;
  background: var(--surface-2, #1E1C1A);
  border: 1px solid var(--border);
  border-radius: 36px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 70px; height: 22px;
  background: var(--black);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-mock img {
  width: 110px;
  height: auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.app-downloads a {
  display: block;
  transition: transform var(--t), opacity var(--t);
}
.app-downloads a:hover { transform: translateY(-3px); opacity: 0.88; }

.app-downloads a img,
img.store-badge {
  height: 50px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
  object-fit: contain;
}

@media (max-width: 420px) {
  .app-downloads a img,
  img.store-badge { height: 44px !important; }
}


/* ─── About ──────────────────────────────────────────────── */
#about.section {
  padding: var(--space-2xl) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6rem;
  align-items: start;
}

.about__label {
  padding-top: 0.25rem;
}

.about__label .eyebrow {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: 0.3em;
  margin: 0;
}

.about__content > h2 {
  font-size: clamp(2.2rem,5vw,4.2rem);
  margin-bottom: 1.75rem;
  max-width: 22ch;
}

.about__content > p {
  font-size: 1.05rem;
  max-width: 56ch;
  line-height: 1.85;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--nude);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ─── Treatment Rooms ────────────────────────────────────── */
#treatment-rooms.section.alt {
  background: var(--surface);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.rooms-grid--single {
  grid-template-columns: minmax(300px, 480px);
  justify-content: center;
}

.room-card {
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  cursor: default;
}

.room-card:hover {
  border-color: rgba(200,168,152,0.2);
  box-shadow: var(--glow);
  transform: translateY(-5px);
}

.room-card__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--t);
}

.room-card:hover .room-card__num { color: rgba(200,168,152,0.18); }

.room-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.room-card p {
  font-size: 0.94rem;
  line-height: 1.75;
}

.room-card .info-link { color: var(--nude); font-size: 0.9rem; }

/* ─── FAQ ────────────────────────────────────────────────── */
#faq .grid {
  display: block;
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color var(--t);
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--nude-light); }

.faq-item summary h4 {
  font-size: 0.97rem;
  font-weight: 500;
  color: inherit;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: all var(--t);
  font-size: 1rem;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  background: var(--nude);
  border-color: var(--nude);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.8;
  max-width: 65ch;
}

/* Old card styles kept as fallback */
.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.card h3, .card h4 { margin-top: 0; }

/* ─── Contact ────────────────────────────────────────────── */
#contact.section.alt {
  background: var(--surface);
}

.contact__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact__inner h2 { margin-bottom: 0.5rem; }

.contact__details {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact__detail {
  font-size: 0.94rem;
  color: var(--text-muted);
}
.contact__detail a {
  color: var(--text);
  transition: color var(--t);
}
.contact__detail a:hover { color: var(--nude); }

/* Newsletter */
.newsletter {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.newsletter h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0;
}

.newsletter p {
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.newsletter-signup {
  display: flex;
  justify-content: center;
}

.newsletter-signup form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color var(--t);
}
.newsletter-signup form:focus-within { border-color: rgba(200,168,152,0.4); }

.newsletter-signup input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.8rem 1.3rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.newsletter-signup input[type="email"]::placeholder { color: var(--text-dim); }

.newsletter-signup input[type="submit"] {
  background: var(--nude);
  color: var(--black);
  border: none;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--t);
  border-radius: 100px;
  white-space: nowrap;
}
.newsletter-signup input[type="submit"]:hover { background: var(--nude-light); }

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

footer h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nude-dark);
  margin-bottom: 0.75rem;
  margin-top: 0;
}
@media (max-width: 640px) {
  footer h4 { margin-top: 1.5rem; }
  footer .cols > div:first-child h4 { margin-top: 0; }
}

.footer__brand-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 26ch;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links p { margin: 0; }
.footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__links a:hover { color: var(--white); }

/* Social icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(200,168,152,0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--nude);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.social-icon:hover {
  border-color: var(--nude);
  background: rgba(200,168,152,0.1);
  color: var(--nude-light) !important;
}
.social-icon svg { display: block; width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── Membership cards (other pages) ────────────────────── */
.membership-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.membership-card-header h3 { margin: 0; }
.membership-card-header span { font-weight: 600; color: var(--nude); }

/* Kate card (about page) */
.kate-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}
.kate-card img { width: 300px; border-radius: var(--radius-lg); object-fit: cover; }
.kate-text { flex: 1; min-width: 260px; }

/* Grid utility (used on other pages) */
.grid          { display: grid; gap: 1.5rem; }
.cols          { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 3rem; }
.cols-2        { grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); }
.cols-3        { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }

/* ─── YOGO panels (preserved) ────────────────────────────── */
.yogo-panel-light {
  background: #ffffff !important;
  color: #111 !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
  padding: 1rem;
}
.yogo-panel-light *,
.yogo-panel-light [class*="text"],
.yogo-panel-light [class*="label"] {
  color: #111 !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.yogo-panel-light input,
.yogo-panel-light select,
.yogo-panel-light textarea {
  background: #fff !important;
  color: #111 !important;
  border: 1px solid rgba(0,0,0,.2) !important;
  border-radius: var(--radius) !important;
}
.yogo-panel-light button,
.yogo-panel-light [role="button"],
.yogo-panel-light .yogo-button,
.yogo-panel-light [class*="btn"] {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.yogo-panel-light button:hover,
.yogo-panel-light [class*="btn"]:hover { background: #222 !important; }
.yogo-panel-light a { color: #111 !important; text-decoration: underline; }
.yogo-panel-light a:hover { opacity: .85; }
@media (max-width: 768px) { .yogo-panel-light { padding: .75rem; } }

/* YOGO Events skin */
.yogo-skin-light {
  --yg-accent: #c6a88f;
  --yg-accent-hover: #b89478;
  background: #fafafa;
  color: #111111;
  border-radius: 16px;
  padding: 1rem;
}
.yogo-skin-light [class*="card"],
.yogo-skin-light [class*="panel"],
.yogo-skin-light [class*="box"],
.yogo-skin-light [class*="frame"],
.yogo-skin-light [class*="container"] {
  background: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}
.yogo-skin-light hr { display: none !important; }
.yogo-skin-light [class*="event"],
.yogo-skin-light [class*="list"] > * {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04) !important;
  padding: 1rem !important;
}
.yogo-skin-light [class*="event"] + [class*="event"] { margin-top: 1rem !important; }
.yogo-skin-light *, .yogo-skin-light [class*="text"] { color: #111 !important; }
.yogo-skin-light h1, .yogo-skin-light h2, .yogo-skin-light h3 { color: #111; }
.yogo-skin-light a { color: var(--yg-accent); text-decoration: none; }
.yogo-skin-light a:hover { color: var(--yg-accent-hover); }
.yogo-skin-light button,
.yogo-skin-light .yogo-button,
.yogo-skin-light [role="button"] {
  background: var(--yg-accent);
  color: #fff !important;
  border-radius: 14px;
  padding: 0.6rem 1rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
.yogo-skin-light button:hover { background: var(--yg-accent-hover); }
.yogo-skin-light [class*="quantity"],
.yogo-skin-light [class*="actions"],
.yogo-skin-light [class*="event"] footer,
.yogo-skin-light [class*="event"] [class*="action"] { display: none !important; }
.yogo-skin-light [class*="filters"] button,
.yogo-skin-light [class*="controls"] button { display: inline-flex !important; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .app-promo__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .app-promo__visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__label { display: none; }
  .about__stats { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 600px) {
  .hero .content { padding-bottom: 3rem; }
  .hero__headline { font-size: clamp(2.8rem,12vw,4.5rem); }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .newsletter-signup form {
    flex-direction: column;
    border-radius: var(--radius);
    border-radius: 16px;
  }
  .newsletter-signup input[type="email"] { padding: 0.85rem 1.2rem; }
  .newsletter-signup input[type="submit"] {
    border-radius: 0 0 16px 16px;
    padding: 0.85rem;
  }
}

@media (max-width: 420px) {
  .about__stats { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

.grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ─── Policy / Legal Pages ──────────────────────────────── */
.policy-header {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.policy-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.policy-header p { color: var(--text-muted); margin: 0; }

.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-lg) 0 var(--space-xl);
}

.policy-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--nude);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  margin-bottom: var(--space-md);
}
.policy-intro p { color: var(--text); font-size: 0.95rem; margin: 0; }

.policy-section {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.75rem;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.policy-section:last-of-type { border-bottom: none; }

.policy-section__num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--nude-dark);
  text-transform: uppercase;
  padding-top: 0.3rem;
  line-height: 1;
}

.policy-section__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.policy-section__body h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nude);
  margin: 1.5rem 0 0.6rem;
}
.policy-section__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.policy-section__body p:last-child { margin-bottom: 0; }

.policy-section__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.policy-section__body ul li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.policy-section__body ul li:last-child { border-bottom: none; }
.policy-section__body ul li::before {
  content: '';
  flex: 0 0 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nude-dark);
  margin-top: 0.4rem;
}

.policy-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.policy-contact p { margin: 0; font-size: 0.9rem; }

@media (max-width: 600px) {
  .policy-section { grid-template-columns: 1fr; gap: 0.5rem; }
  .policy-section__num { padding-top: 0; }
  .policy-contact { flex-direction: column; text-align: center; }
}

/* ─── Private Hire Slider ────────────────────────────────── */
.hire-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hire-slider__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hire-slider__track::-webkit-scrollbar { display: none; }
.hire-slider__track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  scroll-snap-align: start;
  display: block;
  pointer-events: none;
  user-select: none;
}
.hire-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,6,5,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--t), background var(--t);
  z-index: 2;
  font-size: 1.1rem;
}
.hire-slider:hover .hire-slider__btn { opacity: 1; }
.hire-slider__btn:hover { background: rgba(200,168,152,0.25); }
.hire-slider__btn--prev { left: 14px; }
.hire-slider__btn--next { right: 14px; }
.hire-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}
.hire-slider__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(245,240,235,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.hire-slider__dot.active {
  background: var(--nude);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .hire-slider__btn { opacity: 1; width: 36px; height: 36px; font-size: 0.95rem; }
}