:root {
  --ink: #141126;
  --ink-deep: #070318;
  --ink-soft: #241347;
  --paper: #fbf9ff;
  --paper-soft: #f1eaff;
  --lilac: #e8ddff;
  --lilac-deep: #bda6f5;
  --violet: #7442f5;
  --violet-deep: #4320a1;
  --magenta: #de3fea;
  --pink: #ff6ebc;
  --electric-blue: #35a6ff;
  --solar-gold: #ffbd3f;
  --line: rgba(20, 17, 38, .18);
  --line-light: rgba(251, 249, 255, .2);
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --shell: min(1280px, calc(100% - 96px));
  --shadow: 0 22px 50px rgba(16, 12, 23, .17);
  --type-scale: 1;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: calc(16px * var(--type-scale));
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font-family: var(--sans); }
body:has(.assistant-panel:not([hidden])) { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { color: var(--paper); background: var(--magenta); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.skip-link { position: fixed; z-index: 100; top: -60px; left: 18px; padding: 11px 15px; background: var(--magenta); color: #fff; font-size: 14px; font-weight: 800; transition: top .2s ease; }
.skip-link:focus { top: 18px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shell, .page-width { width: var(--shell); max-width: 1280px; margin-inline: auto; }
.site-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
html[data-font-size="small"] { --type-scale: .9; }
html[data-font-size="large"] { --type-scale: 1.14; }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 3, 24, .94);
  color: var(--paper);
  border-bottom: 1px solid rgba(247, 244, 238, .13);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-header .header-inner { width: var(--shell); max-width: 1280px; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand > img:not(.brand-mark) { width: 190px; height: auto; }
.brand-mark { width: 36px; height: 36px; object-fit: contain; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; margin-left: 12px; }
.brand-name { font: 600 26px/1 var(--serif); letter-spacing: -.06em; }
.brand-name span { color: var(--pink); }
.brand-subline { margin-top: 6px; color: var(--lilac-deep); font-size: 8px; font-weight: 800; letter-spacing: .25em; }
.main-navigation { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); font-size: 12px; font-weight: 700; letter-spacing: .02em; }
.main-navigation a { color: rgba(247, 244, 238, .76); transition: color .2s ease; }
.main-navigation a:hover, .main-navigation a:focus-visible { color: var(--pink); }
.nav-more { position: relative; color: rgba(247, 244, 238, .76); }
.nav-more summary { cursor: pointer; list-style: none; transition: color .2s ease; }
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary span { margin-left: 4px; color: var(--pink); }
.nav-more[open] summary, .nav-more summary:hover, .nav-more summary:focus-visible { color: var(--pink); }
.nav-submenu { position: absolute; z-index: 10; top: calc(100% + 16px); right: -12px; display: grid; min-width: 155px; padding: 8px; border: 1px solid rgba(247,244,238,.2); background: rgba(7,3,24,.98); box-shadow: var(--shadow); }
.nav-submenu a { padding: 10px 12px; color: rgba(247,244,238,.82); font-size: 11px; }
.nav-submenu a:hover, .nav-submenu a:focus-visible { background: rgba(255,110,188,.12); }
.main-navigation .nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(247,244,238,.35); color: var(--paper); }
.main-navigation .nav-cta span { color: var(--pink); font-size: 17px; line-height: 0; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--paper); padding: 10px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: currentColor; }

/* Accessibility controls */
.accessibility-bar { background: var(--paper-soft); color: var(--ink); border-bottom: 1px solid var(--line); }
.accessibility-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 48px; }
.accessibility-heading { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.accessibility-title { color: var(--violet-deep); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.accessibility-close { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 20px; line-height: 1; }
.accessibility-close:hover, .accessibility-close:focus-visible { border-color: var(--magenta); background: var(--lilac); color: var(--violet-deep); }
.accessibility-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.accessibility-control, .font-size-control button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 31px; padding: 6px 9px; border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 12px; font-weight: 800; line-height: 1; }
.accessibility-control:hover, .accessibility-control:focus-visible, .accessibility-control[aria-pressed="true"], .font-size-control button:hover, .font-size-control button:focus-visible, .font-size-control button[aria-pressed="true"] { border-color: var(--magenta); background: var(--lilac); color: var(--violet-deep); }
.font-size-control, .reader-controls { display: inline-flex; align-items: center; gap: 4px; }
.font-size-control > span { margin-right: 3px; color: rgba(37,35,35,.58); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.font-size-control button { min-width: 29px; padding-inline: 6px; }
.reader-controls { gap: 4px; }
.reader-controls .accessibility-control:first-child { background: var(--ink); color: var(--paper); }
.reader-controls .accessibility-control:first-child:hover, .reader-controls .accessibility-control:first-child:focus-visible { background: var(--violet-deep); color: #fff; }
.accessibility-status { min-width: 1px; color: var(--violet-deep); font-size: 11px; font-weight: 700; }
.accessibility-launcher { position: fixed; z-index: 55; left: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 10px 14px; border: 1px solid rgba(247,244,238,.28); background: var(--ink); color: var(--paper); box-shadow: 0 16px 34px rgba(16,12,23,.28); font-size: 12px; font-weight: 800; }
.accessibility-launcher > span:first-child { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; }
.accessibility-launcher:hover, .accessibility-launcher:focus-visible { background: var(--violet-deep); color: #fff; }

/* Shared typography and controls */
.section { position: relative; padding: clamp(86px, 10vw, 156px) 0; overflow: hidden; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-soft { background: var(--paper-soft); color: var(--ink); }
.section-ink { background: var(--ink-deep); color: var(--paper); }
.section-lilac { background: var(--lilac); color: var(--ink); }
.section-index { display: flex; align-items: center; gap: 10px; color: var(--violet-deep); font-size: 10px; font-weight: 800; letter-spacing: .19em; line-height: 1.2; text-transform: uppercase; }
.section-index span { opacity: .46; }
.section-index-light { color: var(--pink); }
.kicker, .overline { margin: 0 0 20px; color: var(--violet-deep); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; }
h1, h2 { letter-spacing: -.055em; }
h1 em, h2 em { color: var(--magenta); font-family: var(--serif); font-weight: 500; letter-spacing: -.06em; }
h1 { margin-bottom: 30px; color: var(--paper); font-size: clamp(48px, 6.7vw, 102px); line-height: .91; }
h2 { margin-bottom: 28px; font-size: clamp(42px, 5.1vw, 76px); line-height: .98; }
h3 { letter-spacing: -.035em; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 48px; padding: 13px 19px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .03em; line-height: 1.2; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 0; }
.button-bright { background: linear-gradient(105deg, var(--magenta), var(--violet) 58%, var(--electric-blue)); color: #fff; box-shadow: 0 12px 30px rgba(222, 63, 234, .26); }
.button-bright:hover, .button-bright:focus-visible { background: linear-gradient(105deg, #f05cf0, #6f3cf1 58%, #4fb9ff); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover, .button-dark:focus-visible { background: var(--violet-deep); }
.text-link { display: inline-flex; align-items: center; gap: 16px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.text-link span { font-size: 18px; line-height: .5; }
.text-link-light { color: var(--paper); }
.text-link-dark { color: var(--ink); }
.full, .button-wide { width: 100%; }

/* Hero */
.hero { position: relative; min-height: calc(100vh - 84px); display: flex; align-items: center; overflow: hidden; background: var(--ink-deep) url("assets/VioLiora_Aurora_Cosmos.jpg") center 43% / cover no-repeat; color: var(--paper); }
.hero::before { position: absolute; inset: 0; content: ""; background: linear-gradient(112deg, rgba(7,3,24,.98) 0%, rgba(9,4,31,.86) 42%, rgba(66,19,161,.42) 76%, rgba(222,63,234,.2) 100%); }
.hero::after { position: absolute; right: -12vw; bottom: -33vw; width: 72vw; height: 72vw; border: 1px solid rgba(255, 189, 63, .3); border-radius: 50%; content: ""; }
.hero-orbit { position: absolute; border: 1px solid rgba(222, 63, 234, .32); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 73vw; height: 73vw; right: -38vw; top: -23vw; }
.hero-orbit-two { width: 48vw; height: 48vw; right: -22vw; top: -11vw; border-color: rgba(53, 166, 255, .36); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: clamp(48px, 8vw, 140px); padding: clamp(70px, 10vw, 132px) 0 116px; }
.hero-copy { max-width: 680px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-light { color: var(--pink); }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 6px rgba(237,141,184,.12); }
.hero-lead { max-width: 550px; margin-bottom: 38px; color: rgba(247,244,238,.72); font-size: clamp(17px, 1.55vw, 21px); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 58px; color: rgba(247,244,238,.5); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.hero-notes span::before { width: 4px; height: 4px; border-radius: 50%; background: var(--pink); content: ""; }
.hero-visual { justify-self: end; width: min(100%, 500px); }
.visual-frame { position: relative; min-height: 550px; overflow: hidden; padding: 26px; background: linear-gradient(135deg, rgba(14,4,51,.18), rgba(222,63,234,.2) 54%, rgba(255,189,63,.14)), url("assets/VioLiora_Aurora_Cosmos.jpg") center 42% / cover no-repeat; box-shadow: 18px 20px 0 rgba(255, 189, 63, .2); }
.visual-frame::before { position: absolute; width: 90%; height: 80%; right: -32%; top: -25%; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; content: ""; }
.visual-frame::after { position: absolute; width: 78%; height: 65%; left: -28%; bottom: -30%; border: 1px solid rgba(16,12,23,.2); border-radius: 50%; content: ""; }
.visual-grid { position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 75%, transparent); }
.visual-caption { position: relative; z-index: 2; display: flex; justify-content: space-between; color: rgba(255,255,255,.75); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-symbol { position: absolute; z-index: 1; width: 230px; height: 230px; top: 118px; left: 50%; transform: translateX(-50%); border-radius: 50px; opacity: .96; mix-blend-mode: screen; }
.visual-word { position: absolute; z-index: 2; left: 26px; bottom: 73px; color: rgba(255,255,255,.94); font: 500 clamp(58px, 7vw, 90px)/.75 var(--serif); letter-spacing: -.09em; }
.visual-stamp { position: absolute; z-index: 2; right: 27px; bottom: 28px; color: rgba(255,255,255,.84); font-size: 26px; font-weight: 800; letter-spacing: .14em; line-height: .85; text-align: right; }
.visual-stamp span { font-size: 9px; letter-spacing: .3em; }
.hero-scroll { position: absolute; z-index: 2; right: 48px; bottom: 25px; display: inline-flex; align-items: center; gap: 12px; color: rgba(247,244,238,.55); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.hero-scroll i { color: var(--pink); font-size: 16px; font-style: normal; }

/* Intro and topic index */
.signal-strip { background: var(--paper-soft); border-bottom: 1px solid var(--line); }
.signal-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); min-height: 132px; }
.signal-grid > * { display: flex; flex-direction: column; justify-content: center; padding: 22px clamp(16px, 3vw, 38px); border-left: 1px solid var(--line); }
.signal-grid > *:first-child { padding-left: 0; border-left: 0; }
.signal-label { color: var(--violet-deep); font: italic 500 20px/1.12 var(--serif); }
.signal-item strong { margin-bottom: 5px; font-size: 12px; letter-spacing: .02em; }
.signal-item span { color: rgba(37,35,35,.55); font-size: 11px; }
.split-intro { display: grid; grid-template-columns: minmax(170px, .43fr) minmax(0, 1fr); gap: 8vw; }
.intro-statement { max-width: 820px; }
.intro-statement h2 { margin-bottom: 34px; }
.intro-copy { max-width: 710px; color: rgba(37,35,35,.76); font-size: 18px; line-height: 1.65; }
.intro-copy + .intro-copy { margin-top: 20px; }
.section-heading { margin-bottom: 68px; }
.heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr); align-items: end; gap: 7vw; }
.heading-row h2 { margin: 26px 0 0; }
.heading-row > p { max-width: 360px; margin: 0 0 8px; color: rgba(37,35,35,.65); font-size: 15px; }
.heading-row-light > p { color: rgba(247,244,238,.64); }
.heading-row-light .section-index { color: var(--pink); }
.topic-list { border-top: 1px solid var(--line); }
.topic-row { display: grid; grid-template-columns: 60px minmax(230px, .9fr) minmax(0, 1fr) 35px; align-items: center; gap: 20px; min-height: 102px; border-bottom: 1px solid var(--line); transition: padding .2s ease, background .2s ease; }
.topic-row:hover { padding-inline: 16px; background: rgba(112,80,183,.07); }
.topic-number { color: var(--violet); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.topic-row h3 { margin: 0; font-size: clamp(21px, 2vw, 28px); }
.topic-row p { max-width: 380px; margin: 0; color: rgba(37,35,35,.62); font-size: 13px; }
.topic-mark { justify-self: end; color: var(--magenta); font-size: 22px; }

/* Offer */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(247,244,238,.2); }
.offer-card { min-height: 390px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); background: rgba(247,244,238,.055); }
.offer-card-featured { background: linear-gradient(140deg, rgba(216,76,150,.9), rgba(112,80,183,.75)); }
.offer-topline { display: flex; justify-content: space-between; margin-bottom: 80px; color: rgba(247,244,238,.58); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.offer-card h3 { margin: 0 0 20px; color: var(--paper); font-size: clamp(30px, 3.3vw, 48px); line-height: .96; }
.offer-card p { margin-bottom: 28px; color: rgba(247,244,238,.68); font-size: 14px; line-height: 1.65; }
.offer-card .text-link { margin-top: auto; align-self: flex-start; }
.offer-note { margin-top: auto; color: var(--pink); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.disclaimer { margin: 40px 0 0; font-size: 11px; line-height: 1.6; }
.disclaimer-dark { max-width: 640px; color: rgba(247,244,238,.52); }

/* NLP explainer */
.nlp-grid { display: grid; grid-template-columns: minmax(160px, .35fr) minmax(0, 1fr); gap: 8vw; }
.nlp-badge { width: 118px; height: 118px; display: grid; place-items: center; margin-top: 100px; border: 1px solid rgba(78,46,128,.35); border-radius: 50%; color: var(--violet-deep); font: 500 27px/1 var(--serif); transform: rotate(-13deg); }
.nlp-badge span + span { margin-left: -2px; }
.nlp-content { max-width: 820px; }
.nlp-content h2 { color: var(--ink); }
.nlp-content > p { max-width: 720px; color: rgba(37,35,35,.75); font-size: 18px; line-height: 1.65; }
.nlp-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 38px; margin: 46px 0 44px; padding-top: 25px; border-top: 1px solid rgba(78,46,128,.25); }
.nlp-columns strong { color: var(--violet-deep); font-size: 13px; }
.nlp-columns p { margin: 11px 0 0; color: rgba(37,35,35,.65); font-size: 14px; line-height: 1.65; }

/* About and process */
.about-grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr); gap: 10vw; align-items: center; }
.about-portrait { position: relative; min-height: 570px; overflow: hidden; background: linear-gradient(145deg, var(--violet-deep), var(--magenta)); }
.portrait-lines { position: absolute; inset: 0; opacity: .35; background: repeating-linear-gradient(115deg, transparent 0 34px, rgba(255,255,255,.4) 35px 36px, transparent 37px 70px); transform: scale(1.4) rotate(-17deg); }
.about-portrait::before { position: absolute; width: 90%; height: 72%; left: -27%; top: 12%; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; content: ""; }
.about-portrait::after { position: absolute; width: 65%; height: 50%; right: -20%; bottom: -8%; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; content: ""; }
.portrait-initials { position: absolute; z-index: 1; left: 42px; bottom: 38px; color: rgba(255,255,255,.96); font: 500 clamp(110px, 13vw, 190px)/.76 var(--serif); letter-spacing: -.12em; }
.portrait-caption { position: absolute; z-index: 1; top: 30px; right: 30px; color: rgba(255,255,255,.82); font-size: 10px; font-weight: 800; letter-spacing: .15em; line-height: 1.6; text-align: right; text-transform: uppercase; }
.about-copy { max-width: 650px; }
.about-copy h2 { margin-top: 24px; }
.about-lead { max-width: 620px; color: var(--violet-deep); font: italic 500 25px/1.32 var(--serif); }
.about-copy > p:not(.about-lead) { max-width: 590px; color: rgba(37,35,35,.67); font-size: 16px; line-height: 1.7; }
.qualification-line { display: grid; grid-template-columns: 1fr 1fr; max-width: 500px; padding: 17px 0; border-top: 1px solid var(--line); font-size: 11px; }
.qualification-line:last-child { border-bottom: 1px solid var(--line); }
.qualification-line span { color: rgba(37,35,35,.5); text-transform: uppercase; letter-spacing: .14em; }
.qualification-line strong { color: var(--ink); font-size: 13px; line-height: 1.35; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.process-list li { min-height: 230px; padding: 28px 30px; list-style: none; background: var(--paper-soft); }
.process-number { display: block; margin-bottom: 58px; color: var(--magenta); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.process-list h3 { margin: 0 0 10px; font-size: 27px; }
.process-list p { max-width: 270px; margin: 0; color: rgba(37,35,35,.62); font-size: 13px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1fr); gap: 11vw; }
.faq-grid h2 { margin-top: 24px; }
.faq-intro { max-width: 330px; margin: 0 0 30px; color: rgba(37,35,35,.62); font-size: 14px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; cursor: pointer; font-size: 17px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--magenta); content: "+"; font-size: 17px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 55px 25px 0; margin: 0; color: rgba(37,35,35,.66); font-size: 14px; line-height: 1.7; }

/* Booking */
.booking-section { position: relative; overflow: hidden; padding: clamp(88px, 10vw, 150px) 0; background: var(--ink); color: var(--paper); }
.booking-section::before { position: absolute; width: 65vw; height: 65vw; top: -43vw; right: -17vw; border: 1px solid rgba(216,76,150,.42); border-radius: 50%; content: ""; }
.booking-section::after { position: absolute; width: 48vw; height: 48vw; bottom: -33vw; left: -14vw; border: 1px solid rgba(112,80,183,.55); border-radius: 50%; content: ""; }
.booking-shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .78fr); gap: 9vw; align-items: start; }
.booking-copy h2 { margin-top: 27px; }
.booking-copy h2 em { color: var(--pink); }
.booking-copy > p:not(.section-index) { max-width: 500px; color: rgba(247,244,238,.66); font-size: 16px; line-height: 1.7; }
.booking-aside { display: flex; align-items: center; gap: 17px; margin-top: 60px; color: rgba(247,244,238,.7); font-size: 11px; font-weight: 700; letter-spacing: .11em; line-height: 1.55; text-transform: uppercase; }
.booking-aside-mark { color: var(--pink); font: 500 55px/.8 var(--serif); letter-spacing: -.08em; }
.booking-form { padding: clamp(25px, 4vw, 44px); background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 800; }
.form-heading small { color: rgba(37,35,35,.55); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-form label, .assistant-form label { display: block; margin: 16px 0 7px; color: rgba(37,35,35,.76); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.booking-form input, .booking-form select, .booking-form textarea, .assistant-form input, .assistant-form textarea { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid rgba(37,35,35,.25); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.booking-form textarea, .assistant-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus, .assistant-form input:focus, .assistant-form textarea:focus { border-color: var(--magenta); box-shadow: 0 2px 0 var(--magenta); }
.booking-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--magenta) 50%), linear-gradient(135deg, var(--magenta) 50%, transparent 50%); background-position: calc(100% - 8px) 50%, calc(100% - 3px) 50%; background-repeat: no-repeat; background-size: 5px 5px, 5px 5px; }
.form-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.consent { display: flex !important; align-items: flex-start; gap: 9px; margin: 24px 0 !important; color: rgba(37,35,35,.55) !important; font-size: 10px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.consent input { width: 14px; height: 14px; flex: 0 0 auto; margin: 1px 0 0; accent-color: var(--magenta); }
.consent a { color: var(--violet-deep); text-decoration: underline; }
.form-note { margin: 15px 0 0; color: rgba(37,35,35,.52); font-size: 10px; line-height: 1.5; }

/* Contact and footer */
.contact-section { padding: clamp(80px, 9vw, 130px) 0; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr); gap: 10vw; }
.contact-grid h2 { margin: 25px 0 30px; }
.contact-details { align-self: end; max-width: 470px; }
.contact-details > p { max-width: 390px; margin-bottom: 32px; color: rgba(37,35,35,.64); font-size: 15px; }
.contact-link { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-top: 1px solid var(--line); color: var(--violet-deep); font-size: clamp(17px, 2vw, 23px); font-weight: 600; letter-spacing: -.025em; }
.contact-link:last-of-type { border-bottom: 1px solid var(--line); }
.contact-link span { color: var(--magenta); font-size: 20px; }
.contact-location { margin-top: 27px !important; color: rgba(37,35,35,.55) !important; font-size: 11px !important; font-weight: 800; letter-spacing: .1em; line-height: 1.7 !important; text-transform: uppercase; }
.site-footer { background: var(--ink); color: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; padding: 48px 0 42px; }
.footer-brand { display: inline-flex; width: fit-content; }
.footer-brand img { width: 190px; }
.footer-main > p { margin: 0; color: rgba(247,244,238,.58); font: italic 500 17px/1.2 var(--serif); }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 20px; color: rgba(247,244,238,.62); font-size: 11px; font-weight: 700; }
.footer-links a:hover, .footer-bottom a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 17px 0 24px; border-top: 1px solid rgba(247,244,238,.16); color: rgba(247,244,238,.43); font-size: 10px; }
.footer-bottom a + a { margin-left: 20px; }

/* Free assistant */
.assistant { position: fixed; z-index: 60; right: 24px; bottom: 24px; width: min(386px, calc(100vw - 32px)); }
.assistant-toggle { width: 100%; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); background: linear-gradient(112deg, var(--magenta), var(--violet-deep)); color: #fff; box-shadow: 0 18px 35px rgba(16,12,23,.25); text-align: left; }
.assistant-toggle:hover, .assistant-toggle:focus-visible { background: linear-gradient(112deg, #e65da0, #5d3994); }
.assistant-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; font-size: 22px; }
.assistant-toggle strong, .assistant-toggle small { display: block; }
.assistant-toggle strong { font-size: 13px; letter-spacing: .02em; }
.assistant-toggle small { margin-top: 2px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.assistant-arrow { justify-self: end; font-size: 20px; }
.assistant-panel { overflow: hidden; margin-bottom: 10px; border: 1px solid rgba(37,35,35,.18); background: var(--paper); color: var(--ink); box-shadow: 0 22px 55px rgba(16,12,23,.3); }
.assistant-head { display: flex; justify-content: space-between; gap: 15px; padding: 22px 22px 18px; background: var(--ink); color: var(--paper); }
.assistant-head h2 { margin: 13px 0 0; font-size: 29px; line-height: .94; }
.assistant-head h2 em { color: var(--pink); }
.assistant-head > button { align-self: flex-start; width: 28px; height: 28px; border: 1px solid rgba(247,244,238,.3); background: transparent; color: var(--paper); font-size: 22px; line-height: 1; }
.assistant-status { display: inline-flex; align-items: center; gap: 7px; color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.assistant-status i { width: 6px; height: 6px; border-radius: 50%; background: #72d4a4; }
.assistant-disclosure { max-width: 275px; margin: 12px 0 0; color: rgba(247,244,238,.62); font-size: 11px; line-height: 1.45; }
.assistant-tools { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 20px 0; color: rgba(37,35,35,.55); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.assistant-tools button { border: 0; padding: 0; background: transparent; color: var(--violet-deep); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; text-decoration: underline; text-underline-offset: 3px; }
.assistant-tools button:hover, .assistant-tools button:focus-visible { color: var(--magenta); }
.assistant-messages { display: flex; flex-direction: column; gap: 10px; max-height: 210px; overflow: auto; padding: 18px 20px 4px; }
.assistant-message { max-width: 88%; margin: 0; padding: 11px 13px; white-space: pre-line; font-size: 12px; line-height: 1.55; }
.assistant-message.bot { align-self: flex-start; background: var(--paper-soft); }
.assistant-message.user { align-self: flex-end; background: var(--lilac); }
.assistant-typing { display: flex; gap: 4px; min-height: 18px; padding: 7px 20px 0; }
.assistant-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--violet); animation: assistant-bounce 1s ease-in-out infinite; }
.assistant-typing span:nth-child(2) { animation-delay: .12s; }
.assistant-typing span:nth-child(3) { animation-delay: .24s; }
@keyframes assistant-bounce { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.assistant-options { display: flex; flex-wrap: wrap; gap: 7px; padding: 13px 20px 19px; }
.assistant-option { padding: 9px 11px; border: 1px solid rgba(78,46,128,.3); border-radius: 999px; background: transparent; color: var(--violet-deep); font-size: 10px; font-weight: 800; line-height: 1.2; }
.assistant-option:hover, .assistant-option:focus-visible { background: var(--lilac); border-color: var(--violet); }
.assistant-chat-form { display: grid; grid-template-columns: 1fr 38px; gap: 8px; padding: 0 20px 10px; }
.assistant-chat-form input { min-width: 0; padding: 10px 12px; border: 1px solid rgba(37,35,35,.25); background: transparent; color: var(--ink); font-size: 13px; }
.assistant-chat-form input:focus { border-color: var(--magenta); outline: 0; box-shadow: 0 0 0 2px rgba(216,76,150,.2); }
.assistant-chat-form button { border: 0; background: var(--violet-deep); color: var(--paper); font-size: 21px; line-height: 1; }
.assistant-chat-form button:hover, .assistant-chat-form button:focus-visible { background: var(--magenta); }
.assistant-chat-form button:disabled, .assistant-option:disabled, .assistant-tools button:disabled { cursor: wait; opacity: .55; }
.assistant-form { padding: 0 20px 19px; }
.assistant-form label { margin-top: 12px; font-size: 9px; }
.assistant-form input, .assistant-form textarea { padding: 8px 0; font-size: 13px; }
.assistant-form .consent { margin: 13px 0 !important; font-size: 9px !important; }
.assistant-form .button { min-height: 42px; padding: 10px 13px; font-size: 10px; }
.assistant-privacy { margin: 11px 0 0; color: rgba(37,35,35,.52); font-size: 9px; line-height: 1.45; }
.assistant-note { padding: 0 20px 16px; margin: 0; color: rgba(37,35,35,.5); font-size: 9px; line-height: 1.4; }

/* User-selected dark mode */
html[data-theme="dark"] {
  --paper: #16121c;
  --paper-soft: #211a29;
  --ink: #f6f1f7;
  --ink-deep: #0b0810;
  --ink-soft: #2d2138;
  --lilac: #392946;
  --lilac-deep: #d4c0e5;
  --violet: #a486e4;
  --violet-deep: #d1b6ef;
  --magenta: #ef79b5;
  --pink: #ffaad1;
  --line: rgba(246,241,247,.23);
  --line-light: rgba(246,241,247,.22);
  color-scheme: dark;
}
html[data-theme="dark"] body { background: var(--paper); color: var(--ink); }
html[data-theme="dark"] .site-header, html[data-theme="dark"] .site-footer, html[data-theme="dark"] .section-ink, html[data-theme="dark"] .booking-section { background: #0b0810; }
html[data-theme="dark"] .signal-strip, html[data-theme="dark"] .section-soft { background: #211a29; }
html[data-theme="dark"] .section-lilac { background: #2d2138; }
html[data-theme="dark"] .accessibility-bar { background: #211a29; }
html[data-theme="dark"] .intro-copy, html[data-theme="dark"] .heading-row > p, html[data-theme="dark"] .topic-row p, html[data-theme="dark"] .nlp-content > p, html[data-theme="dark"] .nlp-columns p, html[data-theme="dark"] .about-copy > p:not(.about-lead), html[data-theme="dark"] .process-list p, html[data-theme="dark"] .faq-intro, html[data-theme="dark"] .faq-list details p, html[data-theme="dark"] .contact-details > p, html[data-theme="dark"] .legal-lead, html[data-theme="dark"] .legal-grid p { color: rgba(246,241,247,.72); }
html[data-theme="dark"] .topic-row:hover { background: rgba(164,134,228,.13); }
html[data-theme="dark"] .offer-grid, html[data-theme="dark"] .process-list, html[data-theme="dark"] .legal-grid { background: rgba(246,241,247,.22); }
html[data-theme="dark"] .legal-grid section { background: var(--paper); }
html[data-theme="dark"] .booking-form, html[data-theme="dark"] .assistant-panel { background: #f0eaf3; color: #252323; }
html[data-theme="dark"] .booking-form label, html[data-theme="dark"] .assistant-form label { color: rgba(37,35,35,.78); }
html[data-theme="dark"] .booking-form input, html[data-theme="dark"] .booking-form select, html[data-theme="dark"] .booking-form textarea, html[data-theme="dark"] .assistant-form input, html[data-theme="dark"] .assistant-form textarea { color: #252323; border-color: rgba(37,35,35,.35); }
html[data-theme="dark"] .form-note, html[data-theme="dark"] .assistant-privacy, html[data-theme="dark"] .assistant-note { color: rgba(37,35,35,.58); }
html[data-theme="dark"] .assistant-chat-form input { color: #252323; border-color: rgba(37,35,35,.3); }
html[data-theme="dark"] .button-dark { background: #f0eaf3; color: #252323; }
html[data-theme="dark"] .button-dark:hover, html[data-theme="dark"] .button-dark:focus-visible { background: #fff; }
html[data-theme="dark"] .faq-list summary::after { border-color: rgba(246,241,247,.3); }
html[data-theme="dark"] .accessibility-launcher { background: #0b0810; color: #f6f1f7; }

/* Optional reading aids stay dormant until the visitor selects them. */
html[data-readable-font="true"] body,
html[data-readable-font="true"] button,
html[data-readable-font="true"] input,
html[data-readable-font="true"] select,
html[data-readable-font="true"] textarea,
html[data-readable-font="true"] .eyebrow,
html[data-readable-font="true"] .brand,
html[data-readable-font="true"] .main-navigation,
html[data-readable-font="true"] .assistant,
html[data-readable-font="true"] .accessibility-bar,
html[data-readable-font="true"] .site-footer {
  font-family: Arial, Verdana, sans-serif;
}
html[data-readable-font="true"] h1,
html[data-readable-font="true"] h2,
html[data-readable-font="true"] h3,
html[data-readable-font="true"] h1 em,
html[data-readable-font="true"] h2 em,
html[data-readable-font="true"] h3 em {
  font-family: Arial, Verdana, sans-serif;
  font-style: normal;
  letter-spacing: -.025em;
}

html[data-contrast="true"] {
  --ink: #111014;
  --ink-deep: #080609;
  --ink-soft: #241b2b;
  --paper: #fff;
  --paper-soft: #f4f1f7;
  --lilac: #eadcf5;
  --lilac-deep: #70448f;
  --violet: #5a2a9a;
  --violet-deep: #3e1266;
  --magenta: #a60061;
  --pink: #b00069;
  --line: rgba(17, 16, 20, .64);
  --line-light: rgba(255, 255, 255, .84);
}
html[data-contrast="true"] .section-lead,
html[data-contrast="true"] .muted,
html[data-contrast="true"] .topic-card p,
html[data-contrast="true"] .faq-answer,
html[data-contrast="true"] .intro-copy,
html[data-contrast="true"] .heading-row > p,
html[data-contrast="true"] .topic-row p,
html[data-contrast="true"] .nlp-content > p,
html[data-contrast="true"] .nlp-columns p,
html[data-contrast="true"] .about-copy > p:not(.about-lead),
html[data-contrast="true"] .process-list p,
html[data-contrast="true"] .faq-intro,
html[data-contrast="true"] .faq-list details p,
html[data-contrast="true"] .contact-details p,
html[data-contrast="true"] .legal-lead,
html[data-contrast="true"] .legal-grid p,
html[data-contrast="true"] .form-note {
  color: var(--ink) !important;
}
html[data-contrast="true"] .hero-lead,
html[data-contrast="true"] .section-ink .offer-card p,
html[data-contrast="true"] .section-ink .heading-row > p,
html[data-contrast="true"] .section-ink .disclaimer-dark {
  color: #fff !important;
}
html[data-contrast="true"] .button-bright,
html[data-contrast="true"] .button-violet {
  background: var(--violet-deep);
  color: #fff;
  box-shadow: none;
}
html[data-contrast="true"] .text-link,
html[data-contrast="true"] .site-footer a,
html[data-contrast="true"] .contact-details a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
html[data-theme="dark"][data-contrast="true"] {
  --ink: #fff;
  --ink-deep: #050307;
  --ink-soft: #f2eafa;
  --paper: #08060c;
  --paper-soft: #17121e;
  --lilac: #2b1b3b;
  --lilac-deep: #d7baf3;
  --violet: #c5a2ff;
  --violet-deep: #f0d9ff;
  --magenta: #ff5cae;
  --pink: #ffd3e9;
  --line: rgba(255, 255, 255, .78);
  --line-light: rgba(255, 255, 255, .9);
}
html[data-theme="dark"][data-contrast="true"] .section-lead,
html[data-theme="dark"][data-contrast="true"] .muted,
html[data-theme="dark"][data-contrast="true"] .topic-card p,
html[data-theme="dark"][data-contrast="true"] .faq-answer,
html[data-theme="dark"][data-contrast="true"] .intro-copy,
html[data-theme="dark"][data-contrast="true"] .heading-row > p,
html[data-theme="dark"][data-contrast="true"] .topic-row p,
html[data-theme="dark"][data-contrast="true"] .nlp-content > p,
html[data-theme="dark"][data-contrast="true"] .nlp-columns p,
html[data-theme="dark"][data-contrast="true"] .about-copy > p:not(.about-lead),
html[data-theme="dark"][data-contrast="true"] .process-list p,
html[data-theme="dark"][data-contrast="true"] .faq-intro,
html[data-theme="dark"][data-contrast="true"] .faq-list details p,
html[data-theme="dark"][data-contrast="true"] .contact-details p,
html[data-theme="dark"][data-contrast="true"] .legal-lead,
html[data-theme="dark"][data-contrast="true"] .legal-grid p,
html[data-theme="dark"][data-contrast="true"] .form-note {
  color: #fff !important;
}
html[data-theme="dark"][data-contrast="true"] .hero-lead,
html[data-theme="dark"][data-contrast="true"] .section-ink .offer-card p,
html[data-theme="dark"][data-contrast="true"] .section-ink .heading-row > p,
html[data-theme="dark"][data-contrast="true"] .section-ink .disclaimer-dark {
  color: #fff !important;
}
html[data-theme="dark"][data-contrast="true"] .button-bright,
html[data-theme="dark"][data-contrast="true"] .button-violet {
  background: #fff;
  color: #130a1b;
}

/* Legal pages share the same system */
.legal-page { min-height: calc(100vh - 170px); padding-top: 92px; padding-bottom: 120px; background: var(--paper); }
.legal-page h1 { margin: 44px 0 18px; color: var(--ink); font-size: clamp(48px, 7vw, 90px); }
.legal-page h1 em { color: var(--magenta); }
.legal-lead { max-width: 650px; color: rgba(37,35,35,.62); font-size: 18px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 70px; background: var(--line); }
.legal-grid section { min-height: 190px; padding: 28px; background: var(--paper); }
.legal-grid h2 { margin: 0 0 14px; color: var(--violet-deep); font-size: 25px; letter-spacing: -.04em; }
.legal-grid p { color: rgba(37,35,35,.68); font-size: 14px; line-height: 1.7; }
.legal-grid a { color: var(--violet-deep); text-decoration: underline; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 52px, 760px); }
  .main-navigation { gap: 16px; }
  .main-navigation a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 35px; }
  .hero-visual { width: 100%; }
  .visual-frame { min-height: 460px; }
  .hero-symbol { width: 170px; height: 170px; top: 100px; }
  .visual-word { font-size: 61px; }
  .split-intro, .nlp-grid, .about-grid, .faq-grid { gap: 45px; }
  .topic-row { grid-template-columns: 45px minmax(190px, .8fr) minmax(0, 1fr) 25px; gap: 12px; }
  .topic-row p { font-size: 12px; }
  .offer-card { min-height: 420px; padding: 25px; }
  .booking-shell { gap: 45px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 36px); }
  .accessibility-inner { display: block; padding: 10px 0; }
  .accessibility-heading { justify-content: space-between; margin-bottom: 9px; }
  .accessibility-actions { justify-content: flex-start; gap: 6px; }
  .accessibility-status { flex-basis: 100%; min-height: 15px; }
  .font-size-control > span { display: none; }
  .reader-controls { margin-left: auto; }
  .accessibility-actions .reader-controls { margin-left: 0; }
  .accessibility-control { font-size: 12px; }
  .header-inner { min-height: 72px; }
  .brand > img:not(.brand-mark), .footer-brand img { width: 158px; }
  .main-navigation { position: absolute; top: 72px; right: 18px; left: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid rgba(247,244,238,.16); background: var(--ink); box-shadow: var(--shadow); }
  .main-navigation.is-open { display: flex; }
  .main-navigation a:not(.nav-cta) { display: block; padding: 13px 12px; border-bottom: 1px solid rgba(247,244,238,.12); }
  .nav-more { border-bottom: 1px solid rgba(247,244,238,.12); }
  .nav-more summary { padding: 13px 12px; }
  .nav-submenu { position: static; display: block; min-width: 0; padding: 0 0 6px 14px; border: 0; background: transparent; box-shadow: none; }
  .nav-submenu a { padding: 10px 12px; border-top: 1px solid rgba(247,244,238,.1); }
  .main-navigation .nav-cta { justify-content: space-between; margin-top: 8px; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; padding: 74px 0 105px; }
  .hero-copy { max-width: none; }
  h1 { font-size: clamp(50px, 15vw, 76px); }
  h2 { font-size: clamp(39px, 11vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-notes { margin-top: 40px; }
  .hero-visual { max-width: 480px; align-self: flex-end; }
  .visual-frame { min-height: 390px; }
  .hero-symbol { width: 150px; height: 150px; top: 82px; }
  .hero-scroll { right: 18px; bottom: 19px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > *:nth-child(3) { border-left: 0; }
  .signal-grid > * { min-height: 95px; padding: 16px; }
  .signal-grid > *:first-child { grid-column: 1 / -1; min-height: 90px; padding-left: 0; border-bottom: 1px solid var(--line); }
  .split-intro, .nlp-grid, .about-grid, .faq-grid, .contact-grid, .booking-shell { display: block; }
  .split-intro .section-index, .nlp-aside .section-index { margin-bottom: 45px; }
  .intro-copy { font-size: 16px; }
  .heading-row { display: block; }
  .heading-row > p { margin-top: 25px; }
  .section-heading { margin-bottom: 45px; }
  .topic-row { grid-template-columns: 34px 1fr 25px; gap: 10px; min-height: 94px; padding: 14px 0; }
  .topic-row:hover { padding-inline: 8px; }
  .topic-row p { grid-column: 2 / 3; grid-row: 2; font-size: 12px; }
  .topic-row h3 { font-size: 20px; }
  .offer-grid { display: block; background: transparent; }
  .offer-card { min-height: auto; margin-bottom: 1px; padding: 28px 24px; }
  .offer-topline { margin-bottom: 56px; }
  .offer-card h3 { font-size: 37px; }
  .nlp-badge { margin: 0 0 45px; }
  .nlp-content > p { font-size: 16px; }
  .nlp-columns { display: block; margin-top: 35px; }
  .nlp-columns > div + div { margin-top: 28px; }
  .about-portrait { min-height: 390px; margin-bottom: 52px; }
  .portrait-initials { left: 24px; bottom: 28px; font-size: 115px; }
  .about-lead { font-size: 21px; }
  .qualification-line { max-width: none; }
  .process-list { display: block; }
  .process-list li { min-height: auto; padding: 25px 22px; }
  .process-number { margin-bottom: 25px; }
  .faq-grid h2 { margin-top: 25px; }
  .faq-list { margin-top: 50px; }
  .booking-copy { margin-bottom: 54px; }
  .booking-aside { margin-top: 35px; }
  .booking-form { padding: 23px 18px; }
  .form-two-col { display: block; }
  .footer-main { display: block; padding: 40px 0 30px; }
  .footer-main > p { margin: 25px 0; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { display: block; line-height: 2; }
  .footer-bottom span { display: block; }
  .assistant { right: 18px; bottom: 78px; width: calc(100vw - 36px); }
  .accessibility-launcher { left: 18px; bottom: 18px; min-height: 43px; padding: 8px 11px; font-size: 11px; }
  .assistant-panel { max-height: calc(100vh - 100px); overflow: auto; }
  .assistant-messages { max-height: 170px; }
  .legal-page { padding-top: 65px; }
  .legal-grid { display: block; margin-top: 45px; }
  .legal-grid section { min-height: auto; margin-bottom: 1px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
