/* ============================================================
   EMBER & ICE — Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --bg:          #0f0f0f;
  --surface:     #161616;
  --surface-2:   #1e1e1e;
  --border:      #2a2a2a;
  --text:        #e8e4df;
  --text-muted:  #7a746e;
  --accent:      #f97020;
  --accent-dark: #c85610;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:        1200px;
  --radius:       3px;
  --nav-h:        72px;
  --section-pad:  96px;
  --transition:   180ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 96px); }
h2 { font-size: clamp(36px, 5.5vw, 80px); }
h3 { font-size: clamp(26px, 4vw, 56px); }
h4 { font-size: clamp(20px, 2.8vw, 36px); }

p { max-width: 68ch; }

.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Labels over photos — white for legibility */
.hero-content .label,
.page-hero-content .label,
.offering-card-content .label {
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad) 0;
}

.section-header {
  margin-bottom: 56px;
}

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

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 20px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15, 15, 15, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--accent);
  color: #0f0f0f !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  border-top: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a[aria-current="page"] {
  color: var(--text);
}

/* Hamburger open state */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  padding: 11px 28px;
}

.btn-ghost:hover {
  background: var(--accent);
  color: #0f0f0f;
}

/* ============================================================
   HERO
   ============================================================ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.6) 70%,
    rgba(0,0,0,0.85) 100%
  );
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-video-desktop { display: block; }
.hero-video-mobile  { display: none; }

@media (max-width: 767px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile  { display: block; }
}

.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.6) 70%,
    rgba(0,0,0,0.85) 100%
  );
}

/* Gradient overlay on top of video */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.6) 70%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}

.hero-content h1 {
  font-weight: 600;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.55);
  letter-spacing: -0.01em;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 44ch;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--surface);
  overflow: hidden;
}

.page-hero--photo {
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.page-hero--photo .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero--photo .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.page-hero--photo .page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 56px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero-content h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 12px;
}

.page-hero-content p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
}

.page-hero-content .label {
  display: block;
  margin-bottom: 16px;
}

/* Simple page header (no photo) */
.page-header {
  padding: calc(var(--nav-h) + 64px) 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ============================================================
   CARDS
   ============================================================ */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition);
}

.card:hover {
  border-color: #3a3a3a;
}

.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex: 1;
}

/* Offering cards (homepage) */
.offering-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
}

.offering-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.offering-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.3) 70%, transparent 100%);
}

.offering-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.offering-card-content .label {
  display: block;
  margin-bottom: 8px;
}

.offering-card-content h3 {
  color: #fff;
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 8px;
}

.offering-card-content p {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ============================================================
   STAT BLOCKS
   ============================================================ */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.stat-block {
  background: var(--surface);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

.stat-source {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: color var(--transition), text-decoration-color var(--transition);
  align-self: flex-start;
}

.stat-source:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ============================================================
   LOCATIONS
   ============================================================ */

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

.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.location-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.location-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card-body {
  padding: 24px;
}

.location-card-body h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}

.location-status {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0aaa4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.location-status.launching::before {
  background: var(--accent);
}

.location-status.launching {
  color: var(--accent);
}

/* ============================================================
   CONTRAST THERAPY SECTION
   ============================================================ */

.contrast-section {
  background: var(--bg);
}

.contrast-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contrast-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.contrast-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.contrast-images img:first-child {
  margin-top: 40px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 40px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */

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

.reviews-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.reviews-embed iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: none;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e05555;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a746e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface-2);
}

.field-error {
  font-size: 12px;
  color: #e05555;
  display: none;
}

.field-error.visible {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .form-group.full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 8px;
}

/* Form states */
.form-success,
.form-error-msg {
  display: none;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 15px;
}

.form-success {
  background: rgba(249, 112, 32, 0.1);
  border: 1px solid rgba(249, 112, 32, 0.3);
  color: var(--accent);
}

.form-error-msg {
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.3);
  color: #e05555;
}

.form-success.visible,
.form-error-msg.visible {
  display: block;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  flex-shrink: 0;
  padding: 12px 24px;
  background: var(--accent);
  color: #0f0f0f;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}

.newsletter-form button:hover {
  background: var(--accent-dark);
}

.newsletter-success {
  display: none;
  font-size: 14px;
  color: var(--accent);
  margin-top: 10px;
}

.newsletter-success.visible {
  display: block;
}

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.membership-card {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.membership-card--featured {
  background: var(--surface-2);
  position: relative;
}

.membership-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f0f0f;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.membership-price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}

.membership-price span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.membership-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.membership-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.membership-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.membership-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.membership-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* ============================================================
   PRIVATE RENTALS
   ============================================================ */

.rental-option {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.rental-option:last-child {
  border-bottom: 1px solid var(--border);
}

.rental-option--reverse .rental-option-img {
  order: 2;
}

.rental-option--reverse .rental-option-text {
  order: 1;
}

.rental-option-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.rental-option-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-option-text .label {
  display: block;
  margin-bottom: 16px;
}

.rental-option-text h3 {
  margin-bottom: 16px;
}

.rental-option-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-question {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================================
   EVENTS
   ============================================================ */

.eventbrite-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.eventbrite-embed iframe {
  display: block;
  width: 100%;
}

.events-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 64px 40px;
  gap: 16px;
}

.events-fallback h3 {
  font-size: 28px;
  color: var(--text);
}

.events-fallback p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ============================================================
   GLOFOX EMBED
   ============================================================ */

.glofox-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.glofox-embed iframe {
  display: block;
  width: 100%;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-info a {
  color: var(--accent);
  font-size: 15px;
}

.contact-info a:hover {
  color: var(--accent-dark);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-brand img {
  height: 32px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--text);
}

.footer-newsletter h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Contact page social row */
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.contact-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 100ms; }
[data-reveal-delay="2"] { transition-delay: 200ms; }
[data-reveal-delay="3"] { transition-delay: 300ms; }

/* ============================================================
   UTILITIES
   ============================================================ */

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

.gap-form { display: flex; flex-direction: column; gap: 20px; }

.bg-surface  { background: var(--surface); }
.bg-surface-2 { background: var(--surface-2); }
.border-top  { border-top: 1px solid var(--border); }
.border-bottom { border-bottom: 1px solid var(--border); }

/* ============================================================
   QUOTE LAYOUT (private rentals 2-col)
   ============================================================ */

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================
   RESPONSIVE — Desktop (min 1025px)
   ============================================================ */

@media (min-width: 1025px) {
  body { font-size: 18px; }

  .hero-content p { font-size: 22px; max-width: 52ch; }

  .page-hero-content p { font-size: 20px; }

  .page-header p { font-size: 20px; }

  .stat-label { font-size: 17px; }

  .card-body p { font-size: 16px; }

  .offering-card-content p { font-size: 16px; }

  .faq-question { font-size: 20px; }

  .faq-answer { font-size: 17px; }

  .rental-option-text p { font-size: 18px; }

  .contact-info a { font-size: 17px; }
}

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .nav-links { gap: 24px; }

  .card-grid--3,
  .stat-grid,
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contrast-layout { gap: 48px; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-layout { gap: 48px; }

  .rental-option { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-content h1 { max-width: 100%; }
  .hero-content p { font-size: 16px; margin-bottom: 28px; }
  .hero-content { padding: 0 24px 40px; }

  /* Grids */
  .card-grid--2,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

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

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

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

  /* Contrast therapy layout */
  .contrast-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contrast-images img:first-child {
    margin-top: 0;
  }

  /* Rental options */
  .rental-option {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rental-option--reverse .rental-option-img {
    order: unset;
  }
  .rental-option--reverse .rental-option-text {
    order: unset;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Form grid */
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  /* Offerings */
  .card-grid--3 .offering-card {
    aspect-ratio: 4/3;
  }

  /* Membership */
  .membership-card {
    padding: 36px 28px;
  }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px 40px; }

  .stat-block { padding: 16px 20px; }

  /* Ensure buttons meet 44px minimum touch target on mobile */
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .newsletter-form button { min-height: 44px; }
  .nav-hamburger { min-width: 44px; min-height: 44px; }
}

@media (max-width: 768px) {
  .quote-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   VISUAL ENHANCEMENTS
   ============================================================ */

/* Mobile-only line breaks in hero h1 */
.mobile-br { display: none; }

@media (max-width: 768px) {
  .mobile-br { display: block; }
}


/* Page transition overlay */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 280ms ease;
}

.page-transition-overlay.fade-out {
  opacity: 1;
}

/* Button — scale + glow on hover */
.btn {
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 160ms ease,
              box-shadow 160ms ease;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(249, 112, 32, 0.38);
}

.btn-outline:hover {
  transform: scale(1.03);
}

.btn-ghost:hover {
  transform: scale(1.03);
}

/* Card — lift on hover */
.card {
  transition: border-color var(--transition), transform 260ms ease,
              box-shadow 260ms ease;
}

.card:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

/* Location card — lift on hover */
.location-card {
  transition: border-color var(--transition), transform 260ms ease,
              box-shadow 260ms ease;
}

.location-card:hover {
  border-color: #3a3a3a;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

/* Offering card — subtle brightness on hover */
.offering-card-bg {
  transition: filter 500ms ease, transform 500ms ease;
}

.offering-card:hover .offering-card-bg {
  filter: brightness(1.12);
}

/* Nav — active page underline indicator */
.nav-links a[aria-current="page"] {
  color: var(--text);
  position: relative;
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  border-radius: 1px;
}

/* Additional reveal delays for staggered cards */
[data-reveal-delay="4"] { transition-delay: 400ms; }
[data-reveal-delay="5"] { transition-delay: 500ms; }

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */

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

.page-transition-overlay {
    display: none;
  }

  .btn-primary:hover,
  .btn-outline:hover,
  .btn-ghost:hover {
    transform: none;
    box-shadow: none;
  }

  .card:hover,
  .location-card:hover {
    transform: none;
  }

  .offering-card-bg {
    transition: none;
  }
}
