:root {
  color-scheme: light;
  --ink: #11131a;
  --ink-soft: #2b3038;
  --muted: #5f6672;
  --line: #e4def1;
  --paper: #fbf9ff;
  --paper-strong: #f1ecfb;
  --white: #ffffff;
  --violet: #5522b4;
  --violet-dark: #2e1065;
  --violet-mid: #6d35d3;
  --violet-soft: #efe8ff;
  --accent: #5522b4;
  --lilac: #f0e9ff;
  --shadow: 0 18px 60px rgba(46, 16, 101, 0.14);
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p {
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
}

::selection {
  background: var(--violet);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(85, 34, 180, 0.35);
  outline-offset: 3px;
}

.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;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 222, 241, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-weight: 800;
  color: var(--violet);
}

.brand img {
  width: 3.9rem;
  height: auto;
}

.brand span {
  color: var(--ink);
  font-size: 1.05rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.primary-nav a {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink-soft);
  font-weight: 650;
  border-radius: 8px;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--violet);
  background: rgba(85, 34, 180, 0.1);
}

.primary-nav .nav-cta {
  margin-left: 0.45rem;
  color: var(--white);
  background: var(--violet);
  box-shadow: 0 12px 26px rgba(85, 34, 180, 0.26);
}

.primary-nav .nav-cta:hover {
  color: var(--white);
  background: var(--violet-dark);
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  min-height: calc(82vh - var(--header));
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 5.6rem max(1.25rem, calc((100vw - var(--max)) / 2)) 3.3rem;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.7px),
    linear-gradient(135deg, #421396 0%, #5a23bd 43%, #7438d6 100%);
  background-size: 34px 34px, 46px 46px, cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(46, 16, 101, 0.16), transparent 42%),
    linear-gradient(180deg, transparent 72%, rgba(46, 16, 101, 0.26));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  z-index: -1;
}

.hero-shell {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  gap: 4.5rem;
  align-items: center;
}

.hero-copy {
  width: min(48rem, 100%);
}

.eyebrow,
.kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.7rem;
  color: var(--violet-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
}

.hero h1 {
  margin-top: 1.1rem;
  color: var(--white);
  font-size: 4.85rem;
  line-height: 0.95;
  font-weight: 850;
}

.hero h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.hero-text {
  width: min(39rem, 100%);
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
  font-weight: 550;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1rem;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-mid) 100%);
  box-shadow: 0 16px 36px rgba(46, 16, 101, 0.24);
}

.button-primary:hover {
  background: var(--violet-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--line);
}

.button-light {
  color: var(--violet-dark);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(28rem, 100%);
  margin: 1.75rem 0 0;
}

.hero-stats div {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 840;
}

.hero-stats dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.hero-panel {
  padding: 2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 72px rgba(46, 16, 101, 0.22);
  backdrop-filter: blur(12px);
}

.hero-panel h2 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-panel article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
}

.hero-panel .icon {
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero-panel h3 {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-panel p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -1.5rem 0 3rem;
}

.stat-strip div {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-strip dt {
  color: var(--violet);
  font-size: 2rem;
  line-height: 1;
  font-weight: 850;
}

.stat-strip dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section,
.article-page {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.intro-section {
  padding-top: 4.5rem;
}

.muted-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.compact-section {
  padding-top: 4rem;
}

.section-header {
  width: min(46rem, 100%);
  margin-bottom: 2rem;
}

.section-header h2,
.split-section h2,
.cta-band h2,
.article-page h1 {
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 820;
}

.section-header p:last-child,
.article-page header p {
  margin-top: 0.85rem;
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card,
.service-card,
.panel,
.article-card,
.team-card,
.region-grid article,
.process-list article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17, 19, 26, 0.02);
}

.highlight-card,
.service-card,
.panel,
.article-card,
.region-grid article {
  padding: 1.25rem;
}

.card-icon,
.region-grid span {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  background: rgba(85, 34, 180, 0.09);
  border: 1px solid rgba(85, 34, 180, 0.14);
  border-radius: 8px;
}

.highlight-card h3,
.service-card h3,
.panel h3,
.panel h2,
.article-card h3,
.region-grid h3,
.process-list h3,
.team-card h3,
.faq-list summary {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 800;
}

.highlight-card h3,
.service-card p,
.region-grid h3 {
  margin-top: 0.95rem;
}

.highlight-card p,
.service-card p,
.region-grid p,
.process-list p,
.team-card p,
.panel p {
  margin-top: 0.55rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.card-title-row span,
.article-meta span,
.team-card li {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.22rem 0.5rem;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border: 1px solid rgba(85, 34, 180, 0.14);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--ink-soft);
}

.check-list .icon {
  margin-top: 0.18rem;
  color: var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rich-copy {
  display: grid;
  gap: 1rem;
}

.rich-copy p {
  font-size: 1.12rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-list {
  display: grid;
  gap: 0.75rem;
}

.process-list article {
  display: grid;
  grid-template-columns: 5rem 0.85fr 1.3fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem;
}

.process-list span {
  color: var(--violet);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 850;
}

.two-column,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-section {
  padding: 1.5rem 0 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.proof-strip div {
  min-height: 9rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17, 19, 26, 0.02);
}

.proof-strip dt {
  color: var(--violet);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 850;
}

.proof-strip dd {
  display: grid;
  gap: 0.35rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.proof-strip strong {
  color: var(--ink);
}

.answer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-section h2 {
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1.08;
  font-weight: 820;
}

.answer-copy {
  display: grid;
  gap: 1rem;
}

.answer-copy > p {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.package-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card,
.sector-card {
  min-height: 100%;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(17, 19, 26, 0.02);
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.package-topline span,
.query-list li,
.sector-card li {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: 0.22rem 0.5rem;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border: 1px solid rgba(85, 34, 180, 0.14);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 750;
}

.package-card h3,
.sector-card h3 {
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 820;
}

.package-card p,
.sector-card p {
  margin-top: 0.65rem;
}

.package-note {
  padding-top: 1rem;
  color: var(--ink-soft);
  font-weight: 720;
}

.comparison-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 1rem;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
}

.comparison-row > div:first-child {
  color: var(--ink);
  border-left: 0;
  font-weight: 800;
}

.comparison-head {
  background: var(--violet-dark);
}

.comparison-head > div {
  color: var(--white);
  border-left-color: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.comparison-head > div:first-child {
  color: var(--white);
}

.comparison-row > div:last-child {
  background: rgba(85, 34, 180, 0.06);
}

.comparison-head > div:last-child {
  background: rgba(255, 255, 255, 0.08);
}

.sector-card ul,
.query-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  list-style: none;
}

.sector-card h3 a:hover {
  color: var(--violet);
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.constrained-copy {
  width: min(52rem, 100%);
}

.page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 6rem max(1.25rem, calc((100vw - var(--max)) / 2)) 4.4rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-image:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.8px),
    linear-gradient(135deg, #421396 0%, #5a23bd 45%, #7438d6 100%);
  background-size: 34px 34px, 48px 48px, cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(46, 16, 101, 0.18), transparent 48%),
    linear-gradient(180deg, transparent 70%, rgba(46, 16, 101, 0.2));
}

.page-hero .kicker {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero h1 {
  width: min(52rem, 100%);
  margin-top: 0.55rem;
  color: var(--white);
  font-size: 4rem;
  line-height: 1.04;
  font-weight: 850;
}

.page-hero > p:not(.kicker) {
  width: min(46rem, 100%);
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.booking-hero,
.legal-hero {
  padding-bottom: 2.5rem;
}

.knowledge-section {
  padding-top: 1.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.filter-button {
  min-height: 2.45rem;
  padding: 0.55rem 0.78rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.article-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
}

.article-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  margin: -1.25rem -1.25rem 1rem;
  overflow: hidden;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
}

.article-card-media img,
.article-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.article-card-media img {
  transition: transform 220ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.035);
}

.article-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  border-color: rgba(85, 34, 180, 0.2);
}

.article-featured h3,
.article-featured p,
.article-featured .article-card-footer,
.article-featured .article-card-footer a {
  color: var(--white);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1.35rem;
}

.article-card h3 a:hover {
  color: var(--violet);
}

.article-featured h3 a:hover {
  color: var(--lilac);
}

.article-card p {
  margin-top: 0.7rem;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--violet);
  font-weight: 800;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.team-grid {
  display: grid;
  gap: 1rem;
}

.team-card {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
}

.team-initials {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 8px;
  font-weight: 850;
  font-size: 1.3rem;
}

.team-card .role {
  margin-top: 0.2rem;
  color: var(--accent);
  font-weight: 760;
}

.team-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
  list-style: none;
}

.team-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--violet);
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
}

.faq-list p {
  margin-top: 0.8rem;
}

.cta-band {
  width: min(var(--max), calc(100% - 2.5rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto 5.5rem;
  padding: 2rem;
  color: var(--white);
  background: var(--violet-dark);
  border-radius: 8px;
}

.cta-band .kicker,
.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band h2 {
  font-size: 2.2rem;
}

.cta-band p {
  width: min(42rem, 100%);
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.76);
}

.article-page {
  padding: 4.2rem 0 5rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--violet);
  font-weight: 800;
}

.article-page header {
  width: min(52rem, 100%);
}

.article-hero-image {
  width: min(58rem, 100%);
  aspect-ratio: 16 / 9;
  margin: 2rem 0 0;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-content {
  width: min(47rem, 100%);
  display: grid;
  gap: 2.3rem;
  margin-top: 3rem;
}

.related-articles {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related-articles h2 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.2;
}

.article-content h2,
.legal-content h2 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.25;
}

.article-content p,
.legal-content p {
  margin-top: 0.75rem;
  font-size: 1.06rem;
}

.legal-content {
  width: min(52rem, calc(100% - 2.5rem));
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}

.legal-content a {
  color: var(--violet);
  font-weight: 800;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem max(1.25rem, calc((100vw - var(--max)) / 2)) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr 0.9fr;
  gap: 2rem;
}

.brand-footer span,
.site-footer h2,
.site-footer strong {
  color: var(--white);
}

.footer-brand p,
.footer-list,
.footer-bottom,
.footer-mail {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  margin-top: 1rem;
  width: min(24rem, 100%);
}

.footer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-stats span {
  display: grid;
  gap: 0.15rem;
  min-width: 7.2rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.site-footer h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.footer-list a:hover,
.footer-mail:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 68px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    justify-content: flex-start;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 72vh;
    padding-top: 5rem;
    background-position: 58% center;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-panel {
    width: min(36rem, 100%);
  }

  .hero h1 {
    font-size: 4rem;
  }

  .card-grid,
  .services-grid,
  .article-grid,
  .package-grid,
  .sector-grid,
  .proof-strip,
  .region-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .answer-section,
  .process-list article,
  .two-column,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-row > div:first-child {
    border-top: 0;
    background: rgba(85, 34, 180, 0.06);
  }

  .comparison-row:not(.comparison-head) > div::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.25rem;
    color: var(--violet);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .comparison-head {
    display: none;
  }

  .process-list article {
    gap: 0.6rem;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .article-featured {
    grid-column: span 1;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .brand img {
    width: 3.35rem;
  }

  .hero {
    min-height: 78vh;
    padding: 4.5rem 1.1rem 2.8rem;
    background-position: 68% center;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-panel {
    display: none;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hero-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
  }

  .hero-stats dd {
    text-align: right;
  }

  .stat-strip {
    grid-template-columns: 1fr;
    margin-top: -1rem;
  }

  .stat-strip div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .stat-strip dd {
    margin: 0;
    text-align: right;
  }

  .section,
  .article-page {
    width: min(100% - 2rem, var(--max));
  }

  .section {
    padding: 4rem 0;
  }

  .muted-section {
    padding-inline: 1rem;
  }

  .section-header h2,
  .split-section h2,
  .answer-section h2,
  .page-hero h1,
  .article-page h1 {
    font-size: 2.3rem;
  }

  .page-hero {
    padding: 4.3rem 1rem 3rem;
  }

  .card-grid,
  .services-grid,
  .article-grid,
  .package-grid,
  .sector-grid,
  .proof-strip,
  .region-grid,
  .footer-grid,
  .team-card {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
  }

  .team-initials {
    width: 4rem;
    height: 4rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .article-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .cta-band {
    width: min(100% - 2rem, var(--max));
    padding: 1.4rem;
    margin-bottom: 4rem;
  }

  .cta-band h2 {
    font-size: 1.8rem;
  }

  .footer-bottom nav {
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
