/* ============================================================
   SparQ Spaces — main.css  v2.0
   Design tokens · Reset · Typography · Layout · Components
   Master Spec palette: ink/paper/gold — DM Sans + DM Mono
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@300;400;500&family=Sarabun:wght@300;400;500;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Palette — master spec */
  --ink:    #0D0D0D;
  --ink2:   #141414;
  --ink3:   #1C1C1C;
  --paper:  #F7F4EE;
  --warm:   #F2EFE9;
  --gold:        #C49A3C;
  --gold-dim:    rgba(196,154,60,0.20);   /* dividers, decorative borders */
  --gold-subtle: rgba(196,154,60,0.08);   /* backgrounds, subtle fills */
  --gold-muted:  rgba(196,154,60,0.65);   /* text labels, non-CTA accents */
  --gold2:  #E8C97A;
  --dim:    #6B6560;
  --dim2:   #9E9893;
  --rule:   rgba(247, 244, 238, 0.08);

  /* Alpha variants */
  --gold-10:   rgba(196, 154, 60, 0.10);
  --gold-20:   rgba(196, 154, 60, 0.20);
  --paper-10:  rgba(247, 244, 238, 0.10);
  --paper-60:  rgba(247, 244, 238, 0.60);
  --ink-60:    rgba(13, 13, 13, 0.60);
  --ink-85:    rgba(13, 13, 13, 0.85);

  /* Typography */
  --font-heading: 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-thai:    'Sarabun', sans-serif;

  /* Spacing */
  --section-padding:   clamp(60px, 8vw, 120px);
  --container-max:     1320px;
  --container-padding: clamp(20px, 5vw, 80px);

  /* Motion — master spec */
  --ease:            cubic-bezier(.16, 1, .3, 1);
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.35s var(--ease);
  --transition-slow: 0.65s var(--ease);

  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0, 0, 0, 0.50);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.65);
  --shadow-gold:       0 0 28px rgba(196, 154, 60, 0.28);

  /* Border Radius — 2px near-flat per master spec */
  --radius: 2px;

  /* Z-index layers */
  --z-base:    1;
  --z-above:   10;
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--paper);
  background-color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Bottom nav safe area on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }
  .label { font-size: 11px; }
}

:lang(th) body,
:lang(th) p,
:lang(th) li,
:lang(th) span {
  font-family: var(--font-thai);
  font-size: 17px;
  line-height: 1.9;
}

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

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

ul, ol { list-style: none; }

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ───────────────────────────────────────────── */

h1, .h1 {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.015em;
}

h3, .h3 {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.3;
}

h4, .h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
}

p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: rgba(247, 244, 238, 0.72);
}

/* Eyebrow / label — DM Mono per spec */
.label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

/* ── Layout Utilities ─────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section--dark     { background-color: var(--ink);  color: var(--paper); }
.section--charcoal { background-color: var(--ink2); color: var(--paper); }
.section--card     { background-color: var(--ink3); color: var(--paper); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-gold   { color: var(--gold); }
.text-paper  { color: var(--paper); }
.text-muted  { color: var(--dim); }

.mt-xs { margin-top: 8px; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 64px; }
.mb-xs { margin-bottom: 8px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }

/* Section header block */
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }

.section-header .label {
  display: block;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin-top: 16px;
}

.section-header.centered,
.section-header.text-center { text-align: center; }

.section-header.centered p,
.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* Gold divider line */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin-top: 20px;
}

.gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition-base);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold2);
  border-color: var(--gold2);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--ink);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--paper);
  border: 1px solid rgba(247, 244, 238, 0.40);
}

.btn-outline-white:hover {
  border-color: var(--paper);
  background-color: var(--paper-10);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-base);
}

.btn-ghost:hover { gap: 14px; }

.btn-ghost .arrow {
  transition: transform var(--transition-base);
}

.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Image Placeholder ────────────────────────────────────── */

.img-placeholder {
  background: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--dim);
  position: absolute;
  text-align: center;
  padding: 8px;
  pointer-events: none;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-3-4  { aspect-ratio: 3 / 4; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-21-9 { aspect-ratio: 21 / 9; }

/* ── Cards ────────────────────────────────────────────────── */

.card {
  background: var(--ink3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.card-body { padding: 28px; }

.card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--paper);
}

.card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dim2);
  margin-bottom: 20px;
}

.card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ── Tags / Pills ─────────────────────────────────────────── */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border: 1px solid var(--rule);
  color: rgba(247, 244, 238, 0.80);
  background: rgba(247, 244, 238, 0.04);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pill:hover,
.pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-10);
}

/* ── Scroll Snap Strip ────────────────────────────────────── */

.scroll-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-strip::-webkit-scrollbar { display: none; }

.scroll-strip > * {
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* ── Animations ───────────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.fade-up-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up-group.is-visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.05s; }
.fade-up-group.is-visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.12s; }
.fade-up-group.is-visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.19s; }
.fade-up-group.is-visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.26s; }
.fade-up-group.is-visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.33s; }
.fade-up-group.is-visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.40s; }
.fade-up-group.is-visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 0.47s; }
.fade-up-group.is-visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 0.54s; }
.fade-up-group.is-visible > *:nth-child(9)  { opacity: 1; transform: none; transition-delay: 0.61s; }
.fade-up-group.is-visible > *:nth-child(10) { opacity: 1; transform: none; transition-delay: 0.68s; }
.fade-up-group.is-visible > *:nth-child(11) { opacity: 1; transform: none; transition-delay: 0.75s; }
.fade-up-group.is-visible > *:nth-child(12) { opacity: 1; transform: none; transition-delay: 0.82s; }

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.07); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 0 clamp(32px, 4vw, 64px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.nav.scrolled {
  background: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(247,244,238,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img,
.nav-logo-icon { height: 34px; width: auto; }

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.75);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-links a:hover { color: var(--paper); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── Mega / Dropdown menu ────────────────────────────── */
.nav-has-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.nav-dropdown-trigger svg {
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.nav-has-dropdown:hover .nav-dropdown-trigger svg,
.nav-has-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #141210;
  border: 1px solid rgba(247, 244, 238, 0.09);
  border-radius: 6px;
  min-width: 210px;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 300;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* Arrow notch */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: #141210;
  border-left: 1px solid rgba(247,244,238,0.09);
  border-top: 1px solid rgba(247,244,238,0.09);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-has-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown li { list-style: none; }

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.65);
  white-space: nowrap;
  transition: color 150ms ease, background 150ms ease;
}

.nav-dropdown li a::after { display: none; }

.nav-dropdown li a:hover {
  color: var(--paper);
  background: rgba(247, 244, 238, 0.05);
}

.nav-dropdown-sep {
  height: 1px;
  background: rgba(247,244,238,0.09);
  margin: 5px 0;
}

.nav-dropdown-label {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px 4px;
}

/* Mobile: show as stacked links, no dropdown */
@media (max-width: 900px) {
  .nav-dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    display: none; /* hidden — mobile links handle navigation instead */
  }
  .nav-dropdown::before { display: none; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
}

.lang-toggle button {
  padding: 4px 7px;
  color: rgba(247, 244, 238, 0.40);
  transition: color var(--transition-fast);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.lang-toggle button.active { color: var(--paper); }

.lang-toggle span {
  color: rgba(247, 244, 238, 0.18);
  font-size: 9px;
}

/* Hamburger — tablet/desktop only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: var(--z-overlay);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--paper);
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: calc(var(--z-overlay) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  overflow-y: auto;
  padding: 100px 24px 40px;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-overlay .nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto 0 40px;
  width: 100%;
}

.nav-mobile-overlay .nav-mobile-links > a {
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 300;
  color: var(--paper);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.nav-mobile-overlay .nav-mobile-links a:hover { color: var(--gold); }

.nav-mobile-overlay .nav-mobile-cta { margin-top: 16px; }

/* Mobile nav — collapsible "Rentals" group */
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.nav-mobile-group-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw, 38px);
  font-weight: 300;
  color: var(--paper);
  letter-spacing: 0.02em;
  padding: 0;
  transition: color var(--transition-fast);
}

.nav-mobile-group-trigger:hover { color: var(--gold); }

.nav-mobile-group-trigger svg {
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.nav-mobile-group-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-mobile-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  transition: max-height 280ms ease;
}

.nav-mobile-submenu.open {
  gap: 14px;
  padding-top: 16px;
}

.nav-mobile-submenu a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.6);
  transition: color var(--transition-fast);
}

.nav-mobile-submenu a:hover { color: var(--gold); }

/* ── Mobile Bottom Navigation Bar ────────────────────────── */

.mobile-nav-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-nav-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--rule);
    height: 64px;
    align-items: stretch;
  }

  .mobile-nav-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--dim2);
    transition: color var(--transition-fast);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 4px;
  }

  .mobile-nav-bar a:hover,
  .mobile-nav-bar a.active {
    color: var(--gold);
  }

  .mobile-nav-bar a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .mobile-nav-bar a.mobile-book {
    background: var(--gold);
    color: var(--ink);
    font-weight: 500;
  }

  .mobile-nav-bar a.mobile-book:hover {
    background: var(--gold2);
    color: var(--ink);
  }
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.96) 0%,
    rgba(13, 13, 13, 0.55) 38%,
    rgba(13, 13, 13, 0.22) 65%,
    rgba(13, 13, 13, 0.08) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--container-padding);
  /* Guarantee clearance below the 72px fixed nav regardless of viewport
     height or content length — matches the ~120px top padding every other
     page hero on the site already uses (about/contact/blog/availability). */
  padding-top: max(var(--container-padding), 120px);
  padding-bottom: clamp(60px, 8vh, 100px);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Stacked layout: headline, then a single left-aligned stats row below */
.hero-content--split {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vh, 56px);
  align-items: flex-start;
}

.hero-main { min-width: 0; max-width: 920px; }

.hero-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  border-top: 1px solid rgba(196,154,60,0.30);
  padding-top: 22px;
  animation: fadeIn 1s ease 0.8s both;
}

.hero-meta-item {
  padding: 0 clamp(20px, 3vw, 44px) 0 0;
  margin: 0 clamp(20px, 3vw, 44px) 0 0;
  border-right: 1px solid rgba(196,154,60,0.18);
}
.hero-meta-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.hero-meta-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--paper);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-content--split { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta {
    border-left: none;
    border-top: 1px solid rgba(196,154,60,0.2);
    padding-left: 0;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .hero-meta-item {
    padding: 0 20px 0 0;
    margin: 0 20px 0 0;
    border-bottom: none;
    border-right: 1px solid rgba(196,154,60,0.15);
  }
  .hero-meta-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(55px, 7.1vw, 107px);
  font-weight: 600;
  color: var(--paper);
  line-height: 0.92;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin-bottom: 28px;
  animation: fadeIn 1s ease 0.5s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(247, 244, 238, 0.65);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fadeIn 1s ease 0.7s both;
}

.hero-ctas { animation: fadeIn 1s ease 0.9s both; }
.hero-scarcity {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(247,244,238,0.55);
  animation: fadeIn 1s ease 1.1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--container-padding);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-scroll-chevron {
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
  transform: rotate(45deg);
  animation: bounce 2.2s ease-in-out infinite;
}

/* ── Who It's For ─────────────────────────────────────────── */

.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

/* ── Studio Cards ─────────────────────────────────────────── */

.studio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.studio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
}

.studio-card:nth-child(1) { grid-column: span 7; }
.studio-card:nth-child(2) { grid-column: span 5; }
.studio-card:nth-child(3) { grid-column: span 4; }
.studio-card:nth-child(4) { grid-column: span 4; }
.studio-card:nth-child(5) { grid-column: span 4; }

.studio-card .img-placeholder,
.studio-card > .img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 380px;
  height: 100%;
}

.studio-card .img-placeholder img,
.studio-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  min-height: 380px;
}

.studio-card:hover .img-placeholder img,
.studio-card:hover .img-wrap img {
  transform: scale(1.06);
}

.studio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.05) 55%);
  transition: background var(--transition-base);
}

.studio-card:hover .studio-card-overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.22) 55%);
}

.studio-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.studio-card-size {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.studio-card-name {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1.1;
}

.studio-card-teaser {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.60);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 300px;
}

.studio-card-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.studio-card:hover .studio-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── Thematics Strip ──────────────────────────────────────── */

.thematic-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 20px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-left: calc(-1 * var(--container-padding));
  margin-right: calc(-1 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.thematic-strip::-webkit-scrollbar { display: none; }
.thematic-strip.is-dragging { cursor: grabbing; }

.thematic-item {
  flex-shrink: 0;
  width: 190px;
  scroll-snap-align: start;
  text-align: center;
}

.thematic-item a { display: block; }

.thematic-thumb {
  width: 190px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
  transition: transform var(--transition-base);
  background: var(--ink3);
}

.thematic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.thematic-item:hover .thematic-thumb { transform: translateY(-4px); }
.thematic-item:hover .thematic-thumb img { transform: scale(1.07); }

.thematic-name {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.65);
  transition: color var(--transition-fast);
}

.thematic-item:hover .thematic-name { color: var(--gold); }

/* ── Social Feed ──────────────────────────────────────────── */

.social-feed-placeholder {
  background: var(--ink3);
  border-radius: var(--radius);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed var(--rule);
  padding: 40px;
}

.social-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ── Blog Cards ───────────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: var(--ink3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: block;
  border: 1px solid var(--rule);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink2);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-body { padding: 22px 24px; }

.blog-card-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--paper);
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.65;
  color: var(--dim2);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Google Reviews ───────────────────────────────────────── */

.reviews-section {
  background: var(--ink2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.review-card {
  background: var(--ink3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--rule);
  transition: border-color var(--transition-fast);
}

.review-card:hover { border-color: var(--gold-20); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.75);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

.review-date {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--dim2);
  margin-top: 4px;
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  color: var(--paper);
  line-height: 1;
}

.reviews-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Partner Perks ────────────────────────────────────────── */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.perk-card {
  background: var(--ink3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--rule);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.perk-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
}

.perk-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.perk-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--paper);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.perk-detail {
  font-size: 13px;
  color: var(--dim2);
  line-height: 1.55;
}

.perk-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Booking CTA Banner ───────────────────────────────────── */

.cta-banner {
  position: relative;
  padding: var(--section-padding) var(--container-padding);
  background: var(--ink3);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(196,154,60,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,154,60,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { font-size: clamp(40px, 5.5vw, 72px); margin-bottom: 16px; }

.cta-banner .sub {
  font-size: 14px;
  color: var(--dim);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

/* ── Float Buttons ────────────────────────────────────────── */

/* Float stack — bottom left (WhatsApp + LINE) */
/* ── Expandable contact FAB ─────────────────────────────────── */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-above);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.fab-main {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196,154,60,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.fab-main:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(196,154,60,0.55); }

.fab-child {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 28px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.fab-child--wa   { background: #25D366; }
.fab-child--line { background: #06C755; }
.fab-child:hover { filter: brightness(1.08); }

.fab-wrap.is-open .fab-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-wrap.is-open .fab-child--line { transition-delay: 0.04s; }
.fab-wrap.is-open .fab-child--wa   { transition-delay: 0.08s; }

@media (max-width: 767px) {
  .fab-wrap { bottom: 80px; right: 16px; }
}

/* ── Footer ───────────────────────────────────────────────── */

.footer {
  background: #080808;
  padding: 72px var(--container-padding) 32px;
  border-top: 1px solid var(--rule);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

.footer-brand-logo { height: 64px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.40);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.28);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(247, 244, 238, 0.55);
  transition: color var(--transition-fast);
}

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

.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 244, 238, 0.55);
  transition: all var(--transition-fast);
}

.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-link svg { width: 14px; height: 14px; fill: currentColor; }

.footer-address {
  font-size: 13px;
  color: rgba(247, 244, 238, 0.35);
  line-height: 1.85;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(247, 244, 238, 0.22);
  letter-spacing: 0.04em;
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(247, 244, 238, 0.22);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: rgba(247, 244, 238, 0.55); }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1100px) {
  .studio-grid { grid-template-columns: repeat(6, 1fr); }
  .studio-card:nth-child(1) { grid-column: span 4; }
  .studio-card:nth-child(2) { grid-column: span 2; }
  .studio-card:nth-child(3),
  .studio-card:nth-child(4),
  .studio-card:nth-child(5) { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  /* Nav: hide desktop links, show hamburger for tablet fallback */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav .btn-outline { display: none; }

  /* Studio grid */
  .studio-grid { grid-template-columns: 1fr; }
  .studio-card:nth-child(n) { grid-column: span 1; }
  .studio-card .img-placeholder img,
  .studio-card .img-wrap img { min-height: 240px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Perks */
  .perks-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .perks-grid { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; align-items: flex-start; }

  .hero h1 { font-size: clamp(44px, 11vw, 68px); line-height: 0.92; letter-spacing: -0.018em; }

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


/* ============================================================
   PREMIUM REDESIGN — Light Sections + Advanced Animations
   v3.0
   ============================================================ */

/* ── Light Section Theme ───────────────────────────────────── */

.section--light {
  background-color: var(--paper);
  color: var(--ink);
}

.section--warm {
  background-color: var(--warm);
  color: var(--ink);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--warm  h1,
.section--warm  h2,
.section--warm  h3 {
  color: var(--ink);
}

.section--light .label,
.section--warm  .label {
  color: var(--gold);
}

.section--light .section-header p,
.section--light p,
.section--warm  .section-header p,
.section--warm  p {
  color: var(--dim);
}

/* em/italic stays gold on light */
.section--light h2 em,
.section--warm  h2 em {
  color: var(--gold);
  font-style: italic;
}

/* Gold line same on both */
.section--light .gold-line,
.section--warm  .gold-line {
  background: var(--gold);
}

/* Pill tags — invert on light bg */
.section--light .pill,
.section--warm  .pill {
  background: transparent;
  border-color: rgba(13, 13, 13, 0.15);
  color: var(--ink);
}

.section--light .pill:hover,
.section--warm  .pill:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Review cards on light */
.section--light .review-card,
.section--warm  .review-card {
  background: #ffffff;
  border-color: rgba(13, 13, 13, 0.07);
  color: var(--ink);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}

.section--light .review-card:hover,
.section--warm  .review-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px);
}

.section--light .review-text,
.section--warm  .review-text {
  color: var(--dim);
}

.section--light .review-author,
.section--warm  .review-author {
  color: var(--ink);
}

.section--light .review-date,
.section--warm  .review-date {
  color: var(--dim2);
}

.section--light .reviews-score,
.section--warm  .reviews-score {
  color: var(--ink);
}

.section--light .reviews-meta,
.section--warm  .reviews-meta {
  color: var(--dim);
}

/* Perk cards on light */
.section--light .perk-card,
.section--warm  .perk-card {
  background: #ffffff;
  border-color: rgba(13, 13, 13, 0.07);
  color: var(--ink);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.section--light .perk-card:hover,
.section--warm  .perk-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
  transform: translateY(-6px);
  border-color: var(--gold-20);
}

.section--light .perk-name,
.section--warm  .perk-name {
  color: var(--ink);
}

.section--light .perk-detail,
.section--warm  .perk-detail {
  color: var(--dim);
}

.section--light .perk-badge,
.section--warm  .perk-badge {
  color: var(--gold);
  border-color: var(--gold-20);
  background: var(--gold-10);
}

/* Social feed placeholder on light */
.section--light .social-feed-placeholder,
.section--warm  .social-feed-placeholder {
  border-color: rgba(13, 13, 13, 0.10);
}

.section--light .social-feed-placeholder .label,
.section--warm  .social-feed-placeholder .label {
  color: rgba(13, 13, 13, 0.25) !important;
}

.section--light .social-feed-placeholder p,
.section--warm  .social-feed-placeholder p {
  color: rgba(13, 13, 13, 0.25) !important;
}

/* Outline button adapts on light bg */
.section--light .btn-outline,
.section--warm  .btn-outline {
  color: var(--ink);
  border-color: rgba(13, 13, 13, 0.30);
}

.section--light .btn-outline:hover,
.section--warm  .btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.section--light .btn-outline-white,
.section--warm  .btn-outline-white {
  color: var(--ink);
  border-color: rgba(13, 13, 13, 0.25);
}

.section--light .btn-outline-white:hover,
.section--warm  .btn-outline-white:hover {
  background: var(--ink);
  color: var(--paper);
}

.section--light .btn-ghost,
.section--warm  .btn-ghost {
  color: var(--ink);
}

/* ── Gold line entrance animation ──────────────────────────── */

.gold-line {
  transition: width 1s cubic-bezier(.16, 1, .3, 1);
  width: 0 !important;
}

.is-visible .gold-line {
  width: 48px !important;
}

.is-visible .gold-line.centered {
  width: 48px !important;
}

/* ── Button shimmer sweep ──────────────────────────────────── */

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

/* ── Card premium hover ─────────────────────────────────────── */

.studio-card {
  transition: transform 0.5s cubic-bezier(.16, 1, .3, 1),
              box-shadow 0.5s cubic-bezier(.16, 1, .3, 1);
}

.studio-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 154, 60, 0.3);
}

.blog-card {
  transition: transform 0.45s cubic-bezier(.16, 1, .3, 1),
              box-shadow 0.45s cubic-bezier(.16, 1, .3, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

/* Image zoom on studio card hover */
.studio-card .img-placeholder img {
  transition: transform 0.7s cubic-bezier(.16, 1, .3, 1);
}

.studio-card:hover .img-placeholder img {
  transform: scale(1.06);
}

/* Blog card image zoom */
.blog-card .blog-card-img img {
  transition: transform 0.7s cubic-bezier(.16, 1, .3, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

/* ── Thematic strip — auto-scroll marquee ──────────────────── */

.thematic-strip {
  overflow: hidden !important;
  cursor: default;
  user-select: none;
}

.thematic-strip-inner {
  display: flex;
  width: max-content;
  animation: sparqMarquee 45s linear infinite;
  will-change: transform;
}

@keyframes sparqMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.thematic-strip:hover .thematic-strip-inner {
  animation-play-state: paused;
}

/* ── Hero parallax ─────────────────────────────────────────── */

.hero-bg-media {
  will-change: transform;
}

/* ── Stagger entrance for children ────────────────────────── */

.stagger-children > *:nth-child(1)  { transition-delay:   0ms; }
.stagger-children > *:nth-child(2)  { transition-delay:  80ms; }
.stagger-children > *:nth-child(3)  { transition-delay: 160ms; }
.stagger-children > *:nth-child(4)  { transition-delay: 240ms; }
.stagger-children > *:nth-child(5)  { transition-delay: 320ms; }
.stagger-children > *:nth-child(6)  { transition-delay: 400ms; }

/* Hub tags stagger */
.hub-tags.is-visible .pill:nth-child(1)  { transition-delay:   0ms; }
.hub-tags.is-visible .pill:nth-child(2)  { transition-delay:  60ms; }
.hub-tags.is-visible .pill:nth-child(3)  { transition-delay: 120ms; }
.hub-tags.is-visible .pill:nth-child(4)  { transition-delay: 180ms; }
.hub-tags.is-visible .pill:nth-child(5)  { transition-delay: 240ms; }
.hub-tags.is-visible .pill:nth-child(6)  { transition-delay: 300ms; }
.hub-tags.is-visible .pill:nth-child(7)  { transition-delay: 360ms; }
.hub-tags.is-visible .pill:nth-child(8)  { transition-delay: 420ms; }
.hub-tags.is-visible .pill:nth-child(9)  { transition-delay: 480ms; }
.hub-tags.is-visible .pill:nth-child(10) { transition-delay: 540ms; }
.hub-tags.is-visible .pill:nth-child(11) { transition-delay: 600ms; }
.hub-tags.is-visible .pill:nth-child(12) { transition-delay: 660ms; }

.hub-tags .pill {
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition:
    opacity    0.55s cubic-bezier(.16, 1, .3, 1),
    transform  0.55s cubic-bezier(.16, 1, .3, 1),
    background var(--transition-fast),
    color      var(--transition-fast),
    border-color var(--transition-fast);
}

.hub-tags.is-visible .pill {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Blog cards stagger */
.blog-grid .blog-card:nth-child(1) { transition-delay:   0ms; }
.blog-grid .blog-card:nth-child(2) { transition-delay: 100ms; }
.blog-grid .blog-card:nth-child(3) { transition-delay: 200ms; }

/* Studio cards stagger */
.studio-grid .studio-card:nth-child(1) { transition-delay:   0ms; }
.studio-grid .studio-card:nth-child(2) { transition-delay: 100ms; }
.studio-grid .studio-card:nth-child(3) { transition-delay: 200ms; }
.studio-grid .studio-card:nth-child(4) { transition-delay: 300ms; }

/* Review cards stagger */
.reviews-grid .review-card:nth-child(1) { transition-delay:   0ms; }
.reviews-grid .review-card:nth-child(2) { transition-delay: 100ms; }
.reviews-grid .review-card:nth-child(3) { transition-delay: 200ms; }

/* cursor removed per client preference */

/* ══════════════════════════════════════════════
   REVIEWS SECTION — Premium redesign
══════════════════════════════════════════════ */

.reviews-section {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  overflow: hidden;
}

.reviews-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 88px 24px 64px;
  max-width: 720px;
  margin: 0 auto;
}

.reviews-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--paper);
  margin: 0;
}

.reviews-hero__heading em {
  font-style: italic;
  color: var(--gold);
}

/* Unified rating strip — stars, score, Google mark and review count on one line */
.reviews-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 32px;
  border-top: 1px solid rgba(196,154,60,0.25);
  border-bottom: 1px solid rgba(196,154,60,0.25);
}

.reviews-rating-strip .grb-stars { color: #FBBC05; font-size: 1.15rem; letter-spacing: 2px; line-height: 1; }
.reviews-rating-strip .grb-score { font-family: var(--font-heading); font-size: 1.8rem; color: var(--paper); line-height: 1; }
.reviews-rating-strip .grb-logo { opacity: 0.9; display: flex; align-items: center; }
.reviews-rating-strip .grb-sep { width: 1px; height: 20px; background: rgba(247,244,238,0.15); }
.reviews-rating-strip .grb-label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: rgba(247,244,238,0.6); }

.reviews-hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(247,244,238,0.62);
  max-width: 46ch;
  margin: 0;
}

.reviews-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.reviews-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(196,154,60,0.4);
  border-radius: var(--radius);
  padding: 6px 14px;
  text-transform: uppercase;
}

.reviews-track-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  padding: 0 80px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 28px 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s;
}

.review-card:hover {
  background: rgba(196,154,60,0.06);
  border-color: rgba(196,154,60,0.3);
}

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

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-google-g {
  display: flex;
  align-items: center;
  opacity: 0.7;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247,244,238,0.72);
  margin: 0;
  flex: 1;
}

.review-author {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--paper);
}

.review-date {
  font-size: 0.72rem;
  color: rgba(247,244,238,0.35);
}

.reviews-cta {
  padding: 40px 80px 72px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.reviews-cta__btn {
  color: var(--paper);
  border-color: rgba(247,244,238,0.25);
}

.reviews-cta__btn:hover {
  background: var(--paper);
  color: var(--ink);
}

@media (max-width: 767px) {
  .reviews-hero { padding: 56px 24px 40px; gap: 18px; }
  .reviews-rating-strip { padding: 14px 20px; gap: 10px; }
  .reviews-track { padding: 0 24px; }
  .review-card { flex: 0 0 280px; }
  .reviews-cta { padding: 32px 24px 60px; }
}

/* ── Hero trust bar ────────────────────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 28px;
  align-items: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.55);
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-trust-sep {
  color: rgba(247,244,238,0.2);
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .hero-trust-sep { display: none; }
  .hero-trust { gap: 8px 16px; margin-top: 20px; }
}

/* ── Section transition — subtle top border accent ─────────── */

.section--light + .section--dark,
.section--warm  + .section--dark,
.section--dark  + .section--light,
.section--dark  + .section--warm {
  position: relative;
}

/* ── Fade-slide variants ────────────────────────────────────── */

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
}

.is-visible.fade-left,
.is-visible.fade-right {
  opacity: 1;
  transform: translateX(0);
}

/* ── Reduced motion ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .thematic-strip-inner { animation: none; }
  .hub-tags .pill { transition: none; }
  .studio-card,
  .blog-card,
  .perk-card,
  .review-card { transition: none; }
  .btn-primary::after { display: none; }
  .gold-line {
    transition: none;
    width: 48px !important;
  }
}

@media (max-width: 480px) {
  .thematic-strip-inner { animation-duration: 30s; }
}

/* ── section--white: pure white variant ──────────────────────── */

.section--white {
  background-color: #ffffff;
  color: var(--ink);
}

.section--white h1,
.section--white h2,
.section--white h3 { color: var(--ink); }

.section--white .label { color: var(--gold-muted); }

.section--white .section-header p,
.section--white p { color: var(--dim); }

.section--white h2 em { color: var(--gold); font-style: italic; }

.section--white .gold-line { background: var(--gold-dim); }

/* Room tabs on white bg */
.section--white .room-tabs-nav {
  border-bottom-color: rgba(13,13,13,0.10) !important;
}
.section--white .room-tab-btn {
  color: rgba(13,13,13,0.4) !important;
}
.section--white .room-tab-btn:hover {
  color: rgba(13,13,13,0.7) !important;
}
.section--white .room-tab-btn.active {
  color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
}
.section--white .studio-card {
  background: var(--paper);
  border-color: rgba(13,13,13,0.07);
}
.section--white .studio-card:hover {
  border-color: var(--gold);
}
.section--white .sc-name,
.section--white .sc-meta { color: var(--ink); }
.section--white .sc-detail { color: var(--dim); }
.section--white .sc-size  { color: var(--dim2); }

/* Pricing table on white/light bg */
.section--white .pricing-tbl tbody tr,
.section--light .pricing-tbl tbody tr {
  border-bottom-color: rgba(13,13,13,0.07) !important;
}
.section--white .pricing-tbl tbody tr:hover,
.section--light .pricing-tbl tbody tr:hover {
  background: rgba(13,13,13,0.03) !important;
}
.section--white .pricing-tbl td,
.section--light .pricing-tbl td {
  color: rgba(13,13,13,0.8) !important;
}
.section--white .pt-room-name,
.section--light .pt-room-name { color: var(--ink) !important; }
.section--white .pt-room-size,
.section--light .pt-room-size { color: rgba(13,13,13,0.35) !important; }
.section--white .pt-price,
.section--light .pt-price     { color: var(--ink) !important; }
.section--white .pt-price-note,
.section--light .pt-price-note { color: rgba(13,13,13,0.4) !important; }
.section--white .pt-pax,
.section--light .pt-pax       { color: rgba(13,13,13,0.55) !important; }
.section--white .pt-featured-row,
.section--light .pt-featured-row { background: rgba(196,154,60,0.06) !important; }
.section--white .pricing-tbl thead tr,
.section--light .pricing-tbl thead tr {
  background: rgba(196,154,60,0.08) !important;
}

/* Addons grid on light */
.section--white .addons-grid,
.section--light .addons-grid {
  background: var(--paper) !important;
  border-color: rgba(13,13,13,0.07) !important;
}
.section--white .addon-item,
.section--light .addon-item   { border-bottom-color: rgba(13,13,13,0.06) !important; }
.section--white .addon-name,
.section--light .addon-name   { color: var(--ink) !important; }
.section--white .addon-desc,
.section--light .addon-desc   { color: var(--dim) !important; }
.section--white .addon-price,
.section--light .addon-price  { color: var(--ink) !important; }

/* Pill tags on white */
.section--white .pill {
  background: transparent;
  border-color: rgba(13,13,13,0.15);
  color: var(--ink);
}
.section--white .pill:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ── Responsive fixes ────────────────────────────────────────── */

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section-header h2 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero h1           { font-size: clamp(2.4rem, 9vw, 5rem); }

  /* Pricing table — scroll hint */
  .pricing-table-wrap::before {
    content: 'Scroll →';
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0.7;
  }

  /* Stack CTA buttons vertically */
  .hero-ctas.btn-group {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  /* Package cards full width */
  .package-cards,
  .session-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  :root { --section-padding: 64px; }

  .nav-links { display: none; }

  .hero-trust {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .hero-trust-sep { display: none; }
  .hero-trust-item { width: 50%; font-size: 0.72rem; }

  .footer-brand-logo { height: 48px; }

  /* Table makes room on small screens */
  .pricing-tbl { font-size: 0.82rem; }
  .pricing-tbl td, .pricing-tbl th { padding: 12px 14px; }
}

/* ── Floor Plan Section ──────────────────────────────────────── */

.floorplan-section {
  background: #ffffff;
  color: var(--ink);
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.floorplan-section .label { color: var(--gold); }
.floorplan-section h2 { color: var(--ink); }
.floorplan-section h2 em { color: var(--gold); font-style: italic; }
.floorplan-section .gold-line { background: var(--gold); }
.floorplan-section .section-header p { color: var(--dim); }

.floorplan-wrap {
  margin: 40px 0 28px;
  background: #ffffff;
  border: 1px solid rgba(13,13,13,0.07);
  border-radius: 4px;
  padding: 32px 24px;
  overflow-x: auto;
  text-align: center;
}

.floorplan-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Invert the dark floor plan to look clean on white */
  /* Invert dark floor plan to show on white background */
  filter: invert(1);
}

.floorplan-legend {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px solid rgba(13,13,13,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.fp-room {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--ink);
  border-right: 1px solid rgba(13,13,13,0.07);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.fp-room:last-child { border-right: none; }

.fp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fp-sqm {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .floorplan-wrap { padding: 20px 12px; }
  .floorplan-legend { flex-direction: column; }
  .fp-room { border-right: none; border-bottom: 1px solid rgba(13,13,13,0.07); justify-content: flex-start; }
  .fp-room:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════
   FONT SIZE IMPROVEMENTS — increase readability across the site
════════════════════════════════════════════════════════════ */

/* Base body text — was 13-14px, now 16px min */
body {
  font-size: 16px;
}

p {
  font-size: clamp(15px, 1.2vw, 17px);
}

/* Labels / eyebrows — was 10px, now 12px */
.label {
  font-size: 12px;
}

/* h3 mono headings — was clamp(13px,...), now clamp(12px,...) — but was used as uppercase label */
h3, .h3 {
  font-size: clamp(12px, 1.5vw, 15px);
}

/* h4 — was 13px */
h4, .h4 {
  font-size: 14px;
}

/* Section header paragraphs */
.section-header p {
  font-size: clamp(15px, 1.2vw, 17px);
}

/* Pricing table cells */
.pt td, .pt th,
.pricing-tbl td, .pricing-tbl th {
  font-size: 15px;
}

.pt .pt-price,
.pricing-tbl .pt-price {
  font-size: clamp(22px, 2vw, 26px);
}

/* Room tabs */
.room-tab-btn {
  font-size: 12px;
}

/* Card text */
.card-excerpt {
  font-size: 15px;
}

/* Nav links */
.nav-link {
  font-size: 13px;
}

/* Breadcrumb / mono labels inside cards */
.studio-meta span,
.pkg-meta span,
.fp-sqm {
  font-size: 11px;
}

/* FAQ */
.faq-q {
  font-size: 16px;
}

.faq-a p {
  font-size: 15px;
}

/* Footer */
.footer-col p,
.footer-col a,
.footer-bottom p {
  font-size: 14px;
}

/* Table add-ons and rate tables — inline styles override,
   but give a baseline for unstyled cells */
table td, table th {
  font-size: 15px;
}

/* Hero — was already clamp, bump minimum */
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px) !important;
}

/* Trust bar */
.hero-trust-item {
  font-size: 13px;
}

/* Booking terms / policy text */
.terms-grid li,
.policy-list li {
  font-size: 15px;
}

/* Always Included section */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(247,244,238,0.04);
  border: 1px solid rgba(247,244,238,0.08);
  border-radius: 4px;
  padding: 20px 24px;
}

.included-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.included-icon svg {
  width: 22px;
  height: 22px;
}

.included-text {
  font-size: 15px;
  color: rgba(247,244,238,0.80);
  line-height: 1.5;
}

/* Package card descriptions */
.pkg-desc,
.package-desc {
  font-size: 15px;
}
