/* BORA Coworking. Site Styles
   Cormorant Garamond (display) + Lato Light (body)
   Palette: ink #1c454f, blush #eededc, sand #e6dac9, gold #dfb443, off-white #fdfbf7
*/

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

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c454f;
  --ink-deep: #0f2226;
  --ink-muted: #6b8488;
  --blush: #eededc;
  --sand: #e6dac9;
  --gold: #dfb443;
  --off-white: #fdfbf7;
  --warm-white: #f8f6f0;
  --line: rgba(28, 69, 79, 0.12);
  --shadow-card: 0 1px 3px rgba(28, 69, 79, 0.08);
  --shadow-lift: 0 8px 32px rgba(28, 69, 79, 0.12);
  --ease: cubic-bezier(0.25, 0, 0.1, 1);

  --display: "Cormorant Garamond", "Fraunces", "Times New Roman", serif;
  --body: "Lato", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--ink-deep);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ── Type scale ────────────────────────────────────────────── */

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 300; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink-deep); }
h1 { font-size: clamp(48px, 6.5vw, 84px); }
h2 { font-size: clamp(36px, 4vw, 56px); }
h3 { font-size: clamp(24px, 2.4vw, 32px); }
h4 { font-size: 22px; line-height: 1.2; }

p { font-family: var(--body); font-size: 17px; line-height: 1.65; color: var(--ink-deep); }
.lede { font-size: 19px; color: var(--ink-muted); }

/* ── Container ─────────────────────────────────────────────── */

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.container-reading { max-width: 680px; margin: 0 auto; padding: 0 32px; }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  padding: 13px 26px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 200ms var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--warm-white); }
.btn-primary:hover { background: #245762; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(28,69,79,0.22); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--warm-white); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--gold); }
.btn-on-dark { background: transparent; color: var(--warm-white); border-color: rgba(248,246,240,0.35); }
.btn-on-dark:hover { background: var(--warm-white); color: var(--ink); border-color: var(--warm-white); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 180ms var(--ease);
}
.text-link:hover { color: var(--gold); }

/* ── Nav ───────────────────────────────────────────────────── */

.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: 32px; object-fit: contain; }
.nav-logo span { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links > div, .nav-links > a {
  font-size: 14px; font-weight: 500; color: var(--ink); cursor: pointer;
  position: relative; padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}
.nav-links > a:hover, .nav-links > div:hover { color: var(--ink); border-bottom-color: var(--gold); }
.nav-links a.is-active, .nav-links div.is-active { border-bottom-color: var(--gold); }
.nav-caret { font-size: 9px; margin-left: 4px; opacity: 0.6; }

.nav-dropdown {
  position: relative;
}
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--off-white); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; min-width: 280px; box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 180ms var(--ease), visibility 180ms var(--ease), transform 180ms var(--ease);
  transform: translateX(-50%) translateY(-4px);
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: block; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; color: var(--ink); transition: background 140ms var(--ease);
}
.nav-dropdown-panel a:hover { background: var(--blush); }
.nav-dropdown-panel a small { display: block; font-size: 12px; color: var(--ink-muted); margin-top: 2px; font-weight: 400; }

/* ── Mega menu (Services) ──────────────────────────────────── */
.site-nav { position: sticky; }
.nav-mega { position: static; }
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  border-bottom: 1.5px solid transparent; padding: 6px 0;
  transition: border-color 180ms var(--ease);
}
.nav-mega-trigger.is-active { border-bottom-color: var(--gold); }
.nav-mega .nav-caret { color: var(--gold); font-size: 8px; }
.nav-mega-panel {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--warm-white); border-top: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(15,34,38,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}
.site-nav:hover .nav-mega-panel,
.site-nav:focus-within .nav-mega-panel,
.nav-mega-panel:hover {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav-mega-grid {
  max-width: 1280px; margin: 0 auto; padding: 56px 32px 64px;
  display: grid; grid-template-columns: 1.1fr 1.1fr 1.4fr; gap: 56px;
}
.nav-mega-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.nav-mega-item {
  display: block; padding: 14px 0; border-bottom: 1px solid transparent;
  transition: padding 180ms var(--ease);
}
.nav-mega-item h4 {
  font-family: var(--display); font-size: 26px; font-weight: 400; line-height: 1.1;
  color: var(--ink-deep); margin-bottom: 6px; letter-spacing: -0.01em;
}
.nav-mega-item p { font-size: 14px; color: var(--ink-muted); line-height: 1.4; }
.nav-mega-item:hover h4 { color: var(--gold); }
.nav-mega-item:hover { padding-left: 6px; }

.nav-mega-promo {
  position: relative; border-radius: 14px; overflow: hidden;
  display: block; min-height: 360px; color: var(--warm-white);
}
.nav-mega-promo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
}
.nav-mega-promo-body { position: relative; padding: 36px; height: 100%; display: flex; flex-direction: column; }
.nav-mega-promo-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.nav-mega-promo h3 {
  font-family: var(--display); font-size: 44px; font-weight: 300; line-height: 1.05;
  color: var(--warm-white); margin-bottom: 16px;
}
.nav-mega-promo h3 em { font-style: italic; color: var(--gold); }
.nav-mega-promo p { color: rgba(248,246,240,0.85); font-size: 15px; max-width: 320px; }
.nav-mega-promo-cta {
  margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); padding-top: 20px;
}

.nav-lang {
  font-size: 12px; color: var(--ink-muted); letter-spacing: 0.04em;
  border-left: 1px solid var(--line); padding-left: 24px;
}
.nav-lang strong { color: var(--ink); font-weight: 600; }

.nav-cta { padding: 10px 20px !important; font-size: 13px; }

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

.site-footer { background: var(--ink-deep); color: var(--warm-white); padding: 64px 0 24px; margin-top: 96px; }
.site-footer .container { padding: 0 32px; }
.footer-newsletter {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(248,246,240,0.08);
  align-items: center;
}
.footer-newsletter h3 { color: var(--warm-white); font-size: 32px; max-width: 420px; }
.footer-newsletter p { color: rgba(248,246,240,0.7); font-size: 15px; margin-top: 10px; max-width: 420px; }
.footer-newsletter strong { color: var(--gold); font-weight: 500; }
.footer-news-form { display: flex; gap: 8px; }
.footer-news-form input {
  flex: 1; padding: 13px 16px; font-family: var(--body); font-size: 14px;
  background: rgba(248,246,240,0.06); border: 1px solid rgba(248,246,240,0.2);
  color: var(--warm-white); border-radius: 8px; outline: none;
}
.footer-news-form input::placeholder { color: rgba(248,246,240,0.4); }
.footer-news-form input:focus { border-color: var(--gold); }
.footer-news-form button {
  padding: 13px 20px; background: var(--warm-white); color: var(--ink-deep);
  border: none; border-radius: 8px; font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background 180ms var(--ease);
}
.footer-news-form button:hover { background: var(--gold); }

.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px;
  padding: 48px 0;
}
.footer-cols .footer-cols-label {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.footer-cols a {
  display: block; font-size: 14px; color: rgba(248,246,240,0.75);
  padding: 6px 0; transition: color 160ms var(--ease);
}
.footer-cols a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(248,246,240,0.08);
  padding-top: 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.footer-meta {
  font-size: 13px; color: rgba(248,246,240,0.6); line-height: 1.8;
}
.footer-meta span { margin-right: 18px; white-space: nowrap; }
.footer-meta a { color: inherit; }
.footer-meta a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 12px; align-items: center; }
.b-corp-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gold);
  font-family: var(--display); font-size: 13px; font-weight: 500; color: var(--gold);
  font-style: italic;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(248,246,240,0.2);
  color: rgba(248,246,240,0.75);
  transition: all 180ms var(--ease);
}
.footer-socials a:hover { color: var(--ink-deep); background: var(--gold); border-color: var(--gold); }

/* ── Reusable section frames ───────────────────────────────── */

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-blush { background: var(--blush); }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: var(--warm-white); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--warm-white); }
.section-ink p { color: rgba(248,246,240,0.85); }

/* ── Spaces grid ───────────────────────────────────────────── */

.spaces-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.space-card {
  display: block; background: var(--warm-white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  transition: all 240ms var(--ease);
  text-decoration: none; color: inherit;
}
.space-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: rgba(28,69,79,0.2); }
.space-card-image {
  aspect-ratio: 4/3; background: var(--blush); position: relative; overflow: hidden;
}
.space-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.space-card:hover .space-card-image img { transform: scale(1.04); }
.space-card-body { padding: 24px 24px 28px; }
.space-card h3 { font-size: 28px; margin-bottom: 6px; }
.space-card-price { font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.04em; margin-bottom: 12px; text-transform: uppercase; }
.space-card-sub { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }
.space-card-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--ink); }

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

.hero {
  padding: 96px 0 96px; position: relative;
  background: var(--ink); color: var(--warm-white);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background: radial-gradient(circle at 70% 50%, var(--gold) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero .eyebrow { color: rgba(248,246,240,0.7); }
.hero h1 { color: var(--warm-white); font-family: var(--display); font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { color: rgba(248,246,240,0.82); }
.hero .btn-secondary { background: transparent; color: rgba(248,246,240,0.9); border: 1.5px solid rgba(248,246,240,0.3); }
.hero .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.hero [style*="border-top"] { border-top-color: rgba(248,246,240,0.14) !important; }
.hero [style*="--ink-deep"], .hero .stat-num { color: var(--warm-white); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin: 18px 0 24px; }
.hero p { color: var(--ink-muted); font-size: 19px; max-width: 480px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-image { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(15,34,38,0.25); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Pricing block on sales pages ──────────────────────────── */

.price-card {
  background: var(--warm-white); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow-card);
}
.price-card .price-amount {
  font-family: var(--display); font-size: 56px; line-height: 1; color: var(--ink-deep);
  display: flex; align-items: baseline; gap: 6px;
}
.price-card .price-suffix { font-size: 17px; color: var(--ink-muted); font-family: var(--body); }
.price-card ul { list-style: none; margin: 28px 0; }
.price-card li {
  font-size: 15px; padding: 9px 0; padding-left: 24px; position: relative;
  border-bottom: 1px solid var(--line);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 12px; height: 6px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── Feature row ───────────────────────────────────────────── */

.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-item h3 { font-family: var(--body); font-size: 15px; font-weight: 600; color: var(--ink-deep); margin-bottom: 8px; letter-spacing: 0; line-height: 1.3; }
.feature-item p { font-size: 15px; color: var(--ink-muted); line-height: 1.6; }
.feature-item .feature-num {
  font-family: var(--display); font-size: 14px; font-style: italic; color: var(--gold); margin-bottom: 10px;
}

/* ── Journal grid ──────────────────────────────────────────── */

.journal-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.journal-chip {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; color: var(--ink); background: transparent; cursor: pointer;
  transition: all 180ms var(--ease);
}
.journal-chip:hover { border-color: var(--ink); }
.journal-chip.is-active { background: var(--ink); color: var(--warm-white); border-color: var(--ink); }

.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
.journal-card { display: block; color: inherit; transition: transform 220ms var(--ease); }
.journal-card:hover { transform: translateY(-3px); }
.journal-card-img {
  aspect-ratio: 5/4; border-radius: 12px; overflow: hidden;
  background: var(--blush); margin-bottom: 18px;
}
.journal-card-img img { width: 100%; height: 100%; object-fit: cover; }
.journal-card-meta {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.journal-card h3 { font-size: 24px; line-height: 1.2; margin-bottom: 8px; }
.journal-card p { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }
.journal-card .reading-time {
  display: block; font-size: 12px; color: var(--ink-muted); margin-top: 12px; letter-spacing: 0.04em;
}

/* ── Article body ──────────────────────────────────────────── */

.article-hero {
  padding: 56px 0 32px;
}
.article-hero .container-reading { padding-top: 0; }
.article-cat {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.article-hero h1 { font-size: clamp(40px, 5vw, 60px); margin-bottom: 20px; line-height: 1.08; }
.article-hero .lede { font-size: 21px; color: var(--ink-muted); line-height: 1.5; }
.article-hero-meta { display: flex; gap: 24px; font-size: 13px; color: var(--ink-muted); margin-top: 24px; }

.article-feat-img {
  margin: 32px auto 56px; max-width: 1080px; padding: 0 32px;
}
.article-feat-img > div {
  aspect-ratio: 16/8; background: var(--blush); border-radius: 16px; overflow: hidden;
}
.article-feat-img img { width: 100%; height: 100%; object-fit: cover; }

.article-body { font-size: 18px; line-height: 1.75; color: var(--ink-deep); }
.article-body > * + * { margin-top: 1.4em; }
.article-body p:first-of-type::first-letter {
  font-family: var(--display); font-size: 76px; line-height: 0.85; font-weight: 400;
  float: left; padding: 6px 12px 0 0; color: var(--gold);
}
.article-body h2 {
  font-family: var(--display); font-size: 36px; font-weight: 300; line-height: 1.15;
  margin-top: 2em !important; color: var(--ink-deep);
}
.article-body h3 {
  font-family: var(--body); font-size: 18px; font-weight: 600; color: var(--ink-deep);
  margin-top: 1.6em !important;
}
.article-body p { font-size: 18px; line-height: 1.75; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { font-size: 18px; line-height: 1.7; margin: 8px 0; }
.article-body strong { color: var(--ink-deep); font-weight: 600; }
.article-body a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.article-body a:hover { color: var(--gold); }
.article-body blockquote {
  font-family: var(--display); font-size: 28px; line-height: 1.35; font-style: italic;
  color: var(--ink); border-left: 3px solid var(--gold); padding: 8px 0 8px 28px;
  margin: 2em 0;
}

.takeaways {
  background: var(--blush); border-radius: 16px; padding: 28px 32px;
  margin: 32px 0;
}
.takeaways h3 {
  font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
  line-height: 1.3;
}
.takeaways ul { padding-left: 18px; margin: 0; }
.takeaways li { font-size: 16px; line-height: 1.6; margin: 6px 0; }
.takeaways li::marker { color: var(--gold); }

.faq-block { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 24px; }
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 16px; color: var(--ink-muted); }

.article-cta {
  margin: 56px 0; padding: 40px; background: var(--ink); color: var(--warm-white);
  border-radius: 16px;
}
.article-cta h3 { color: var(--warm-white); font-size: 28px; margin-bottom: 8px; }
.article-cta p { color: rgba(248,246,240,0.8); margin-bottom: 20px; font-size: 16px; }

.related { margin-top: 96px; }
.related h2 { font-size: 32px; margin-bottom: 32px; }

/* ── Testimonials ──────────────────────────────────────────── */

.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card {
  background: var(--warm-white); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px; display: flex; flex-direction: column; gap: 20px;
}
.tst-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.tst-quote { font-family: var(--display); font-size: 22px; line-height: 1.4; font-weight: 300; flex: 1; }
.tst-author { display: flex; align-items: center; gap: 12px; }
.tst-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 16px; color: var(--ink); font-weight: 500;
}
.tst-name { font-size: 14px; font-weight: 500; }
.tst-role { font-size: 13px; color: var(--ink-muted); }

/* ── HubSpot form override ─────────────────────────────────── */

.hs-form-wrap {
  background: var(--warm-white); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-card); border: 1px solid var(--line); max-width: 560px; margin: 0 auto;
}
.hs-form-wrap form { font-family: var(--body) !important; }
.hs-form-wrap label { color: var(--ink-deep) !important; font-size: 13px !important; font-weight: 500 !important; font-family: var(--body) !important; }
.hs-form-wrap input[type="text"],
.hs-form-wrap input[type="email"],
.hs-form-wrap input[type="tel"],
.hs-form-wrap textarea,
.hs-form-wrap select {
  width: 100% !important; padding: 12px 14px !important; font-size: 15px !important;
  font-family: var(--body) !important;
  border: 1.5px solid var(--sand) !important; border-radius: 8px !important;
  background: var(--off-white) !important; color: var(--ink-deep) !important;
  outline: none !important; transition: border-color 180ms var(--ease);
}
.hs-form-wrap input:focus, .hs-form-wrap textarea:focus, .hs-form-wrap select:focus { border-color: var(--ink) !important; }
.hs-form-wrap .hs-form-field { margin-bottom: 16px !important; }
.hs-form-wrap .hs-button {
  background: var(--ink) !important; color: var(--warm-white) !important;
  font-family: var(--body) !important; font-size: 14px !important; font-weight: 500 !important;
  border: none !important; border-radius: 10px !important; padding: 14px 28px !important;
  cursor: pointer !important; transition: background 180ms var(--ease) !important;
  letter-spacing: 0.02em !important;
}
.hs-form-wrap .hs-button:hover { background: #245762 !important; }
.hs-form-wrap .hs-error-msgs label { color: #b85a3e !important; font-size: 12px !important; font-weight: 400 !important; }

/* ── Utility ───────────────────────────────────────────────── */

.muted { color: var(--ink-muted); }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }
.divider { height: 1px; background: var(--line); margin: 64px 0; }

/* ── Scroll reveal (executes the design spec) ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 350ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ── Space card arrow nudge on hover ───────────────────────── */
.space-card-arrow { transition: transform 220ms var(--ease); }
.space-card:hover .space-card-arrow { transform: translateX(4px); }

/* ── Room cards (side-by-side meeting rooms) ───────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.room-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.room-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.room-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--blush);
}
.room-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.room-card:hover .room-card-image img { transform: scale(1.03); }
.room-card-body {
  padding: 36px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room-card-body .eyebrow { margin-bottom: 10px; }
.room-card-body h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.room-card .price-amount {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--ink-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.room-card .price-suffix {
  font-size: 15px;
  color: var(--ink-muted);
  font-family: var(--body);
}
.room-card-tiers {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-deep);
  margin-bottom: 8px;
}
.room-card-tiers span {
  font-family: var(--body);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.room-card-members {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.room-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-deep);
  margin-bottom: 20px;
}
.room-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.room-card li {
  font-size: 14px;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.room-card li:last-child { border-bottom: none; }
.room-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 11px; height: 5.5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.room-card .btn { margin-top: auto; }

@media (max-width: 880px) {
  .rooms-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── Comparison table (clickable rows) ─────────────────────── */
.compare-table tbody tr {
  cursor: pointer;
  transition: background-color 180ms var(--ease);
}
.compare-table tbody tr:hover { background-color: rgba(28,69,79,0.04); }
.compare-table tbody tr:hover .compare-cta { color: var(--gold); }
.compare-table tbody tr[style*="rgba(223,180,67"]:hover { background-color: rgba(223,180,67,0.12) !important; }
.compare-cta {
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 180ms var(--ease);
  white-space: nowrap;
}

/* ── Team grid (about page) ────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 880px;
  margin: 48px auto 0;
}
.team-card {
  text-align: center;
  transition: transform 240ms var(--ease);
}
.team-card:hover { transform: translateY(-3px); }
.team-portrait {
  aspect-ratio: 3/4;
  background: var(--blush);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.team-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 600ms var(--ease);
}
.team-card:hover .team-portrait img { transform: scale(1.03); }
.team-portrait-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 96px; font-weight: 300;
  color: var(--ink-deep); opacity: 0.28; letter-spacing: -0.02em;
}
.team-card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-deep);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; gap: 28px; max-width: 360px; }
}

/* ── Editorial pricing list ────────────────────────────────── */
.price-section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin: 0 0 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap; gap: 24px;
}
.price-section-head h2 { margin-top: 8px; }
.price-section-head .lede { max-width: 360px; }

.price-list { list-style: none; padding: 0; margin: 0; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 220ms var(--ease);
}
.price-row:hover { padding-left: 8px; }
.price-row-info h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink-deep);
}
.price-row-info p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}
.price-row-price {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink-deep);
  white-space: nowrap;
  text-align: right;
}
.price-row-price span {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.price-row > a.text-link { white-space: nowrap; }

@media (max-width: 720px) {
  .price-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info info"
      "price link";
    gap: 14px 16px;
    align-items: end;
  }
  .price-row-info { grid-area: info; }
  .price-row-price { grid-area: price; text-align: left; font-size: 24px; }
  .price-row > a.text-link { grid-area: link; }
}

/* ── Mobile menu (hamburger + overlay) ─────────────────────── */

.nav-hamburger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  padding: 0; margin-left: 8px;
  background: transparent; border: 0; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: var(--ink);
  transition: transform 240ms var(--ease), opacity 180ms var(--ease);
}
.nav-hamburger span:nth-child(1) { top: 17px; }
.nav-hamburger span:nth-child(2) { top: 25px; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--warm-white);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease), visibility 240ms;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.mobile-menu-inner {
  max-width: 600px; margin: 0 auto;
  padding: 20px 28px 56px;
  display: flex; flex-direction: column; gap: 28px;
  min-height: 100%;
}
.mobile-menu-close {
  align-self: flex-end;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  font-size: 32px; line-height: 1; font-weight: 300;
  color: var(--ink); cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-section {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.mobile-menu-section:first-of-type { border-top: 0; padding-top: 0; }
.mobile-menu-eyebrow {
  font-family: var(--body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.mobile-menu-section a {
  font-family: var(--display);
  font-size: 26px; font-weight: 400; line-height: 1.2;
  color: var(--ink-deep);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  transition: color 160ms var(--ease);
}
.mobile-menu-section a:last-child { border-bottom: 0; }
.mobile-menu-section a:active,
.mobile-menu-section a:hover { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 12px;
  width: 100%;
  padding: 16px 24px !important;
  font-size: 15px !important;
  text-align: center;
}

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

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 24px; }
  .tst-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 64px 0; }
}

@media (min-width: 961px) {
  .mobile-menu { display: none; }
}


/* ── Brochure download card ────────────────────────────────── */
.section-cream { background: var(--warm-white); }
.brochure-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 56px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  box-shadow: 0 1px 3px rgba(28,69,79,0.06);
}
.brochure-card h2 { font-size: clamp(32px, 3.4vw, 44px); }
.brochure-form { font-family: var(--body); }
.brochure-form .hs-form-field { margin-bottom: 18px; }
.brochure-form label,
.brochure-form .hs-form-field > label {
  display: block;
  font-family: var(--body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 8px;
}
.brochure-form input[type="text"],
.brochure-form input[type="email"],
.brochure-form input[type="tel"],
.brochure-form select,
.brochure-form textarea,
.brochure-form .hs-input {
  width: 100% !important; max-width: 100% !important; box-sizing: border-box;
  font-family: var(--body); font-size: 16px; color: var(--ink-deep);
  background: var(--off-white);
  border: 1px solid rgba(28,69,79,0.15); border-radius: 10px;
  padding: 14px 16px; outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.brochure-form input:focus,
.brochure-form select:focus,
.brochure-form textarea:focus { border-color: var(--gold); background: #fff; }
.brochure-form .hs-button,
.brochure-form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--body); font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  background: var(--ink); color: var(--warm-white);
  border: 1.5px solid var(--ink); border-radius: 10px;
  padding: 14px 28px; cursor: pointer;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
  margin-top: 8px;
}
.brochure-form .hs-button:hover,
.brochure-form input[type="submit"]:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.brochure-form .hs-error-msg, .brochure-form .hs-error-msgs label {
  font-size: 12px; color: #b34a3b; text-transform: none; letter-spacing: 0;
  font-weight: 400; margin-top: 6px;
}
@media (max-width: 880px) {
  .brochure-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
}

/* ── Spaces section: refine pill style for readability ─────── */
.space-card-price {
  display: inline-block;
  background: rgba(28,69,79,0.06);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── Tour page whitespace ──────────────────────────────────── */
[data-page="tour"] .page-hero,
[data-page="tour"] .hero { padding: 120px 0 96px; }
[data-page="tour"] main > section,
[data-page="tour"] .section { padding: 96px 0; }
[data-page="tour"] .container-narrow { max-width: 720px; }
[data-page="tour"] h1 { margin-bottom: 24px; }
[data-page="tour"] .lede { font-size: 21px; line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto; }
[data-page="tour"] .form-row { padding: 18px 0; }
[data-page="tour"] form { padding: 56px; }

/* ── Footer trim ───────────────────────────────────────────── */
.site-footer { margin-top: 0; }
