/* ============================================================
   COWORK UP — Production CSS
   ============================================================ */

:root {
  --c-bg: #FAFAF8;
  --c-paper: #FFFFFF;
  --c-ink: #0E0E0E;
  --c-ink-soft: #5A5A5A;
  --c-muted: #8A8A85;
  --c-line: #0E0E0E;
  --c-line-soft: #ECEAE3;
  --c-accent: #FFD600;
  --c-accent-ink: #0E0E0E;
  --c-accent-soft: #FFF6C2;

  --font-display: "Geist", "Inter", system-ui, sans-serif;
  --font-body: "Geist", "Inter", system-ui, sans-serif;
  --font-italic: "Instrument Serif", "Times New Roman", serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --border-w: 1px;
  --border: var(--border-w) solid var(--c-line-soft);
  --border-soft: 1px solid var(--c-line-soft);
  --border-strong: 1px solid var(--c-line);

  --container-pad: clamp(20px, 4vw, 64px);
  --max-w: 1480px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 128px) 0;
}
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--flush { padding: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 72px);
  max-width: 820px;
}
.section-head--left {
  align-items: flex-start;
  text-align: left;
  margin: 0 0 clamp(40px, 5vw, 64px);
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--c-accent-soft);
  border: 1px solid #F4E48A;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink);
  white-space: nowrap;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-ink);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
  color: var(--c-ink);
}
.section-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover { background: var(--c-ink); color: var(--c-paper); }
.btn:hover .btn-arrow { transform: translateX(3px); }
.btn-arrow { transition: transform 200ms ease; display: inline-block; }

.btn--primary { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }
.btn--primary:hover { background: var(--c-accent); color: var(--c-ink); border-color: var(--c-accent); }

.btn--accent { background: var(--c-accent); color: var(--c-ink); border-color: var(--c-accent); }
.btn--accent:hover { background: var(--c-ink); color: var(--c-accent); border-color: var(--c-ink); }

.btn--ghost { background: transparent; border-color: var(--c-line-soft); }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }

.btn--lg { padding: 15px 26px; font-size: 15px; }
.btn--xl { padding: 18px 30px; font-size: 16px; }
.btn--block { width: 100%; justify-content: space-between; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: var(--border);
}
.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  gap: 24px;
}
.brand {
  display: flex; align-items: center;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: auto;
}
.nav-links { display: flex; gap: 6px; justify-self: center; }
.nav-links a {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink-soft);
  border-radius: var(--r-pill);
  transition: background 150ms ease, color 150ms ease;
}
.nav-links a:hover { color: var(--c-ink); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--c-ink); background: var(--c-accent-soft); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-ink-soft);
  border-radius: var(--r-pill);
  transition: background 150ms ease, color 150ms ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-dropdown-trigger:hover { color: var(--c-ink); background: rgba(0,0,0,0.04); }
.nav-dropdown-trigger.active { color: var(--c-ink); background: var(--c-accent-soft); }
.nav-chevron { font-size: 10px; margin-left: 2px; }
.nav-dropdown-trigger { position: relative; }
.nav-dropdown-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 16px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  flex-direction: column;
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-radius: var(--r-sm);
  transition: background 150ms ease, color 150ms ease;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--c-ink); background: rgba(0,0,0,0.04); }
.nav-dropdown-menu a.active { color: var(--c-ink); background: var(--c-accent-soft); }
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.mobile-menu-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 16px 0 4px;
}
.nav-cta { justify-self: end; display: flex; gap: 8px; align-items: center; }
.nav-mono {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--c-muted);
}
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-row { grid-template-columns: 1fr auto; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--c-accent);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: -0.015em;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 32px;
  position: relative;
}
.marquee-item::after {
  content: "\25CF";
  font-size: 7px;
  margin-left: 32px;
  vertical-align: middle;
  color: var(--c-ink);
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Hero — split variant (centered, floating images)
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.hero-rings {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 96vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}
.hero-rings::before, .hero-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-line-soft);
  border-radius: 50%;
}
.hero-rings::after { inset: 18%; }
.hero-rings span {
  position: absolute; inset: 36%;
  border: 1px solid var(--c-line-soft);
  border-radius: 50%;
  display: block;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: clamp(560px, 70vh, 720px);
  display: grid;
  place-items: center;
}
.hero-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
  color: var(--c-ink);
}
.hero-title em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin: 0;
  max-width: 52ch;
  text-wrap: pretty;
}

.hero-feats {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink);
}
.hero-feats .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
  display: inline-block;
  margin-right: 10px;
  vertical-align: 1px;
}
.hero-feats span:first-child .dot { display: none; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

.deco-card {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.28);
  z-index: 2;
}
.deco-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.deco-card--tl {
  top: 6%; left: 4%;
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 4 / 5;
  transform: rotate(-4deg);
}
.deco-card--tr {
  top: 4%; right: 4%;
  width: clamp(150px, 17vw, 230px);
  aspect-ratio: 3 / 4;
  transform: rotate(3deg);
}
.deco-card--bl {
  bottom: 4%; left: 8%;
  width: clamp(150px, 17vw, 240px);
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
}
.deco-card--br {
  bottom: 6%; right: 6%;
  width: clamp(160px, 18vw, 250px);
  aspect-ratio: 4 / 3;
  transform: rotate(-3deg);
}

.deco-stat {
  position: absolute;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.3;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.3);
  display: flex; flex-direction: column; gap: 4px;
  width: clamp(130px, 13vw, 170px);
  z-index: 4;
}
.deco-stat b {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  display: block;
}
.deco-stat small {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.deco-stat--tl {
  top: clamp(20%, 22%, 26%); left: clamp(2%, 3vw, 5%);
  transform: rotate(-3deg);
}
.deco-stat--br {
  bottom: clamp(18%, 20%, 24%); right: clamp(2%, 3vw, 5%);
  transform: rotate(2deg);
}

@media (max-width: 980px) {
  .deco-stat--tl, .deco-stat--br { display: none; }
  .deco-card { width: clamp(110px, 18vw, 160px) !important; }
}
@media (max-width: 640px) {
  .deco-card { display: none !important; }
  .hero-stage { min-height: 520px; }
}

/* ============================================================
   Spaces (50/50 split)
   ============================================================ */
.spaces-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 20px);
}
@media (max-width: 880px) {
  .spaces-split { grid-template-columns: 1fr; }
}
.space-card {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-line-soft);
  isolation: isolate;
}
.space-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.space-card:hover img { transform: scale(1.04); }
.space-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.space-cta {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--c-accent);
  color: var(--c-ink);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.35);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), gap 220ms ease;
  white-space: nowrap;
}
.space-card:hover .space-cta {
  transform: translate(-50%, -50%) scale(1.05);
  gap: 12px;
}
.space-meta-row {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  color: var(--c-paper);
}
.space-meta-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.space-meta-row p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* ============================================================
   Amenities
   ============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
@media (max-width: 1100px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .amenities-grid { grid-template-columns: 1fr; }
}
.amenity-card {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 220px;
  justify-content: space-between;
  transition: border-color 200ms ease, transform 200ms ease;
}
.amenity-card:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
}
.amenity-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
}
.amenity-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  display: grid; place-items: center;
  color: var(--c-ink);
}
.amenity-card:hover .amenity-icon { background: var(--c-accent); }
.amenity-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.amenity-desc {
  font-size: 14px; line-height: 1.5;
  color: var(--c-ink-soft);
  margin: 8px 0 0;
  text-wrap: pretty;
}

/* ============================================================
   Plans / Pricing
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.2vw, 18px);
}
@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .plans-grid { grid-template-columns: 1fr; }
}
.plan {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-md);
  padding: clamp(20px, 2vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 380px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.plan:hover { border-color: var(--c-ink); transform: translateY(-2px); }
.plan-tag {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
  min-height: 22px;
}
.plan-tag .badge {
  background: var(--c-accent);
  border-radius: var(--r-pill);
  padding: 3px 9px;
  color: var(--c-ink);
  font-weight: 500;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 2px 0 0;
}
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-display);
  padding-top: 10px;
  margin-top: 2px;
  border-top: var(--border);
}
.plan-price .amt {
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.plan-price .per {
  font-size: 13px;
  color: var(--c-muted);
}
.plan-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; line-height: 1.45;
  color: var(--c-ink-soft);
}
.plan-features li::before {
  content: "\2713";
  color: var(--c-ink);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}
.plan--featured { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }
.plan--featured .plan-tag { color: rgba(255,255,255,0.65); }
.plan--featured .plan-tag .badge { background: var(--c-accent); color: var(--c-ink); }
.plan--featured .plan-price { border-top-color: rgba(255,255,255,0.15); }
.plan--featured .plan-price .per { color: rgba(255,255,255,0.6); }
.plan--featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan--featured .plan-features li::before { color: var(--c-accent); }
.plan--featured .btn { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-ink); }
.plan--featured .btn:hover { background: var(--c-paper); border-color: var(--c-paper); }
.plan .btn { padding: 11px 18px; font-size: 13px; }

/* ============================================================
   Carousel
   ============================================================ */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc((100% - 2 * clamp(12px, 1.4vw, 20px)) / 3);
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--c-line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 0;
}
@media (max-width: 880px) {
  .carousel-slide { flex-basis: calc((100% - clamp(12px, 1.4vw, 20px)) / 2); }
}
@media (max-width: 560px) {
  .carousel-slide { flex-basis: 100%; aspect-ratio: 3 / 4; }
}
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms ease;
}
.carousel-slide:hover img { transform: scale(1.04); }
.carousel-slide figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
}
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 28px; height: 4px;
  background: var(--c-line-soft);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
  border: 0;
  padding: 0;
}
.carousel-dot.active { background: var(--c-ink); width: 44px; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 44px; height: 44px;
  border: var(--border);
  border-radius: 50%;
  background: var(--c-paper);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.carousel-btn:hover { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink); }
.carousel-counter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .carousel-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .carousel-viewport::-webkit-scrollbar { display: none; }
  .carousel-track { transition: none; }
  .carousel-controls { display: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: var(--border);
}
.faq-item { border-bottom: var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 4px;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  color: var(--c-ink);
  transition: color 160ms ease;
}
.faq-q:hover { color: var(--c-muted); }
.faq-q .plus {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--c-ink);
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 12px; height: 1.2px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1.2px; height: 12px; transform: translate(-50%, -50%); transition: transform 260ms; }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a-inner {
  padding: 0 4px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}
.faq-a-inner p { margin: 0; max-width: 60ch; text-wrap: pretty; }

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.stat-card {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex; flex-direction: column;
  gap: 8px;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--c-ink);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
}

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(56px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner .container { text-align: center; }
.cta-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 auto 24px;
  color: var(--c-paper);
  text-wrap: balance;
  max-width: 18ch;
}
.cta-headline em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  color: rgba(255,255,255,0.65);
}
.cta-banner p { color: rgba(255,255,255,0.7); margin: 0 auto 28px; font-size: 16px; line-height: 1.55; max-width: 50ch; }
.cta-banner-ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-banner .btn--primary { background: var(--c-accent); color: var(--c-ink); border-color: var(--c-accent); }
.cta-banner .btn--primary:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }
.cta-banner .btn--ghost { background: transparent; color: var(--c-paper); border-color: rgba(255,255,255,0.3); }
.cta-banner .btn--ghost:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--c-bg);
  border-top: var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding: clamp(48px, 5vw, 80px) 0 clamp(32px, 4vw, 56px);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer .container { padding-left: 28px; padding-right: 28px; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.footer-brand em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-muted);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; color: var(--c-muted);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 15px;
  color: var(--c-ink-soft);
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--c-ink); }
.footer-bottom {
  border-top: var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  flex-wrap: wrap;
}

/* ============================================================
   Detail page
   ============================================================ */
.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}
.detail-hero-text {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(24px, 3vw, 48px) 0;
}
.detail-hero-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.detail-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-img { aspect-ratio: 4 / 3; }
}
.detail-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.detail-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  color: var(--c-muted);
}
.detail-key {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.detail-key div {
  padding-top: 14px;
  border-top: var(--border);
}
.detail-key b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.detail-key span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ============================================================
   Two-col content
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.two-col h2 em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  color: var(--c-muted);
}
.two-col p { font-size: 16px; line-height: 1.6; color: var(--c-ink-soft); margin: 0; }
.two-col p + p { margin-top: 1em; }

/* ============================================================
   Page intro
   ============================================================ */
.page-intro {
  padding: clamp(56px, 7vw, 120px) 0 clamp(40px, 5vw, 72px);
  text-align: center;
}
.page-intro .crumbs {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 24px;
  display: inline-flex; gap: 8px;
  justify-content: center;
}
.page-intro .crumbs a { color: var(--c-ink); }
.page-intro h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0 auto;
  text-wrap: balance;
  max-width: 16ch;
}
.page-intro h1 em {
  font-family: var(--font-italic);
  font-style: italic; font-weight: 400;
  color: var(--c-muted);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 64px);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-block { margin-bottom: 28px; }
.contact-block h3 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; color: var(--c-muted);
  margin: 0 0 10px;
}
.contact-block p, .contact-block a {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  display: block;
  margin: 0 0 4px;
  color: var(--c-ink);
}
.contact-block a:hover { color: var(--c-ink-soft); }
.contact-form-card {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
}
.field input, .field textarea, .field select {
  font: inherit; padding: 14px 16px;
  border: var(--border);
  background: var(--c-bg);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 12px;
  transition: border-color 160ms ease, background 160ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-ink);
  background: var(--c-paper);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 880px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-img {
  aspect-ratio: 4/5;
  background: var(--c-line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
}
.team-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 360ms ease, transform 800ms ease;
}
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.03); }
.team-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 0;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--c-muted);
  margin: 0;
}

/* ============================================================
   Misc
   ============================================================ */
.menu-toggle { display: none; }
@media (max-width: 1080px) {
  .menu-toggle { display: inline-flex; }
}
.mobile-menu {
  position: fixed; inset: 88px 0 0 0; z-index: 49;
  background: var(--c-bg); border-top: var(--border);
  display: none; flex-direction: column; padding: var(--container-pad);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 32px; letter-spacing: -0.02em;
  padding: 12px 0; border-bottom: var(--border-soft);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Faux map */
.faux-map {
  border: var(--border);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--c-paper);
}
.faux-map-label {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.faux-map-coords {
  position: absolute; right: 20px; top: 20px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Extras table */
.extras-table {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.extras-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px clamp(20px, 2.5vw, 32px);
}
.extras-row + .extras-row { border-top: var(--border); }
.extras-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.extras-desc {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
}
.extras-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* Meeting room cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(20px, 2vw, 28px);
}
.rooms-grid--center {
  max-width: 780px;
  margin-inline: auto;
}
.room-card {
  background: var(--c-paper);
  border: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}
.room-card:hover { border-color: var(--c-ink); transform: translateY(-2px); }
.room-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.room-card:hover .room-card-img img { transform: scale(1.04); }
.room-card-body {
  padding: clamp(20px, 2vw, 28px);
  display: flex; flex-direction: column; gap: 14px;
}
.room-card-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.room-card-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.room-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
  padding-top: 6px;
}
.room-card-desc {
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.room-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: var(--border);
  font-size: 14px;
  color: var(--c-muted);
}
.room-card-meta svg { vertical-align: -3px; margin-right: 4px; }
.room-card-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.room-card-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--c-muted);
}
.room-card .btn {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}
@media (max-width: 560px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* Legal pages */
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-content li {
  padding-left: 20px;
  position: relative;
  color: var(--c-ink-soft);
  line-height: 1.6;
}
.legal-content li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.legal-content p {
  color: var(--c-ink-soft);
  line-height: 1.7;
}
