/* =====================================================================
   Be Virtual — public site
   Landing page, service pages, location pages, pricing, legal pages
   and the authentication screens.
   Loaded after core.css.
   ===================================================================== */

/* ---------------------------------------------------------------------
   Hero

   Dark, atmospheric, and deliberately not crowded. The artwork is an
   accent at roughly a third of the width, sitting inside a glass panel
   with a grid ground behind it, rather than a solid slab filling half
   the screen.
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink-bg);
  color: var(--ink-text);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
  isolation: isolate;
}

/* Ambient light: two coloured pools plus a faint engineering grid. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 520px at 8% -12%, rgba(15, 98, 254, 0.28), transparent 68%),
    radial-gradient(760px 420px at 96% 4%, rgba(0, 213, 213, 0.14), transparent 64%),
    radial-gradient(620px 620px at 62% 120%, rgba(165, 110, 255, 0.12), transparent 62%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 76%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: var(--sp-10);
  min-height: 560px;
  padding: var(--sp-12) 0 var(--sp-11);
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}
.hero__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  align-self: flex-start;
  padding: var(--sp-2) var(--sp-4);
  color: var(--ink-text-2);
  border: 1px solid var(--hairline-strong);
  border-left: 2px solid var(--interactive);
  background: rgba(255, 255, 255, 0.03);
}
.hero__copy .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--glow-cyan);
  box-shadow: 0 0 10px 2px rgba(0, 213, 213, 0.8);
  animation: bv-pulse 2.6s ease-in-out infinite;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: var(--sp-6) 0 var(--sp-6);
  font-weight: 300;
}
.hero h1 em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(100deg, #4589ff 0%, #00d5d5 52%, #a56eff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lede {
  font-size: var(--type-body-l);
  line-height: 1.6;
  color: var(--ink-text-2);
  max-width: 50ch;
  margin-bottom: var(--sp-8);
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero__actions .btn { min-width: 190px; }
.hero__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(6px);
}
.hero__actions .btn--secondary:hover { background: rgba(255, 255, 255, 0.12); }

/* --- Art panel --------------------------------------------------------- */
.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--hairline-strong);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  box-shadow: var(--glow-soft);
}
.hero__art .art {
  --art-paper: transparent;
  --art-tint: rgba(255, 255, 255, 0.06);
  --art-ink: #9aa4b2;
  --art-line: #7d8794;
  --art-grid: rgba(255, 255, 255, 0.14);
  --art-accent: #4589ff;
  background: transparent;
  max-width: 300px;
  filter: drop-shadow(0 0 18px rgba(69, 137, 255, 0.35));
}

/* Corner ticks: four short luminous marks, the HUD detail that makes the
   panel read as an instrument rather than a picture frame. */
.hero__art::before,
.hero__art::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--interactive);
  opacity: 0.7;
}
.hero__art::before { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.hero__art::after { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }

/* --- Stat band --------------------------------------------------------- */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--ink-line);
  background: var(--ink-line);
}
.hero__stat {
  position: relative;
  padding: var(--sp-6) var(--sp-5);
  background: var(--ink-bg);
  transition: background var(--dur-base) var(--ease);
}
.hero__stat::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--interactive);
  box-shadow: 0 0 12px 1px rgba(15, 98, 254, 0.7);
}
.hero__stat:hover { background: var(--ink-bg-2); }
.hero__stat strong {
  display: block;
  font-size: var(--type-h3);
  color: #ffffff;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero__stat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-text-3);
  margin-top: var(--sp-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1056px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: var(--sp-8);
    padding: var(--sp-10) 0 var(--sp-9);
  }
  .hero__art { padding: var(--sp-7); justify-self: start; max-width: 380px; }
  .hero__art .art { max-width: 240px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero__inner { padding: var(--sp-9) 0 var(--sp-8); }
  .hero__actions .btn { min-width: 0; width: 100%; }
  .hero__art { max-width: none; }
  .hero__art .art { max-width: 190px; }
  .hero__stats { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   Service cards
   --------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.service-card {
  background: var(--ui-02);
  display: flex;
  flex-direction: column;
  color: inherit;
  border-bottom: 0;
  position: relative;
  transition: background var(--dur-base) var(--ease);
}
.service-card:hover { background: var(--ui-01); color: inherit; }
.service-card:hover .service-card__cta { color: var(--interactive-hover); }
.service-card:hover .art { --art-tint: var(--ui-03); }
.service-card__art { border-bottom: var(--border); background: var(--art-paper); }
.service-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 {
  font-size: var(--type-h4);
  margin-bottom: var(--sp-3);
  color: var(--text-01);
}
.service-card__body p { color: var(--text-02); font-size: var(--type-body-s); margin-bottom: var(--sp-5); }
.service-card__price {
  margin-top: auto;
  padding-top: var(--sp-5);
  border-top: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
}
.service-card__price strong { font-size: var(--type-h4); font-weight: 400; color: var(--text-01); }
.service-card__price span { font-size: var(--type-caption); color: var(--text-02); }
.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-4) var(--sp-6);
  border-top: var(--border);
  color: var(--interactive);
  font-size: var(--type-body-s);
}

@media (max-width: 1056px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 672px) { .service-grid { grid-template-columns: 1fr; } }

/* Feature strip */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.feature {
  background: var(--ui-02);
  padding: var(--sp-6);
}
.feature .icon { color: var(--interactive); margin-bottom: var(--sp-4); }
.feature h4 { font-size: var(--type-body); font-weight: 600; margin-bottom: var(--sp-3); }
.feature p { font-size: var(--type-body-s); color: var(--text-02); margin: 0; }

@media (max-width: 1056px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Service detail page
   --------------------------------------------------------------------- */
.page-head {
  background: var(--ui-01);
  border-bottom: var(--border);
  padding: var(--sp-8) 0;
}
.page-head h1 { font-size: var(--type-h2); margin-bottom: var(--sp-4); }
.page-head p { color: var(--text-02); font-size: var(--type-body); max-width: 70ch; margin: 0; }
.page-head .breadcrumb { margin-bottom: var(--sp-5); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-9);
  align-items: start;
}
@media (max-width: 1056px) { .detail-layout { grid-template-columns: 1fr; } }

.prose { max-width: 72ch; color: var(--text-02); font-size: var(--type-body); line-height: 1.6; }
.prose h2 {
  font-size: var(--type-h4);
  color: var(--text-01);
  margin: var(--sp-8) 0 var(--sp-4);
  font-weight: 600;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--type-body-l); color: var(--text-01); margin: var(--sp-7) 0 var(--sp-3); font-weight: 600; }
.prose ul, .prose ol { margin-bottom: var(--sp-5); padding-left: var(--sp-6); }
.prose li { margin-bottom: var(--sp-3); }
.prose strong { color: var(--text-01); font-weight: 600; }
.prose a { border-bottom: 1px solid currentColor; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-6); font-size: var(--type-body-s); }
.prose th, .prose td { border: var(--border); padding: var(--sp-3) var(--sp-4); text-align: left; }
.prose th { background: var(--ui-01); font-weight: 600; color: var(--text-01); }

/* ---------------------------------------------------------------------
   Pricing
   --------------------------------------------------------------------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.plan {
  background: var(--ui-02);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured { border-top: 3px solid var(--interactive); }
.plan__flag {
  position: absolute;
  top: 0; right: 0;
  background: var(--interactive);
  color: #fff;
  font-size: var(--type-caption);
  letter-spacing: 0.32px;
  padding: 3px var(--sp-3);
  text-transform: uppercase;
}
.plan h3 { font-size: var(--type-h4); margin-bottom: var(--sp-2); }
.plan__tagline { color: var(--text-02); font-size: var(--type-body-s); margin-bottom: var(--sp-5); min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: var(--sp-2); margin-bottom: var(--sp-2); flex-wrap: wrap; }
.plan__amount { font-size: var(--type-h2); line-height: 1.1; font-weight: 300; color: var(--text-01); }
.plan__cycle { font-size: var(--type-body-s); color: var(--text-02); }
.plan__mrp { font-size: var(--type-body-s); color: var(--text-03); text-decoration: line-through; }
.plan__tax { font-size: var(--type-caption); color: var(--text-02); margin-bottom: var(--sp-5); }
.plan__features { margin: 0 0 var(--sp-6); padding: var(--sp-5) 0 0; border-top: var(--border); list-style: none; flex: 1; }
.plan__features li {
  position: relative;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-3);
  font-size: var(--type-body-s);
  color: var(--text-02);
}
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--interactive);
  border-bottom: 2px solid var(--interactive);
  transform: rotate(-45deg);
}
.plan .btn { max-width: none; }

.cycle-switch { display: flex; justify-content: center; margin-bottom: var(--sp-7); }

/* ---------------------------------------------------------------------
   Locations
   --------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.location-card { background: var(--ui-02); display: flex; flex-direction: column; }
.location-card__art { border-bottom: var(--border); }
.location-card__body { padding: var(--sp-6); flex: 1; }
.location-card__body h3 { font-size: var(--type-h4); margin-bottom: var(--sp-2); }
.location-card address {
  font-style: normal;
  color: var(--text-02);
  font-size: var(--type-body-s);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
.location-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--type-caption);
  color: var(--text-02);
  margin-bottom: var(--sp-5);
}
.location-card__meta span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.amenity-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ---------------------------------------------------------------------
   Callback / lead form
   --------------------------------------------------------------------- */
.callback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  background: var(--ui-02);
}
.callback__copy {
  padding: var(--sp-8);
  background: var(--ink-bg);
  color: var(--ink-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.callback__copy h2 { color: #ffffff; font-size: var(--type-h3); margin-bottom: var(--sp-4); }
.callback__copy p { color: var(--ink-text-2); }
.callback__copy .eyebrow { color: var(--ink-text-3); }
.callback__contact { margin-top: var(--sp-7); padding-top: var(--sp-6); border-top: 1px solid var(--ink-line); }
.callback__contact a { color: #ffffff; }
.callback__contact div { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); font-size: var(--type-body-s); }
.callback__form { padding: var(--sp-8); }

@media (max-width: 800px) { .callback { grid-template-columns: 1fr; } .callback__copy, .callback__form { padding: var(--sp-6); } }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.cta-band {
  background: var(--interactive);
  color: #ffffff;
  padding: var(--sp-9) 0;
}
.cta-band h2 { color: #ffffff; font-size: var(--type-h3); margin-bottom: var(--sp-3); }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8); flex-wrap: wrap; }
.cta-band .btn { background: #ffffff; color: var(--interactive); }
.cta-band .btn:hover { background: #f4f4f4; color: var(--interactive-active); }

/* ---------------------------------------------------------------------
   Steps / how it works
   --------------------------------------------------------------------- */
.howto {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.howto__step { background: var(--ui-02); padding: var(--sp-6); border-top: 3px solid var(--interactive); }
.howto__num {
  font-family: var(--font-mono);
  font-size: var(--type-h3);
  color: var(--interactive);
  display: block;
  margin-bottom: var(--sp-4);
  line-height: 1;
}
.howto__step h4 { font-size: var(--type-body); font-weight: 600; margin-bottom: var(--sp-3); }
.howto__step p { font-size: var(--type-body-s); color: var(--text-02); margin: 0; }
@media (max-width: 1056px) { .howto { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .howto { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   Authentication screens
   --------------------------------------------------------------------- */
.auth {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h));
}
.auth__aside {
  background: var(--ink-bg);
  color: var(--ink-text);
  padding: var(--sp-11) var(--sp-9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth__aside h2 { color: #ffffff; font-size: var(--type-h2); font-weight: 300; margin-bottom: var(--sp-5); line-height: 1.2; }
.auth__aside p { color: var(--ink-text-2); font-size: var(--type-body); max-width: 46ch; }
.auth__aside .eyebrow { color: var(--ink-text-3); margin-bottom: var(--sp-5); }
.auth__points { list-style: none; margin: var(--sp-8) 0 0; padding: 0; }
.auth__points li {
  position: relative;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
  color: var(--ink-text-2);
  font-size: var(--type-body-s);
}
.auth__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--interactive);
  border-bottom: 2px solid var(--interactive);
  transform: rotate(-45deg);
}
.auth__powered {
  margin-top: var(--sp-9);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--ink-line);
  font-size: var(--type-caption);
  letter-spacing: 0.32px;
  color: var(--ink-text-3);
}
.auth__powered a { color: var(--ink-text-3); border-bottom: 1px solid transparent; }
.auth__powered a:hover { color: var(--ink-text); border-bottom-color: currentColor; }

.auth__panel {
  padding: var(--sp-9) var(--sp-9);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ui-background);
}
.auth__form { width: 100%; max-width: 400px; }
.auth__form h1 { font-size: var(--type-h3); margin-bottom: var(--sp-3); }
.auth__form > p { color: var(--text-02); margin-bottom: var(--sp-7); }
.auth__meta { margin-top: var(--sp-6); font-size: var(--type-body-s); color: var(--text-02); }
.auth__meta a { font-weight: 600; }

.auth__divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-7) 0;
  color: var(--text-03);
  font-size: var(--type-caption);
  text-transform: uppercase;
  letter-spacing: 0.32px;
}
.auth__divider::before,
.auth__divider::after { content: ""; flex: 1; height: 1px; background: var(--ui-03); }

.social-set { display: grid; gap: var(--sp-3); }

.pw-strength { display: flex; gap: 2px; margin-top: var(--sp-3); }
.pw-strength span { height: 4px; flex: 1; background: var(--ui-03); transition: background var(--dur-base) var(--ease); }
.pw-strength[data-score="1"] span:nth-child(1) { background: var(--support-error); }
.pw-strength[data-score="2"] span:nth-child(-n+2) { background: var(--support-warning); }
.pw-strength[data-score="3"] span:nth-child(-n+3) { background: var(--support-info); }
.pw-strength[data-score="4"] span { background: var(--support-success); }

@media (max-width: 1056px) {
  .auth { grid-template-columns: 1fr; min-height: 0; }
  .auth__aside { padding: var(--sp-8) var(--sp-5); order: 2; }
  .auth__panel { padding: var(--sp-8) var(--sp-5); order: 1; }
  .auth__aside h2 { font-size: var(--type-h3); }
}

/* ---------------------------------------------------------------------
   Error page
   --------------------------------------------------------------------- */
.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-11) var(--sp-5);
  text-align: center;
}
.error-page__code {
  font-family: var(--font-mono);
  font-size: var(--type-display);
  color: var(--interactive);
  line-height: 1;
  margin-bottom: var(--sp-5);
}
.error-page h1 { font-size: var(--type-h3); margin-bottom: var(--sp-4); }
.error-page p { color: var(--text-02); max-width: 46ch; margin: 0 auto var(--sp-7); }

/* ---------------------------------------------------------------------
   FAQ / legal index
   --------------------------------------------------------------------- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--ui-03);
  border: var(--border);
}
.legal-card {
  background: var(--ui-02);
  padding: var(--sp-6);
  color: inherit;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: background var(--dur-base) var(--ease);
}
.legal-card:hover { background: var(--ui-01); color: inherit; }
.legal-card h3 { font-size: var(--type-body-l); font-weight: 600; }
.legal-card p { font-size: var(--type-body-s); color: var(--text-02); margin: 0; flex: 1; }
.legal-card span { color: var(--interactive); font-size: var(--type-body-s); display: inline-flex; align-items: center; gap: var(--sp-3); }

/* ---------------------------------------------------------------------
   Cart and checkout
   --------------------------------------------------------------------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-8);
  align-items: start;
}

/* --- Lines -------------------------------------------------------------- */
.cart-lines { border: var(--border); background: var(--ui-02); }

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr 220px;
  gap: var(--sp-6);
  padding: var(--sp-6);
  border-bottom: var(--border);
  position: relative;
}
.cart-line:last-of-type { border-bottom: 0; }
.cart-line.is-unavailable { opacity: 0.6; }
.cart-line.is-unavailable::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--support-error);
}

.cart-line__art { display: flex; align-items: flex-start; }
.cart-line__art .art { max-width: 72px; }

.cart-line__service {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--interactive);
  margin-bottom: var(--sp-2);
}
.cart-line__name { font-size: var(--type-h5); margin-bottom: var(--sp-4); }
.cart-line__name a { color: var(--text-01); text-decoration: none; border-bottom: 1px solid transparent; }
.cart-line__name a:hover { border-bottom-color: var(--interactive); }

.cart-line__meta {
  list-style: none;
  margin: 0 0 var(--sp-3);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
}
.cart-line__meta li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin: 0;
  font-size: var(--type-body-s);
  color: var(--text-02);
}
.cart-line__meta .icon { color: var(--text-03); flex: none; }

.cart-line__warn {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--type-helper);
  color: var(--text-02);
  margin: 0 0 var(--sp-3);
}

.cart-line__extras {
  list-style: none;
  margin: var(--sp-3) 0 0;
  padding: var(--sp-3) 0 0;
  border-top: 1px dashed var(--ui-03);
  font-size: var(--type-body-s);
  color: var(--text-02);
}
.cart-line__extras li { margin: 0 0 var(--sp-2); }

.cart-line__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-4);
  text-align: right;
}
.cart-line__price strong { display: block; font-size: var(--type-h5); }
.cart-line__price span { display: block; }

.qty { display: flex; gap: var(--sp-2); align-items: center; }
.qty__input { width: 76px; text-align: center; padding: 0 var(--sp-3); }

.cart-lines__foot {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-top: var(--border);
  background: var(--ui-01);
}

/* --- Summary ------------------------------------------------------------ */
.cart-summary {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-5));
  padding: var(--sp-6);
  background: var(--ink-bg);
  color: var(--ink-text);
  border: 1px solid var(--ink-line);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.cart-summary__title {
  font-size: var(--type-h6);
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-text-3);
  margin-bottom: var(--sp-5);
}
.cart-summary__rows { margin: 0 0 var(--sp-5); }
.cart-summary__rows > div {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-2) 0;
  font-size: var(--type-body-s);
}
.cart-summary__rows dt { color: var(--ink-text-2); margin: 0; }
.cart-summary__rows dd { margin: 0; color: var(--ink-text); font-variant-numeric: tabular-nums; }
.cart-summary__rows .is-credit dd { color: var(--support-success); }
.cart-summary__rows .is-sub {
  border-top: 1px solid var(--ink-line);
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  margin-bottom: var(--sp-5);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.cart-summary__total span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-text-3);
}
.cart-summary__total strong {
  font-size: var(--type-h3);
  font-weight: 400;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.cart-summary .btn--block { margin-bottom: var(--sp-4); }

.cart-summary__note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--type-helper);
  color: var(--ink-text-3);
  margin: 0 0 var(--sp-5);
  line-height: 1.5;
}
.cart-summary__note a { color: var(--ink-text-2); }
.cart-summary__note .icon { flex: none; margin-top: 2px; }

.cart-coupon { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.cart-coupon .input {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-bottom-color: var(--ink-line);
}
.cart-coupon .input::placeholder { color: var(--ink-text-3); }
.cart-coupon.is-applied {
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid rgba(36, 161, 72, 0.4);
  background: rgba(36, 161, 72, 0.12);
  font-size: var(--type-body-s);
}
.cart-coupon.is-applied .icon { color: var(--support-success); }
.cart-coupon.is-applied .btn { color: var(--ink-text-2); }

.cart-summary__trust {
  list-style: none;
  margin: 0;
  padding: var(--sp-5) 0 0;
  border-top: 1px solid var(--ink-line);
}
.cart-summary__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-3);
  font-size: var(--type-helper);
  color: var(--ink-text-3);
}
.cart-summary__trust .icon { color: var(--interactive); flex: none; }

@media (max-width: 1056px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 672px) {
  .cart-line { grid-template-columns: 1fr; gap: var(--sp-4); }
  .cart-line__art { display: none; }
  .cart-line__controls { align-items: flex-start; text-align: left; }
}

/* --- Plan buy control --------------------------------------------------- */
.plan-buy { margin-top: auto; padding-top: var(--sp-5); }
.plan-buy__row {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-end;
  margin-bottom: var(--sp-4);
}
.plan-buy__field { flex: 1; min-width: 0; }
.plan-buy__field--qty { flex: 0 0 84px; }
.plan-buy__field .label { margin-bottom: var(--sp-2); }
.plan-buy__field .select,
.plan-buy__field .input { height: 40px; font-size: var(--type-body-s); }
.plan-buy__field .select { background-position: calc(100% - 20px) 18px, calc(100% - 14px) 18px; }
.plan-buy__field--qty .input { text-align: center; padding: 0 var(--sp-3); }

.plan-buy__actions { display: flex; gap: var(--sp-3); }
.plan-buy__actions .btn { flex: 1; max-width: none; min-height: 40px; }

@media (max-width: 480px) {
  .plan-buy__actions { flex-direction: column; }
}

/* =====================================================================
   FUTURISTIC PUBLIC SURFACES

   Restyles the landing page and the marketing pages on top of the base
   layout above: more air, smaller artwork, luminous edges and glow on
   hover. Corners stay square throughout.
   ===================================================================== */

/* --- Section rhythm ----------------------------------------------------- */
.section { padding: var(--sp-13) 0; }
.section--tight { padding: var(--sp-11) 0; }

/* A page that reads as considered is mostly space. These give a long
   page room to breathe rather than stacking bands against each other. */
.section--roomy { padding: calc(var(--sp-13) * 1.4) 0; }
.section + .section:not(.section--alt) { padding-top: 0; }

.section--alt {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 98, 254, 0.04), transparent 40%),
    var(--ui-01);
}

.section-head { max-width: 62ch; margin-bottom: var(--sp-9); }
.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.section-head p { font-size: var(--type-body-l); line-height: 1.6; color: var(--text-02); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding-left: 0;
  border-left: 0;
  color: var(--interactive);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--interactive);
  box-shadow: 0 0 8px 0 rgba(15, 98, 254, 0.9);
}

/* --- Service cards ------------------------------------------------------ */
.service-grid {
  gap: var(--sp-5);
  background: transparent;
  border: 0;
}
.service-card {
  background: var(--ui-02);
  border: var(--border);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition:
    border-color var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--interactive), var(--glow-cyan));
  transition: width var(--dur-slow) var(--ease-out);
}
.service-card:hover {
  background: var(--ui-02);
  border-color: var(--interactive);
  box-shadow: var(--glow-soft);
  transform: translateY(-3px);
}
.service-card:hover::before { width: 100%; }

/* The artwork was doing too much work. It becomes a small badge. */
.service-card__art {
  border-bottom: 0;
  background: transparent;
  padding: var(--sp-6) var(--sp-6) 0;
}
.service-card__art .art {
  max-width: 96px;
  --art-tint: rgba(15, 98, 254, 0.08);
  --art-grid: rgba(15, 98, 254, 0.16);
}
.service-card__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.service-card__body h3 { font-size: var(--type-h5); font-weight: 500; }
.service-card__price strong { font-size: var(--type-h5); }
.service-card__cta {
  border-top: var(--border);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- How it works ------------------------------------------------------- */
.howto { position: relative; }
.howto__step {
  position: relative;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--ui-03);
}
.howto__step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--interactive);
  box-shadow: 0 0 12px 0 rgba(15, 98, 254, 0.7);
}
.howto__num {
  font-family: var(--font-mono);
  font-size: var(--type-h4);
  font-weight: 300;
  color: var(--interactive);
  letter-spacing: 0.04em;
}
.howto__step h4 { font-size: var(--type-body-l); font-weight: 500; margin: var(--sp-4) 0 var(--sp-3); }

/* --- Feature strip ------------------------------------------------------ */
.feature-grid { gap: var(--sp-5); background: transparent; border: 0; }
.feature {
  border: var(--border);
  padding: var(--sp-6);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.feature:hover { border-color: var(--interactive); box-shadow: var(--glow-soft); }
.feature .icon {
  padding: var(--sp-3);
  border: 1px solid rgba(15, 98, 254, 0.35);
  background: rgba(15, 98, 254, 0.08);
  box-sizing: content-box;
}

/* --- Closing band ------------------------------------------------------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(15, 98, 254, 0.28), transparent 66%),
    radial-gradient(600px 340px at 88% 100%, rgba(0, 213, 213, 0.16), transparent 62%),
    var(--ink-bg);
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 72%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

/* --- Page heads --------------------------------------------------------- */
.page-head {
  position: relative;
  background:
    radial-gradient(700px 300px at 10% -40%, rgba(15, 98, 254, 0.10), transparent 70%),
    var(--ui-01);
  padding: var(--sp-10) 0;
  border-bottom: var(--border);
}
.page-head h1 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* --- Plan cards --------------------------------------------------------- */
.plan {
  position: relative;
  transition:
    border-color var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
}
.plan:hover { border-color: var(--interactive); box-shadow: var(--glow-soft); transform: translateY(-2px); }
.plan--featured { box-shadow: var(--glow-soft); }
.plan__amount { font-weight: 300; letter-spacing: -0.02em; }

@media (max-width: 672px) {
  .section { padding: var(--sp-10) 0; }
  .section-head { margin-bottom: var(--sp-7); }
}

/* --- How it works: open steps, not boxes -------------------------------- */
.howto {
  gap: var(--sp-7);
  background: transparent;
  border: 0;
}
.howto__step {
  background: transparent;
  padding: var(--sp-6) 0 0;
  border-top: 1px solid var(--ui-03);
}

/* --- Service grid: seven products, no orphan cell ------------------------ */
/* Seven cards never divide evenly into a plain grid. The first spans two
   columns, which fills both rows exactly and gives the flagship product
   the emphasis it deserves. */
@media (min-width: 1057px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .service-grid .service-card:first-child { grid-column: span 2; }
  .service-grid .service-card:first-child .service-card__art .art { max-width: 128px; }
  .service-grid .service-card:first-child .service-card__body h3 { font-size: var(--type-h4); }
}

/* --- Locations: the building is an accent, not a billboard -------------- */
.location-grid { gap: var(--sp-5); background: transparent; border: 0; }
.location-card {
  border: var(--border);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.location-card:hover { border-color: var(--interactive); box-shadow: var(--glow-soft); }
.location-card__art {
  border-bottom: 0;
  padding: var(--sp-6) var(--sp-6) 0;
  background: transparent;
}
.location-card__art .art {
  max-width: 120px;
  --art-tint: rgba(15, 98, 254, 0.08);
  --art-grid: rgba(15, 98, 254, 0.16);
}
.location-card__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
.location-card__body h3 { font-size: var(--type-h5); font-weight: 500; }

/* --- Callback: the dark panel holds its own weight ---------------------- */
.callback__copy {
  position: relative;
  background:
    radial-gradient(600px 320px at 20% 0%, rgba(15, 98, 254, 0.22), transparent 68%),
    var(--ink-bg);
  justify-content: center;
}
.callback__copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 30%, #000, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 30%, #000, transparent 74%);
  pointer-events: none;
}
.callback__copy > * { position: relative; z-index: 1; }
.callback__copy h2 { font-weight: 300; letter-spacing: -0.02em; }

/* --- Closing band: give it presence ------------------------------------- */
.cta-band { padding: var(--sp-11) 0; }
.cta-band h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* ---------------------------------------------------------------------
   CONTROLS ON AN ALWAYS-DARK PANEL

   .cart-summary and .section--ink stay dark in both themes, so they use
   the non-inverting --ink-* tokens. A checkbox inside one was drawing its
   box in --text-01 — near-black on near-black — which left the tick
   floating in mid-air with no box around it. These rules give the control
   the panel's own palette instead of the page's.
   --------------------------------------------------------------------- */
.cart-summary .choice,
.section--ink .choice { color: var(--ink-text); }

.cart-summary .choice__box,
.section--ink .choice__box {
  border-color: var(--ink-text-2);
  background: rgba(255, 255, 255, 0.06);
}

.cart-summary .choice:hover .choice__box,
.section--ink .choice:hover .choice__box { border-color: var(--ink-text); }

.cart-summary .choice input:checked + .choice__box,
.section--ink .choice input:checked + .choice__box {
  background: var(--interactive);
  border-color: var(--interactive);
}

.cart-summary .choice input:focus-visible + .choice__box,
.section--ink .choice input:focus-visible + .choice__box {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* #0f62fe on near-black does not carry. Lift the links to the light end
   of the same blue so they read as links without shouting. */
.cart-summary a:not(.btn),
.section--ink a:not(.btn) { color: #78a9ff; }
.cart-summary a:not(.btn):hover,
.section--ink a:not(.btn):hover { color: #a6c8ff; }

/* The terms line is a sentence, not a stack of separate links. */
.cart-summary .choice > span:last-child { line-height: 1.5; }

/* A single call to action across the content width — used where a second
   form used to sit, so the page still points somewhere without competing
   with the form above it. */
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-7);
  border: 1px solid var(--ui-03);
  background: var(--ui-01);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
}
.cta-strip h2 { font-size: var(--type-h4); margin: 0; }
.cta-strip p { margin: 0; color: var(--text-02); max-width: 52ch; }
.cta-strip .btn { flex: none; }

@media (max-width: 700px) {
  .cta-strip { padding: var(--sp-5); }
  .cta-strip .btn { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------------
   NUMBERED STEPS
   Three short "what happens next" lines under a form. Square markers,
   consistent with everything else.
   --------------------------------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-6); }
.steps li { display: flex; gap: var(--sp-5); align-items: flex-start; }
.steps__n {
  flex: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-bg);
  color: var(--ink-text);
  font-family: var(--font-mono);
  font-size: var(--type-body-s);
}
.steps h3 { font-size: var(--type-h5); margin: 0 0 var(--sp-2); }
.steps p { margin: 0; color: var(--text-02); font-size: var(--type-body-s); line-height: 1.6; }

/* =====================================================================
   SHOWCASE — assurance, features, connectivity, floor plan, gallery,
   quotes and the client wall.

   All of it built on the same square-cornered, hairline-ruled language
   as the rest of the site: no shadows, no rounded cards, and the
   separation carried by space and a single rule rather than by boxes.
   ===================================================================== */

/* --- Section heads ---------------------------------------------------- */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow--ink { color: var(--glow-cyan); }

/* --- The questions people ask ----------------------------------------- */
.assure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-9) var(--sp-10);
}
.assure__item { border-top: 1px solid var(--ui-03); padding-top: var(--sp-6); }
.assure__item h3 { font-size: var(--type-h5); margin: 0 0 var(--sp-4); color: var(--text-01); }
.assure__item p { color: var(--text-02); font-size: var(--type-body-s); line-height: var(--leading-loose); }

/* --- Beyond the desk --------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--sp-8) var(--sp-7);
}
.feature { display: flex; flex-direction: column; gap: var(--sp-4); }
.feature__mark {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ui-03);
  color: var(--text-01);
  clip-path: polygon(var(--notch-sm) 0, 100% 0, 100% calc(100% - var(--notch-sm)), calc(100% - var(--notch-sm)) 100%, 0 100%, 0 var(--notch-sm));
}
.feature h3 { font-size: var(--type-h5); margin: 0; }
.feature p { margin: 0; color: var(--text-02); font-size: var(--type-body-s); line-height: var(--leading-loose); }
.feature__tag {
  align-self: flex-start;
  font-size: var(--type-caption);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--support-success);
  border: 1px solid currentColor;
  padding: 2px var(--sp-3);
}
.feature__tag--paid { color: var(--text-03); }

/* --- Connectivity ------------------------------------------------------ */
.section--ink .eyebrow { color: var(--glow-cyan); }
.section--ink p { color: var(--ink-text-2); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: var(--sp-10);
  align-items: start;
}
.spec { margin: 0; border-top: 1px solid var(--ink-line); }
.spec > div { padding: var(--sp-5) 0; border-bottom: 1px solid var(--ink-line); }
.spec dt {
  font-size: var(--type-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-text-3);
  margin-bottom: var(--sp-2);
}
.spec dd { margin: 0; font-size: var(--type-h4); font-weight: 300; color: var(--ink-text); }
.spec dd.spec__note { font-size: var(--type-body-s); color: var(--ink-text-3); margin-top: var(--sp-2); }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* --- Isometric floor --------------------------------------------------- */
.floorplan {
  --fp-floor-a: #fafafa;
  --fp-floor-b: #efefef;
  --fp-grid: rgba(22, 22, 22, 0.06);
  --fp-line: var(--ui-03);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  gap: var(--sp-8);
  align-items: center;
  border: 1px solid var(--ui-03);
  padding: var(--sp-7);
}
.floorplan__svg { width: 100%; height: auto; display: block; }

.fp-top  { fill: var(--fp-fill); stroke: var(--fp-stroke); stroke-width: 1; }
.fp-side { fill: var(--fp-fill); filter: brightness(0.88); stroke: var(--fp-stroke); stroke-width: 1; }
.fp-side--dark { filter: brightness(0.74); }

.fp-block--desk    { --fp-fill: #d6e4ff; --fp-stroke: #6b9bff; }
.fp-block--screen  { --fp-fill: #b9bfc9; --fp-stroke: #8d97a5; }
.fp-block--screen .fp-top, .fp-block--screen .fp-side { opacity: 0.82; }
.fp-block--reception { --fp-fill: #ffd6df; --fp-stroke: #d9607f; }
.fp-block--private { --fp-fill: #cfe8e6; --fp-stroke: #4fada8; }
.fp-block--meeting { --fp-fill: #ffe0cc; --fp-stroke: #e8874a; }
.fp-block--lounge  { --fp-fill: #e6dcf5; --fp-stroke: #9b7fd4; }

.floorplan__key { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); }
.floorplan__key li { display: flex; gap: var(--sp-4); align-items: flex-start; font-size: var(--type-body-s); }
.floorplan__swatch { flex: none; width: 14px; height: 14px; margin-top: 3px; border: 1px solid; }
.floorplan__swatch--desk    { background: #d6e4ff; border-color: #6b9bff; }
.floorplan__swatch--private { background: #cfe8e6; border-color: #4fada8; }
.floorplan__swatch--meeting { background: #ffe0cc; border-color: #e8874a; }
.floorplan__swatch--lounge  { background: #e6dcf5; border-color: #9b7fd4; }
.floorplan__swatch--reception { background: #ffd6df; border-color: #d9607f; }

@media (max-width: 860px) {
  .floorplan { grid-template-columns: 1fr; padding: var(--sp-5); }
  .floorplan__key { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

/* --- Gallery ----------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--sp-5);
}
.gallery__item { position: relative; margin: 0; overflow: hidden; background: var(--ui-01); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.02); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(transparent, rgba(22, 22, 22, 0.82));
  color: #ffffff;
  font-size: var(--type-body-s);
}
.gallery__item figcaption .u-faint { color: rgba(255, 255, 255, 0.7); display: block; }

/* A borrowed photo says so. Tempting to leave this off; the page around
   it is arguing that we are straight with people. */
.gallery__flag {
  position: absolute;
  top: 0; left: 0;
  padding: var(--sp-2) var(--sp-4);
  background: var(--support-warning);
  color: #161616;
  font-size: var(--type-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .gallery__item--wide { grid-column: span 1; }
}

/* --- Quotes ------------------------------------------------------------ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--sp-6);
}
.quote {
  margin: 0;
  padding: var(--sp-7);
  background: var(--ui-02);
  border: 1px solid var(--ui-03);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.quote__rating { display: flex; gap: 2px; color: var(--ui-04); }
.quote__rating .is-on { color: var(--support-warning); }
.quote blockquote {
  margin: 0;
  font-size: var(--type-body);
  line-height: var(--leading-loose);
  color: var(--text-01);
}
.quote__by { display: flex; gap: var(--sp-4); align-items: center; margin-top: auto; }
.quote__photo { flex: none; width: 40px; height: 40px; object-fit: cover; }

/* --- Client wall --------------------------------------------------------
   One ruled grid, not a run of floating boxes. Cells share their
   hairlines through a 1px gap over a rule-coloured background, which is
   how Carbon's own tile grids hold their line: every cell is identical
   regardless of how long the company name is.
   ------------------------------------------------------------------- */
.client-wall {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ui-03);
  border: 1px solid var(--ui-03);
}

.client-wall__cell {
  background: var(--ui-02);
  min-height: 132px;
  display: flex;
}

/* Filler cells exist only so the hairlines run to the edge of the block.
   They must read as nothing at all, not as empty slots waiting to be
   filled — so they match the cells around them. */
.client-wall__cell--empty {
  background: var(--ui-02);
}

.client-wall__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-6);
  color: inherit;
  text-decoration: none;
  transition: background 120ms linear;
}

a.client-wall__link:hover {
  background: var(--ui-01);
}

a.client-wall__link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

/* The monogram is a mark in its own right, not a placeholder apologising
   for a missing logo. An uploaded logo sits in the same square. */
.client-wall__mark {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ui-03);
  font-family: var(--font-mono);
  font-size: var(--type-caption);
  letter-spacing: 0.06em;
  color: var(--text-02);
  background: var(--ui-01);
}

.client-wall__mark img {
  display: block;
  max-width: 28px;
  max-height: 28px;
  width: auto;
  height: auto;
  filter: grayscale(1);
  opacity: 0.8;
}

a.client-wall__link:hover .client-wall__mark {
  border-color: var(--ui-04);
}

a.client-wall__link:hover .client-wall__mark img {
  filter: none;
  opacity: 1;
}

.client-wall__name {
  font-size: var(--type-body-s);
  line-height: 1.4;
  color: var(--text-01);
}

a.client-wall__link:hover .client-wall__name {
  color: var(--interactive);
}

.client-wall__cat {
  margin-top: auto;
  font-size: var(--type-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-03);
}

@media (max-width: 900px) {
  .client-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .client-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-wall__cell { min-height: 118px; }
  .client-wall__link { padding: var(--sp-5); }
  /* Filler cells only exist to square off a four-column grid. */
  .client-wall__cell--empty { display: none; }
}

/* --- Dark theme -------------------------------------------------------- */
:root[data-theme="dark"] .floorplan {
  --fp-floor-a: #1f1f1f;
  --fp-floor-b: #171717;
  --fp-grid: rgba(255, 255, 255, 0.05);
}
:root[data-theme="dark"] .fp-block--desk    { --fp-fill: #2c4470; --fp-stroke: #6b9bff; }
:root[data-theme="dark"] .fp-block--private { --fp-fill: #234644; --fp-stroke: #4fada8; }
:root[data-theme="dark"] .fp-block--meeting { --fp-fill: #5a3722; --fp-stroke: #e8874a; }
:root[data-theme="dark"] .fp-block--lounge  { --fp-fill: #3b3055; --fp-stroke: #9b7fd4; }
:root[data-theme="dark"] .fp-block--screen  { --fp-fill: #43494f; --fp-stroke: #8d97a5; }
:root[data-theme="dark"] .fp-block--reception { --fp-fill: #5b2a37; --fp-stroke: #d9607f; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .floorplan {
    --fp-floor-a: #1f1f1f;
    --fp-floor-b: #171717;
    --fp-grid: rgba(255, 255, 255, 0.05);
  }
  :root:not([data-theme="light"]) .fp-block--desk    { --fp-fill: #2c4470; --fp-stroke: #6b9bff; }
  :root:not([data-theme="light"]) .fp-block--private { --fp-fill: #234644; --fp-stroke: #4fada8; }
  :root:not([data-theme="light"]) .fp-block--meeting { --fp-fill: #5a3722; --fp-stroke: #e8874a; }
  :root:not([data-theme="light"]) .fp-block--lounge  { --fp-fill: #3b3055; --fp-stroke: #9b7fd4; }
  :root:not([data-theme="light"]) .fp-block--screen  { --fp-fill: #43494f; --fp-stroke: #8d97a5; }
  :root:not([data-theme="light"]) .fp-block--reception { --fp-fill: #5b2a37; --fp-stroke: #d9607f; }
}

/* =====================================================================
   LANDING PAGE, SECOND PASS

   Added with the room. The page is longer now, so these rules are about
   giving each block room to breathe and keeping the type quiet: nothing
   here shouts, and the space between things does the work.
   ===================================================================== */

/* A taller hero, because the first screen now has to carry a note under
   the buttons without feeling cramped. */
.hero--tall .hero__inner {
  padding-block: var(--sp-12) var(--sp-10);
}

.hero__note {
  margin-top: var(--sp-6);
  font-size: var(--type-caption);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--ink-text-3);
}

/* Section headings that carry a paragraph want a measure, not the full
   container width — 68 characters is about where a line stops being
   comfortable. */
.section-head--wide {
  max-width: 68ch;
}

.section-head--wide p {
  margin-top: var(--sp-5);
  color: var(--text-02);
  font-size: var(--type-body);
  line-height: var(--leading-body);
}

/* ---------------------------------------------------------------------
   Grouped product grid
   --------------------------------------------------------------------- */
.service-group + .service-group {
  margin-top: var(--sp-10);
}

.service-group__title {
  margin: 0 0 var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--ui-03);
  font-size: var(--type-caption);
  font-weight: 400;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-03);
}

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--sp-10);
  align-items: start;
}

.section-head--sticky {
  position: sticky;
  top: var(--sp-9);
}

.faq-list {
  border-top: 1px solid var(--ui-03);
}

.faq-item {
  border-bottom: 1px solid var(--ui-03);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  color: var(--text-01);
  transition: color 120ms linear;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary:hover { color: var(--interactive); }

.faq-item > summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.faq-item__sign {
  flex: none;
  color: var(--text-03);
  transition: transform 160ms ease, color 120ms linear;
}

.faq-item[open] .faq-item__sign {
  transform: rotate(45deg);
  color: var(--interactive);
}

.faq-item__body {
  padding-bottom: var(--sp-7);
  max-width: 74ch;
}

.faq-item__body p {
  margin: 0;
  color: var(--text-02);
  line-height: var(--leading-body);
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: var(--sp-7); }
  .section-head--sticky { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__sign { transition: none; }
}
