/* ============================================
   MY PLACE WELLNESS CENTER — Logo Teal palette
   Cream + brand teal + sage · Cormorant Garamond + Inter
   ============================================ */

:root {
  --cream: #f4f0ea;
  --cream-deep: #e6dfd2;
  --ivory: #faf7f1;
  --paper: #ffffff;
  /* Variable names kept for backwards compatibility,
     but values shifted from gold → MPWC logo teal/green */
  --gold: #2a9a95;          /* primary brand teal (matches logo) */
  --gold-soft: #4cb1ac;     /* lighter teal */
  --gold-pale: #b5d6d3;     /* pale teal — replaces gold pale */
  --sage: #6e9b96;          /* sage shifted toward teal */
  --sage-deep: #2c615e;     /* deep sage-teal */
  --sage-pale: #d2e2df;     /* pale sage-teal */
  --charcoal: #2a322d;      /* warmer green-charcoal (subtle teal, less cold) */
  --charcoal-soft: #3e4640;
  --muted: #6e7670;
  --line: rgba(42, 154, 149, 0.18);
  --shadow-sm: 0 2px 8px rgba(31, 44, 42, 0.04);
  --shadow-md: 0 8px 32px rgba(31, 44, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(31, 44, 42, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.serif {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
}
.divider-gold.left { margin-left: 0; margin-right: auto; }

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner {
  background: var(--gold);          /* brand teal — brighter, more cheerful */
  color: var(--ivory);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 110;
}
.offer-banner strong {
  font-weight: 700;
  color: #ffffff;                   /* near-white highlight for legibility */
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
/* Footer (dark bg) — invert dark logo to white */
.footer-brand .nav-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 20px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 13px 28px;
  border: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--charcoal);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
}
.btn-gold:hover { background: var(--charcoal); }
.btn .arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================
   HERO — SPLIT
   ============================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 132px);
}
.hero-side {
  position: relative;
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s;
}
.hero-side.suites {
  background: linear-gradient(135deg, #f4f0ea 0%, #e6dfd2 100%);
}
.hero-side.floats {
  background: linear-gradient(135deg, #dde8e6 0%, #c8d8d4 100%);
}
.hero-side::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.hero-side.suites::before {
  background: radial-gradient(circle at 70% 30%, rgba(42,154,149,0.25), transparent 60%);
}
.hero-side.floats::before {
  background: radial-gradient(circle at 30% 70%, rgba(110,155,150,0.35), transparent 60%);
}
.hero-side > * { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-meta {
  margin-top: 44px;
  display: flex;
  gap: 36px;
  font-size: 13px;
  color: var(--muted);
}
.hero-meta strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ============================================
   PAGE HERO (smaller, for sub-pages)
   ============================================ */
.page-hero {
  padding: 100px 60px 90px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  font-weight: 400;
  margin: 16px auto 24px;
  max-width: 900px;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 110px 0; }
.section-narrow { padding: 80px 0; }

.section-head { text-align: center; margin-bottom: 80px; }
.section-head .eyebrow { display: block; }
.section-head .section-desc { margin: 0 auto; }

/* ============================================
   FEATURE GRID (3-COL)
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--paper);
  padding: 48px 40px;
  border: 1px solid var(--line);
  transition: all 0.4s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.feature-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.feature-card .link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.feature-card .link:hover { color: var(--gold); gap: 14px; }

/* ============================================
   SUITE CARDS
   ============================================ */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.suite-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s;
}
.suite-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.suite-card-image {
  height: 320px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-pale) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.05em;
  overflow: hidden;
}
.suite-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(42,154,149,0.2), transparent 50%);
}
.suite-card-image img,
.split-image > img,
.hero-side > img.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.suite-card-image img + *,
.split-image > img + * { z-index: 2; }
.suite-card-body { padding: 40px; }
.suite-card .badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.suite-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
}
.suite-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
  font-style: italic;
}
.suite-card .price small {
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
}
.suite-card ul {
  list-style: none;
  margin-bottom: 28px;
}
.suite-card ul li {
  font-size: 14px;
  color: var(--charcoal-soft);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  position: relative;
  padding-left: 22px;
}
.suite-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.suite-card ul li:last-child { border-bottom: none; }

/* ============================================
   FLOAT MEMBERSHIP TIERS
   ============================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--paper);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.4s;
  position: relative;
}
.tier.featured {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  transform: scale(1.03);
}
.tier.featured h3 { color: var(--ivory); }
.tier.featured .tier-price { color: var(--gold-pale); }
.tier.featured .tier-desc { color: rgba(247, 241, 232, 0.7); }
.tier.featured ul li { color: rgba(247, 241, 232, 0.85); border-bottom-color: rgba(247, 241, 232, 0.15); }
.tier.featured .tier-badge { background: var(--gold); color: var(--charcoal); }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier.featured:hover { transform: scale(1.03) translateY(-4px); }
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ivory);
  padding: 6px 16px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.tier h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin: 16px 0 8px;
}
.tier-price small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.tier-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.tier ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.tier ul li {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
  padding-left: 24px;
  position: relative;
}
.tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   PROFESSIONALS GRID
   ============================================ */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pro-card {
  background: var(--paper);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.4s;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pro-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.pro-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-deep), var(--gold-pale));
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 32px;
}
.pro-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.pro-card .service {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   PARTNER CARDS — full-width directory cards
   ============================================ */
.partners-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.partner-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.4s;
  min-height: 100%;
}
.partner-image {
  height: 36px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.partner-image img {
  max-height: 36px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Hide the eyebrow business name when an image already shows the brand */
.partner-card:has(.partner-image) .partner-business { display: none; }
.partner-card:has(.partner-image) .partner-avatar  { display: none; }

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.partner-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-deep), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
  margin-bottom: 14px;
}
.partner-business {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.partner-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--charcoal);
  line-height: 1.2;
}
.partner-service {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}
.partner-card p {
  font-size: 13.5px;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.partner-card .partner-body { display: flex; flex-direction: column; flex: 1; }
.partner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.partner-actions .btn {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.partner-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.partner-link:hover { color: var(--gold); }
@media (max-width: 900px) {
  .partner-card { padding: 22px; }
  .partner-avatar { width: 50px; height: 50px; font-size: 24px; margin-bottom: 12px; }
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
  background: var(--cream);
  padding: 120px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: var(--paper);
  padding: 40px 36px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
}
.testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 28px;
  margin-top: 24px;
  font-style: italic;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.testimonial .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
}
.testimonial .author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial .author-info span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   IMAGE + TEXT SPLIT (alternating)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-image {
  height: 540px;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--gold-pale) 100%);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(42,154,149,0.2), transparent 50%);
}
.split-image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  background: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.split-content .eyebrow { display: block; }
.split-content .section-title { font-size: clamp(34px, 3.4vw, 50px); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(42,154,149,0.18), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(110,155,150,0.15), transparent 50%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}
.cta-banner h2 em { color: var(--gold-pale); font-style: italic; }
.cta-banner p {
  font-size: 17px;
  color: rgba(247, 241, 232, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.cta-banner .btn-primary:hover { background: var(--ivory); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact-info-card {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-item .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-info-item .value {
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-info-item .value a:hover { color: var(--gold); }

.contact-form {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form .form-desc {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 15px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  background: var(--sage-pale);
  color: var(--sage-deep);
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  border-left: 3px solid var(--sage-deep);
}
.form-success.show { display: block; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(247, 241, 232, 0.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}


/* ============================================
   FOOTER continued + image fallbacks
   ============================================ */
.footer-brand .nav-logo {
  color: var(--ivory);
  margin-bottom: 20px;
  display: block;
}
.footer-brand .nav-logo span { color: var(--gold); }
.footer-brand .nav-logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 241, 232, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s;
  color: var(--ivory);
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: 14px;
  transition: color 0.3s;
  text-decoration: none;
}
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(247, 241, 232, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Image fallback for img inside .suite-card-image and .split-image */
.suite-card-image { overflow: hidden; }
.suite-card-image img,
.split-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.suite-card-image img + *,
.split-image > img + * { z-index: 2; }

/* ============================================
   HERO — UNIFIED (full-bleed photo + overlay)
   ============================================ */
.hero-unified {
  padding: 160px 60px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--charcoal);
  background-image: url('../images/general/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-unified::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 24, 20, 0.55) 0%, rgba(44, 42, 38, 0.45) 100%),
    radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.4), transparent 70%);
  pointer-events: none;
}
.hero-unified > * { position: relative; z-index: 2; }
.hero-unified-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 500;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-unified-title {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 auto 28px;
  max-width: 960px;
  letter-spacing: -0.015em;
  color: var(--ivory);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.hero-unified-title em { font-style: italic; color: var(--gold-pale); }
.hero-unified-desc {
  font-size: 19px;
  color: rgba(247, 241, 232, 0.92);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero-unified-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-unified .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.hero-unified .btn-primary:hover { background: var(--ivory); color: var(--charcoal); }
.hero-unified .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);
  border: 1px solid var(--ivory);
  backdrop-filter: blur(6px);
}
.hero-unified .btn-outline:hover { background: var(--ivory); color: var(--charcoal); }

/* ============================================
   SERVICE TILES — 4-column on homepage
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-grid.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  overflow: hidden;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-pale);
}
.service-tile-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  position: relative;
}
.service-tile-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44, 42, 38, 0.15));
}
.service-tile-body { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.service-tile-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.service-tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.service-tile p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.service-tile-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.3s;
}
.service-tile:hover .service-tile-link { color: var(--gold); gap: 12px; }
@media (max-width: 1100px) {
  .service-grid,
  .service-grid.service-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-grid,
  .service-grid.service-grid-3 { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-unified { padding: 90px 24px 80px; min-height: 480px; }
  .hero-unified-ctas { flex-direction: column; align-items: center; }
  .hero-unified-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ============================================
   FLOAT GALLERY (Kaua'i + St. Tropez)
   ============================================ */
.float-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.float-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.float-gallery-row.float-gallery-row-2 {
  grid-template-columns: 1fr 1fr;
  max-width: calc(50% - 8px);
  margin: 0 auto;
}
.float-gallery-img {
  display: block;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-deep);
  transition: transform 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}
.float-gallery-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 24, 20, 0.2));
  transition: background 0.4s;
}
.float-gallery-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.float-gallery-img:hover::after {
  background: linear-gradient(180deg, transparent 40%, rgba(42, 154, 149, 0.3));
}
.float-gallery-label {
  background: var(--cream);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--gold-pale);
}
.float-gallery-label .eyebrow { margin-bottom: 8px; }
.float-gallery-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  font-style: italic;
}
.float-gallery-label p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .float-gallery-row { grid-template-columns: 1fr 1fr; }
  .float-gallery-row.float-gallery-row-2 { max-width: 100%; }
  .float-gallery-label { grid-column: span 2; }
}
@media (max-width: 600px) {
  .float-gallery-row { grid-template-columns: 1fr; }
  .float-gallery-label { grid-column: span 1; }
}

/* ============================================
   FLOAT TESTIMONIALS (dark section)
   ============================================ */
.float-testimonial {
  background: rgba(247, 241, 232, 0.04);
  border: 1px solid rgba(76, 177, 172, 0.18);
  padding: 32px 28px;
  border-radius: 2px;
  transition: all 0.3s;
}
.float-testimonial:hover {
  background: rgba(247, 241, 232, 0.07);
  border-color: rgba(76, 177, 172, 0.4);
  transform: translateY(-2px);
}
.float-testimonial .stars {
  color: var(--gold-pale);
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.float-testimonial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(247, 241, 232, 0.92);
  margin-bottom: 24px;
  font-style: italic;
}
.float-testimonial-author {
  padding-top: 20px;
  border-top: 1px solid rgba(247, 241, 232, 0.1);
}
.float-testimonial-author strong {
  display: block;
  color: var(--ivory);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.float-testimonial-author span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.55);
}
@media (max-width: 900px) {
  .float-testimonial-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .float-testimonial-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   REVIEW PLATFORM CARDS (Yelp / Google / ClassPass)
   ============================================ */
.review-platform-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 60px auto 0;
}
.review-platform-card {
  background: rgba(247, 241, 232, 0.05);
  border: 1px solid rgba(76, 177, 172, 0.2);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.review-platform-card:hover {
  background: rgba(247, 241, 232, 0.1);
  border-color: var(--gold-pale);
  transform: translateY(-3px);
}
.review-platform-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
}
.review-platform-stars {
  color: var(--gold-pale);
  font-size: 16px;
  letter-spacing: 0.15em;
}
.review-platform-cta {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.7);
  font-weight: 500;
}
.review-platform-card:hover .review-platform-cta { color: var(--ivory); }
@media (max-width: 700px) {
  .review-platform-row { grid-template-columns: 1fr; }
}

/* Yelp badge wrapper */
.yelp-badge-wrap {
  display: inline-block;
  min-height: 80px;
  min-width: 240px;
}
.yelp-badge-fallback {
  background: rgba(247, 241, 232, 0.05);
  border: 1px dashed rgba(76, 177, 172, 0.4);
  padding: 18px 28px;
  font-size: 12px;
  color: rgba(247, 241, 232, 0.6);
  letter-spacing: 0.05em;
}
.yelp-badge-fallback strong {
  color: var(--gold-pale);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.yelp-badge-fallback a {
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(76, 177, 172, 0.4);
  text-decoration: none;
}

/* ============================================
   COUPON MODAL — $10 off first float
   ============================================ */
.coupon-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(20, 18, 14, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.coupon-overlay.open { opacity: 1; pointer-events: auto; }
.coupon-card {
  background: var(--ivory);
  width: 100%;
  max-width: 480px;
  padding: 56px 48px 44px;
  position: relative;
  text-align: center;
  border: 1px solid var(--gold-pale);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
  max-height: 92vh;
  max-height: 92dvh;
  overflow-y: auto;
  margin: auto;
}
/* When modal is open, lock body scroll */
body.coupon-open { overflow: hidden; }
.coupon-overlay.open .coupon-card { transform: translateY(0) scale(1); }
.coupon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: color 0.2s;
}
.coupon-close:hover { color: var(--gold); }
.coupon-logo-wrap { margin-bottom: 28px; }
.coupon-logo { height: 64px; width: auto; display: inline-block; }
.coupon-eyebrow {
  font-size: 13px;
  letter-spacing: 0.35em;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.coupon-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.coupon-sub {
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.coupon-form { display: flex; flex-direction: column; gap: 12px; }
.coupon-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  border-radius: 2px;
  transition: border-color 0.2s;
  text-align: center;
}
.coupon-input:focus { outline: none; border-color: var(--gold); }
.coupon-btn {
  width: 100%;
  padding: 16px;
  background: var(--sage-deep);
  color: var(--ivory);
  border: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  font-family: inherit;
}
.coupon-btn:hover { background: var(--charcoal); }
.coupon-fineprint { margin-top: 20px; font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }
.coupon-success { display: none; text-align: center; }
.coupon-success.show { display: block; }
.coupon-success-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
}
.coupon-success p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.coupon-cta {
  display: inline-block;
  padding: 14px 28px;
  background: var(--charcoal);
  color: var(--ivory);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.2s;
}
.coupon-cta:hover { background: var(--gold); }
@media (max-width: 600px) {
  .coupon-overlay { padding: 12px; }
  .coupon-card { padding: 40px 22px 28px; max-width: 100%; }
  .coupon-close { top: 8px; right: 8px; width: 40px; height: 40px; font-size: 26px; }
  .coupon-logo-wrap { margin-bottom: 18px; }
  .coupon-logo { height: 44px; }
  .coupon-eyebrow { font-size: 11px; letter-spacing: 0.3em; margin-bottom: 10px; }
  .coupon-headline { font-size: 56px; margin-bottom: 12px; }
  .coupon-sub { font-size: 11px; letter-spacing: 0.25em; margin-bottom: 24px; }
  .coupon-input { padding: 14px 16px; font-size: 14px; }
  .coupon-btn { padding: 14px; font-size: 12px; }
  .coupon-fineprint { margin-top: 16px; font-size: 10px; }
  .coupon-success-headline { font-size: 36px; }
  .coupon-success p { font-size: 14px; }
}
@media (max-width: 380px) {
  .coupon-headline { font-size: 48px; }
  .coupon-card { padding: 36px 18px 24px; }
}

/* ============================================
   FADE-IN ON SCROLL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--paper);
  padding: 22px 28px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 20px;
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-text { flex: 1; }
.cookie-banner-text strong { color: var(--gold-pale); display: block; font-weight: 500; margin-bottom: 4px; letter-spacing: 0.02em; }
.cookie-banner-text a { color: var(--gold-pale); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}
.cookie-btn:hover { border-color: var(--gold-pale); color: var(--gold-pale); }
.cookie-btn.primary { background: var(--gold); border-color: var(--gold); color: var(--paper); }
.cookie-btn.primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--paper); }
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 22px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

/* ============================================
   CHAT INTAKE WIDGET
   ============================================ */
.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--paper);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(42, 154, 149, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.chat-launcher:hover { transform: scale(1.06); box-shadow: 0 14px 40px rgba(42, 154, 149, 0.5); }
.chat-launcher svg { width: 28px; height: 28px; }
.chat-launcher .chat-launcher-close { display: none; }
.chat-launcher.open .chat-launcher-icon { display: none; }
.chat-launcher.open .chat-launcher-close { display: block; }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 140px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 8400;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-header {
  background: var(--charcoal);
  color: var(--paper);
  padding: 16px 18px 16px 22px;
}
.chat-header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.chat-header-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.chat-header-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; line-height: 1.15; }
.chat-header-sub { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-pale); }
.chat-restart {
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ivory);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.chat-restart:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.chat-option-cta {
  background: var(--gold) !important;
  color: var(--paper) !important;
  border-color: var(--gold) !important;
  padding: 10px 18px !important;
  text-decoration: none;
  display: inline-block;
}
.chat-option-cta:hover { background: var(--charcoal) !important; border-color: var(--charcoal) !important; }
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  animation: chatPop 0.3s ease-out;
}
.chat-msg.bot {
  background: var(--paper);
  color: var(--charcoal);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--line);
}
.chat-msg.user {
  background: var(--gold);
  color: var(--paper);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
@keyframes chatPop {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  max-width: 90%;
}
.chat-option {
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}
.chat-option:hover { background: var(--gold); color: var(--paper); }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.chat-input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--cream);
  color: var(--charcoal);
}
.chat-input:focus { border-color: var(--gold); background: var(--paper); }
.chat-send {
  background: var(--gold);
  color: var(--paper);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--gold-soft); }
.chat-send svg { width: 18px; height: 18px; }
.chat-success {
  text-align: center;
  padding: 32px 24px;
  font-family: 'Cormorant Garamond', serif;
}
.chat-success .h { font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.chat-success .p { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--charcoal); line-height: 1.6; }

/* ============================================
   MOBILE RESPONSIVE — comprehensive pass
   Breakpoints: 1024 (small laptop), 900 (tablet), 768 (large phone),
                600 (phone), 480 (small phone), 380 (very small)
   ============================================ */

/* Responsive utility grids — used in HTML via class instead of inline styles */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-tenant-hero { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Tablet (<= 900px) */
@media (max-width: 900px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .grid-2, .grid-split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-pillars { grid-template-columns: 1fr; gap: 20px; }
  .grid-tenant-hero { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .tier-grid { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .pro-grid, .partners-list { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  /* Page hero */
  .page-hero { padding: 80px 24px 60px; }
  .page-hero h1, .hero h1 { font-size: clamp(36px, 7vw, 56px); }
  .section-title { font-size: clamp(30px, 5.5vw, 44px); }
  /* Section padding */
  section { padding-left: 0; padding-right: 0; }
}

/* Large phone (<= 768px) */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .tier-grid { grid-template-columns: 1fr !important; }
  .pro-grid, .partners-list { grid-template-columns: 1fr !important; }
  /* Reduce big section paddings */
  section { padding-top: 60px; padding-bottom: 60px; }
  .page-hero { padding: 64px 20px 48px; }
  /* Nav: hide desktop links + CTA, show hamburger (under 768px) */
  .nav { padding: 14px 20px; position: relative; flex-wrap: nowrap; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; padding: 6px 10px; }
  .nav-logo img { height: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    z-index: 99;
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a { display: block; padding: 10px 0; font-size: 16px; letter-spacing: 0.12em; }
  /* Hero split — stack on tablet/phone so columns don't squeeze */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-side { padding: 64px 28px; }
  /* Image+text split — stack vertically */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .split-image { height: 360px; }
  /* Suite grid + cards — stack and shrink card padding */
  .suite-grid { grid-template-columns: 1fr; gap: 24px; }
  .suite-card-image { height: 280px; }
  .suite-card-body { padding: 28px; }
  /* Hero unified — shrinks horizontally */
  .hero-unified { padding: 110px 24px 90px; min-height: auto; }
  .hero-unified-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  /* Generic in-section flex rows wrap on small screens */
  section [style*="display: flex"][style*="gap"] { flex-wrap: wrap; }
}

/* Phone (<= 600px) */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .container { padding-left: 18px; padding-right: 18px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; text-align: left; }
  .footer-grid > div { text-align: left; }
  .amenities-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  /* Tighter nav padding on small phones (nav already collapsed at 768px) */
  .nav { padding: 12px 16px; }
  /* Offer banner shrinks */
  .offer-banner { font-size: 12px; padding: 10px 14px; line-height: 1.5; }
  /* Headings */
  .page-hero h1, .hero h1 { font-size: clamp(30px, 8vw, 44px); line-height: 1.15; }
  .page-hero p, .hero p { font-size: 15px; }
  .section-title { font-size: clamp(26px, 6.5vw, 36px); }
  .section-desc { font-size: 14px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.25em; }
  /* Buttons full-width on phone */
  .btn, .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-unified-ctas .btn, [style*="display: flex"][style*="justify-content: center"] .btn { width: auto; }
  /* Cards / sections */
  section { padding-top: 48px; padding-bottom: 48px; }
  .feature-card, .tier, .pro-card, .partner-card, .testimonial-card {
    padding: 24px !important;
  }
  /* Forms */
  .form-row { grid-template-columns: 1fr !important; gap: 12px; }
  /* Map iframe */
  iframe { max-width: 100%; }
  /* About page sections */
  section .container [style*="padding"] { padding: 24px !important; }
}

/* Small phone (<= 480px) */
@media (max-width: 480px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .grid-4 { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr !important; }
  .page-hero { padding: 56px 16px 40px; }
  .page-hero h1, .hero h1 { font-size: clamp(28px, 9vw, 36px); }
  .nav-logo img { height: 36px; }
  .offer-banner { font-size: 11px; padding: 8px 12px; }
  /* Cookie banner stacks */
  .cookie-banner { padding: 14px 16px; font-size: 13px; }
  /* Chat widget smaller */
  .chat-launcher { width: 56px; height: 56px; bottom: 14px; right: 14px; }
  .chat-launcher svg { width: 24px; height: 24px; }
}

/* Prevent horizontal overflow regardless of breakpoint */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
/* Belt-and-suspenders: keep section-level wrappers within the viewport */
section, .container, .nav, .offer-banner, footer, .hero-unified, .hero-split { max-width: 100%; }


/* Desktop grid rules for layouts whose inline styles were removed */
.tenant-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.float-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Mobile collapsing for those classes */
@media (max-width: 900px) {
  .tenant-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .float-testimonial-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================
   FLOAT CAROUSEL — auto cross-fade slideshow
   ============================================ */
.float-carousel { position: relative; overflow: hidden; }
.float-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 1;
}
.float-carousel-slide.is-active { opacity: 1; z-index: 2; }
.float-carousel .split-image-label { position: absolute; z-index: 3; }
@media (prefers-reduced-motion: reduce) {
  .float-carousel-slide { transition: none; }
}

/* ============================================
   BLOG TEMPLATE V2 — article + sidebar layout
   ============================================ */
.blog-page { background: var(--ivory); }

/* Breadcrumbs */
.post-breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.post-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.post-breadcrumbs li::after { content: "/"; margin-left: 8px; color: var(--line); }
.post-breadcrumbs li:last-child::after { content: ""; }
.post-breadcrumbs a { color: var(--gold); }
.post-breadcrumbs li[aria-current="page"] { color: var(--charcoal); font-weight: 500; }

/* Article hero (v2) */
.post-hero-v2 {
  max-width: 850px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.post-hero-v2 .category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  padding: 5px 11px;
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  background: rgba(42,154,149,0.06);
}
.post-hero-v2 h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
.post-hero-v2 h1 em { font-style: italic; color: var(--gold); }
.post-hero-v2 .excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0 0 28px;
  max-width: 720px;
}
.post-hero-v2 .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-hero-v2 .meta-row strong { color: var(--charcoal); font-weight: 500; }
.post-hero-v2 .meta-row .dot { color: var(--gold); }
.post-hero-v2 .featured-image {
  margin: 0 auto 8px;
  max-width: 1100px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-deep), var(--gold-pale));
  aspect-ratio: 16/9;
  display: block;
}
.post-hero-v2 .featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-hero-v2 figcaption {
  max-width: 1100px;
  margin: 0 auto 36px;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Article + sidebar layout */
.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}
.post-content {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-weight: 400;
}
.post-content > * + * { margin-top: 1.2em; }
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin-top: 56px !important;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.post-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-top: 36px !important;
  margin-bottom: 12px;
}
.post-content p { margin: 0 0 1em; }
.post-content ul, .post-content ol { padding-left: 22px; margin: 12px 0 1em; }
.post-content ul li, .post-content ol li { margin-bottom: 8px; }
.post-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-content a:hover { color: var(--sage-deep); }
.post-content strong { color: var(--charcoal); font-weight: 600; }
.post-content em { font-style: italic; }

/* Pull quote */
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 28px;
  margin: 36px 0 !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--charcoal);
}
.post-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Callout box */
.post-callout {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin: 32px 0 !important;
  border-radius: 2px;
}
.post-callout .callout-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.post-callout p { margin-bottom: 0; }

/* Inline image */
.post-content figure {
  margin: 36px 0 !important;
}
.post-content figure img {
  width: 100%;
  border-radius: 4px;
}
.post-content figure figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* Comparison table */
.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 !important;
  font-size: 15px;
}
.post-content thead th {
  background: var(--cream);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 14px 18px;
  border-bottom: 2px solid var(--gold);
}
.post-content tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.post-content tbody tr:last-child td { border-bottom: none; }

/* FAQ section */
.post-faq { margin: 48px 0 !important; }
.post-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.post-faq details:first-child { border-top: 1px solid var(--line); }
.post-faq summary {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--charcoal);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.post-faq summary::-webkit-details-marker { display: none; }
.post-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s;
}
.post-faq details[open] summary::after { content: '–'; }
.post-faq details > p { margin-top: 14px; color: var(--charcoal-soft); }

/* Sidebar */
.post-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-size: 14px;
}
.post-sidebar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 22px 24px;
}
.post-sidebar-card .label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.post-sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 8px;
  line-height: 1.2;
}
.post-sidebar-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal-soft);
  margin: 0 0 16px;
}
.post-sidebar-card .btn { width: 100%; justify-content: center; padding: 12px 18px; font-size: 11px; }
.post-sidebar-card.dark { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.post-sidebar-card.dark h3 { color: var(--ivory); }
.post-sidebar-card.dark p { color: rgba(247,241,232,0.75); }
.post-sidebar-card.dark .label { color: var(--gold-pale); }

/* Table of contents */
.post-toc nav { display: block; }
.post-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.post-toc li {
  counter-increment: toc;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(42,154,149,0.18);
  font-size: 14px;
  line-height: 1.5;
}
.post-toc li:last-child { border-bottom: none; }
.post-toc a {
  color: var(--charcoal-soft);
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.post-toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.post-toc a:hover { color: var(--gold); }

/* Author card */
.post-author-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
}
.post-author-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-deep), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.post-author-card .name { font-weight: 600; color: var(--charcoal); margin-bottom: 4px; font-size: 14px; }
.post-author-card .bio { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* Bottom CTA section */
.post-bottom-cta {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 80px 24px;
  text-align: center;
}
.post-bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--ivory);
}
.post-bottom-cta h2 em { color: var(--gold); }
.post-bottom-cta p { color: rgba(247,241,232,0.75); max-width: 600px; margin: 0 auto 32px; font-size: 17px; }
.post-bottom-cta .btn-row { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Related posts */
.related-posts { max-width: 1200px; margin: 0 auto; padding: 80px 60px 24px; }
.related-posts > .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.related-posts > h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; margin-bottom: 32px; }
.related-posts h2 em { font-style: italic; color: var(--gold); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.related-card .image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--cream-deep), var(--gold-pale)); }
.related-card .body { padding: 20px 22px 22px; }
.related-card .cat { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.related-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; line-height: 1.2; margin-bottom: 10px; color: var(--charcoal); }
.related-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.related-card .read-more { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; gap: 0; padding: 24px 28px 60px; }
  .post-sidebar { position: static; order: 2; max-width: 720px; margin-top: 56px; }
  .post-breadcrumbs, .related-posts { padding-left: 28px; padding-right: 28px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .post-hero-v2 { padding: 20px 18px 0; }
  .post-hero-v2 .meta-row { font-size: 12px; }
  .post-content { font-size: 16px; line-height: 1.75; }
  .post-content h2 { margin-top: 40px !important; }
  .related-grid { grid-template-columns: 1fr; }
  .post-bottom-cta { padding: 60px 22px; }
}

/* Blog index v2 */
.blog-index-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px 40px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.blog-index-hero .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.blog-index-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 400; line-height: 1.1; margin-bottom: 14px; }
.blog-index-hero h1 em { font-style: italic; color: var(--gold); }
.blog-index-hero p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto; line-height: 1.7; }

.blog-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-cat-pill {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.blog-cat-pill:hover, .blog-cat-pill.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.blog-featured {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 60px;
}
.blog-featured a {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-featured a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.blog-featured .image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--gold-pale), var(--gold)); }
.blog-featured .body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured .cat { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.blog-featured h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.15; margin-bottom: 14px; }
.blog-featured p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.blog-featured .meta { font-size: 12px; color: var(--muted); }
.blog-featured .meta strong { color: var(--charcoal); font-weight: 500; }

.blog-grid-v2 { max-width: 1200px; margin: 0 auto; padding: 24px 60px 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 1024px) {
  .blog-featured a { grid-template-columns: 1fr; gap: 0; }
  .blog-featured .body { padding: 28px; }
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); padding: 24px 28px 60px; }
  .blog-index-hero, .blog-categories, .blog-featured { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 600px) {
  .blog-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================
   YELP REVIEW EMBEDS
   ============================================ */
.yelp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.yelp-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
}
.yelp-card-body {
  position: relative;
  flex: 1;
  padding: 16px 18px 0;
  max-height: 380px;
  overflow: hidden;
}
.yelp-card-body::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--paper));
  pointer-events: none;
}
.yelp-card-body .yelp-review {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.yelp-card-body .yelp-review a { color: var(--gold); }
.yelp-readmore {
  display: block;
  padding: 12px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  background: var(--cream);
  transition: all 0.2s;
}
.yelp-readmore:hover { background: var(--gold); color: var(--paper); }
@media (max-width: 900px) { .yelp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .yelp-grid { grid-template-columns: 1fr; } }
