/* Self-hosted Inter — variable (latin), one file covers all weights */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-variable.woff2") format("woff2");
}

/* Self-hosted Instrument Sans — variable (latin); body/description text per Figma */
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-variable.woff2") format("woff2");
}

/* ==================================================================
   VIVID — node 326:6103 "1440w light"
   Plain CSS, no build step. Tokens = exact Figma variables (Vivid 2.0).
   ================================================================== */

:root {
  --black:      #24231e;   /* Rangitoto — dark sections */
  --white:      #ffffff;
  --paper:      #f4f3ed;   /* Pampas — warm light background */
  --paper-2:    #efebe4;
  --wash:       #e8e7e2;   /* light grey — logo section background */
  --accent:     #f36f21;   /* Tango — brand orange */
  --accent-700: #d65f17;

  --ink:        #222222;   /* Mine Shaft — headings on light */
  --body:       #58595b;   /* Abbey — body text on light */
  --body-dark:  rgba(255,255,255,0.74);
  --muted:      #a1a1a1;   /* Silver Chalice */
  --line:       #ddd9cf;
  --line-dark:  rgba(255,255,255,0.14);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 8vw, 130px);
  --radius: 2px;

  --fs-hero:    clamp(2.6rem, 7vw, 6rem);
  --fs-h2:      clamp(1.85rem, 3.5vw, 3rem);
  --fs-h3:      clamp(1.3rem, 1.7vw, 1.6rem);
  --fs-lead:    clamp(1.05rem, 1.25vw, 1.2rem);
  --fs-body:    clamp(0.95rem, 1vw, 1.0625rem);
  --fs-small:   0.8125rem;
}

/* ---------- Base ------------------------------------------------ */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); font-size: var(--fs-body); font-weight: 400;
  color: var(--ink); background: var(--paper); letter-spacing: -0.01em; line-height: 1.5;
}
::selection { background: var(--accent); color: #fff; }
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; }
p { color: var(--body); line-height: 1.62; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.skip-link { position: absolute; left: 12px; top: -48px; z-index: 200; background: var(--black); color: #fff; padding: 10px 16px; border-radius: 4px; transition: top .2s ease; }
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers -------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

.eyebrow { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); }
.eyebrow::before { content: "/"; color: var(--accent); font-weight: 600; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 500; font-size: 0.95rem; letter-spacing: -0.01em; color: var(--ink); transition: gap .25s ease, color .2s ease; }
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform .25s ease; }
.link-arrow:hover { gap: 0.8em; color: var(--accent-700); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow--accent { color: var(--accent); }
.link-arrow--accent:hover { color: var(--accent-700); }

/* ---- Primary CTA button (booking) --------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.5rem 0.55rem 0.5rem 1.7rem;
  border: 0; border-radius: 100px;
  font-family: var(--font); font-weight: 600; font-size: 1.02rem;
  letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, background-color .2s ease;
}
.btn__icon {
  flex-shrink: 0; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  transition: transform .28s cubic-bezier(.2,.7,.2,1), background-color .2s ease;
}
.btn__icon svg { width: 18px; height: 18px; transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.btn:hover .btn__icon svg { transform: translateX(3px); }

.btn--primary { background: var(--accent); color: var(--black); box-shadow: 0 6px 18px rgba(243,111,33,.26); }
.btn--primary .btn__icon { background: var(--black); color: #fff; }
.btn--primary:hover { background: #ff7c2f; box-shadow: 0 14px 34px rgba(243,111,33,.42); }
.btn--primary:active { background: var(--accent-700); box-shadow: 0 7px 18px rgba(243,111,33,.30); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--accent-700); }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn__icon, .btn__icon svg { transition: none; }
}

.head-lg { font-size: var(--fs-h2); font-weight: 500; line-height: 1.12; letter-spacing: -0.025em; }
.head-sm { font-size: clamp(1.3rem, 1.9vw, 1.65rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.005em; line-height: 1.18; }

/* ==================================================================
   HEADER + overlay nav
   ================================================================== */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 120; padding-block: clamp(20px, 2.4vw, 34px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

/* ---- Databricks Summit announcement bar --------------------- */
.promo-bar {
  position: relative; z-index: 130;
  display: flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 7px 48px;
  background: var(--accent); color: var(--black); text-align: center;
}
.promo-bar__link {
  display: inline-flex; align-items: center; gap: 0.5em;
  color: var(--black); text-decoration: none; font-weight: 600;
  font-size: clamp(0.8rem, 2.3vw, 0.92rem); letter-spacing: -0.01em; line-height: 1.3;
  white-space: nowrap;
}
.promo-bar__link svg { width: 1.05em; height: 1.05em; flex-shrink: 0; transition: transform .2s ease; }
.promo-bar__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.promo-bar__link:hover svg { transform: translateX(3px); }
.promo-bar__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  background: transparent; border: 0; color: var(--black); cursor: pointer;
  border-radius: 50%; opacity: 0.65; transition: opacity .2s ease, background .2s ease;
}
.promo-bar__close svg { width: 17px; height: 17px; }
.promo-bar__close:hover { opacity: 1; background: rgba(0,0,0,0.08); }
.promo-bar__close:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; opacity: 1; }
body.promo-hidden .promo-bar { display: none; }

/* push the absolute header below the announcement bar */
.site-header { top: 46px; }
body.promo-hidden .site-header { top: 0; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; height: 24px; width: auto; }

.menu-btn { display: inline-flex; flex-direction: column; justify-content: center; gap: 7px; width: 34px; height: 26px; background: none; border: 0; cursor: pointer; z-index: 130; }
.menu-btn span { display: block; height: 2px; width: 30px; background: #fff; transition: transform .3s ease, opacity .3s ease, background .3s ease; }
.menu-btn[aria-expanded="true"] span { background: #fff; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.overlay-nav {
  position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: clamp(0.6rem, 2vw, 1.2rem);
  padding: var(--gutter); background: var(--black);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
}
.overlay-nav.open { opacity: 1; visibility: visible; }
.overlay-nav a { color: #fff; font-size: clamp(2rem, 6vw, 4rem); font-weight: 500; letter-spacing: -0.03em; transition: color .2s ease; }
.overlay-nav a:hover { color: var(--accent); }

/* ==================================================================
   HERO
   ================================================================== */
.hero { position: relative; min-height: clamp(560px, 64vh, 800px); display: flex; align-items: flex-end; color: #fff; background: #18160f; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,14,0.55) 0%, rgba(20,18,14,0.12) 26%, rgba(20,18,14,0) 46%, rgba(20,18,14,0.82) 100%); }
.hero .container { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 5vw, 80px); }
.hero__eyebrow { color: rgba(255,255,255,0.9); margin-bottom: 1.4rem; }
.hero__title { font-size: var(--fs-hero); font-weight: 700; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.035em; max-width: 17ch; }

/* ==================================================================
   ABOUT / MARKETS (split)
   ================================================================== */
.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 84px); align-items: center; }
.split__media { aspect-ratio: 603 / 443; overflow: hidden; border-radius: var(--radius); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { max-width: 50ch; }
.split__body .head-sm { margin-bottom: 1.4rem; }
.split__body p + p { margin-top: 1rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; margin-top: 2.2rem; }

/* ==================================================================
   FEATURE (dark image-backed) — AI + Statement
   ================================================================== */
.feature { position: relative; color: #fff; background: var(--black); overflow: hidden; padding-block: clamp(72px, 9vw, 150px); }
.feature__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(20,18,14,0.9) 0%, rgba(20,18,14,0.7) 55%, rgba(20,18,14,0.55) 100%); }
.feature .container { position: relative; z-index: 2; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.feature__grid h2 { font-size: var(--fs-h2); font-weight: 500; line-height: 1.14; letter-spacing: -0.025em; }
.feature__body p { color: var(--body-dark); }
.feature__body p + p { margin-top: 1rem; }
.feature__body strong { color: #fff; font-weight: 600; }
.feature__body .link-arrow { margin-top: 1.6rem; color: var(--accent); }
.feature__body .btn { margin-top: 1.9rem; }

/* ==================================================================
   SERVICES
   ================================================================== */
.services__head { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.services__head .head-lg { max-width: 15ch; }
.services__head .intro { max-width: 46ch; font-size: var(--fs-lead); color: var(--body); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 2.4vw, 40px); }
.card__media { aspect-ratio: 432 / 575; overflow: hidden; border-radius: var(--radius); margin-bottom: 1.5rem; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__media img { transform: scale(1.04); }
.card h3 { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 0.9rem; }
.card__lead { color: var(--ink); font-weight: 500; font-size: var(--fs-lead); line-height: 1.4; margin-bottom: 0.9rem; }
.card p { font-size: var(--fs-body); }
.services__cta { margin-top: clamp(40px, 5vw, 64px); text-align: center; }

/* ==================================================================
   LEADERSHIP
   ================================================================== */
.leadership { background: var(--paper); }
.leadership__head { margin-bottom: clamp(32px, 4vw, 56px); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 4vw, 64px) clamp(24px, 2.5vw, 40px); }
.member__photo { aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); margin-bottom: clamp(20px, 2vw, 30px); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.member__body { display: grid; grid-template-columns: 1fr; gap: clamp(14px, 1.5vw, 20px); align-items: start; }
.member__name { font-size: clamp(1.5rem, 2.3vw, 2.05rem); font-weight: 400; text-transform: uppercase; letter-spacing: -0.025em; line-height: 0.98; }
.member__name span { display: block; }
.member__name .fn { font-weight: 700; }
.member__name .ln { font-weight: 400; }
.member__link { margin-top: 1.2rem; font-size: var(--fs-small); letter-spacing: 0.06em; text-transform: uppercase; }
.member__role { font-family: "Instrument Sans", var(--font); font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: 0; line-height: 1.6875; margin-bottom: 0; }
.member__bio { font-family: "Instrument Sans", var(--font); font-size: 1rem; font-weight: 400; color: var(--ink); line-height: 1.6875; margin: 0; }
.member__bio + .member__bio { margin-top: 1.6875em; } /* one blank line between paragraphs, per Figma */

/* ==================================================================
   CLIENTS
   ================================================================== */
.trusted { background: var(--wash); }
.trusted__title { max-width: 22ch; margin-bottom: clamp(36px, 4.5vw, 64px); }
.logo-group + .logo-group { margin-top: clamp(40px, 5vw, 72px); }
.logo-group > .eyebrow { display: flex; margin-bottom: clamp(18px, 2.4vw, 30px); }
/* Logos match vividcg.com: each PNG (211×95) has a baked paper background that
   IS the tile; display at full width with a 12px gap on the grey section. */
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-cell { display: block; }
.logo-cell img { display: block; width: 100%; height: auto; }

/* ==================================================================
   FOOTER
   ================================================================== */
.footer { background: var(--black); color: #fff; padding-block: clamp(56px, 7vw, 104px) clamp(28px, 3vw, 44px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--line-dark); }
.footer .brand img { height: 28px; }
.footer__tagline { color: var(--body-dark); margin-top: 1.2rem; max-width: 34ch; }
.footer__col h4 { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; font-weight: 500; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { color: rgba(255,255,255,0.82); font-size: 0.95rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--accent); }
.footer__offices p { color: var(--body-dark); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1rem; }
.footer__offices strong { color: #fff; font-weight: 500; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; align-items: center; margin-top: clamp(28px, 3vw, 44px); }
.footer__bottom p { color: rgba(255,255,255,0.5); font-size: var(--fs-small); }

/* ==================================================================
   Scroll reveal
   ================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr; gap: clamp(28px,5vw,48px); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .card { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; align-items: center; }
  .card__media { margin-bottom: 0; aspect-ratio: 4 / 3; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .feature__grid { grid-template-columns: 1fr; gap: 22px; }
  .services__head { grid-template-columns: 1fr; align-items: start; gap: 14px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .card { grid-template-columns: 1fr; }
  .card__media { aspect-ratio: 16 / 10; }
  .team { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .btn { font-size: 0.95rem; padding-left: 1.35rem; gap: 0.6rem; }
  .btn__icon { width: 38px; height: 38px; }
}

/* ==================================================================
   BOOKING DIALOG
   ================================================================== */
.book-dialog {
  width: min(900px, 94vw); max-width: 900px; margin: auto;
  border: 0; border-radius: 20px; padding: 0; overflow: hidden;
  max-height: 92vh; background: var(--black); color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}
.book-dialog::backdrop { background: rgba(12,10,8,0.72); backdrop-filter: blur(5px); }
.book-dialog[open] { animation: bookIn .4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes bookIn { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }

.book-dialog__inner { position: relative; display: grid; grid-template-columns: 0.92fr 1.08fr; max-height: 92vh; overflow-y: auto; }

.book-dialog__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: transparent; border: 0; color: var(--ink); cursor: pointer;
  border-radius: 50%; transition: color .2s ease, background .2s ease, transform .25s ease;
}
.book-dialog__close svg { width: 20px; height: 20px; }
.book-dialog__close:hover { color: var(--accent); background: rgba(0,0,0,0.06); transform: rotate(90deg); }
.book-dialog__close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* brand / value panel */
.book-dialog__aside {
  display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 30px);
  padding: clamp(30px, 3.4vw, 46px);
  background: radial-gradient(120% 90% at 0% 0%, rgba(243,111,33,0.20), transparent 55%), var(--black);
}
.book-dialog__logo { display: block; height: 26px; width: auto; align-self: flex-start; flex-shrink: 0; }
.book-dialog__aside .eyebrow { color: rgba(255,255,255,0.6); }
.book-dialog__aside h2 { margin-top: 0.7rem; font-size: clamp(1.7rem, 2.4vw, 2.15rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.book-dialog__sub { margin-top: 0.7rem; color: var(--body-dark); font-size: 1.02rem; line-height: 1.5; max-width: 32ch; }
.book-expect { display: flex; flex-direction: column; gap: 0.9rem; margin-top: auto; }
.book-expect li { display: flex; align-items: center; gap: 0.8rem; color: rgba(255,255,255,0.88); font-size: 0.96rem; }
.book-expect__n { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(243,111,33,0.16); color: var(--accent); font-size: 0.8rem; font-weight: 700; }
.book-dialog__offices { color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 0.02em; }

/* form panel */
.book-dialog__main { background: var(--paper); color: var(--ink); padding: clamp(30px, 3.4vw, 46px); }
.book-form { display: flex; flex-direction: column; gap: clamp(13px, 1.5vw, 17px); }
.book-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.book-field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.book-field-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); }
.book-field { width: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; color: var(--ink); font: inherit; font-size: 1rem; letter-spacing: -0.01em; transition: border-color .2s ease, box-shadow .2s ease; }
.book-field::placeholder { color: var(--muted); }
.book-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(243,111,33,0.16); }
textarea.book-field { resize: vertical; min-height: 104px; }
.book-form .btn--primary { width: 100%; justify-content: space-between; margin-top: 6px; }
.book-form__status { min-height: 1.2em; margin-top: 2px; font-size: 0.9rem; color: var(--body); }
.book-form__status.is-success { color: var(--accent-700); }
.book-form__status.is-error { color: #c0392b; }

/* success overlay */
.book-dialog__thanks {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.55rem; padding: 40px;
  background: radial-gradient(120% 80% at 50% 10%, rgba(243,111,33,0.22), transparent 60%), var(--black);
  color: #fff; animation: thanksIn .4s ease both;
}
.book-dialog__thanks[hidden] { display: none; }
.book-dialog__thanks:focus { outline: none; }
@keyframes thanksIn { from { opacity: 0; } to { opacity: 1; } }
.book-thanks__icon { width: 76px; height: 76px; margin-bottom: 0.5rem; }
.book-thanks__icon svg { width: 100%; height: 100%; fill: none; }
.book-thanks__icon circle { stroke: var(--accent); stroke-width: 2; opacity: 0.35; }
.book-thanks__check { stroke: var(--accent); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: checkDraw .55s .2s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes checkDraw { to { stroke-dashoffset: 0; } }
.book-dialog__thanks h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; }
.book-dialog__thanks p { color: var(--body-dark); max-width: 34ch; line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
  .book-dialog[open] { animation: none; }
  .book-dialog__close:hover { transform: none; }
  .book-dialog__thanks { animation: none; }
  .book-thanks__check { animation: none; stroke-dashoffset: 0; }
}
@media (max-width: 680px) {
  .book-dialog__inner { grid-template-columns: 1fr; }
  .book-dialog__aside { gap: 16px; padding: 30px 26px 28px; }
  .book-expect, .book-dialog__offices { display: none; }
  .book-dialog__close { color: #fff; }
}
