/* ============================================================
   Q SPACE - Shared Stylesheet
   ============================================================ */

:root {
  /* Q Space brand palette - per brand guidelines */
  --orange: #e68650;       /* Burn't Orange (official brand) */
  --orange-dark: #d3703a;  /* deeper (hover) */
  --orange-soft: #faeadd;  /* light tint */
  --orange-tint: #f3ddc9;
  --offblack: #282828;     /* Off Black (primary) - header/footer/dark surfaces */
  --cream: #f6f0e7;        /* paper */
  --cream-2: #efe7d9;
  --sand: #dcd7cc;         /* Sand (secondary) */
  --ink: #282828;          /* Off Black */
  --body: #454545;
  --muted: #8a847c;
  --line: #e7ddcf;
  --card: #ffffff;
  --dark: #282828;         /* Off Black */
  --green: #04493c;        /* Green (secondary) */
  --green-soft: #e2ece8;   /* light forest-green tint */
  --black: #000000;        /* Core Black */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(27, 22, 17, 0.07);
  --shadow-sm: 0 4px 14px rgba(27, 22, 17, 0.06);
  --motion-duration: 560ms;
  --motion-duration-fast: 180ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-distance: 18px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-logo: "Anton", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

picture { display: block; }
img { display: block; max-width: 100%; }
img.is-loading {
  background: linear-gradient(110deg, #f2eee7 8%, #fffaf4 18%, #f2eee7 33%);
  background-size: 220% 100%;
  animation: qspace-shimmer 3.2s ease-in-out infinite;
}

/* ---------- shared loading screen ---------- */
.qspace-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  transition: opacity .38s ease, visibility .38s ease;
}
.qspace-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.qspace-loader__card { display: grid; justify-items: center; gap: 14px; text-align: center; padding: 28px; }
.qspace-loader__card img { width: auto; height: 46px; }
.qspace-loader__spinner {
  width: 34px;
  height: 34px;
  margin-top: 10px;
  border: 3px solid rgba(230,134,80,.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: qspace-spin .9s linear infinite;
}
@keyframes qspace-spin { to { transform: rotate(360deg); } }
@keyframes qspace-shimmer { to { background-position: -220% 0; } }

@media (prefers-reduced-motion: reduce) {
  .qspace-loader__spinner,
  img.is-loading { animation: none; }
}

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: block;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.h-xl { font-size: clamp(40px, 5.4vw, 62px); font-weight: 700; letter-spacing: -0.02em; }
.h-lg { font-size: clamp(30px, 3.8vw, 44px); font-weight: 700; letter-spacing: -0.02em; }
.h-md { font-size: clamp(24px, 2.8vw, 32px); font-weight: 700; }

.dot { color: var(--orange); }

.lead { font-size: 17px; color: var(--body); max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--motion-duration-fast) ease;
  white-space: nowrap;
}

.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn--outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn--outline:hover { background: var(--orange-soft); }

.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--pill { border-radius: 999px; }

.btn .arr { font-size: 17px; line-height: 1; }

.text-link {
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 3px;
  transition: color var(--motion-duration-fast) ease, border-color var(--motion-duration-fast) ease;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--offblack);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
/* off-black header - light nav, orange hover */
.site-header .main-nav a.nav-link,
.site-header .header-phone,
.site-header .lang,
.site-header .nav-toggle { color: #fff; }
.site-header .nav-link .chev { color: rgba(255, 255, 255, 0.55); }
.site-header .main-nav a.nav-link:hover,
.site-header .nav-link:hover { color: var(--orange); }
.site-header .header-phone i { color: var(--orange) !important; }
.site-header .avatar-btn { background: transparent; border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.site-header .avatar-btn:hover { background: rgba(255, 255, 255, 0.1); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
}

.logo {
  font-family: var(--font-logo);
  color: var(--orange);
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.logo small {
  font-size: 26px;
  letter-spacing: 0.02em;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.site-footer .logo img { height: 38px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
}

.main-nav > li { position: relative; }

.main-nav a.nav-link {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.main-nav a.nav-link:hover { color: var(--orange); }

.nav-link .chev {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.2s ease;
}

/* Workspaces down-chevron flips when its mega menu opens */
.main-nav li.has-mega:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}

.main-nav li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(2px);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-head);
}

.dropdown a:hover { background: var(--orange-soft); color: var(--orange); }

/* Mega menu (Workspaces) */
.main-nav li.has-mega { position: static; }

.dropdown--mega {
  left: 50%;
  top: 100%;
  transform: translate(-50%, 8px);
  width: min(920px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 30px;
  padding: 26px 30px 30px;
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #faf6f1 100%);
  border: 1px solid rgba(27, 22, 17, 0.06);
  box-shadow: 0 30px 70px rgba(27, 22, 17, 0.16);
}

/* invisible bridge so the pointer can cross the gap below the nav link */
.dropdown--mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  height: 26px;
}

.main-nav li:hover .dropdown--mega { transform: translate(-50%, 2px); }

.dropdown--mega .mega-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.dropdown--mega .mega-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.dropdown--mega .mega-link .mi { color: var(--orange); font-size: 21px; line-height: 1; flex: none; }
.dropdown--mega .mega-link .go { margin-left: auto; color: var(--muted); font-size: 17px; }

.dropdown--mega .mega-link:hover { background: rgba(232, 97, 31, 0.08); color: var(--orange); }
.dropdown--mega .mega-link:hover .go { color: var(--orange); }

.dropdown--mega .mega-feature {
  display: block;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.dropdown--mega .mega-feature:hover { background: #fff; box-shadow: var(--shadow); }

.dropdown--mega .mega-feature img { width: 100%; height: 250px; object-fit: cover; }

.dropdown--mega .mega-feature .cap {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}

.dropdown--mega .mega-feature .cap strong { color: var(--orange); font-weight: 700; }
.dropdown--mega .mega-feature .cap i { margin-left: auto; font-size: 18px; }

.dropdown--mega .mega-trial {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 18px;
  margin-top: 12px;
}

.dropdown--mega .mega-trial .t {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.dropdown--mega .mega-trial p { font-size: 13px; margin: 4px 0 14px; }
.dropdown--mega .mega-trial .btn--primary { color: #fff; }
.dropdown--mega .mega-trial .btn--primary i { color: #fff; }
.dropdown--mega .mega-trial .btn--primary:hover { background: #cf6a33; color: #fff; }
.dropdown--mega .mega-trial .btn--primary:hover i { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .header-phone { margin-right: 6px; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}

.btn--tour { padding: 10px 18px; font-size: 14px; }

.lang-switch { position: relative; pointer-events: none; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  background: transparent;
  border: none;
  font-family: inherit;
  transition: background 0.2s ease;
}

.lang:hover,
.lang-switch:hover .lang { background: rgba(0, 0, 0, 0.08); }

.site-header--dark .lang { color: #fff; }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
  z-index: 60;
}

/* invisible bridge so the pointer can cross the gap */
.lang-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.lang-switch:hover .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  background: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
}

.lang-menu button:hover { background: var(--orange-soft); color: var(--orange); }
.lang-menu button.active { color: var(--orange); font-weight: 600; }

.avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
}

/* Dark frosted header (home page) */
.site-header--dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--offblack);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header--dark .main-nav a.nav-link,
.site-header--dark .header-phone,
.site-header--dark .lang,
.site-header--dark .nav-toggle { color: #fff; }

.site-header--dark .nav-link .chev { color: rgba(255, 255, 255, 0.7); }

.site-header--dark .nav-link:hover { color: var(--orange); }

.site-header--dark .avatar-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-header--dark,
.site-header--dark .main-nav a.nav-link,
.site-header--dark .nav-link .chev,
.site-header--dark .header-phone,
.site-header--dark .lang,
.site-header--dark .nav-toggle,
.site-header--dark .avatar-btn {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Scrolled state - stays black (adds subtle shadow) */
.site-header--dark.is-scrolled {
  background: var(--offblack);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Icon chips ---------- */
.icon-chip {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
}

.icon-chip--round { border-radius: 50%; }
.icon-chip--lg { width: 64px; height: 64px; font-size: 28px; }

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

/* ============================================================
   HOME
   ============================================================ */

.hero-home {
  position: relative;
  padding: 0;
  color: #fff;
}

.hero-home .hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-home .hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-vid-controls {
  position: absolute;
  bottom: 78px;
  right: 32px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.hero-vbtn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(58, 54, 49, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.hero-vbtn:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.05); }

/* ---------- Expanded video player ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 6, 4, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.video-modal.open { opacity: 1; visibility: visible; }

.vp-stage { position: relative; width: min(1120px, 100%); }

.vp-watermark {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  height: 26px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}
.vp-stage video {
  width: 100%;
  max-height: 84vh;
  border-radius: 16px;
  background: #000;
  display: block;
}

/* glassmorphism circular buttons */
.vp-btn,
.vm-close,
.vp-bigplay {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.vp-btn:hover,
.vm-close:hover,
.vp-bigplay:hover { background: rgba(255, 255, 255, 0.24); transform: scale(1.05); }

.vm-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 46px;
  height: 46px;
  font-size: 22px;
  transform: translate(50%, -50%);
}
.vm-close:hover { transform: translate(50%, -50%) scale(1.05); }
@media (max-width: 720px) {
  .vm-close { top: 12px; right: 12px; transform: none; }
  .vm-close:hover { transform: scale(1.05); }
}

.vp-bigplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  font-size: 40px;
}
.vp-bigplay:hover { transform: translate(-50%, -50%) scale(1.05); }
.vp-stage.playing .vp-bigplay { opacity: 0; visibility: hidden; }

.vp-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 16, 12, 0.4);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.25s;
}
.vp-stage:hover .vp-controls,
.vp-stage:not(.playing) .vp-controls { opacity: 1; }

.vp-btn { width: 42px; height: 42px; font-size: 19px; flex: none; }

.vp-time { color: #fff; font-family: var(--font-head); font-size: 12.5px; font-weight: 500; min-width: 40px; text-align: center; }

.vp-seek {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  outline: none;
}
.vp-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.vp-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 560px) {
  .video-modal { padding: 16px; }
  .vp-controls { gap: 8px; padding: 8px 10px; }
  .vp-btn { width: 36px; height: 36px; font-size: 17px; }
  .vp-time { display: none; }
}

/* Light, bottom-weighted overlay - keeps the flythrough footage bright while
   only darkening the lower area behind the headline for legibility */
.hero-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.30) 74%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-home .container {
  position: relative;
  z-index: 6; /* keep the Workspace Finder dropdown above the floating quick-actions bar */
  min-height: clamp(620px, 75vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* push the headline + CTA into the lower third */
  padding-top: 160px;
  padding-bottom: 96px;
}

.hero-home h1 {
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-home p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 34px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.hero-search {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-search .search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(58, 54, 49, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  padding: 7px 7px 7px 30px;
  min-width: 360px;
  min-height: 66px;
}

.hero-search input {
  border: none;
  outline: none;
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #fff;
  flex: 1;
  text-transform: uppercase;
  background: transparent;
}

.hero-search input::placeholder { color: rgba(255, 255, 255, 0.85); }

.hero-search .search-btn {
  width: 52px;
  height: 52px;
  border-radius: 20px;
  border: none;
  color: var(--ink);
  background: #fff;
  font-size: 21px;
  cursor: pointer;
  flex: none;
  transition: all 0.2s;
}

.hero-search .search-btn:hover { background: var(--orange); color: #fff; }

/* Quick actions - floating pill over the hero video */
.quick-actions {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 0 26px;
  background: transparent;
}

.quick-actions .container { display: flex; justify-content: center; }

.quick-actions .label { display: none; }

.qa-row {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 20px 46px rgba(20, 16, 12, 0.22);
  padding: 8px 16px;
  max-width: 100%;
}

.qa-row a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 24px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}

.qa-row a:last-child { border-right: none; }
.qa-row a span.i { color: var(--orange); font-size: 18px; }
.qa-row a:hover { color: var(--orange); }

/* Why Q Space */
.why {
  background: linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
  padding: 28px 0 68px;
  overflow: hidden;
}

.why-wrap { position: relative; }

.why-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.why-copy { position: relative; z-index: 1; max-width: 620px; }

.why-stack {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

/* left column: Flexible Plans + Vibrant Community stacked */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 400px;
}

.why-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 8px 22px rgba(27, 22, 17, 0.06);
}

/* Premium Amenities floats to the right, vertically centered on the stack */
.why-card--float {
  position: absolute;
  top: 50%;
  /* sit right after the 400px stack with the same 22px gap as between the stacked cards */
  left: calc(400px + 22px);
  transform: translateY(-50%);
  width: 400px;
  z-index: 2;
}

.why-ico {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  flex: none;
}

.why-card h3 { font-size: 18.5px; margin-bottom: 5px; }
.why-card p { font-size: 14px; }

/* Workplace explorer */
.explorer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.carousel-nav { display: flex; gap: 10px; }

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: #fff;
  color: var(--orange);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.circle-btn:hover { background: var(--orange); color: #fff; }

.explorer-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.explorer-grid::-webkit-scrollbar { display: none; }

.explore-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}

.circle-btn:disabled { opacity: 0.35; cursor: default; }
.circle-btn:disabled:hover { background: #fff; color: var(--orange); }

@media (max-width: 1024px) {
  .explore-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 620px) {
  .explore-card { flex-basis: 82%; }
}

.explore-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.explore-card img { height: 170px; width: 100%; object-fit: cover; }

.explore-card .body { padding: 18px; position: relative; }

.explore-card h3 { font-size: 17px; margin-bottom: 6px; }
.explore-card p { font-size: 13.5px; padding-right: 30px; }

.explore-card .go {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: var(--orange);
  font-size: 18px;
}

/* Community quote band */
.community-band {
  background: var(--offblack);
  padding: 56px 0;
}
.community-band .eyebrow { color: var(--orange); }
.community-band .btn--outline { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.community-band .btn--outline:hover { background: #fff; color: var(--orange); border-color: #fff; }

.community-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}

.community-inner blockquote {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.community-inner blockquote em { color: var(--orange); font-style: normal; }

.community-side {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.community-side .avatar-stack { justify-content: flex-start; }

.community-side .who {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  background: none;
  text-align: left;
}

.community-side .role { font-size: 13px; color: rgba(255, 255, 255, 0.72); margin-bottom: 14px; }

.avatar-stack { display: flex; align-items: center; margin-bottom: 18px; }

.avatar-stack img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

.avatar-stack img:first-child { margin-left: 0; }

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.testimonial-grid h2 { margin-bottom: 28px; font-size: clamp(24px, 2.7vw, 36px); white-space: nowrap; }

.testimonial-heading .tq { color: var(--orange); }
.testimonial-heading #rotating-heading {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.testimonial-heading #rotating-heading.fade { opacity: 0; }

.testimonial-grid .quote {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 56px;
  max-width: 560px;
}

.testimonial-grid .who { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 19px; background: none; text-align: left; }
.testimonial-grid .role { font-size: 17px; color: var(--muted); margin-top: 2px; }

.testimonial-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 26px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-pager {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* prev = grey outline, next = solid orange */
.testimonial-pager .circle-btn {
  width: 44px;
  height: 44px;
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}
.testimonial-pager .circle-btn:hover { border-color: var(--ink); background: #fff; color: var(--ink); }
.testimonial-pager #t-next {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.testimonial-pager #t-next:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

/* Logos + reviews */
.logo-strip {
  padding: 16px 0;
  overflow: hidden;
}

.logos-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 42s linear infinite;
}

.logos-marquee:hover .logos-track { animation-play-state: paused; }

.logos-track img {
  height: 84px;
  width: auto;
  margin-right: 48px;
  flex: none;
  transition: transform 0.25s;
}

.logos-track img:hover { transform: scale(1.06); }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

.testimonial { padding-bottom: 32px; }
.logo-strip + .reviews, .reviews { padding-top: 20px; overflow: hidden; }

.reviews-head { margin-bottom: 26px; }

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.reviews-google:hover { border-color: var(--orange); transform: translateY(-1px); }
.reviews-google .g-logo-img { height: 20px; width: auto; display: block; }
.reviews-google .rev-score { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 14px; }
.reviews-google .rev-score .stars { font-size: 12px; }
.reviews-google .rev-cta { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--orange); display: inline-flex; align-items: center; gap: 5px; }

/* infinite auto-sliding marquee */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: reviewScroll 46s linear infinite;
}

.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

/* uniform margin (not gap) so the duplicated set loops seamlessly at exactly -50% */
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  width: 320px;
  flex: none;
  margin-right: 20px;
}

.stars { color: #f5a623; letter-spacing: 3px; font-size: 15px; margin-bottom: 10px; }

.review-card p {
  font-size: 13.5px; margin-bottom: 16px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}

.review-meta { display: flex; align-items: center; gap: 10px; }

.review-meta img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.review-meta .rv-av {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px;
}

.review-meta .name {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.review-meta .src { font-size: 11.5px; color: var(--muted); }

.g-badge { color: #4285f4; font-weight: 700; font-size: 12px; }
.review-meta img.g-badge-img {
  height: 13px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
  display: inline-block;
  vertical-align: -2px;
}

/* Know us better / location */
.know { background: var(--cream); }

.know-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: stretch;
}

.know h2 { margin-bottom: 12px; }
.know .sub { margin-bottom: 28px; }

.know-location {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 22px;
}

.know-location .t { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.know-location .a { font-family: var(--font-head); font-weight: 600; color: var(--ink); }

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  margin-bottom: 30px;
}

.amenity-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}

.amenity-cell .i { color: var(--orange); font-size: 19px; flex: none; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f3e9dd;
  min-height: 480px;
  display: flex;
}

.map-wrap svg { width: 100%; height: 100%; }
.map-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.4s ease; }
a.map-wrap:hover img { transform: scale(1.03); }

/* App section */
.app-band { background: #fff; }

.app-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.1fr);
  gap: 48px;
  align-items: stretch;
}

.app-logo {
  font-family: var(--font-logo);
  color: var(--ink);
  font-size: 30px;
  margin-bottom: 22px;
}

.app-logo-img { height: 34px; width: auto; display: block; margin-bottom: 22px; }

/* Optix app screenshot carousel.
   The track is absolutely positioned so the tall screenshots don't drive the
   row height - the row height comes from the left column (grid align-items:stretch),
   and the images then fill that height. */
.app-showcase { position: relative; min-width: 0; height: 100%; min-height: 420px; }

.app-shots-head { position: absolute; top: 10px; right: 10px; z-index: 3; }

.app-shots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.app-shots::-webkit-scrollbar { display: none; }

.app-shots img {
  height: 100%;
  width: auto;
  flex: 0 0 auto;
  min-width: 0;
  border-radius: 20px;
  scroll-snap-align: start;
  object-fit: cover;
}

@media (max-width: 560px) {
  .app-showcase { position: static; height: auto; min-height: 0; }
  .app-shots { position: static; }
  .app-shots img { height: auto; flex-basis: 76%; width: 76%; }
}

.app-grid h2 { margin-bottom: 16px; }
.app-grid .lead { margin-bottom: 28px; }

.qr-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-width: 380px;
  max-width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.qr-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }

.qr-arrow {
  margin-left: auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: none;
  transition: all 0.2s;
}

a.qr-card:hover .qr-arrow { background: var(--orange); color: #fff; }

.qr-card img { width: 84px; height: 84px; }

.qr-card .t { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 18px; line-height: 1.25; }
.qr-card .s { font-size: 13px; color: var(--muted); }

.store-badges { display: flex; gap: 12px; }

.store-badge {
  background: #000;
  color: #fff;
  border-radius: 11px;
  padding: 9px 18px 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }

.store-badge img { width: 26px; height: 26px; flex: none; }

.store-badge .txt {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.18;
  font-size: 15px;
  font-weight: 600;
}

.store-badge .txt small { font-size: 9.5px; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.9; }

.phones {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.phone {
  width: 230px;
  border-radius: 30px;
  border: 8px solid var(--ink);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.phone .screen { padding: 18px 14px; }

.phone .app-bar {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 12px;
}

.mini-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.mini-card img { border-radius: 7px; height: 70px; width: 100%; object-fit: cover; margin-bottom: 8px; }

.mini-card .t { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--ink); }
.mini-card .s { font-size: 10.5px; color: var(--muted); }

.app-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  max-width: 300px;
}

.app-note .t { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 13.5px; }

/* In the area */
.area-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.area-heading .h-lg { margin-bottom: 0; }

.area .sub { margin-bottom: 30px; }

.area-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.area-grid::-webkit-scrollbar { display: none; }

.area-card {
  flex: 0 0 calc((100% - 60px) / 4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
}

.area-card img { height: 150px; width: 100%; object-fit: cover; }

.area-card .body { padding: 18px; }

.area-card h3 { font-size: 16px; margin-bottom: 8px; }
.area-card p { font-size: 13px; margin-bottom: 16px; min-height: 60px; }

.area-card .btn { padding: 9px 18px; font-size: 13px; }

/* Why we excel */
.excel { background: var(--cream); }

.excel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.excel h2 { margin-bottom: 26px; }

.accordion { border-top: 1px solid var(--line); }

.acc-item { border-bottom: 1px solid var(--line); background: #fff; border-radius: 12px; margin-bottom: 12px; border: 1px solid var(--line); overflow: hidden; }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.acc-head .i { color: var(--orange); font-size: 20px; }

.acc-head .plus {
  margin-left: auto;
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.25s;
}

.acc-item.open .plus { transform: rotate(45deg); color: var(--orange); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14.5px;
}

.acc-body .inner { padding: 0 20px 20px 54px; }

.acc-item.open .acc-body { max-height: 200px; }

.excel-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.questions-bar {
  margin-top: 20px;
  background: var(--orange-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.questions-bar .t { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.questions-bar .s { font-size: 13.5px; color: var(--body); }

/* Journal */
.journal-head { margin-bottom: 30px; }
.journal-head p { margin-top: 8px; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journal-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}

.journal-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.journal-card img { height: 180px; width: 100%; object-fit: cover; }

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

.journal-card .cat {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 8px;
}

.journal-card h3 { font-size: 15.5px; line-height: 1.35; flex: 1; }

.journal-card .go { color: var(--orange); font-size: 18px; margin-top: 14px; align-self: flex-end; }

/* ============================================================
   COWORKING
   ============================================================ */

.page-hero {
  padding: 64px 0 56px;
}

.page-hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { margin-bottom: 28px; }

.page-hero .media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Plan tabs */
.plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}

.plan-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 16px 0;
  cursor: pointer;
  transition: all 0.2s;
}

.plan-tab.active { color: var(--orange); border-bottom-color: var(--orange); font-weight: 600; }

.plan-panel { display: none; }
.plan-panel.active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.plan-panel .media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.plan-panel h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }

.price { font-family: var(--font-head); font-weight: 700; font-size: 38px; color: var(--orange); margin-bottom: 22px; }
.price small { font-size: 15px; color: var(--muted); font-weight: 500; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body);
  padding: 7px 0;
}

.check-list .c {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex: none;
}

.plan-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 320px; }

.plan-actions .btn { justify-content: space-between; }

/* Coworking page: tighter section rhythm (keep full-bleed hero/trial at 0) */
.pg-cw section { padding: 50px 0; }
.pg-cw .cw-hero { padding: 0; }

/* Coworking promo banner (under header) */
.cw-promo {
  display: block; text-decoration: none; color: #fff;
  background: linear-gradient(90deg, #ea8a55 0%, #df7a43 100%);
  transition: filter 0.15s;
}
.cw-promo:hover { filter: brightness(1.05); }
.cw-promo__in {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 11px 20px; font-family: var(--font-head); font-size: 13.5px; text-align: center;
}
.cw-promo__in > i { font-size: 17px; }
.cw-promo strong { font-weight: 700; }
.cw-promo__cta { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Coworking hero - 2-column: image+copy left, plan selector right */
.cw-hero { position: relative; overflow: hidden; padding: 0; }
.cw-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cw-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(28,28,28,0.74) 0%, rgba(28,28,28,0.45) 40%, rgba(28,28,28,0.08) 66%, rgba(28,28,28,0.2) 100%);
}
.cw-hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr minmax(540px, 580px); gap: 36px; align-items: center;
  min-height: 600px; padding: 64px 0;
}
.cw-hero-copy { color: #fff; }
.cw-hero-copy .eyebrow { color: #ffd9c2; margin-bottom: 14px; }
.cw-hero-copy h1 { color: #fff; margin-bottom: 18px; font-size: clamp(32px, 3.6vw, 52px); }
.cw-hero-copy .lead { color: rgba(255,255,255,0.92); max-width: 520px; }

/* right: plan selector as a floating white card on the image */
.cw-hero-plans {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(28,28,28,0.3);
  padding: 30px 34px;
}
.cw-hero-plans .plan-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.cw-hero-plans .plan-label i { color: var(--orange); font-size: 15px; }
/* segmented control instead of underline tabs */
.cw-hero-plans .plan-tabs {
  display: inline-flex; grid-template-columns: none; width: 100%;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px; margin-bottom: 20px;
}
.cw-hero-plans .plan-tab {
  position: relative; flex: 1; border: 0; border-radius: 999px; padding: 10px 8px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
}
.cw-hero-plans .plan-tab:hover { color: var(--ink); }
.cw-hero-plans .plan-tab.active { background: #fff; color: var(--orange); border: 0; box-shadow: 0 1px 6px rgba(40,40,40,0.12); }
.cw-hero-plans .plan-tab.active::after {
  content: ""; position: absolute; left: 27%; right: 27%; bottom: 5px;
  height: 3px; border-radius: 2px; background: var(--orange);
}

.cw-hero-plans .plan-panel { display: none; }
.cw-hero-plans .plan-panel.active { display: block; }

/* head row: icon + title/subtitle, price on the right */
.cw-hero-plans .pp-head { display: flex; align-items: center; gap: 14px; margin-bottom: 15px; }
.cw-hero-plans .pp-ic {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.cw-hero-plans .pp-title { flex: 1; min-width: 0; }
.cw-hero-plans .pp-title h2 { font-size: 23px; margin-bottom: 2px; }
.cw-hero-plans .pp-title .plan-sub { font-size: 13px; margin: 0; color: var(--muted); }
.cw-hero-plans .pp-head .price { margin: 0; font-size: 26px; white-space: nowrap; align-self: center; }
.cw-hero-plans .pp-head .price small { font-size: 13px; }

/* two-column checklist inside a cream card */
.cw-hero-plans .check-list {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 22px; row-gap: 0;
  background: var(--cream); border-radius: 14px; padding: 14px 18px;
}
.cw-hero-plans .check-list li { font-size: 12.5px; padding: 4px 0; margin: 0; gap: 9px; align-items: flex-start; }
.cw-hero-plans .check-list .c { width: 18px; height: 18px; font-size: 10px; margin-top: 1px; }

.pp-div { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }

.cw-hero-plans .plan-actions { max-width: none; margin-top: 0; gap: 10px; }
.cw-hero-plans .plan-actions .btn { padding: 13px 20px; font-size: 14.5px; }
.cw-hero-plans .plan-actions .btn > span { display: inline-flex; align-items: center; gap: 9px; }

@media (max-width: 900px) {
  .cw-hero__inner { grid-template-columns: 1fr; gap: 26px; min-height: 0; padding: 44px 0; }
  .cw-hero-plans { padding: 26px; }
}

/* Community / network */
.network { padding-top: 40px; }

.network-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.network-head .sub { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.person-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}

.person-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.person-top img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }

.person-top .n { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.person-top .c { font-size: 12.5px; color: var(--orange); font-weight: 600; }

.person-card p { font-size: 13.5px; }

/* Events */
.events { background: #fff; }

.events-grid {
  display: grid;
  grid-template-columns: 0.85fr repeat(3, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.events-intro { padding: 6px 4px; }

.events-intro h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }
.events-intro p { font-size: 14.5px; margin-bottom: 20px; }

.event-skeleton {
  min-height: 284px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  align-content: start;
  gap: 15px;
}
.event-skeleton span {
  display: block;
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(110deg, #ebe5dc 8%, #fffaf4 18%, #ebe5dc 33%);
  background-size: 220% 100%;
  animation: qspace-shimmer 3.2s ease-in-out infinite;
}
.event-skeleton span:first-child { width: 48%; height: 40px; border-radius: 12px; }
.event-skeleton span:nth-child(2) { width: 82%; height: 18px; }
.event-skeleton span:nth-child(3) { width: 64%; margin-top: 24px; }
.event-skeleton span:nth-child(4) { width: 100%; height: 38px; margin-top: auto; border-radius: 10px; }
.events-is-loading .event-card { display: none; }

.event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.event-card .cover { height: 150px; width: 100%; object-fit: cover; }

.event-card .body { padding: 18px; }

.event-card .top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }

.event-card h3 { font-size: 15.5px; margin-bottom: 4px; }
.event-card .desc { font-size: 12px; color: var(--muted); }

.event-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--body);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.event-meta .i { color: var(--orange); margin-right: 4px; }

.event-card .btn { width: 100%; justify-content: space-between; padding: 11px 18px; font-size: 13.5px; }

.event-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.perk:last-child { border-right: none; }

.perk .i { color: var(--orange); font-size: 24px; flex: none; }

.perk h4 { font-size: 14px; margin-bottom: 4px; }
.perk p { font-size: 12.5px; }

/* Journey timeline */
.journey { background: var(--cream); }

.journey-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 80px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--orange) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
}

.tl-item { display: flex; gap: 16px; align-items: flex-start; }

.tl-item .icon-chip { background: #fff; border: 1.5px solid var(--orange); }

.tl-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.tl-item p { font-size: 13px; }

/* Amenities (coworking) */
.amenities-grid-wrap {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 44px;
  align-items: start;
}

.amenities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.amenity-photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.amenity-photo-card img { height: 190px; width: 100%; object-fit: cover; }

.amenity-photo-card .cap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.amenity-photo-card .cap .i { color: var(--orange); font-size: 18px; }

/* Trial band */
.trial { background: var(--cream-2); border-radius: var(--radius-lg); overflow: hidden; padding: 0; }

.trial-wrap { padding: 50px 0; }

.trial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.trial-copy { padding: 8px 0; }

.trial-copy h2 { margin: 10px 0 8px; }

.trial-copy .underline {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 14px 0 20px;
}

.trial-copy p { max-width: 460px; margin-bottom: 28px; }

.trial-media img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.pg-cw .trial-wrap { padding: 72px 0; }

.btn--loud {
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  padding: 15px 30px;
}

/* ============================================================
   SERVICED OFFICES
   ============================================================ */

.so-hero { position: relative; overflow: hidden; padding: 42px 0; }

.so-hero .grid { display: grid; grid-template-columns: 1.14fr .86fr; gap: 32px; align-items: center; }
.so-hero h1 { font-size: clamp(38px, 4.8vw, 58px); }

.so-hero .media { position: relative; }

.so-hero .media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.experience { background: var(--cream); }

.exp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }

.exp-copy .underline { width: 54px; height: 3px; background: var(--orange); margin: 20px 0 24px; }

.exp-copy p { margin-bottom: 26px; max-width: 460px; }

.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.quote-card .qm { color: var(--orange); font-size: 42px; font-family: Georgia, serif; line-height: 1; }

.quote-card p { font-style: italic; font-size: 14px; margin-bottom: 8px; }

.quote-card .by { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--ink); }

.exp-collage {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: 200px 220px;
  gap: 16px;
}

.exp-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.exp-collage img:nth-child(3) { grid-column: 1 / -1; }

.feature-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-4 .card h3 { font-size: 16.5px; margin: 16px 0 8px; }
.feature-4 .card p { font-size: 13.5px; }

/* Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.mosaic .m-photo { border-radius: var(--radius); overflow: hidden; }
.mosaic .m-photo img { width: 100%; height: 100%; object-fit: cover; }

.mosaic .m-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic .m-tile .i { color: var(--orange); font-size: 26px; margin-bottom: 12px; }
.mosaic .m-tile h3 { font-size: 15.5px; margin-bottom: 6px; }
.mosaic .m-tile p { font-size: 12.5px; }

.span-2 { grid-column: span 2; }

/* App band alt (serviced offices) */
.app-alt {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.6fr;
  gap: 36px;
  align-items: center;
}

/* ============================================================
   MEETING ROOMS
   ============================================================ */

.feature-bar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 28px;
  gap: 14px;
  background: #fff;
}

.feature-bar span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

.feature-bar .i { color: var(--orange); font-size: 19px; }

/* Booking widget */
.booking {
  background: linear-gradient(150deg, #ea8a55 0%, #df7a43 100%);
  border-radius: var(--radius-lg);
  padding: 46px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: stretch;
}

/* Left intro - white text on the orange panel */
.booking-intro { display: flex; flex-direction: column; color: #fff; }
.booking-intro .eyebrow { color: rgba(255, 255, 255, 0.82); }
.booking-intro h2 { font-size: clamp(26px, 3vw, 40px); line-height: 1.05; margin-bottom: 14px; color: #fff; }
.booking-intro p { font-size: 14.5px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }

.booking-points li { display: flex; gap: 14px; margin-bottom: 22px; }
.booking-points .i { color: #fff; font-size: 22px; flex: none; line-height: 1; }
.booking-points h4 { font-size: 15px; margin-bottom: 3px; color: #fff; }
.booking-points p { font-size: 13px; margin: 0; line-height: 1.5; color: rgba(255, 255, 255, 0.85); }

/* member card (bottom of intro) - opens the member modal */
.bk-member-card {
  display: flex; align-items: center; gap: 14px; width: 100%;
  margin-top: auto; text-align: left; cursor: pointer;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px; padding: 15px 17px;
  transition: background 0.15s;
}
.bk-member-card:hover { background: rgba(255, 255, 255, 0.24); }
.bk-member-card .ic {
  width: 42px; height: 42px; flex: none; border-radius: 12px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 20px;
}
.bk-member-card .tx { display: flex; flex-direction: column; gap: 2px; }
.bk-member-card .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: #fff; }
.bk-member-card .tx span { font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }
.bk-member-card .tx span i { color: #fff; }

.picker-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 16px;
}

.bk-divider { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }

/* Room selector (custom look, native select overlaid for behaviour) */
.bk-room-select {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 14px; padding: 14px 16px;
  cursor: pointer; transition: border-color 0.15s;
}
.bk-room-select:hover { border-color: var(--orange); }
.bk-room-select .ic {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.bk-room-select .txt { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; min-width: 0; }
.bk-room-select .txt strong { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.bk-room-select .txt span { font-size: 12.5px; color: var(--muted); }
.bk-room-select .chev { margin-left: auto; color: var(--ink); font-size: 20px; flex: none; }
.bk-room-select select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; border: 0; appearance: none;
}
.bk-room-meta { font-size: 12.5px; color: var(--muted); margin: 10px 2px 0; }

/* Calendar */
.calendar { background: #fff; max-width: 340px; }
.cal-grid .day { font-size: 13px; }

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.cal-head button {
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  color: var(--orange);
}
.cal-head button:hover { border-color: var(--orange); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-grid .dow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
}

.cal-grid .day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  transition: background 0.12s;
}
.cal-grid .day:hover { background: var(--orange-soft); }
.cal-grid .day.dim { color: #c9c1b7; cursor: default; }
.cal-grid .day.dim:hover { background: none; }
.cal-grid .day.today { background: var(--sand, #e7ddc9); color: var(--ink); font-weight: 600; }
.cal-grid .day.sel { background: var(--orange); color: #fff; font-weight: 600; }

/* Time selector */
.bk-sub { font-size: 13px; color: var(--muted); margin: -6px 0 16px; line-height: 1.5; }

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

.bk-empty {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px; font-size: 13.5px; color: var(--muted);
}
.bk-empty i { font-size: 17px; }

.time-slot {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-head);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.time-slot:hover { border-color: var(--orange); color: var(--orange); }
.time-slot.sel { background: var(--orange); border-color: var(--orange); color: #fff; }
.time-slot.taken {
  background: var(--cream); color: #b7afa2; border-color: var(--line);
  text-decoration: line-through; cursor: not-allowed; opacity: 0.6;
}
.time-slot:disabled:hover { border-color: var(--line); color: #b7afa2; }

.bk-live {
  font-family: var(--font-head);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); vertical-align: middle;
}
.bk-live.on { color: #12855f; }
.bk-live.on::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #16a34a; margin-right: 5px; vertical-align: middle;
}

/* Details form */
.bk-form { display: flex; flex-direction: column; gap: 16px; }
.bk-form[hidden], .bk-done[hidden], .bk-picked[hidden] { display: none; }

.bk-picked {
  display: flex; align-items: center; gap: 9px;
  background: var(--orange-soft); border-radius: 11px; padding: 12px 14px;
  font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.4;
}
.bk-picked i { color: var(--orange); font-size: 17px; flex: none; }

.bk-field {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink);
}
.bk-input { position: relative; display: flex; align-items: center; }
.bk-input > i {
  position: absolute; left: 14px; color: var(--muted); font-size: 16px; pointer-events: none;
}
.bk-input--area > i { top: 14px; }
.bk-input input, .bk-input textarea {
  width: 100%; border: 1px solid var(--line); background: #fff; border-radius: 12px;
  padding: 13px 14px 13px 42px;
  font-family: var(--font-body); font-weight: 400; font-size: 14px; color: var(--ink);
}
.bk-input textarea { resize: vertical; min-height: 74px; }
.bk-input input::placeholder, .bk-input textarea::placeholder { color: #b3aca0; }
.bk-input input:focus, .bk-input textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft);
}

.bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.bk-submit {
  width: 100%; border: 0; border-radius: 12px; cursor: pointer;
  background: var(--offblack); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 15px; margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background 0.15s;
}
.bk-submit:hover { background: #000; }
.bk-submit:disabled { opacity: 0.6; cursor: wait; }

.bk-fineprint {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  text-align: center; font-size: 12px; color: var(--muted); margin: 10px 0 0; line-height: 1.5;
}
.bk-fineprint i { color: #12855f; font-size: 15px; flex: none; margin-top: 1px; }
.bk-error { font-size: 12.5px; color: #b3402e; margin: 4px 0 0; text-align: center; }

/* Confirmation */
.bk-done {
  margin-top: 8px; text-align: center; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px;
}
.bk-done-icon { font-size: 42px; color: #16a34a; line-height: 1; margin-bottom: 6px; }
.bk-done h3 { font-size: 21px; margin-bottom: 8px; }
.bk-done p { font-size: 13.5px; color: var(--body); margin: 6px 0; line-height: 1.55; }
.bk-ref { font-size: 12.5px !important; color: var(--muted) !important; letter-spacing: 0.03em; }

/* ===== Wizard stage (white card on the orange panel) ===== */
.bk-stage {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(40, 40, 40, 0.18);
}

/* Step progress */
.bk-steps { display: flex; list-style: none; margin: 0 0 26px; padding: 0; }
.bk-step {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px;
  position: relative; color: var(--muted);
}
.bk-step .n {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  background: var(--cream); color: var(--muted); border: 1px solid var(--line);
  transition: all 0.2s; z-index: 1;
}
.bk-step .l { font-family: var(--font-head); font-weight: 600; font-size: 11.5px; }
/* connector line between steps */
.bk-step::before {
  content: ""; position: absolute; top: 15px; left: -50%; width: 100%;
  height: 2px; background: var(--line); z-index: 0;
}
.bk-step:first-child::before { display: none; }
.bk-step.is-active .n { background: var(--orange); color: #fff; border-color: var(--orange); }
.bk-step.is-active .l { color: var(--ink); }
.bk-step.is-done .n { background: var(--offblack); color: #fff; border-color: var(--offblack); }
.bk-step.is-done::before, .bk-step.is-active::before { background: var(--orange); }

/* Slides */
.bk-slides { flex: 1; display: flex; }
.bk-slide { display: none; padding: 0; margin: 0; width: 100%; animation: bkFade 0.28s ease; }
.bk-slide.is-active { display: flex; flex-direction: column; justify-content: center; }
@keyframes bkFade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.bk-slide-title { font-size: 21px; margin-bottom: 4px; }
.bk-slide-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }

/* Room selector button (step 1) */
.bk-room-select {
  position: relative; width: 100%;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 14px; padding: 14px 16px;
  cursor: pointer; transition: border-color 0.15s; text-align: left;
}
.bk-room-select:hover { border-color: var(--orange); }
.bk-room-select .ic {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.bk-room-select .txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bk-room-select .txt strong { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.bk-room-select .txt span { font-size: 12.5px; color: var(--muted); }
.bk-room-cta {
  margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 2px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px; color: var(--orange);
}

/* Selected-room preview under the button */
.bk-room-preview { margin-top: 18px; }
.bk-room-preview .pv {
  display: flex; gap: 16px; align-items: center;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; padding: 0;
}
.bk-room-preview .pv img { width: 132px; height: 108px; object-fit: cover; flex: none; }
.bk-room-preview .pv .ph { width: 132px; height: 108px; flex: none; background: repeating-linear-gradient(135deg, var(--cream), var(--cream) 10px, #efe9dd 10px, #efe9dd 20px); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 22px; }
.bk-room-preview .pv .meta { padding: 4px 14px 4px 0; }
.bk-room-preview .pv .meta h4 { font-size: 15px; margin-bottom: 4px; }
.bk-room-preview .pv .meta p { font-size: 12.5px; color: var(--muted); margin: 0 0 6px; }
.bk-room-preview .pv .meta .price { font-family: var(--font-head); font-weight: 700; color: var(--orange); font-size: 16px; }
.bk-room-preview .pv .meta .price small { font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* Nav */
.bk-nav { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.bk-nav [hidden] { display: none; }
.bk-back {
  background: none; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink);
  padding: 13px 18px; display: inline-flex; align-items: center; gap: 7px;
}
.bk-back:hover { border-color: var(--orange); color: var(--orange); }
.bk-next, .bk-submit {
  margin-left: auto; border: 0; border-radius: 12px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 26px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background 0.15s;
}
.bk-next { background: var(--orange); color: #fff; }
.bk-next:hover { background: #d9743c; }
.bk-next:disabled { opacity: 0.45; cursor: not-allowed; }
.bk-submit { background: var(--offblack); color: #fff; }
.bk-submit:hover { background: #000; }
.bk-submit:disabled { opacity: 0.6; cursor: wait; }
.bk-fineprint {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  text-align: center; font-size: 12px; color: var(--muted); margin: 14px 0 0; line-height: 1.5;
}
.bk-fineprint[hidden] { display: none; }
.bk-fineprint i { color: #12855f; font-size: 15px; flex: none; margin-top: 1px; }

/* ===== Modals ===== */
.bk-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.bk-modal[hidden] { display: none; }
.bk-modal-backdrop { position: absolute; inset: 0; background: rgba(40, 40, 40, 0.55); backdrop-filter: blur(2px); animation: bkFade 0.2s ease; }
.bk-modal-card {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  padding: 34px; width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); animation: bkPop 0.24s ease;
  text-align: center;
}
.bk-modal-card--wide { max-width: 860px; text-align: left; }
@keyframes bkPop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }
.bk-modal-x {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--ink); font-size: 18px;
  display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.bk-modal-x:hover { background: var(--cream); border-color: var(--orange); color: var(--orange); }
.bk-modal-logo { height: 26px; margin-bottom: 16px; }
.bk-modal-title { font-size: 23px; margin-bottom: 6px; }
.bk-modal-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }

/* Room picker cards (with images) */
.bk-room-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bk-room-card {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff;
  cursor: pointer; text-align: left; padding: 0; transition: all 0.15s; display: flex; flex-direction: column;
}
.bk-room-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.bk-room-card.is-selected { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange) inset; }
.bk-room-card img { width: 100%; height: 130px; object-fit: cover; }
.bk-room-card .ph { width: 100%; height: 130px; background: repeating-linear-gradient(135deg, var(--cream), var(--cream) 12px, #efe9dd 12px, #efe9dd 24px); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 28px; }
.bk-room-card .cd { padding: 14px 15px; display: flex; flex-direction: column; gap: 4px; }
.bk-room-card .cd h4 { font-size: 15px; }
.bk-room-card .cd .cap { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.bk-room-card .cd .price { font-family: var(--font-head); font-weight: 700; color: var(--orange); font-size: 16px; margin-top: 2px; }
.bk-room-card .cd .price small { font-size: 11px; color: var(--muted); font-weight: 500; }

/* Member modal choices */
.bk-member-web {
  display: flex; align-items: center; gap: 14px; text-align: left;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  text-decoration: none; transition: all 0.15s;
}
.bk-member-web:hover { border-color: var(--orange); background: var(--cream); }
.bk-member-web .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.bk-member-web .tx { display: flex; flex-direction: column; gap: 2px; }
.bk-member-web .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.bk-member-web .tx span { font-size: 12.5px; color: var(--muted); }
.bk-member-web .go { margin-left: auto; color: var(--orange); font-size: 20px; flex: none; }

.bk-or { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--muted); font-size: 12px; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.bk-or::before, .bk-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.bk-member-modal .qr-card, #bk-member-modal .qr-card { margin-bottom: 16px; min-width: 0; width: 100%; }
#bk-member-modal .store-badges { justify-content: stretch; }
#bk-member-modal .store-badge { flex: 1; justify-content: center; }

/* Room cards - seamless hairline grid, no rounded corners, padded images */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 0;
}

.room-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.room-card img { height: 200px; width: 100%; object-fit: cover; border-radius: 12px; }

.room-card .body { padding: 16px 6px 6px; display: flex; flex-direction: column; flex: 1; }

.room-title { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }

.room-title h3 { font-size: 19px; }

.room-price { font-family: var(--font-head); font-weight: 700; color: var(--orange); font-size: 18px; }
.room-price small { font-size: 12px; color: var(--muted); font-weight: 500; }

.room-cap { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }

.room-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 16px;
}

.room-tags span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.room-tags .i { color: var(--orange); }

.room-card .btn { width: 100%; margin-top: auto; }

/* Meeting mosaic */
.mr-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 215px;
  gap: 18px;
}

.mr-tile { position: relative; border-radius: var(--radius); overflow: hidden; }

.mr-tile.photo img { width: 100%; height: 100%; object-fit: cover; }

.mr-tile.photo .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 8, 6, 0.75));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.mr-tile.photo .overlay h3 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.mr-tile.photo .overlay p { font-size: 12.5px; color: rgba(255, 255, 255, 0.85); }

.mr-tile.info {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mr-tile.info h3 { font-size: 16.5px; margin: 10px 0 6px; }
.mr-tile.info p { font-size: 13px; margin-bottom: 12px; }

.mr-tile .go-round {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tall { grid-row: span 2; }

/* Catering */
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.catering-grid > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.catering-copy h2 { margin-bottom: 8px; }
.catering-copy .sub { margin-bottom: 26px; }

.cater-item {
  display: flex;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
  align-items: flex-start;
}

.cater-item h3 { font-size: 16px; margin-bottom: 4px; }
.cater-item p { font-size: 13px; margin-bottom: 8px; }

.cater-price { margin-left: auto; text-align: right; flex: none; }
.cater-price .p { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); }
.cater-price .per { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.cater-item .text-link { font-size: 13px; }

/* Capacity table */
.capacity h2 { margin-bottom: 24px; }

.cap-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.cap-table thead th {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
}

.cap-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--body);
  background: #fff;
}

.cap-table td.room {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}

.cap-table .i { color: var(--orange); margin-right: 10px; }

.cap-table tbody tr:hover td { background: var(--cream); }

/* ============================================================
   VIRTUAL MAILBOX
   ============================================================ */

.vm-hero { background: #fff; padding: 70px 0 0; }

.vm-hero .grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.vm-hero .underline { width: 54px; height: 3px; background: var(--orange); margin: 20px 0; }

.vm-trust { display: flex; align-items: center; gap: 16px; margin-top: 30px; }

.vm-trust .stars { margin: 0; font-size: 13px; }
.vm-trust .t { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--ink); line-height: 1.3; }

.vm-visual { position: relative; display: flex; flex-direction: column; align-items: center; }

.vm-visual .blob {
  position: absolute;
  right: 2%;
  bottom: 70px;
  width: 74%;
  height: 46%;
  background: #e8b797;
  border-radius: 120px 24px 24px 24px;
  z-index: 0;
}

.vm-hero-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 711 / 607;
  height: auto;
  object-fit: cover;
  object-position: 51.5% 50%;
  margin: 0 auto;
}

.vm-visual .envelope {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 78%;
}

.mail-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid var(--line);
}

.mail-card .brand { font-family: var(--font-logo); color: var(--orange); font-size: 18px; margin-bottom: 12px; }

.mail-card .addr { font-size: 13px; line-height: 1.6; color: var(--body); }

.phone-notif {
  position: absolute;
  right: 6%;
  top: 12%;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  width: 210px;
  box-shadow: var(--shadow);
}

.phone-notif .time { font-family: var(--font-head); font-size: 30px; font-weight: 600; text-align: center; margin-bottom: 10px; }

.notif-bubble {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.notif-bubble .dot-q {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 6px;
  font-family: var(--font-logo);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.vm-chips {
  position: relative;
  z-index: 3;
  display: flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 6px;
  width: 100%;
  margin: -48px auto 0;
}

.vm-chips > span {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  border-right: 1px solid var(--line);
  padding: 0 10px;
}

.vm-chips > span:last-child { border-right: none; }

.vm-chips .i { color: var(--orange); font-size: 17px; border-right: none; padding: 0; }

/* VM 4 features */
.vm-features {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.vm-feature {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.vm-feature:last-child { border-right: none; }

.vm-feature .icon-chip { margin: 0 auto 16px; }

.vm-feature h3 { font-size: 15.5px; margin-bottom: 8px; }
.vm-feature p { font-size: 12.5px; }

/* Security */
/* Continuous green gradient across Security → Workflow → Who (top lighter, bottom original forest) */
.green-band { background: #fff; }

.security { background: transparent; padding-bottom: 40px; }

.security-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.security-grid > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.security-copy { display: flex; flex-direction: column; justify-content: center; }
.security-copy .underline { width: 54px; height: 3px; background: var(--orange); margin: 18px 0 20px; }

/* Security & Trust - white type on Q Space green, white trust cards with green chips */
.security .eyebrow { color: var(--orange); }
.security-copy h2 { color: var(--ink); }
.security-copy > p { color: var(--body); }
.security .icon-chip { background: var(--orange-soft); color: var(--orange); }

/* trust boxes - 2 x 2 grid beneath the subtext */
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 0;
}

.trust-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.trust-list h4 { font-size: 15px; margin-bottom: 2px; }
.trust-list p { font-size: 12.5px; }

/* Workflow - white card floating on the green band */
.workflow { text-align: center; background: transparent; padding: 40px 0; }

.workflow .container {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  box-shadow: 0 30px 70px rgba(3, 25, 20, 0.30);
}

.workflow .h-md { margin-bottom: 50px; }

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.wf-step { position: relative; padding: 0 10px; }

.wf-step .num {
  position: absolute;
  top: -10px;
  left: calc(50% + 18px);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.wf-step .icon-chip--lg { margin: 0 auto 18px; border-radius: 50%; }

.wf-step h4 { font-size: 15.5px; margin-bottom: 6px; }
.wf-step p { font-size: 13px; max-width: 220px; margin: 0 auto; }

.wf-step:not(:last-child)::after {
  content: "· · · ›";
  position: absolute;
  top: 26px;
  right: -22px;
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
}

/* Who is this for */
.who { background: transparent; text-align: center; padding-top: 40px; }

.who .h-md { margin-bottom: 40px; color: var(--ink); }

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

.who-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.who-card img { height: 190px; width: 100%; object-fit: cover; }

.who-card .body { padding: 20px; display: flex; gap: 14px; }

.who-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.who-card p { font-size: 13px; }

/* Stats */
.stats-band { padding: 0 0 72px; }

.stats-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

.stat .n { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--ink); line-height: 1.1; }
.stat .l { font-size: 12.5px; color: var(--muted); }

/* FAQ */
.faq-list .acc-item { background: #fff; }

.faq-list .acc-head .badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.25s;
}

.faq-list .acc-item.open .badge { transform: rotate(45deg); }

.faq-list .acc-body .inner {
  margin: 0 20px 20px 58px;
  padding: 14px 16px;
  background: var(--orange-soft);
  border-radius: 10px;
  display: flex;
  gap: 10px;
  font-size: 13.5px;
}

.faq-list .acc-body .inner .i { color: var(--orange); flex: none; }

/* CTA band */
.cta-band { padding: 0 0 72px; }

.cta-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: center;
  overflow: hidden;
}

.cta-inner img { height: 280px; width: 100%; object-fit: cover; }

.cta-copy { padding: 40px 56px; text-align: left; }

.cta-copy h2 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 10px; color: var(--ink); }
.cta-copy p { margin-bottom: 24px; font-size: 15px; color: var(--body); }

.cta-copy .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.cta-copy .actions .btn { width: 100%; justify-content: center; }

/* Virtual office CTA */
.cta-inner {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.cta-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.cta-inner .cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 44px);
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(12, 9, 6, 0.78);
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.cta-badge .cb-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  flex: none;
}

.cta-badge div { display: grid; gap: 1px; min-width: 0; }
.cta-badge .cb-label { color: rgba(255, 255, 255, 0.66); font-size: 11px; line-height: 1.2; }
.cta-badge strong { color: #fff; font-size: 13px; line-height: 1.25; white-space: nowrap; }

.cta-inner .cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 42px 54px;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.cta-eyebrow .ce-ico { color: var(--orange); font-size: 16px; }
.cta-copy h2 .hl { color: var(--orange); }
.cta-underline { width: 42px; height: 2px; margin: 3px 0 16px; background: var(--orange); }

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 16px;
  margin-top: 22px;
  color: var(--body);
  font-size: 12.5px;
}

.cta-features > span { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.cta-features .i { color: var(--orange); font-size: 15px; }

/* ============================================================
   RESOURCES - NEWSLETTER
   ============================================================ */

.newsletter-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.newsletter-copy h2 { margin-bottom: 14px; }
.newsletter-copy .lead { margin-bottom: 26px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form .btn { flex: none; }

.newsletter-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.newsletter-note i { color: var(--orange); }

.newsletter-issues { display: flex; flex-direction: column; gap: 14px; }

.issue {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: all 0.2s;
}
.issue:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.issue .issue-t { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 14.5px; }
.issue .issue-s { font-size: 12.5px; color: var(--muted); }
.issue .issue-go {
  margin-left: auto;
  color: var(--orange);
  font-size: 20px;
  flex: none;
}

/* ============================================================
   QUELA "BUILT BY" MODAL
   ============================================================ */

.quela-modal {
  /* blue primary, scoped to the modal only */
  --orange: #0b57d0;
  --orange-dark: #0847ae;
  --orange-soft: #e7f0fc;
  --orange-tint: #d2e3f9;
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 16, 12, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.quela-modal.open { opacity: 1; visibility: visible; }

.qm-dialog {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 92vh;
  overflow-y: auto;
  background: #f7f5f2;
  border-radius: 22px;
  padding: 30px 34px 30px;
  box-shadow: 0 40px 90px rgba(20, 16, 12, 0.4);
  transform: translateY(16px) scale(0.99);
  transition: transform 0.25s ease;
}
.quela-modal.open .qm-dialog { transform: none; }

.qm-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.qm-close:hover { background: rgba(20, 16, 12, 0.08); }

.qm-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 24px;
}
.qm-badge img { height: 30px; width: auto; display: block; }

.qm-body { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: start; }

.qm-left h2 { font-size: clamp(26px, 3vw, 34px); line-height: 1.15; margin-bottom: 16px; }
.qm-left h2 .ac { color: var(--orange); }
.qm-left > p { font-size: 15px; color: var(--body); margin-bottom: 24px; max-width: 420px; }

.qm-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.qm-feat { display: flex; gap: 14px; align-items: flex-start; }
.qm-feat .fi {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: var(--orange-soft); color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; font-size: 19px;
}
.qm-feat h4 { font-size: 15px; margin-bottom: 2px; }
.qm-feat p { font-size: 13px; color: var(--muted); margin: 0; }

.qm-actions { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.qm-actions .btn { letter-spacing: 0.04em; }

.qm-right { display: flex; flex-direction: column; gap: 16px; }
.qm-mock {
  position: relative;
  background: linear-gradient(160deg, #f0ece6 0%, #e7e2db 100%);
  border-radius: 18px;
  padding: 26px 24px 30px;
  min-height: 300px;
}
.qm-browser { background: #fff; border-radius: 12px 12px 10px 10px; box-shadow: 0 16px 34px rgba(20,16,12,0.16); overflow: hidden; }
.qm-browser-bar { display: flex; align-items: center; gap: 14px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.qm-dots { display: flex; gap: 5px; flex: none; }
.qm-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d8d2c9; }
.qm-nav { display: flex; align-items: center; gap: 12px; font-size: 8px; color: var(--muted); flex: 1; }
.qm-nav .brand { font-family: var(--font-head); font-weight: 700; font-size: 10px; color: var(--ink); }
.qm-nav .links { display: flex; gap: 8px; margin-left: auto; }
.qm-nav .cta { background: var(--orange); color: #fff; border-radius: 5px; padding: 3px 7px; font-weight: 600; }
.qm-scr { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; padding: 16px; }
.qm-scr h5 { font-size: 15px; line-height: 1.2; margin-bottom: 7px; }
.qm-scr h5 .ac { color: var(--orange); }
.qm-scr p { font-size: 9px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.qm-scr .mini-btn { display: inline-block; background: var(--orange); color: #fff; font-size: 8.5px; font-weight: 600; font-family: var(--font-head); padding: 6px 12px; border-radius: 6px; }
.qm-scr .shot { border-radius: 8px; overflow: hidden; }
.qm-scr .shot img { width: 100%; height: 100%; object-fit: cover; }
.qm-phone {
  position: absolute;
  right: 30px; bottom: 18px;
  width: 108px;
  background: #282828; border-radius: 16px; padding: 5px;
  box-shadow: 0 16px 34px rgba(20,16,12,0.28);
}
.qm-phone .pscreen { background: #fff; border-radius: 12px; overflow: hidden; padding: 8px; }
.qm-phone .pbar { display: flex; justify-content: space-between; align-items: center; font-size: 7px; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.qm-phone h6 { font-size: 9px; line-height: 1.2; margin-bottom: 4px; }
.qm-phone h6 .ac { color: var(--orange); }
.qm-phone p { font-size: 6.5px; color: var(--muted); margin-bottom: 6px; line-height: 1.4; }
.qm-phone .mini-btn { display: inline-block; background: var(--orange); color: #fff; font-size: 6.5px; font-weight: 600; padding: 3px 8px; border-radius: 4px; margin-bottom: 6px; }
.qm-phone .shot { border-radius: 6px; overflow: hidden; height: 42px; }
.qm-phone .shot img { width: 100%; height: 100%; object-fit: cover; }

.qm-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: #efeae3; border-radius: 14px; padding: 16px 18px;
  font-size: 13.5px; color: var(--body);
}
.qm-note .ni { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex: none; }
.qm-note a { color: var(--orange); font-weight: 600; }

.qm-footer {
  display: flex; align-items: center; gap: 16px;
  background: var(--cream-2); border-radius: 16px;
  padding: 16px 22px; margin-top: 18px;
}
.qm-footer .qi { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-logo); font-size: 20px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.qm-footer .fc { flex: 1; }
.qm-footer .fc strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 15px; }
.qm-footer .fc span { font-size: 13px; color: var(--muted); }
.qm-footer .contact { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--orange); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

@media (max-width: 780px) {
  .qm-body { grid-template-columns: 1fr; gap: 26px; }
  .qm-dialog { padding: 24px 20px; }
  .qm-footer { flex-wrap: wrap; }
  .qm-footer .contact { width: 100%; justify-content: center; }
}

/* ============================================================
   VIRTUAL OFFICE REGISTRATION WIZARD
   ============================================================ */

.vor { background: var(--cream); padding: 48px 0 80px; min-height: 72vh; }
.vor-wrap { max-width: 1000px; margin: 0 auto; }

.vor-panel { display: none; }
.vor-panel.active { display: block; animation: vorFade 0.3s ease; }
@keyframes vorFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* intro / lead form */
.vor-intro .eyebrow { margin-bottom: 12px; }
.vor-intro h1 { font-size: clamp(30px, 4vw, 44px); max-width: 760px; margin-bottom: 20px; }
.vor-perks { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.vor-perks span { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink); font-size: 15px; }
.vor-perks i { color: var(--orange); font-size: 18px; }

.vor-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.vor-field { display: flex; flex-direction: column; gap: 7px; }
.vor-field.full { grid-column: 1 / -1; }
.vor-field label { font-size: 13px; font-weight: 600; color: var(--ink); font-family: var(--font-head); }
.vor-field input,
.vor-field select {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.vor-field input:focus,
.vor-field select:focus { border-color: var(--orange); }
.vor-phone { display: flex; gap: 8px; }
.vor-phone .cc { flex: none; width: 92px; }

/* stepper */
.vor-stepper { display: flex; align-items: center; margin: 6px 0 38px; }
.vor-stepper .st { display: flex; align-items: center; gap: 10px; }
.vor-stepper .st .num {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--line); background: #fff; color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: var(--font-head); font-size: 14px; flex: none;
  transition: all 0.25s;
}
.vor-stepper .st .lbl { font-size: 13.5px; font-weight: 600; color: var(--muted); font-family: var(--font-head); white-space: nowrap; }
.vor-stepper .st.active .num { border-color: var(--orange); background: var(--orange); color: #fff; }
.vor-stepper .st.active .lbl { color: var(--ink); }
.vor-stepper .st.done .num { border-color: var(--orange); background: var(--orange-soft); color: var(--orange); }
.vor-stepper .line { flex: 1; height: 2px; background: var(--line); margin: 0 12px; transition: background 0.25s; }
.vor-stepper .line.done { background: var(--orange); }

.vor-step { display: none; }
.vor-step.active { display: block; animation: vorFade 0.3s ease; }
.vor-step > h2 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 6px; }
.vor-step > .sub { color: var(--body); margin-bottom: 26px; font-size: 15px; }

/* plan cards */
.vor-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-opt {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.plan-opt:hover { border-color: var(--orange-tint); }
.plan-opt.sel { border-color: var(--orange); box-shadow: 0 10px 30px rgba(232, 97, 31, 0.12); }
.plan-opt .badge-pop {
  position: absolute; top: -11px; left: 24px;
  background: var(--orange); color: #fff; font-family: var(--font-head);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.plan-opt .pname { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 6px; }
.plan-opt .pprice { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--orange); margin-bottom: 2px; }
.plan-opt .pprice small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan-opt .pdesc { font-size: 12.5px; color: var(--muted); margin-bottom: 16px; }
.plan-opt ul { display: flex; flex-direction: column; gap: 8px; }
.plan-opt li { display: flex; gap: 9px; font-size: 13px; color: var(--body); }
.plan-opt li i { color: var(--orange); flex: none; }
.plan-opt .radio {
  position: absolute; top: 24px; right: 24px;
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
}
.plan-opt.sel .radio { border-color: var(--orange); background: var(--orange); color: #fff; }
.plan-opt.sel .radio::after { content: "\2713"; font-size: 12px; }

/* centre + duration (step 2) */
.vor-two { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 28px; align-items: start; }
.centre-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.centre-card img { width: 100%; height: 200px; object-fit: cover; }
.centre-card .body { padding: 22px; }
.centre-card h3 { font-size: 18px; margin-bottom: 6px; }
.centre-card .addr { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.tenure-label { font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 12px; }
.tenure-toggle { display: inline-flex; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 4px; gap: 4px; }
.tenure-toggle button {
  border: none; background: none; padding: 10px 20px; border-radius: 9px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--muted);
}
.tenure-toggle button.sel { background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); }
.tenure-toggle button .off { display: block; font-size: 10px; color: var(--orange); font-weight: 500; }

/* order summary */
.vor-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 100px; }
.vor-summary h4 { font-size: 16px; margin-bottom: 16px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--body); padding: 7px 0; }
.sum-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.sum-row .strike { text-decoration: line-through; color: var(--muted); font-size: 12px; margin-right: 6px; }

/* payment (step 3) */
.pay-plan-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.vor-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--line); }
.switch { position: relative; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: 0.2s; cursor: pointer; }
.switch .track::before { content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%; background: #fff; top: 3px; left: 3px; transition: 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.switch input:checked + .track { background: var(--orange); }
.switch input:checked + .track::before { transform: translateX(20px); }
.agree-row { display: flex; align-items: center; gap: 10px; padding: 18px 0; font-size: 14.5px; }
.agree-row input { width: 18px; height: 18px; accent-color: var(--orange); }
.agree-row a { color: var(--orange); font-weight: 600; }

/* KYC (step 4) */
.kyc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kyc-drop {
  border: 2px dashed var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; cursor: pointer; transition: all 0.2s; background: #fff;
}
.kyc-drop:hover { border-color: var(--orange); background: var(--orange-soft); }
.kyc-drop i { font-size: 30px; color: var(--orange); }
.kyc-drop .t { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); margin-top: 10px; }
.kyc-drop .s { font-size: 12px; color: var(--muted); margin-top: 4px; }
.kyc-drop.filled { border-style: solid; border-color: var(--orange); }
.kyc-drop.filled i { color: var(--orange); }
.kyc-drop input { display: none; }

/* wizard nav */
.vor-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }
.vor-nav .spacer { flex: 1; }

/* success */
.vor-done { text-align: center; padding: 40px 0; }
.vor-done .tick { width: 84px; height: 84px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 44px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.vor-done h2 { margin-bottom: 12px; }
.vor-done p { color: var(--body); max-width: 480px; margin: 0 auto 26px; }

@media (max-width: 860px) {
  .vor-form { grid-template-columns: 1fr; }
  .vor-plans { grid-template-columns: 1fr; }
  .vor-two { grid-template-columns: 1fr; }
  .kyc-grid { grid-template-columns: 1fr; }
  .vor-summary { position: static; }
  .vor-stepper .lbl { display: none; }
}

/* ============================================================
   LEGAL / TERMS PAGE
   ============================================================ */

.legal-hero {
  background: var(--cream);
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow { margin-bottom: 12px; }
.legal-hero h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 12px; }
.legal-hero p { color: var(--body); max-width: 640px; }
.legal-hero .updated { font-size: 13px; color: var(--muted); margin-top: 14px; }

.legal-wrap {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0 72px;
}

.legal-toc {
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}
.legal-toc .toc-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-toc a {
  display: block;
  font-size: 14px;
  color: var(--body);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.legal-toc a:hover { background: var(--orange-soft); color: var(--orange); }

.legal-content { max-width: 780px; }
.legal-content .intro { font-size: 16px; color: var(--body); margin-bottom: 8px; }

.legal-section { padding-top: 20px; margin-bottom: 20px; scroll-margin-top: 96px; }
.legal-section > h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  margin-bottom: 22px;
}
.legal-section h3 {
  font-size: 17px;
  margin: 26px 0 8px;
  color: var(--ink);
}
.legal-content p { font-size: 15px; color: var(--body); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul.def-list { margin: 6px 0 16px; }
.legal-content ul.def-list li {
  position: relative;
  font-size: 14.5px;
  color: var(--body);
  padding: 6px 0 6px 22px;
  line-height: 1.7;
}
.legal-content ul.def-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.legal-content ul.def-list li strong { color: var(--ink); }

.legal-callout {
  background: var(--orange-soft);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0;
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.legal-callout i { color: var(--orange); font-size: 20px; flex: none; margin-top: 2px; }

.legal-terms-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 20px 0;
}

@media (max-width: 860px) {
  .legal-wrap { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: flex;
  justify-content: center;
  transform: translateY(160%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.cookie-banner.show { transform: none; opacity: 1; pointer-events: auto; }

.cookie-inner {
  max-width: 940px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(20, 16, 12, 0.18);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 260px;
}
.cookie-text strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.cookie-text p { font-size: 13.5px; color: var(--body); margin: 0; line-height: 1.6; }

.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions .btn { padding: 11px 22px; }

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* lift the floating search above the cookie banner while it is visible */
.has-cookie-banner .floating-search { bottom: 132px; }
@media (max-width: 600px) {
  .has-cookie-banner .floating-search { bottom: 190px; }
}

/* ============================================================
   FLOATING SEARCH BAR
   ============================================================ */

.floating-search {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(58, 54, 49, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  padding: 6px 6px 6px 26px;
  width: min(520px, calc(100vw - 40px));
  box-shadow: 0 14px 40px rgba(20, 16, 12, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.floating-search > input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  min-width: 0;
}

.floating-search > input::placeholder { color: rgba(255, 255, 255, 0.85); }

.floating-search > button {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  border: none;
  background: #fff;
  color: var(--ink);
  font-size: 19px;
  cursor: pointer;
  flex: none;
  transition: all 0.2s;
}

.floating-search > button:hover { background: var(--orange); color: #fff; }

.floating-search.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(24px);
  pointer-events: none;
}

.floating-search .finder-panel {
  top: auto;
  right: auto;
  bottom: calc(100% + 12px);
  left: 0;
  width: 100%;
  max-height: min(66vh, 560px);
}

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

.site-footer {
  background: var(--offblack);
  color: rgba(255, 255, 255, 0.66);
  padding: 60px 0 28px;
  border-radius: 34px 34px 0 0;
  border: none;
  margin-top: -34px;
  position: relative;
  z-index: 1;
}
/* off-black footer - light type, orange hovers */
.site-footer p { color: rgba(255, 255, 255, 0.6) !important; }
.site-footer h4 { color: #fff !important; }
.site-footer ul a { color: rgba(255, 255, 255, 0.7); }
.site-footer ul a .fi { color: rgba(255, 255, 255, 0.85) !important; }
.site-footer ul a .chev-r { color: rgba(255, 255, 255, 0.4); }
.site-footer ul a:hover,
.site-footer ul a:hover .fi,
.site-footer ul a:hover .chev-r { color: var(--orange) !important; }
.site-footer .footer-social a,
.site-footer .footer-contact .ci { background: rgba(255, 255, 255, 0.1); color: #fff; }
.site-footer .footer-social a:hover,
.site-footer .footer-contact li a:hover .ci { background: var(--orange); color: #fff; }
.site-footer .footer-col--div::before { background: rgba(255, 255, 255, 0.12); }
.site-footer .footer-bottom { border-top-color: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.5); }
.site-footer .built-by::before,
.site-footer .built-by::after { background: rgba(255, 255, 255, 0.2); }
.site-footer .footer-links a { color: rgba(255, 255, 255, 0.6); }
.site-footer .footer-links a:hover { color: var(--orange); }
.site-footer .footer-links .sep { color: rgba(255, 255, 255, 0.25); }
.site-footer .built-by .bb-logo { background: rgba(255, 255, 255, 0.08); }
.site-footer .built-by .bb-logo img { filter: brightness(0) invert(1); opacity: 0.8; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 44px;
  padding-bottom: 40px;
}

.site-footer .logo { margin-bottom: 18px; }

.site-footer p { font-size: 14px; color: var(--body); max-width: 300px; }

/* social buttons */
.footer-social { display: flex; gap: 12px; margin-top: 24px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ece8e2;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* column headings */
.site-footer h4 {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* dividers between columns */
.footer-col { position: relative; }
.footer-col--div { padding-left: 44px; }
.footer-col--div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.site-footer ul li { margin-bottom: 4px; }

.site-footer ul a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
}

.site-footer ul a .fi { color: var(--ink); font-size: 18px; flex: none; width: 20px; }
.site-footer ul a .chev-r { margin-left: auto; color: var(--muted); font-size: 16px; }
.site-footer ul a:hover { color: var(--orange); }
.site-footer ul a:hover .fi,
.site-footer ul a:hover .chev-r { color: var(--orange); }

/* contact column icon chips */
.footer-contact li a { align-items: flex-start; }
.footer-contact .ci {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ece8e2;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex: none;
}
.footer-contact li a:hover .ci { background: var(--orange); color: #fff; }

/* bottom bar */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom > span:first-child { justify-self: start; }

/* Built by quela */
.built-by {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.built-by::before,
.built-by::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--line);
}

.built-by .bb-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.built-by .bb-logo {
  display: inline-flex;
  align-items: center;
  background: #efe9e1;
  border-radius: 10px;
  padding: 9px 16px;
  transition: all 0.2s;
}

.built-by .bb-logo img { height: 17px; width: auto; display: block; }
.built-by .bb-logo:hover { background: #e6dfd4; }

.footer-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 6px 6px 6px 22px;
  width: min(430px, 100%);
  justify-self: center;
}

.footer-search .fs-icon { color: var(--muted); font-size: 18px; flex: none; }

.footer-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  min-width: 0;
}

.footer-search input::placeholder { color: var(--muted); }

.footer-search button {
  width: 62px;
  height: 42px;
  border: none;
  border-radius: 24px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  flex: none;
  transition: background 0.2s;
}

.footer-search button:hover { background: var(--orange-dark); }

.footer-links { margin-left: auto; display: inline-flex; align-items: center; gap: 16px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--orange); }
.footer-links .sep { color: var(--line); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .explorer-grid, .reviews-row, .journal-grid, .people-grid,
  .event-perks { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .feature-4, .vm-features, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .vm-feature, .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .rooms-grid, .who-grid, .amenities-cards { grid-template-columns: repeat(2, 1fr); }
  .mr-mosaic { grid-template-columns: 1fr 1fr; }
  .security-grid, .app-alt { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .wf-step:not(:last-child)::after { display: none; }
  .amenities-grid-wrap { grid-template-columns: 1fr; }
  .workflow .container { padding: 40px 22px; }
}

@media (max-width: 860px) {
  .vo-ai-head { grid-template-columns: 1fr; gap: 24px; }
  .vo-ai-headmedia { max-width: 460px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; }
  .site-header--dark .main-nav {
    background: rgba(12, 9, 6, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }
  .site-header--dark .main-nav .dropdown { background: transparent; }
  .site-header--dark .main-nav .dropdown a { color: #fff; }
  .site-header--dark.is-scrolled .main-nav { background: #fff; border-bottom-color: var(--line); }
  .site-header--dark.is-scrolled .main-nav .dropdown a { color: var(--ink); }

  /* Mega menu collapses to a single column inside the mobile nav */
  .dropdown--mega {
    position: static;
    transform: none;
    width: 100%;
    display: block;
    padding: 8px 0 8px 12px;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
  }
  .main-nav li:hover .dropdown--mega { transform: none; }
  .dropdown--mega::before { display: none; }
  .dropdown--mega .mega-col { margin-bottom: 8px; }
  .dropdown--mega .mega-label { margin: 10px 0 6px; }
  .dropdown--mega .mega-feature,
  .dropdown--mega .mega-trial { display: none; }
  .nav-toggle { display: block; }
  .header-phone, .lang-switch { display: none; }

  .why-media { position: static; width: 100%; height: 260px; margin-bottom: 26px; }
  .why-media img { clip-path: none; border-radius: var(--radius-lg); }
  .why-card--float { position: static; transform: none; width: auto; margin-top: 22px; }
  .why-col { max-width: none; }

  .testimonial-photo img { clip-path: none; height: 360px; }
  .newsletter-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }

  .community-inner, .testimonial-grid, .know-grid, .app-grid,
  .excel-grid, .page-hero .grid, .plan-panel.active, .journey-grid,
  .trial-grid, .so-hero .grid, .exp-grid, .catering-grid, .vm-hero .grid,
  .cta-inner { grid-template-columns: 1fr; }

  .events-grid, .explorer-grid, .reviews-row, .journal-grid,
  .people-grid, .event-perks, .feature-4, .vm-features, .stats-row,
  .rooms-grid, .who-grid, .amenities-cards, .mr-mosaic, .mosaic,
  .workflow-steps { grid-template-columns: 1fr; }

  .area-card { flex-basis: calc((100% - 20px) / 2); }

  .perk { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { left: 23px; }
  .trial-copy { padding: 40px 28px; }
  .span-2 { grid-column: span 1; }
  .tall { grid-row: span 1; }
  .quick-actions { margin-top: 0; padding: 24px 0; }
  .qa-row { flex-wrap: wrap; border-radius: 20px; justify-content: center; padding: 10px 14px; }
  .qa-row a { border-right: none; padding: 8px 14px; }
  .vm-chips { flex-wrap: wrap; gap: 12px; }
  .vm-chips span { border-right: none; }
  .cap-table { display: block; overflow-x: auto; }
  .phone-notif { display: none; }
  section { padding: 52px 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col--div { padding-left: 0; }
  .footer-col--div::before { display: none; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 14px; }
  .footer-links { justify-self: center; }
  .built-by::before, .built-by::after { display: none; }

  .cta-media { min-height: 300px; }
  .cta-inner .cta-copy { padding: 38px 28px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
  .cta-media { min-height: 250px; }
  .cta-features { gap: 8px 12px; font-size: 12px; }
}

/* ============================================================
   WORKSPACE FINDER - AI-style hero concierge
   ============================================================ */
.finder { position: relative; max-width: 640px; }

/* sparkle marker inside the finder input */
.finder .search-box { padding-left: 22px; }
.finder-spark { color: var(--orange); font-size: 20px; flex: none; line-height: 1; }

.finder-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.finder-eyebrow i { color: var(--orange); font-size: 16px; }

.finder-bar-wrap { position: relative; }

/* the natural-language input opts out of the uppercase hero-search style */
.finder-input {
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  text-overflow: ellipsis;
}
.finder-input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 500; }

/* category chips */
.finder-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.finder-chips button {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.finder-chips button:hover { background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-1px); }

/* dropdown panel */
.finder-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(600px, 92vw);
  max-height: min(66vh, 560px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 60px rgba(16, 12, 8, 0.28);
  padding: 10px;
  z-index: 60;
  text-align: left;
  animation: finderIn 0.16s ease;
}
@keyframes finderIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

.finder-group { padding: 6px 6px 4px; }
.finder-group + .finder-group { border-top: 1px solid var(--line); margin-top: 4px; }
.finder-group-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 10px 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.finder-row {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: 12px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.14s;
}
.finder-row .fr-ico {
  width: 38px; height: 38px; flex: none;
  border-radius: 10px;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.finder-row .fr-txt { flex: 1; min-width: 0; }
.finder-row .fr-label { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); line-height: 1.25; }
.finder-row .fr-sub { font-size: 12.5px; color: var(--muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.finder-row .fr-go { color: var(--muted); font-size: 18px; flex: none; transition: transform 0.15s, color 0.15s; }
.finder-row:hover, .finder-row.is-active { background: var(--orange-soft); }
.finder-row:hover .fr-go, .finder-row.is-active .fr-go { color: var(--orange); transform: translateX(2px); }
.finder-row.is-active .fr-ico { background: #fff; }

/* query pills (recent / popular / trending) */
.finder-pillrow { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 10px 10px; }
.finder-pill {
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}
.finder-pill i { font-size: 13px; color: var(--muted); }
.finder-pill:hover, .finder-pill.is-active { background: var(--orange-soft); border-color: var(--orange); color: var(--ink); }

/* conversational recommendation card */
.finder-rec {
  margin: 6px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #3a3a3a 0%, var(--offblack) 100%);
  color: #fff;
}
.finder-rec .rec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: rgba(255, 255, 255, 0.16);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.finder-rec .rec-badge i { color: var(--orange); }
.finder-rec .rec-title { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 4px; }
.finder-rec .rec-desc { font-size: 13.5px; color: rgba(255, 255, 255, 0.8); margin-bottom: 12px; }
.finder-rec .rec-includes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.finder-rec .rec-includes span {
  font-size: 12.5px; font-family: var(--font-head); font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px; padding: 6px 12px;
  display: inline-flex; align-items: center; gap: 6px;
}
.finder-rec .rec-includes i { color: #8fd6a9; font-size: 13px; }
.finder-rec .rec-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.finder-rec .rec-cta {
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  padding: 10px 18px; border-radius: 12px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px; transition: transform 0.15s, background 0.15s;
}
.finder-rec .rec-cta--primary { background: var(--orange); color: #fff; }
.finder-rec .rec-cta--primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.finder-rec .rec-cta--ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.28); }
.finder-rec .rec-cta--ghost:hover { background: rgba(255, 255, 255, 0.2); }

.finder-empty { padding: 22px 16px; text-align: center; color: var(--muted); font-size: 14px; }

@media (max-width: 560px) {
  .finder-panel { width: 92vw; }
  .finder-row .fr-sub { white-space: normal; }
}

/* ============================================================
   APP BAND (Optix) - Core Black theme
   Dark, editorial treatment for the app showcase section.
   Orange remains the accent (buttons, links, hovers).
   ============================================================ */

.sec--black { background: var(--black); color: rgba(255, 255, 255, 0.76); }

.sec--black h1, .sec--black h2, .sec--black h3, .sec--black h4 { color: #fff; }
.sec--black p, .sec--black .sub, .sec--black .lead { color: rgba(255, 255, 255, 0.72); }

/* white QR card keeps its dark interior text on the black field */
.sec--black .qr-card { color: var(--body); }

.app-band.sec--black { background: var(--black); }
/* the Optix wordmark ships as black art - force it white on black */
.sec--black .app-logo-img { filter: brightness(0) invert(1); opacity: 0.92; }
/* store badges are black-on-black here; add a hairline to separate them */
.sec--black .store-badge { border: 1px solid rgba(255, 255, 255, 0.22); }
.sec--black .store-badge:hover { border-color: rgba(255, 255, 255, 0.45); }

/* ============================================================
   VIRTUAL OFFICE - AI reception + pricing (neutral: white/sand/black + orange)
   ============================================================ */
.btn--block { width: 100%; justify-content: center; }

.vo-ai { background: #fff; padding: 40px 0; }
.vo-ai-head {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 44px;
}
.vo-ai-headcopy { min-width: 0; }
.vo-ai-headmedia { min-width: 0; }
.vo-ai-headmedia img { width: 100%; height: auto; display: block; }

.vo-ai-head .eyebrow--icon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}
.vo-ai-head .eyebrow--icon i { font-size: 20px; line-height: 1; }

.vo-ai-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.vo-ai-title .hl { color: var(--orange); }

.vo-lead {
  color: var(--body);
  font-size: clamp(17px, 1.5vw, 20px);
  margin-top: 22px;
  line-height: 1.6;
  max-width: 760px;
}
.vo-ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vo-ai-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 10px 30px rgba(17, 17, 26, 0.08); }
.vo-ai-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: inline-grid; place-items: center; font-size: 22px; margin-bottom: 12px; }
.vo-ai-item h4 { font-size: 16px; margin-bottom: 6px; }
.vo-ai-item p { font-size: 13.5px; color: var(--body); }
.vo-ai-quote { margin: 34px auto 0; text-align: center; font-family: var(--font-head); font-weight: 600; font-style: italic; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink); max-width: 780px; }

.vo-pricing { background: #fff; }
.vo-pricing-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.vo-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.vo-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm); }
.vo-plan--pop { border-color: var(--orange); box-shadow: 0 20px 44px rgba(230, 134, 80, 0.16); }
.vo-plan-badge { position: absolute; top: -12px; left: 24px; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 12px; padding: 4px 12px; border-radius: 999px; }
.vo-plan-name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.vo-plan-price { font-family: var(--font-head); font-weight: 700; font-size: 34px; color: var(--ink); margin: 10px 0 2px; }
.vo-plan-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.vo-plan-annual { font-size: 13px; color: var(--body); font-weight: 600; margin-bottom: 12px; }
.vo-plan-for { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; min-height: 40px; }
.vo-plan-feat { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; flex: 1; }
.vo-plan-feat li { display: flex; gap: 9px; font-size: 13.5px; color: var(--body); }
.vo-plan-feat i { color: var(--orange); margin-top: 2px; }
.vo-pricing-notes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin: 26px auto 0; max-width: 900px; }
.vo-pricing-notes span { display: flex; gap: 8px; font-size: 12.5px; color: var(--muted); }
.vo-pricing-notes i { color: var(--orange); flex: none; }

@media (max-width: 900px) {
  .vo-ai-grid, .vo-plans, .vo-pricing-notes { grid-template-columns: 1fr; }
}

/* Eventbrite event card - image-less placeholder */
.event-card .cover--ph { display: grid; place-items: center; background: var(--cream); color: var(--orange); font-size: 40px; }

/* SEO sub-lines */
.why-lead { color: var(--body); font-size: 15px; line-height: 1.6; margin-top: 14px; max-width: 480px; }
.plan-sub { color: var(--muted); font-size: 13.5px; margin: 4px 0 6px; }

/* ================= PRICING PAGE ================= */
.pricing-hero { padding: 60px 0 30px; background: var(--cream); }
.pricing-hero .lead { max-width: 620px; }
.pricing-jump { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pricing-jump a {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink);
  text-decoration: none; padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; transition: all 0.15s;
}
.pricing-jump a:hover { border-color: var(--orange); color: var(--orange); }

.pricing-sec { padding: 52px 0; }
.pricing-sec:nth-of-type(even) { background: #fff; }
.pricing-head { margin-bottom: 30px; }
.pricing-head .sub { max-width: 520px; margin-top: 6px; }

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; padding: 26px 24px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.price-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.price-card.featured { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange) inset; }
.pc-badge {
  position: absolute; top: -11px; left: 24px; background: var(--orange); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: 0.03em;
  padding: 4px 12px; border-radius: 999px;
}
.pc-name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.pc-price { font-family: var(--font-head); font-weight: 700; font-size: 34px; color: var(--ink); margin: 8px 0 18px; line-height: 1; }
.pc-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.pc-list { list-style: none; margin: 0 0 20px; padding: 0; flex: 1; }
.pc-list li { display: flex; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--body); margin-bottom: 11px; }
.pc-list .c { color: var(--orange); flex: none; margin-top: 1px; }
.pc-note { font-size: 12px; color: var(--muted); margin: -8px 0 16px; }
.price-card .btn { width: 100%; }

.pricing-fineprint { padding: 8px 0 56px; }
.pricing-fineprint p { display: flex; gap: 10px; font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 820px; }
.pricing-fineprint i { color: var(--orange); font-size: 17px; flex: none; margin-top: 1px; }

/* ================= OPTIX EMBED MODAL ================= */
.optix-embed { padding: 18px; }
.optix-embed__card {
  position: relative; z-index: 1; background: #fff; border-radius: 16px; overflow: hidden;
  width: min(1120px, 96vw); height: min(88vh, 920px);
  display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,0.42);
  animation: bkPop 0.24s ease;
}
.optix-embed__bar { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.optix-embed__logo { height: 20px; }
.optix-embed__title { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.optix-embed__icon {
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line); background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 17px;
  cursor: pointer; text-decoration: none; transition: all 0.15s;
}
.optix-embed__icon:hover { border-color: var(--orange); color: var(--orange); }
.optix-embed__open {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 14px; border-radius: 9px; border: 1px solid var(--line); background: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink);
  text-decoration: none; white-space: nowrap; transition: all 0.15s;
}
.optix-embed__open i { color: var(--orange); font-size: 16px; }
.optix-embed__open:hover { border-color: var(--orange); color: var(--orange); }
.optix-embed__open:hover i { color: var(--orange); }
.optix-embed__stage { position: relative; flex: 1; background: var(--cream); }
.optix-embed__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.optix-embed__loading {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
  background: var(--cream); padding: 24px;
}
.optix-embed__spin {
  width: 46px; height: 46px; border-radius: 50%;
  border: 4px solid #e7ddcf; border-top-color: var(--orange); animation: optixSpin 0.8s linear infinite;
}
@keyframes optixSpin { to { transform: rotate(360deg); } }
.optix-embed__loading h4 { font-size: 18px; }
.optix-embed__loading p { font-size: 13.5px; color: var(--muted); max-width: 360px; line-height: 1.5; }
.optix-embed__foot {
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted);
}
.optix-embed__foot i { color: #12855f; }
.optix-embed__foot a { color: var(--orange); font-weight: 600; text-decoration: none; }
.optix-embed__foot a:hover { text-decoration: underline; }
/* floating glassmorphism close - used in "bare" mode (our own widget) */
.optix-embed__x {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 20px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  backdrop-filter: blur(10px) saturate(1.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: background 0.15s, transform 0.15s;
}
.optix-embed__x:hover { background: rgba(255, 255, 255, 0.34); transform: scale(1.06); }

/* bare mode: strip all chrome, iframe (orange widget) fills the rounded card */
.optix-embed--bare { background: transparent; }
.optix-embed--bare .optix-embed__bar { display: none; }
.optix-embed--bare .optix-embed__x { display: flex; }
.optix-embed--bare .optix-embed__loading {
  background: linear-gradient(150deg, #ea8a55 0%, #df7a43 100%); color: #fff;
}
.optix-embed--bare .optix-embed__loading p { color: rgba(255, 255, 255, 0.9); }
.optix-embed--bare .optix-embed__spin { border-color: rgba(255, 255, 255, 0.35); border-top-color: #fff; }

@media (max-width: 640px) { .optix-embed { padding: 0; } .optix-embed__card { width: 100vw; height: 100vh; border-radius: 0; } .optix-embed__x { top: 12px; right: 12px; } }

/* ================= JOURNAL ARTICLE ================= */
.article { padding: 0 0 40px; }

/* Full-bleed hero, flush under the header, header block overlaid on the right */
.article-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.article-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(40,40,40,0) 0%, rgba(40,40,40,0.12) 42%, rgba(40,40,40,0.72) 100%);
}
.article-hero .container { position: relative; z-index: 2; width: 100%; }
.article-hero__inner {
  margin-left: auto; max-width: 560px;
  text-align: right; color: #fff; padding: 44px 0;
}
.article-back {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.85);
  margin-bottom: 20px; transition: color 0.15s;
}
.article-back:hover { color: #fff; }
.article-hero__inner .eyebrow { display: block; margin-bottom: 12px; color: #ffd9c2; }
.article-title { font-size: clamp(28px, 4vw, 46px); line-height: 1.08; margin-bottom: 20px; color: #fff; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: rgba(255,255,255,0.9); font-size: 13.5px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta i { color: #ffb488; font-size: 15px; }

/* Two-column layout: sticky related-articles rail + article body */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 52px;
  align-items: start;
  padding-top: 44px;
}
.article-side__sticky { position: sticky; top: 88px; }
.side-title {
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 16px;
}
.side-card {
  display: flex; gap: 13px; align-items: center; text-decoration: none;
  padding: 10px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.side-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.side-card img { width: 74px; height: 60px; flex: none; object-fit: cover; border-radius: 8px; }
.side-card .sc-body { min-width: 0; }
.side-card .cat { font-family: var(--font-head); font-weight: 600; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--orange); }
.side-card h5 { font-size: 13.5px; line-height: 1.35; margin-top: 3px; color: var(--ink); }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 8px; }
  .article-side { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
  .article-side__sticky { position: static; }
}
@media (max-width: 760px) {
  .article-hero { min-height: 400px; align-items: flex-end; }
  .article-hero__scrim { background: linear-gradient(0deg, rgba(40,40,40,0.82) 0%, rgba(40,40,40,0.15) 60%, rgba(40,40,40,0) 100%); }
  .article-hero__inner { margin-left: 0; max-width: none; text-align: left; padding: 28px 0; }
  .article-meta { justify-content: flex-start; }
}

.article-body { min-width: 0; padding-bottom: 20px; }
.article-body .article-lead { font-size: 19px; line-height: 1.6; color: var(--ink); font-weight: 500; margin-bottom: 24px; }
.article-body h2 { font-size: clamp(22px, 2.4vw, 28px); margin: 38px 0 12px; }
.article-body h3 { font-size: 18px; margin: 26px 0 8px; color: var(--ink); }
.article-body p { font-size: 16px; line-height: 1.75; color: var(--body); margin-bottom: 18px; }
.article-body ul { margin: 0 0 20px; padding-left: 4px; list-style: none; }
.article-body ul li {
  position: relative; padding-left: 28px; margin-bottom: 10px;
  font-size: 16px; line-height: 1.65; color: var(--body);
}
.article-body ul li::before {
  content: "\ea6c"; font-family: "remixicon"; position: absolute; left: 0; top: 1px;
  color: var(--orange); font-size: 17px;
}
.article-body ul li strong { color: var(--ink); }

.article-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-top: 44px; padding: 30px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #ea8a55 0%, #df7a43 100%);
}
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.article-cta p { color: rgba(255,255,255,0.9); font-size: 14px; margin: 0; }
.article-cta .btn--primary { background: var(--offblack); border-color: var(--offblack); }
.article-cta .btn--primary:hover { background: #000; }

@media (max-width: 640px) {
  .article-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ================= BOOK A TOUR / CONTACT PAGE ================= */
.tour-hero { position: relative; padding: 0; overflow: hidden; background: #fff; }
.tour-hero-media { position: absolute; inset: 0; z-index: 0; }
.tour-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.16; }
.tour-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.85) 70%, #fff 100%);
}
.tour-hero-inner { position: relative; z-index: 2; padding: 72px 0 40px; }
.tour-hero-inner .lead { max-width: 560px; }

.tour-section { padding-top: 20px; }
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.tour-grid .sub { max-width: 440px; margin-bottom: 30px; }
.tour-connect { padding-left: 64px; border-left: 1px solid var(--line); }

/* option cards (left) */
.tour-options { display: flex; flex-direction: column; gap: 16px; }
.tour-option {
  display: flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.tour-option:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.tour-option .ic {
  width: 54px; height: 54px; flex: none; border-radius: 50%;
  background: var(--orange-soft); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 23px;
}
.tour-option:hover .ic { color: var(--orange); }
.tour-option .tx { display: flex; flex-direction: column; gap: 4px; }
.tour-option .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.tour-option .tx span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.tour-option .go {
  margin-left: auto; flex: none; color: var(--orange); font-size: 22px;
  transition: transform 0.18s;
}
.tour-option:hover .go { transform: translateX(4px); }

/* contact rows (right) */
.tour-contacts { margin-bottom: 24px; }
.tour-contact {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0; text-decoration: none; border-bottom: 1px solid var(--line);
}
.tour-contact:first-child { padding-top: 4px; }
.tour-contact .ic {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  background: var(--orange-soft); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.tour-contact .tx { display: flex; flex-direction: column; gap: 3px; }
.tour-contact .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); line-height: 1.3; }
.tour-contact .tx strong.hl { color: var(--orange); }
.tour-contact .tx span { font-size: 13px; color: var(--muted); }

/* member signup card */
.tour-signup {
  display: flex; align-items: center; gap: 18px; margin-top: 22px;
  background: var(--orange-soft); border: 1px solid #f2dcc8; border-radius: var(--radius);
  padding: 22px 24px; text-decoration: none; transition: border-color 0.18s, transform 0.18s;
}
.tour-signup:hover { border-color: var(--orange); transform: translateY(-2px); }
.tour-signup .ic {
  width: 54px; height: 54px; flex: none; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 24px;
}
.tour-signup .tx { display: flex; flex-direction: column; gap: 4px; }
.tour-signup .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); }
.tour-signup .tx span { font-size: 13.5px; color: var(--body); line-height: 1.45; }
.tour-signup .tx .lnk { color: var(--orange); font-weight: 600; text-decoration: underline; }
.tour-signup .go { margin-left: auto; flex: none; color: var(--orange); font-size: 22px; transition: transform 0.18s; }
.tour-signup:hover .go { transform: translateX(4px); }

@media (max-width: 860px) {
  .tour-grid { grid-template-columns: 1fr; gap: 44px; }
  .tour-connect { padding-left: 0; border-left: 0; padding-top: 4px; }
  .tour-hero-inner { padding: 54px 0 30px; }
}

/* ================= RESOURCES DOCS LAYOUT ================= */
.docs { padding: 0; background: #fff; }
.docs-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 40px 0 64px;
}

/* left nav */
.docs-nav { position: sticky; top: 88px; align-self: start; }
.docs-nav__title {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 11px; margin-bottom: 14px;
}
.docs-nav__title i { color: var(--orange); font-size: 17px; }
.docs-nav nav { display: flex; flex-direction: column; gap: 2px; }
.docs-nav a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px;
  color: var(--body); text-decoration: none; font-family: var(--font-head); font-weight: 500; font-size: 13.5px;
  transition: background 0.12s, color 0.12s;
}
.docs-nav a i { color: var(--muted); font-size: 16px; flex: none; }
.docs-nav a:hover { background: var(--cream); color: var(--ink); }
.docs-nav a.active { background: var(--orange-soft); color: var(--ink); font-weight: 600; }
.docs-nav a.active i { color: var(--orange); }

/* main column */
.docs-main { min-width: 0; }
.docs-main .container { max-width: none; padding: 0; }
.docs-main > section { padding: 42px 0; background: transparent; }
.docs-main > section:first-child { padding-top: 2px; }
.docs-main > section + section { border-top: 1px solid var(--line); }
.docs-main h1.h-xl { margin-bottom: 14px; }
.docs-main .eyebrow { display: block; margin-bottom: 10px; }
.docs-hero-media { margin-top: 22px; border-radius: var(--radius-lg); overflow: hidden; }
.docs-hero-media img { width: 100%; height: 300px; object-fit: cover; display: block; }
/* reflow the reused marketing grids into the narrower column */
.docs-main .journal-grid { grid-template-columns: 1fr 1fr; }
.docs-main .events-grid { grid-template-columns: 1fr; }
.docs-main .newsletter-card { grid-template-columns: 1fr; }
.docs-main .newsletter { background: transparent; }

/* guides links */
.docs-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px; }
.docs-link {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; background: #fff;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.docs-link:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.docs-link .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.docs-link .tx { display: flex; flex-direction: column; gap: 2px; }
.docs-link .tx strong { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.docs-link .tx span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.docs-link .go { margin-left: auto; color: var(--orange); font-size: 20px; flex: none; }

/* right TOC */
.docs-toc { position: sticky; top: 88px; align-self: start; }
.docs-toc__label { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); margin-bottom: 14px; }
.docs-toc nav { display: flex; flex-direction: column; }
.docs-toc a {
  padding: 6px 0 6px 14px; border-left: 2px solid var(--line);
  color: var(--muted); text-decoration: none; font-size: 12.5px; line-height: 1.4; transition: all 0.12s;
}
.docs-toc a:hover { color: var(--ink); border-left-color: var(--muted); }
.docs-toc a.active { border-left-color: var(--orange); color: var(--orange); font-weight: 600; }

@media (max-width: 1024px) {
  .docs-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 32px; }
  .docs-toc { display: none; }
}
@media (max-width: 720px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-nav { position: static; }
  .docs-main .journal-grid, .docs-links { grid-template-columns: 1fr; }
}

/* Drop-in choice modal option buttons (orange) */
.dropin-opt { width: 100%; cursor: pointer; font: inherit; text-align: left; background: var(--orange); border-color: var(--orange); transition: background 0.15s, border-color 0.15s; }
.dropin-opt:hover { background: #d9743c; border-color: #d9743c; }
.dropin-opt .ic { background: rgba(255, 255, 255, 0.2); color: #fff; }
.dropin-opt .tx strong { color: #fff; }
.dropin-opt .tx span { color: rgba(255, 255, 255, 0.9); }
.dropin-opt .go { color: #fff; }

/* Virtual Office onboarding popups */
.qspace-vo-modal-lock { overflow: hidden; }
.qspace-vo-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(18, 24, 29, 0.68);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.qspace-vo-modal--open { opacity: 1; visibility: visible; }
.qspace-vo-modal__panel {
  width: min(1040px, 100%);
  height: min(840px, calc(100vh - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8f7f3;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.22s ease;
}
.qspace-vo-modal--open .qspace-vo-modal__panel { transform: none; }
.qspace-vo-modal iframe { width: 100%; flex: 1; min-height: 0; border: 0; background: #f8f7f3; }
.qspace-vo-modal--account .qspace-vo-modal__panel {
  background: transparent;
  overflow: visible;
}
.qspace-vo-modal--account iframe { background: transparent; }
@media (max-width: 640px) {
  .qspace-vo-modal { padding: 0; }
  .qspace-vo-modal__panel { height: 100vh; border-radius: 0; }
}

/* ============================================================
   PURPOSEFUL MOTION
   Progressive enhancement only: elements receive these classes
   from main.js, so content is never withheld without JavaScript.
   ============================================================ */
html.motion-ready:not(.motion-reduced) .motion-reveal {
  opacity: 0;
  translate: var(--motion-x, 0) var(--motion-y, var(--motion-distance));
  transition:
    opacity var(--motion-duration) var(--motion-ease) var(--motion-delay, 0ms),
    translate var(--motion-duration) var(--motion-ease) var(--motion-delay, 0ms);
  will-change: opacity, translate;
}

html.motion-ready:not(.motion-reduced) .motion-reveal--hero {
  --motion-y: 12px;
  --motion-duration: 460ms;
}

html.motion-ready:not(.motion-reduced) .motion-reveal.is-visible,
html.motion-ready:not(.motion-reduced) .motion-reveal:focus-within,
html.motion-ready:not(.motion-reduced) .motion-reveal:focus-visible {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

/* Short feedback makes interactive choices feel responsive without moving layout. */
.circle-btn,
.hero-vbtn,
.quick-actions a,
.finder-panel a,
.acc-head,
.plan-tab,
.nav-toggle {
  transition:
    color var(--motion-duration-fast) ease,
    background-color var(--motion-duration-fast) ease,
    border-color var(--motion-duration-fast) ease,
    box-shadow var(--motion-duration-fast) ease,
    transform var(--motion-duration-fast) var(--motion-ease);
}

.explore-card,
.journal-card,
.event-card,
.room-card,
.feature-4 > *,
.amenity-photo-card,
.who-card,
.vo-ai-item,
.vo-plan,
.price-card,
.docs-link {
  transition:
    transform var(--motion-duration-fast) var(--motion-ease),
    box-shadow var(--motion-duration-fast) ease,
    border-color var(--motion-duration-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .quick-actions a:hover,
  .circle-btn:hover,
  .hero-vbtn:hover { transform: translateY(-2px); }

  .explore-card:hover,
  .journal-card:hover,
  .event-card:hover,
  .room-card:hover,
  .feature-4 > *:hover,
  .amenity-photo-card:hover,
  .who-card:hover,
  .vo-ai-item:hover,
  .vo-plan:hover,
  .price-card:hover,
  .docs-link:hover {
    transform: translateY(-3px);
  }
}

.acc-head:hover { background: rgba(230, 134, 80, 0.06); }
.acc-head:focus-visible,
.nav-toggle:focus-visible,
.circle-btn:focus-visible,
.hero-vbtn:focus-visible,
.quick-actions a:focus-visible,
.finder-panel a:focus-visible {
  outline: 3px solid rgba(230, 134, 80, 0.45);
  outline-offset: 3px;
}

/* Testimonial changes use a single brief hand-off instead of a hard content swap. */
.testimonial-grid > * {
  transition: opacity 120ms ease, translate 120ms var(--motion-ease);
}
.testimonial-grid.is-changing > * {
  opacity: 0.32;
  translate: 0 4px;
}

@media (max-width: 860px) {
  html.motion-ready:not(.motion-reduced) .main-nav {
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--motion-duration-fast) ease,
      transform var(--motion-duration-fast) var(--motion-ease),
      visibility 0s linear var(--motion-duration-fast);
  }
  html.motion-ready:not(.motion-reduced) .main-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.motion-ready .motion-reveal,
  html.motion-ready .motion-reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    transition: none;
  }
  .testimonial-grid > * { transition: none; }
  .testimonial-grid.is-changing > * { opacity: 1; translate: 0 0; }
  .logos-track,
  .reviews-track { animation: none; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
