/* =============================================================
   Roswell Office Suites - Modern Design System
   Cream + ink + terracotta. Big type, generous space, local warmth.
   ============================================================= */

:root {
  --ink: #1A1A1A;
  --ink-soft: #44403c;
  --muted: #6f6a62;
  --cream: #FAF7F1;
  --cream-2: #F0EBE0;
  --cream-3: #E6E0D0;
  /* Brand: navy = titles/buttons/footer. gold = accents/icons/eyebrows. */
  --navy: #223047;
  --navy-dark: #18223A;
  --gold: #AA874F;
  --gold-dark: #8B6B3D;
  --gold-soft: #E8DCC6;
  /* Legacy terra aliases now point to gold so existing rules keep working. */
  --terra: var(--gold);
  --terra-dark: var(--gold-dark);
  --terra-soft: var(--gold-soft);
  --line: rgba(26, 26, 26, 0.10);
  --line-soft: rgba(26, 26, 26, 0.06);
  --white: #FFFFFF;
  --max: 1320px;
  --pad-section: clamp(64px, 9vw, 120px);
  --radius: 14px;
  --radius-sm: 8px;
  --pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Honeypot field - must be hidden from humans and screen readers */
.hp-field {
  display: none !important;
}

/* Defensive: inline SVGs shouldn't stretch in flex parents */
svg { flex-shrink: 0; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 18px;
  z-index: 100;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; color: var(--cream); }

*:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.018em;
  font-weight: 600;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(34px, 4.2vw, 52px); letter-spacing: -0.022em; font-weight: 500; }
/* Selective emphasis within h1: keep navy color, bump weight from 500 to 700 with slightly tighter tracking so the phrase reads as deliberate */
h1 strong { font-weight: 700; letter-spacing: -0.024em; color: inherit; }
h2 { font-size: clamp(26px, 3vw, 34px); letter-spacing: -0.018em; }
h3 { font-size: clamp(18px, 1.7vw, 22px); letter-spacing: -0.012em; }
h4 { font-size: 17px; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--terra-dark); }

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

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  color: var(--terra-dark);
  margin: 0 0 22px;
}

.lede {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 660px;
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
/* Header brand logo (designer-provided SVG). */
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 760px) {
  .brand-logo { height: 38px; }
}
/* Legacy R-monogram styles kept as a fallback; not used in current markup. */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--cream-3);
  border-radius: 7px;
  font-family: "Lora", serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  transition: color .25s ease, border-color .25s ease;
}
.brand:hover .brand-mark { color: var(--navy-dark); border-color: var(--gold); }
.brand-text { color: var(--navy); }
.brand-text {
  font-family: "Lora", serif;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.brand-text small {
  display: none;
}
/* Footer brand has no monogram — only the wordmark */
.footer-brand .brand-mark { display: none; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-link {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color .15s ease;
}
.phone-link:hover { color: var(--ink); }
.tenant-link {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  transition: color .15s ease;
}
.tenant-link:hover { color: var(--ink); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  position: relative;
  z-index: 61;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--pill);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(26,26,26,0);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--cream);
  box-shadow: 0 10px 22px -12px rgba(34,48,71,.55);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 22px -12px rgba(26,26,26,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--terra-dark);
  padding: 10px 0;
  border: none;
  font-weight: 500;
}
.btn-ghost::after {
  content: "→";
  margin-left: 6px;
  transition: transform .18s ease;
  display: inline-block;
}
.btn-ghost:hover { color: var(--terra-dark); text-decoration: none; }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-on-dark.btn-primary {
  background: var(--cream);
  color: var(--ink);
}
.btn-on-dark.btn-primary:hover { background: var(--terra-soft); color: var(--ink); }
.btn-on-dark.btn-secondary {
  color: var(--cream);
  border-color: rgba(250,247,241,.6);
}
.btn-on-dark.btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------------- HERO (split layout - text left, photo right) ---------------- */
.hero {
  background: var(--cream);
  padding: clamp(84px, 10vw, 144px) 0 clamp(112px, 13vw, 184px);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.hero-text {
  text-align: left;
  max-width: 460px;
}
.hero h1 {
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-text .eyebrow { margin-bottom: 18px; }
.hero-sub {
  font-size: clamp(15.5px, 1.15vw, 17px);
  color: var(--ink-soft);
  margin: 0 0 36px;
  line-height: 1.6;
  max-width: 440px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero .btn {
  padding: 14px 26px;
  font-size: 15px;
}

.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #44403c 0%, #1A1A1A 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 36px 72px -28px rgba(26,26,26,.24);
  border: 1px solid rgba(26,26,26,.05);
}
.hero-photo img,
.hero-photo picture > img {
  object-position: center 55%;
}


@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-text {
    text-align: center;
    order: 1;
  }
  .hero-visual { order: 2; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-photo { aspect-ratio: 16/10; }
}

/* Photo placeholder styling */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(184,83,58,.18), transparent 50%),
    linear-gradient(135deg, #2a2520 0%, #1A1A1A 100%);
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(250,247,241,.55);
  font-size: 13px;
  padding: 24px;
}
.photo-placeholder strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 22px;
  color: rgba(250,247,241,.92);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.photo-placeholder.light {
  background:
    radial-gradient(circle at 70% 20%, rgba(184,83,58,.10), transparent 50%),
    linear-gradient(135deg, #F0EBE0 0%, #E6E0D0 100%);
  color: var(--muted);
}
.photo-placeholder.light strong {
  color: var(--ink);
}

/* Real photos: fill the placeholder/container */
.hero-photo > picture,
.hero-photo > img,
.option-image > picture,
.option-image > img,
.photo-placeholder > picture,
.photo-placeholder > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder > picture > img,
.option-image > picture > img,
.hero-photo > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------------- SECTIONS ---------------- */
.section {
  padding: var(--pad-section) 0;
}
.section-tinted { background: var(--cream-2); }
.section-dark {
  background: radial-gradient(ellipse at 50% -20%, #2A3B57 0%, #223047 55%, #1A2638 100%);
  color: var(--cream);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250,247,241,.72); }
.section-dark .eyebrow { color: var(--terra-soft); }
.section-dark .lede { color: rgba(250,247,241,.78); }

.section-head {
  max-width: 740px;
  margin: 0 auto clamp(36px, 4.5vw, 56px);
  text-align: center;
}
.section-head .lede { max-width: 620px; margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 14px; }

/* ---------------- WHO WE HOST (modern card grid) ---------------- */
.tenants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.tenant {
  background: var(--cream);
  padding: 36px 28px;
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
}
.tenant:hover { background: var(--cream-2); }
.tenant .icon {
  width: 32px; height: 32px;
  color: var(--terra-dark);
  margin-bottom: 22px;
}
.tenant h3 {
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tenant p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

/* Lighter pair-card grid for the grouped professions (borderless, editorial) */
.profession-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.profession-card {
  background: transparent;
  border: 0;
  padding: 0;
}
.profession-card .icon {
  width: 24px; height: 24px;
  color: var(--terra);
  margin-bottom: 18px;
  opacity: 1;
}
.profession-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-weight: 500;
  line-height: 1.25;
}
.profession-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .profession-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
}
@media (max-width: 600px) {
  .profession-grid { grid-template-columns: 1fr; gap: 28px; }
}
.tenant-cta {
  font-size: 13px;
  color: var(--terra-dark);
  text-decoration: none;
  font-weight: 500;
  margin-top: 16px;
  display: inline-block;
  align-self: flex-start;
}
.tenant-cta::after {
  content: "→";
  margin-left: 5px;
  display: inline-block;
  transition: transform .15s ease;
}
.tenant-cta:hover { color: var(--terra-dark); text-decoration: none; }
.tenant-cta:hover::after { transform: translateX(3px); }

/* ---------------- OFFICE SIZE GUIDE ---------------- */
.size-guide {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(26,26,26,.12);
}
.size-row {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 48px;
  padding: 32px 36px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.size-row:last-child { border-bottom: 0; }
.size-row-spec h3 {
  font-size: 21px;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.size-row-spec .size-meta {
  font-size: 11.5px;
  color: var(--terra-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}
.size-row-desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.size-guide-cta {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .size-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 24px;
  }
}

/* ---------------- WHAT YOU GET (compact icon rows on dark) ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 80px;
  max-width: 920px;
  margin: 0 auto;
}
.feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(250,247,241,.10);
}
.section-dark .feature { border-top-color: rgba(250,247,241,.10); }
.section:not(.section-dark) .feature { border-top-color: var(--line); }
.feature .icon {
  width: 20px; height: 20px;
  flex: 0 0 20px;
  color: var(--terra);
  opacity: 1;
}
.section:not(.section-dark) .feature .icon { color: var(--terra); opacity: 1; }
.feature span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(250,247,241,.92);
  letter-spacing: -0.005em;
}
.section:not(.section-dark) .feature span { color: var(--ink); }
/* Subtle terra accent under the section head on dark */
.section-dark .section-head { position: relative; padding-bottom: 8px; }
.section-dark .section-head::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--terra);
  margin: 28px auto 0;
  opacity: 0.7;
}
@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; gap: 0; }
  .feature { padding: 16px 0; }
  .section-dark .section-head::after { margin-top: 20px; }
}

/* Mobile spacing refinements */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-head { margin: 0 auto 36px; }
  .option-card .option-body { padding: 26px 24px 28px; }
  .option-card h3 { font-size: 24px; }
  .option-card ul { margin-bottom: 24px; }
  .size-guide-cta { margin-top: 28px; }
  .why-row { padding: 24px 0; }
  .why-row h3 { font-size: 20px; }
  .trust-points li { padding: 14px 0; }
  .trust-body .lede { margin-bottom: 24px; }
  .final-cta { padding: 0 4px; }
  .final-cta-meta { gap: 14px; font-size: 13px; }
  .hero { padding: 56px 0 80px; }
  .hero-inner { gap: 28px; }
  .hero h1 { font-size: clamp(30px, 7vw, 40px); margin-bottom: 18px; }
  .hero-sub { margin-bottom: 28px; }
}

/* ---------------- WHY (editorial layout: lead + supporting points) ---------------- */
.why-editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: start;
}
.why-lead {
  position: sticky;
  top: 120px;
}
.why-lead .eyebrow { margin-bottom: 18px; }
.why-lead h2 { margin: 0; }
.why-list {
  display: flex;
  flex-direction: column;
}
.why-row {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.why-row:first-child { padding-top: 0; border-top: 0; }
.why-row h3 {
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -0.012em;
  font-weight: 500;
}
.why-row p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1000px) {
  .why-editorial { grid-template-columns: 1fr; gap: 40px; }
  .why-lead { position: static; }
}

/* ---------------- OPTION CARDS (refined, imagery-led) ---------------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.option-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26,26,26,.16);
  border-color: var(--cream-3);
}
.option-card .option-image {
  height: clamp(200px, 19vw, 240px);
  width: 100%;
  overflow: hidden;
}
.option-card .option-image img,
.option-card .option-image picture > img {
  transition: transform .5s ease;
}
.option-card:hover .option-image img,
.option-card:hover .option-image picture > img {
  transform: scale(1.025);
}
.option-card .option-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.option-card h3 {
  font-size: 21px;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.option-card .best-for {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-dark);
  font-weight: 600;
  margin-bottom: 10px;
}
/* Refined premium pricing display: small "From" label, prominent serif amount in navy, muted suffix */
.price-anchor {
  margin: 2px 0 20px;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.price-anchor .price-from {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}
.price-anchor .price-amount {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.018em;
}
.price-anchor .price-suffix {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.option-card li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.option-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  background: var(--terra);
  border-radius: 50%;
}
.option-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------------- TRUST (split layout) ---------------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.trust-photo {
  height: clamp(380px, 36vw, 460px);
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 56px -22px rgba(26,26,26,.18);
}
.trust-photo picture,
.trust-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-body .eyebrow { margin-bottom: 18px; }
.trust-body h2 { margin-bottom: 16px; }
.trust-body .lede { margin-bottom: 36px; max-width: 540px; }
.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-points li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
}
.trust-points li:last-child { border-bottom: 1px solid var(--line); }
.trust-points strong {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.trust-points span {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 1000px) {
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-photo { height: clamp(280px, 50vw, 380px); max-width: 600px; margin: 0 auto; }
  .trust-points li { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
}

/* ---------------- LOCATION ---------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.location-grid h2 { margin-bottom: 24px; }
.location-list {
  list-style: none;
  padding: 0; margin: 32px 0;
}
.location-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  color: var(--ink);
}
.location-list li svg { color: var(--terra); flex: 0 0 18px; }
.map-placeholder {
  background: var(--cream-2);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 47px, rgba(26,26,26,.04) 48px),
    linear-gradient(90deg, transparent 47px, rgba(26,26,26,.04) 48px);
  background-size: 48px 48px;
}
.map-pin {
  position: relative;
  background: var(--terra);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: 0 8px 16px rgba(184,83,58,.35);
}
.map-pin span { transform: rotate(45deg); font-weight: 700; font-size: 18px; }

.map-embed {
  position: relative;
  height: clamp(280px, 26vw, 340px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 16px 40px -20px rgba(26,26,26,.16);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(0.95);
}

/* Location chips (subtle, refined) */
.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.location-chips .chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.location-chips .chip::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--terra);
  border-radius: 50%;
  margin-right: 9px;
  opacity: 0.7;
}

/* Stacked entrance photo + map in location section */
.location-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-photo {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 50px -22px rgba(26,26,26,.18);
  border: 1px solid var(--line);
}
.location-photo img,
.location-photo picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------- TESTIMONIAL PLACEHOLDER ---------------- */
.placeholder-note {
  background: transparent;
  border: 1px dashed var(--cream-3);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
}
.placeholder-note strong {
  display: block;
  color: var(--ink);
  font-family: "Lora", serif;
  font-style: normal;
  margin-bottom: 8px;
  font-size: 18px;
}

/* ---------------- FINAL CTA (dark full-bleed) ---------------- */
.final-cta {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.final-cta h2 {
  margin-bottom: 18px;
}
.final-cta .hero-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  max-width: 560px;
}
.final-cta .hero-ctas { justify-content: center; }
.final-cta .cta-phone { text-align: center; }
.final-cta-meta {
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-phone {
  margin: 20px 0 0;
  font-size: 15px;
  color: rgba(250,247,241,.65);
}
.cta-phone a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 4px;
}
.cta-phone a:hover { color: var(--terra-soft); }
.section-dark .final-cta-meta { color: rgba(250,247,241,.55); }

/* ---------------- PAGE HERO (sub pages) ---------------- */
.page-hero {
  background: var(--cream);
  padding: clamp(56px, 7vw, 92px) 0 clamp(36px, 4vw, 56px);
}
.page-hero .container { max-width: 1100px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 16px;
  max-width: 820px;
  line-height: 1.15;
}
.page-hero p {
  font-size: clamp(15.5px, 1.15vw, 18px);
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.55;
}

/* ---------------- TWO COLUMN ROWS ---------------- */
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.row-2.flip { grid-template-columns: 1.1fr 1fr; }
.row-2 .photo-placeholder.light {
  height: clamp(280px, 32vw, 380px);
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px rgba(26,26,26,.14);
  border: 1px solid var(--line);
}
.row-2 h2 { margin-bottom: 16px; }
.row-2 .label-h {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra-dark);
  font-weight: 600;
  margin: 32px 0 14px;
  display: block;
}

/* ---------------- CHECKLIST ---------------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 16px; height: 16px;
  background: var(--terra-dark);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  opacity: 0.85;
}

/* ---------------- AMENITY CARDS (2x2 grid) ---------------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.amenity-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
}
.amenity-card .amenity-icon {
  width: 28px;
  height: 28px;
  color: var(--terra);
  margin-bottom: 18px;
  opacity: 1;
}
.amenity-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terra-dark);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}
.amenity-card .amenity-headline {
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 16px;
}
.amenity-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 18px;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-list li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
.amenity-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 5px; height: 5px;
  background: var(--terra);
  border-radius: 50%;
  opacity: 0.8;
}

/* Small photo row below amenity cards */
.amenity-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.amenity-photos .photo-tile {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -20px rgba(26,26,26,.14);
}
.amenity-photos .photo-tile img,
.amenity-photos .photo-tile picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .amenity-grid { grid-template-columns: 1fr; gap: 16px; }
  .amenity-photos { grid-template-columns: 1fr; }
  .amenity-card { padding: 26px 24px 24px; }
}

/* ---------------- PHOTOS GALLERY (polished) ---------------- */
.gallery-section {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terra-dark);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery .photo-placeholder.light {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
}
.gallery .photo-placeholder.light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26,26,26,.18);
}
.gallery.feature-shot {
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.gallery.feature-shot .photo-placeholder.light:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ---------------- CONTACT FORM ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.form h3 { margin-bottom: 8px; }
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184,83,58,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.contact-side {
  padding: 8px 0;
}
.contact-side h2,
.contact-side h3 {
  font-size: 24px;
  margin-bottom: 24px;
}
.contact-side dl {
  margin: 0;
  display: grid;
  gap: 22px;
}
.contact-side dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terra-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-side dd {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.contact-side dd a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.contact-side dd a:hover { color: var(--terra-dark); }

.what-happens-next {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.what-happens-next .wh-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terra-dark);
  font-weight: 600;
  margin: 0 0 14px;
}
.what-happens-next .wh-steps {
  list-style: none;
  counter-reset: wh;
  padding: 0;
  margin: 0;
}
.what-happens-next .wh-steps li {
  counter-increment: wh;
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.what-happens-next .wh-steps li::before {
  content: counter(wh);
  position: absolute;
  left: 0; top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--navy);
  color: rgba(250,247,241,.78);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,247,241,.1);
}
.footer-brand .brand-text { color: var(--cream); font-size: 22px; }
.footer-brand p {
  color: rgba(250,247,241,.55);
  font-size: 14px;
  max-width: 300px;
  margin-top: 18px;
  line-height: 1.55;
}
.footer-col h3 {
  color: var(--cream);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  color: rgba(250,247,241,.65);
  text-decoration: none;
  font-size: 14px;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250,247,241,.7);
}

/* ---------------- PROOF BAR (polished credibility strip) ---------------- */
.proof-bar {
  background: transparent;
  padding: 0;
  position: relative;
  margin-top: clamp(-96px, -8vw, -64px);
  z-index: 2;
}
.proof-bar .container {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 32px;
  box-shadow: 0 24px 50px -22px rgba(26,26,26,.18);
}
.proof-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  justify-content: center;
  align-items: center;
}
.proof-bar li {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 12.5px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 24px;
  position: relative;
}
.proof-bar li svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
  opacity: 1;
  stroke-width: 1.7;
}
.proof-bar li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 14px;
  transform: translateY(-50%);
  background: var(--line);
}
@media (max-width: 900px) {
  .proof-bar { margin-top: 0; }
  .proof-bar .container { border-radius: 0; border-left: 0; border-right: 0; box-shadow: none; padding: 20px 24px; }
}
@media (max-width: 720px) {
  .proof-bar ul { gap: 10px 0; }
  .proof-bar li { padding: 4px 14px; font-size: 11.5px; gap: 9px; }
  .proof-bar li svg { width: 22px; height: 22px; flex: 0 0 22px; }
  .proof-bar li + li::before { display: none; }
}

/* Honest Limits callout (within deep-grid) */
.deep-grid .honest-limits {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 0;
}
.deep-grid .honest-limits > div { border-top: 0; padding-top: 0; }
.deep-grid .honest-limits .eyebrow {
  color: var(--ink-soft);
}

/* ---------------- DEEP-DIVE CARDS ---------------- */
.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deep-grid > div {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px 24px;
}
.deep-grid h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.deep-grid p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 10px;
}
.deep-grid p:last-child { margin-bottom: 0; }
.deep-grid .eyebrow { margin-bottom: 12px; }
@media (max-width: 1000px) {
  .deep-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------------- BENEFIT STRIP (compact horizontal benefits row) ---------------- */
.benefit-strip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  margin: 0 0 56px;
}
.benefit-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
  align-items: center;
}
.benefit-strip li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.benefit-strip li svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
  opacity: 1;
  stroke-width: 1.7;
}
@media (max-width: 720px) {
  .benefit-strip { padding: 16px 18px; margin-bottom: 36px; }
  .benefit-strip ul { gap: 8px 18px; }
  .benefit-strip li { font-size: 12.5px; gap: 9px; }
  .benefit-strip li svg { width: 22px; height: 22px; flex: 0 0 22px; }
}

/* ---------------- DAY TIMELINE (3-step horizontal flow) ---------------- */
.day-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
}
.day-step .step-num {
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--terra);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.day-step h3 {
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.012em;
}
.day-step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 800px) {
  .day-timeline { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------------- REPLACES GRID (2-col compact) ---------------- */
.replaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  max-width: 880px;
  margin: 0 auto;
}
.replaces-item h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
}
.replaces-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .replaces-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------------- SECONDARY SOLUTIONS CARDS ---------------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.solution-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26,26,26,.14);
  border-color: var(--cream-3);
}
.solution-card .solution-icon {
  width: 26px;
  height: 26px;
  color: var(--terra);
  margin-bottom: 16px;
  opacity: 1;
}
.solution-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}
.solution-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 20px;
  flex: 1;
}
.solution-card .solution-cta {
  font-size: 13px;
  color: var(--terra-dark);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  align-self: flex-start;
}
.solution-card .solution-cta::after {
  content: "→";
  margin-left: 5px;
  display: inline-block;
  transition: transform .15s ease;
}
.solution-card .solution-cta:hover { color: var(--terra-dark); }
.solution-card .solution-cta:hover::after { transform: translateX(3px); }
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------------- REVIEWS MODULE ---------------- */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.reviews-head .rating-block {
  text-align: right;
}
.rating-stars {
  font-size: 28px;
  color: var(--terra);
  letter-spacing: 4px;
  line-height: 1;
}
.rating-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.rating-meta strong { color: var(--ink); font-weight: 600; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--terra);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  line-height: 1;
}
.review-card blockquote {
  margin: 0 0 20px;
  font-family: "Lora", serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-style: normal;
  flex: 1;
}
.review-card .reviewer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-card .reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-card .reviewer-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}
.review-card .review-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.reviews-cta {
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .reviews-head { grid-template-columns: 1fr; align-items: start; }
  .reviews-head .rating-block { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ---------------- BREADCRUMBS ---------------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { color: var(--cream-3); }
.breadcrumbs span[aria-current] { color: var(--ink); }

/* ---------------- FAQ ---------------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  font-family: "Lora", serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.012em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 26px;
  color: var(--terra-dark);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--terra-dark); }
.faq-item .faq-body {
  padding: 18px 0 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
}
.faq-item .faq-body p { margin: 0; }

/* ---------------- MOBILE STICKY BAR ---------------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(250,247,241,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  z-index: 60;
  gap: 10px;
  box-shadow: 0 -4px 18px rgba(26,26,26,.06);
}
.mobile-bar .btn { flex: 1; padding: 12px 18px; font-size: 14px; }

/* ---------------- MOBILE NAV DRAWER ---------------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  bottom: auto;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 36px -16px rgba(26,26,26,.18);
  padding: 14px 24px 20px;
  z-index: 60;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 4px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  letter-spacing: -0.005em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .phone-link {
  padding-top: 16px;
  margin-top: 4px;
  color: var(--terra-dark);
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  border-bottom: none;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1100px) {
  .tenants-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .why-editorial { grid-template-columns: 1fr; gap: 40px; }
  .option-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .row-2, .row-2.flip { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery.feature-shot { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery.feature-shot .photo-placeholder.light:first-child { grid-row: auto; aspect-ratio: 4/3; }
}

@media (max-width: 760px) {
  .main-nav,
  .header-cta .tenant-link,
  .header-cta .phone-link,
  .header-cta .btn { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  body { padding-bottom: 76px; }
  .mobile-bar { display: flex; }
  .tenants-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; gap: 0; }
  .amenity-list { grid-template-columns: 1fr; }
  .form { padding: 28px; }
  .form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 4/3; border-radius: 16px; }
  .option-card .option-body { padding: 28px 24px; }
}

/* ============================================================
   INTERIOR PAGE POLISH COMPONENTS
   Added 2026-05-19 to refine interior pages without rewriting copy.
   ============================================================ */

/* Section label used in place of inline <h4 style="..."> on Office Solutions */
.subhead {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--terra-dark);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.subhead:first-of-type { margin-top: 4px; }

/* Two-column icon feature list (compact replacement for stacked checklist) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.feature-grid svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--terra);
  opacity: 1;
}
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* Inline chip list (used for "Good For" on Office Solutions) */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
}
.chip-list li {
  padding: 6px 14px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink);
}

/* Refined callout (used for "Honest limits" on Virtual Offices) */
.callout-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terra);
  padding: 28px 30px;
  border-radius: 6px;
  margin: 8px 0;
}
.callout-card .eyebrow { margin-bottom: 8px; }
.callout-card h3 { margin-bottom: 12px; font-size: 20px; }
.callout-card p { margin-bottom: 12px; }
.callout-card p:last-child { margin-bottom: 0; }

/* Compact "what it replaces" row */
.replaces-rows { margin: 8px 0; }
.replaces-rows .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.replaces-rows .row:last-child { border-bottom: none; }
.replaces-rows .from {
  font-size: 14.5px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(110,110,110,.5);
  text-decoration-thickness: 1px;
}
.replaces-rows .arrow {
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
}
.replaces-rows .arrow svg { width: 20px; height: 20px; }
.replaces-rows .to {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 600px) {
  .replaces-rows .row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .replaces-rows .arrow { display: none; }
  .replaces-rows .to { font-size: 15.5px; }
}

/* 3-step process block (Virtual Offices "How it works") */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 4px;
}
.process-step {
  padding: 28px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
}
.process-step .pnum {
  color: var(--terra);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 19px; margin: 4px 0 10px; }
.process-step p { font-size: 14.5px; margin: 0; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 720px) { .process-steps { grid-template-columns: 1fr; } }

/* Contact methods (icon + label + value) */
.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.contact-methods li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-methods li:last-child { border-bottom: none; }
.contact-methods .cm-icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--terra);
  margin-top: 2px;
}
.contact-methods .cm-body { flex: 1; min-width: 0; }
.contact-methods .cm-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-methods .cm-value {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.4;
}
.contact-methods .cm-value a { color: var(--ink); text-decoration: none; }
.contact-methods .cm-value a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
/* Make the phone number visually prominent in the contact sidebar */
.contact-methods li:first-child .cm-value {
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.contact-methods li:first-child .cm-value a { color: var(--navy); }

/* Featured photo strip (Photos page) */
.photos-featured {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-bottom: 56px;
  height: 460px;
}
.photos-featured > div {
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--line);
}
.photos-featured .pf-main { grid-row: 1 / 3; }
.photos-featured picture,
.photos-featured img { width: 100%; height: 100%; display: block; }
.photos-featured img { object-fit: cover; transition: transform .4s ease; }
.photos-featured > div:hover img { transform: scale(1.02); }
@media (max-width: 800px) {
  .photos-featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 10px;
  }
  .photos-featured .pf-main { grid-column: 1 / 3; }
  .photos-featured > div { aspect-ratio: 3 / 2; }
}
@media (max-width: 480px) {
  .photos-featured { grid-template-columns: 1fr; }
  .photos-featured .pf-main { grid-column: auto; }
}

/* Drive times compact list */
.drive-times {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.drive-times li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.drive-times li:last-child { border-bottom: none; }
.drive-times .dt-place { color: var(--ink); font-weight: 500; font-size: 15px; }
.drive-times .dt-mins {
  color: var(--terra-dark);
  font-weight: 600;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: -.005em;
}

/* Promote process-step's first paragraph when it's a label vs body - handled via .pnum */

/* On Office Solutions / Virtual Offices the row-2 photo column needs slightly different look */
.row-2 .photo-placeholder.light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Adjust .deep-grid honest-limits when used as standalone (we'll remove it from deep-grid on virtual-offices) */
.section .callout-card.full { max-width: 880px; margin-left: auto; margin-right: auto; }

/* Office Solutions: 3-column summary block (What's Included / Good For / What It Replaces) */
.summary-3col {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.summary-3col > div { min-width: 0; }
.summary-3col .subhead { margin-top: 0; margin-bottom: 16px; }
.summary-3col .feature-grid { grid-template-columns: 1fr; gap: 10px; margin: 0; }
.summary-3col .chip-list { gap: 8px; margin: 0; }
.summary-3col .chip-list li {
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  background: var(--cream-2);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .summary-3col { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; margin-top: 36px; }
}

/* Compact replaces list (× bullet) */
.replaces-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.replaces-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 6px 0;
  line-height: 1.5;
}
.replaces-list li::before {
  content: "×";
  color: var(--terra);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-top: -2px;
  flex: 0 0 14px;
}

/* Other Solutions made visually secondary (Office Solutions page) */
.section.section-tinted.other-solutions .section-head h2 { font-size: clamp(22px, 2.4vw, 28px); }
.section.other-solutions .solutions-grid { gap: 18px; }
.section.other-solutions .solution-card { padding: 26px 24px; }
.section.other-solutions .solution-card h3 { font-size: 17px; }
.section.other-solutions .solution-card p { font-size: 14.5px; }

/* Location page: arrival panel */
.arrival-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.arrival-grid .arrival-photo {
  border-radius: 12px;
  overflow: hidden;
  height: clamp(240px, 28vw, 340px);
  border: 1px solid var(--line);
  background: var(--cream-2);
}
.arrival-grid .arrival-photo img,
.arrival-grid .arrival-photo picture { width: 100%; height: 100%; display: block; }
.arrival-grid .arrival-photo img { object-fit: cover; }
.arrival-grid h3 { font-size: 20px; margin-bottom: 10px; }
.arrival-grid p { font-size: 15px; color: var(--ink-soft); margin-bottom: 12px; }
.arrival-grid .arrival-points { list-style: none; padding: 0; margin: 16px 0 0; }
.arrival-grid .arrival-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14.5px;
}
.arrival-grid .arrival-points svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--terra);
}
@media (max-width: 800px) {
  .arrival-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Map card capped height (location) */
.location-grid .map-embed,
.location-grid .map-card {
  height: clamp(260px, 32vw, 380px);
}

/* Directions cards with icons (Location) */
.dir-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.dir-card .dir-icon {
  width: 22px;
  height: 22px;
  color: var(--terra);
  margin-bottom: 10px;
  display: block;
}
.dir-card h3 { font-size: 17px; margin-bottom: 8px; }
.dir-card p { font-size: 14.5px; margin: 0; color: var(--ink-soft); }

/* Process steps numbered with circle (Virtual Offices "How It Works") */
.process-step .pnum-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--terra);
  color: var(--cream);
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
}

/* Footer link helper for inline icons */
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--terra-dark);
  font-weight: 500;
  text-decoration: none;
}
.inline-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.inline-link svg { width: 14px; height: 14px; }

/* Day-timeline visual connectors (Office Solutions) */
.day-timeline { position: relative; }
.day-step { position: relative; }
.day-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 17px;
  right: -28px;
  width: 24px;
  height: 1px;
  background: var(--terra);
  opacity: .5;
  z-index: 0;
}
@media (max-width: 800px) {
  .day-step:not(:last-child)::after { display: none; }
}

/* Supporting phone link below CTA buttons (per brief: phone as supporting contact) */
.cta-phone {
  margin: 22px 0 0;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}
.cta-phone a {
  color: var(--navy);
  font-weight: 700;
  font-size: 19px;
  text-decoration: none;
  margin-left: 6px;
  letter-spacing: -0.01em;
}
.cta-phone a:hover { color: var(--navy-dark); text-decoration: underline; text-underline-offset: 4px; }
.cta-phone.on-dark { color: rgba(250,247,241,.72); }
.cta-phone.on-dark a { color: var(--cream); }
@media (max-width: 720px) {
  .cta-phone { font-size: 15px; }
  .cta-phone a { font-size: 17.5px; }
}

/* ---------------- MOBILE POLISH PASS ---------------- */
@media (max-width: 720px) {
  :root {
    /* Tighter section rhythm on mobile so the page doesn't feel stretched */
    --pad-section: clamp(52px, 14vw, 80px);
  }
  .section-head { margin-bottom: clamp(28px, 6vw, 40px); }
  .section-head h2 { margin-bottom: 10px; }
  /* Card padding on mobile */
  .option-card .option-body { padding: 22px 22px 26px; }
  .solution-card { padding: 22px 22px; }
  /* Hero CTA buttons stack with consistent width */
  .hero-ctas { gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* Ensure pricing flex wraps cleanly on tight cards */
  .price-anchor { gap: 4px 8px; }
  /* Drive-times: more breathing room between place and minutes */
  .drive-times li { padding: 14px 0; gap: 16px; }
}

/* Equal-height card enforcement */
.solutions-grid { align-items: stretch; }
.solution-card,
.dir-card { height: 100%; display: flex; flex-direction: column; }
.solution-card p,
.dir-card p { flex: 1 1 auto; }

/* Other-solutions section: clearly secondary */
.section.other-solutions { padding: clamp(56px, 6vw, 88px) 0; }
.section.other-solutions .section-head h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
}
.section.other-solutions .solutions-grid { gap: 16px; }
.section.other-solutions .solution-card { padding: 24px 22px; background: var(--cream); }
.section.other-solutions .solution-card h3 { font-size: 16.5px; }
.section.other-solutions .solution-card p { font-size: 14px; line-height: 1.55; }
.section.other-solutions .solution-card .solution-icon { width: 22px; height: 22px; margin-bottom: 12px; }

/* Page-hero CTA stack with supporting phone (already used by .hero-ctas) */
.page-hero .cta-phone { margin-top: 14px; }

/* ============================================================
   GOOGLE REVIEWS SECTION (homepage)
   ============================================================ */
.reviews-section { background: var(--cream); }
.reviews-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-summary .rs-stars {
  color: var(--terra);
  font-size: 18px;
  letter-spacing: 2px;
}
.reviews-summary .rs-rating {
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  font-family: "Inter", sans-serif;
}
.reviews-summary .rs-meta { color: var(--muted); font-size: 14px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
  /* Reserve space so async-loaded reviews don't cause layout shift */
  min-height: 280px;
}
.reviews-grid:empty { background: transparent; }
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; min-height: 720px; }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(26,26,26,.14);
  border-color: var(--cream-3);
}
.review-card .rv-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .rv-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-2);
  flex: 0 0 40px;
  border: 1px solid var(--line);
}
.review-card .rv-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.review-card .rv-meta { min-width: 0; }
.review-card .rv-author {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card .rv-time {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.review-card .rv-stars {
  margin: 0;
  color: var(--terra);
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card .rv-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.reviews-cta {
  text-align: center;
  margin: 28px 0 0;
}
.reviews-cta .inline-link { font-size: 14.5px; }

/* ============================================================
   SUBTLE MOTION
   Section reveal on scroll + photo hover lift.
   All motion respects prefers-reduced-motion.
   Sections currently in the viewport on page load are NOT given
   .reveal by the JS, so no flash on first paint.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 420ms ease-out, transform 420ms ease-out;
    will-change: opacity, transform;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* Photo hover lift - applied to gallery + amenity photo tiles */
  .gallery .photo-placeholder.light,
  .amenity-photos .photo-tile,
  .photos-featured > div {
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  }
  .gallery .photo-placeholder.light:hover,
  .amenity-photos .photo-tile:hover,
  .photos-featured > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -22px rgba(26, 26, 26, 0.20);
  }

  /* Subtle image zoom on gallery thumbnails for refined polish */
  .gallery .photo-placeholder.light img,
  .amenity-photos .photo-tile img {
    transition: transform 360ms ease;
  }
  .gallery .photo-placeholder.light:hover img,
  .amenity-photos .photo-tile:hover img {
    transform: scale(1.025);
  }

  /* Card stagger: when a parent section reveals, its grid children fade
     in with a small per-child delay for a polished cascade. Hidden state
     is only applied while the parent has .reveal (set by JS for offscreen
     sections), so above-the-fold content stays normal. */
  .reveal .options-grid > *,
  .reveal .solutions-grid > *,
  .reveal .amenities-row > *,
  .reveal .amenity-photos > *,
  .reveal .feature-grid > *,
  .reveal .info-grid > *,
  .reveal .reviews-grid > *,
  .reveal .gallery > *,
  .reveal .included-icons > * {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 460ms ease-out, transform 460ms ease-out;
  }
  .reveal.in .options-grid > *,
  .reveal.in .solutions-grid > *,
  .reveal.in .amenities-row > *,
  .reveal.in .amenity-photos > *,
  .reveal.in .feature-grid > *,
  .reveal.in .info-grid > *,
  .reveal.in .reviews-grid > *,
  .reveal.in .gallery > *,
  .reveal.in .included-icons > * {
    opacity: 1;
    transform: none;
  }
  .reveal.in .options-grid > *:nth-child(2),
  .reveal.in .solutions-grid > *:nth-child(2),
  .reveal.in .amenities-row > *:nth-child(2),
  .reveal.in .amenity-photos > *:nth-child(2),
  .reveal.in .feature-grid > *:nth-child(2),
  .reveal.in .info-grid > *:nth-child(2),
  .reveal.in .reviews-grid > *:nth-child(2),
  .reveal.in .gallery > *:nth-child(2),
  .reveal.in .included-icons > *:nth-child(2) { transition-delay: 70ms; }
  .reveal.in .options-grid > *:nth-child(3),
  .reveal.in .solutions-grid > *:nth-child(3),
  .reveal.in .amenities-row > *:nth-child(3),
  .reveal.in .amenity-photos > *:nth-child(3),
  .reveal.in .feature-grid > *:nth-child(3),
  .reveal.in .info-grid > *:nth-child(3),
  .reveal.in .reviews-grid > *:nth-child(3),
  .reveal.in .gallery > *:nth-child(3),
  .reveal.in .included-icons > *:nth-child(3) { transition-delay: 140ms; }
  .reveal.in .options-grid > *:nth-child(4),
  .reveal.in .solutions-grid > *:nth-child(4),
  .reveal.in .amenities-row > *:nth-child(4),
  .reveal.in .amenity-photos > *:nth-child(4),
  .reveal.in .feature-grid > *:nth-child(4),
  .reveal.in .info-grid > *:nth-child(4),
  .reveal.in .reviews-grid > *:nth-child(4),
  .reveal.in .gallery > *:nth-child(4),
  .reveal.in .included-icons > *:nth-child(4) { transition-delay: 210ms; }
  .reveal.in .options-grid > *:nth-child(5),
  .reveal.in .solutions-grid > *:nth-child(5),
  .reveal.in .amenities-row > *:nth-child(5),
  .reveal.in .feature-grid > *:nth-child(5),
  .reveal.in .info-grid > *:nth-child(5),
  .reveal.in .reviews-grid > *:nth-child(5),
  .reveal.in .gallery > *:nth-child(5),
  .reveal.in .included-icons > *:nth-child(5) { transition-delay: 280ms; }
  .reveal.in .options-grid > *:nth-child(n+6),
  .reveal.in .gallery > *:nth-child(n+6),
  .reveal.in .feature-grid > *:nth-child(n+6),
  .reveal.in .included-icons > *:nth-child(n+6) { transition-delay: 350ms; }
}

/* Ensure anchored scrolls don't hide behind sticky header */
html { scroll-behavior: smooth; }
[id="availability"],
[id="reviews"],
[id="faq"],
[id="conference-room"],
[id="coworking"],
[id="main"] {
  scroll-margin-top: 90px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ============================================================
   FAQ ACCORDION (homepage)
   Uses native <details>/<summary> for accessibility.
   ============================================================ */
.faq-list {
  max-width: 880px;
  margin: 40px auto 0;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 22px 0;
  font-family: "Lora", serif;
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra-dark); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-item summary::after {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AA874F' stroke-width='2' stroke-linecap='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s ease;
}
.faq-item[open] summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23AA874F' stroke-width='2' stroke-linecap='round'><line x1='5' y1='12' x2='19' y2='12'/></svg>");
}
.faq-item p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 740px;
}
/* Smooth fade-in for FAQ content when item opens */
@media (prefers-reduced-motion: no-preference) {
  .faq-item p {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 240ms ease-out, transform 240ms ease-out;
  }
  .faq-item[open] p {
    opacity: 1;
    transform: none;
    transition-delay: 60ms;
  }
}
@media (max-width: 600px) {
  .faq-item summary { padding: 18px 0; font-size: 16.5px; }
  .faq-item p { font-size: 14.5px; margin-bottom: 20px; }
}


