@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/CormorantGaramond-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/CormorantGaramond-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #100e0d;
  --bg-soft: #151210;
  --panel: #1c1815;
  --panel-2: #211c18;
  --text: #f2ede5;
  --muted: #bdb3a7;
  --brand-color: #d0b577;
  --gold-dark: #b5965e;
  --line: rgba(208, 181, 119, .2);
  --line-strong: rgba(208, 181, 119, .46);
  --max-width: 1240px;
  --page-gutter: 28px;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, .28);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0, rgba(181, 150, 94, .09), transparent 30%),
    linear-gradient(180deg, #100e0d 0, #0f0d0c 100%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.accessible {
  --bg: #000;
  --bg-soft: #000;
  --panel: #090909;
  --panel-2: #111;
  --text: #fff;
  --muted: #fff;
  --brand-color: #ffdf00;
  --gold-dark: #ffdf00;
  --line: rgba(255, 255, 255, .68);
  --line-strong: #fff;
  font-size: 20px;
}

body.accessible * {
  letter-spacing: .02em;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cormorant", Georgia, serif;
  font-weight: 600;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.brand-name,
.hero-name,
.brand-name-inline {
  color: var(--brand-color);
}

.brand-name-inline {
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: #000;
  background: #fff;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell,
.hero,
.header-inner,
.footer-inner {
  width: min(var(--max-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.section-shell {
  padding-top: 96px;
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.js .lazy-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .lazy-section.is-in-view {
  opacity: 1;
  transform: none;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--brand-color);
  outline: none;
  transform: translateY(-1px);
}

.button-primary {
  color: #18130d;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-color);
}

.button-secondary {
  background: rgba(16, 14, 13, .52);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 14, 13, .96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-picture,
.brand-logo {
  flex: 0 0 auto;
  width: 54px;
  height: 56px;
}

.brand-logo {
  object-fit: contain;
}

.brand-text {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand-text > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand-text strong {
  margin-top: 5px;
  font-family: "Cormorant", Georgia, serif;
  font-size: 23px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.site-nav a,
.accessibility-toggle {
  padding: 10px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  color: #ddd5ca;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.accessibility-toggle:hover,
.accessibility-toggle:focus-visible {
  border-color: var(--line);
  outline: none;
}

.accessibility-toggle {
  color: var(--brand-color);
}

.header-contact {
  display: grid;
  justify-self: end;
  text-align: right;
  line-height: 1.1;
}

.header-contact span {
  color: var(--muted);
  font-size: 11px;
}

.header-contact a {
  margin-top: 5px;
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(34px, 3vw, 44px);
  font-weight: 600;
  line-height: .95;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  grid-template-areas:
    "content panel"
    "notice notice";
  gap: 34px 48px;
  padding: 80px 44px 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px 0 0;
  z-index: -3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(27, 23, 20, .98), rgba(18, 16, 14, .95));
}

.hero-mark {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: -1;
  width: min(36vw, 440px);
  opacity: .045;
  filter: grayscale(1);
}

.hero-content {
  grid-area: content;
  align-self: end;
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 22px;
  line-height: .9;
  letter-spacing: -.025em;
}

.hero-kicker {
  display: block;
  margin-bottom: 12px;
  color: #d8d0c4;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 500;
  letter-spacing: .19em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-name {
  display: block;
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: .9;
  white-space: nowrap;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}

.messenger-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold-dark);
  color: #ddd6cc;
  font-size: 15px;
}

.hero-panel {
  grid-area: panel;
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-top-color: var(--gold-dark);
  background: rgba(18, 16, 14, .8);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.hero-panel li:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-panel li:last-child {
  padding-bottom: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 18px;
}

.hero-panel span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.notice {
  grid-area: notice;
  display: grid;
  grid-template-columns: 52px max-content minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 12px;
  align-items: start;
  padding: 26px 28px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(181, 150, 94, .1), rgba(30, 26, 23, .72));
}

.notice-icon {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: 34px;
  line-height: 1;
  box-sizing: border-box;
}

.notice .eyebrow {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  margin: 0;
  line-height: 52px;
  white-space: nowrap;
}

.notice h2 {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  margin: 0;
  padding-top: 3px;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.08;
}

.notice-description {
  grid-column: 2 / -1;
  grid-row: 2;
  max-width: 930px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Shared headings */
.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.pricing h2,
.about h2,
.contacts h2,
.route-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: .98;
}

.section-heading p:last-child,
.pricing-copy p:last-child,
.about-card > p,
.contacts-main > p,
.route-copy > p {
  color: var(--muted);
  font-size: 19px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.steps-grid article,
.service-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel), var(--bg-soft));
  transition: border-color .2s ease, transform .2s ease;
}

.steps-grid article:hover,
.service-grid article:hover,
.category-grid article:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.steps-grid h3,
.service-grid h3,
.category-grid h3 {
  margin: 16px 0 8px;
  font-size: 27px;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.steps-grid p,
.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.download-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.download-card:hover,
.download-card:focus-visible {
  border-color: var(--brand-color);
  outline: none;
}

.download-card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-dark);
  color: var(--brand-color);
  font-size: 21px;
}

.download-card strong,
.download-card small {
  display: block;
}

.download-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-note {
  max-width: 840px;
  margin: 22px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--gold-dark);
  color: var(--muted);
  font-size: 17px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  gap: 54px;
  align-items: start;
  padding: 42px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(30, 26, 23, .84), rgba(18, 16, 14, .76));
}

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

.pricing-points div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-points strong,
.pricing-points span {
  display: block;
}

.pricing-points strong {
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: 26px;
  line-height: 1.05;
}

.pricing-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

/* Catalog */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}

.category-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 35%, rgba(181, 150, 94, .11), transparent 36%),
    linear-gradient(135deg, #241f1b, #171411);
  color: #8c8177;
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.category-grid h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 26px;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 16px;
}

.about-card {
  padding: 40px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel), var(--bg-soft));
}

.director {
  margin-top: 27px !important;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.about-photo-placeholder {
  display: grid;
  place-items: end;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 35%, rgba(181, 150, 94, .12), transparent 31%),
    linear-gradient(145deg, #241f1b, #141210);
  color: #8b8076;
  font-size: 12px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

/* Contacts */
.contacts {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 16px;
}

.contacts-main,
.contact-details {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.phone-large {
  display: block;
  margin-top: 25px;
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(50px, 5.3vw, 68px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.contact-details dl {
  margin: 0;
}

.contact-details dl > div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dl > div:first-child {
  padding-top: 0;
}

.contact-details dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-details dt {
  color: var(--brand-color);
  font-size: 17px;
  font-weight: 600;
}

.contact-details dd {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* Route */
.route-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 96px;
}

.route-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.route-warning {
  margin: 19px 0 !important;
  padding-left: 14px;
  border-left: 2px solid var(--gold-dark);
  font-size: 14px !important;
}

.route-map-card {
  display: block;
  width: 100%;
  padding: 13px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.route-map-card:hover,
.route-map-card:focus-visible {
  border-color: var(--brand-color);
  outline: none;
  transform: translateY(-2px);
}

.route-map-card picture,
.route-map-card img {
  width: 100%;
}

.route-map-card img {
  border-radius: 4px;
}

.route-map-card span {
  display: block;
  margin-top: 10px;
  color: var(--brand-color);
  font-size: 13px;
  text-align: center;
}

/* Footer and top button */
.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0a09;
}

.footer-inner {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.footer-legal {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 180;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(16, 14, 13, .96);
  color: var(--brand-color);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
  font-size: 15px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--brand-color);
  outline: none;
}

body.accessible .back-to-top {
  background: #000;
  border-color: #fff;
}

/* Map dialog */
.map-modal {
  width: min(1320px, calc(100% - 24px));
  max-height: 94vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
}

.map-modal::backdrop {
  background: rgba(0, 0, 0, .86);
}

.map-modal-box {
  display: flex;
  flex-direction: column;
  max-height: 94vh;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
}

.map-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.map-modal-head .eyebrow {
  margin-bottom: 5px;
}

.map-modal-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.map-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.map-toolbar {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.map-toolbar button {
  min-width: 48px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
}

.map-viewport {
  flex: 1;
  overflow: auto;
  padding: 16px;
  background: #211e1b;
}

.map-viewport picture,
.map-viewport img {
  width: 100%;
  max-width: none;
}

.map-viewport img {
  margin: auto;
  transform-origin: top left;
  transition: width .15s ease;
}

.map-note {
  margin: 0;
  padding: 9px 22px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* Tablet */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .site-nav a,
  .accessibility-toggle {
    padding-inline: 6px;
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "notice"
      "panel";
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .pricing,
  .about,
  .contacts,
  .route-section {
    grid-template-columns: 1fr;
  }

  .route-copy {
    position: static;
    max-width: 760px;
  }
}

/* Compact header and mobile navigation */
@media (max-width: 920px) {
  :root {
    --header-height: 116px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  .header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 5px 10px;
    min-height: 0;
    padding-top: 7px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: block;
  }

  .header-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 7px 0 9px;
    border-top: 1px solid var(--line);
    text-align: left;
  }

  .header-contact span {
    max-width: 45%;
    font-size: 10px;
    line-height: 1.25;
  }

  .header-contact a {
    margin-top: 0;
    font-size: 27px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: calc(var(--page-gutter) * -1);
    right: calc(var(--page-gutter) * -1);
    display: none;
    padding: 12px var(--page-gutter) 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #100e0d;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .accessibility-toggle {
    width: 100%;
    padding: 13px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 14px;
  }

  body {
    font-size: 16px;
    line-height: 1.58;
  }

  .section-shell {
    padding-top: 68px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo-picture,
  .brand-logo {
    width: 44px;
    height: 47px;
  }

  .brand-text > span {
    font-size: 8px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .hero {
    display: block;
    padding: 54px 14px 38px;
  }

  .hero::before {
    inset: 12px 0 0;
  }

  .hero-mark {
    top: 7%;
    right: -26%;
    width: 86vw;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-name {
    font-size: clamp(31px, 9.5vw, 44px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

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

  .notice {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: 46px auto auto;
    column-gap: 13px;
    row-gap: 10px;
    margin-top: 26px;
    padding: 20px;
  }

  .notice-icon {
    grid-column: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
    border-width: 1.5px;
  }

  .notice .eyebrow {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    line-height: 46px;
  }

  .notice h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    padding-top: 0;
    font-size: clamp(29px, 8.5vw, 40px);
    line-height: 1.02;
  }

  .notice-description {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
    font-size: 17px;
  }

  .hero-panel {
    margin-top: 20px;
    padding: 21px;
  }

  .hero-panel strong {
    font-size: 17px;
  }

  .hero-panel span {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .pricing h2,
  .about h2,
  .contacts h2,
  .route-copy h2 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .section-heading p:last-child,
  .pricing-copy p:last-child,
  .about-card > p,
  .contacts-main > p,
  .route-copy > p,
  .contact-details dd,
  .steps-grid p,
  .service-grid p,
  .pricing-points span,
  .service-note {
    font-size: 17px;
  }

  .steps-grid,
  .service-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid article,
  .service-grid article {
    min-height: auto;
    padding: 18px;
  }

  .download-card {
    width: 100%;
  }

  .pricing {
    gap: 28px;
    padding: 25px;
  }

  .about-card,
  .contacts-main,
  .contact-details {
    padding: 25px;
  }

  .about h2 .brand-name-inline {
    display: block;
    margin-top: 5px;
    font-size: .84em;
    white-space: normal;
  }

  .about-photo-placeholder {
    min-height: 280px;
  }

  .phone-large {
    font-size: clamp(37px, 11vw, 48px);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-details dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .route-section {
    padding-bottom: 68px;
  }

  .footer-inner {
    padding: 24px 0;
  }

  .footer-legal {
    font-size: 15px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    min-width: 48px;
    padding: 0 13px;
  }

  .back-to-top span:last-child {
    display: none;
  }

  .map-modal-head {
    padding: 14px;
  }

  .map-modal-head h2 {
    font-size: 25px;
  }

  .map-viewport {
    padding: 7px;
  }
}

@media (max-width: 390px) {
  .header-contact span {
    max-width: 38%;
    font-size: 9px;
  }

  .header-contact a {
    font-size: 22px;
  }

  .brand-text strong {
    font-size: 17px;
  }

  .hero-name {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }

  .js .lazy-section {
    opacity: 1;
    transform: none;
  }
}

/* Compact numbered cards */
.card-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.steps-grid article > .card-title-row > span,
.service-grid article > .card-title-row > span {
  flex: 0 0 auto;
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.steps-grid .card-title-row h3,
.service-grid .card-title-row h3 {
  min-width: 0;
  margin: 0;
}

.steps-grid article {
  min-height: 132px;
  padding: 17px 18px;
}

.service-grid article {
  min-height: 142px;
  padding: 17px 18px;
}

.steps-grid article > p,
.service-grid article > p {
  margin-top: 10px;
}

.services {
  padding-bottom: 1px;
}

.service-note {
  margin-bottom: 34px;
}

@media (max-width: 760px) {
  .steps-grid article,
  .service-grid article {
    min-height: 0;
    padding: 15px 16px;
  }

  .card-title-row {
    gap: 10px;
  }

  .steps-grid article > p,
  .service-grid article > p {
    margin-top: 7px;
  }

  .service-note {
    margin-bottom: 26px;
  }
}

/* Clickable catalog category */
.category-grid > a {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}

.category-grid > a:hover,
.category-grid > a:focus-visible {
  border-color: var(--brand-color);
  outline: none;
  transform: translateY(-2px);
}

.category-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.category-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(11, 9, 8, .78));
  pointer-events: none;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.category-card:hover .category-card-media img,
.category-card:focus-visible .category-card-media img {
  transform: scale(1.025);
}

.category-card-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2px 16px;
  padding: 15px 20px 19px;
}

.category-card-caption > span:first-child {
  grid-column: 1 / -1;
  color: var(--brand-color);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.category-card-caption h3 {
  padding: 0;
}

.category-card-caption > span:last-child {
  color: var(--brand-color);
  font-size: 25px;
  line-height: 1;
}

/* Exhibition hall photo */
.about-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #171411;
}

.about-photo picture,
.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-photo picture {
  position: absolute;
  inset: 0;
}

.about-photo img {
  object-fit: cover;
  object-position: center;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(10, 8, 7, .9), transparent);
  pointer-events: none;
}

.about-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #f0e8dd;
  font-size: 12px;
  letter-spacing: .11em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .about-photo {
    min-height: 300px;
  }
}

/* Header and floating control refinements — revision 4 */
@media (min-width: 921px) {
  .brand-text strong {
    font-size: 26px;
  }
}

@media (max-width: 760px) {
  .back-to-top {
    right: calc(26px + env(safe-area-inset-right));
  }
}

/* Mobile alignment fixes — revision 5 */
@media (max-width: 760px) {
  .back-to-top {
    right: 12px;
    bottom: 12px;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
    gap: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
  }

  .back-to-top > span:first-child {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
    transform: translateY(-1px);
  }
}


/* Updated first-actions scenarios */
.steps-intro-card {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(33, 28, 24, .98), rgba(20, 17, 15, .98));
}
.steps-intro-card .card-title-row { align-items: center; }
.steps-intro-card .card-title-row > span { color: var(--brand-color); font-family: 'Cormorant', Georgia, serif; font-size: 24px; }
.steps-intro-card h3 { margin: 0; font-size: 30px; line-height: 1; }
.steps-intro-card p { margin: 0 0 0 38px; color: var(--muted); font-size: 17px; }
.scenario-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }
.scenario-card { padding: 22px; border: 1px solid var(--line); background: linear-gradient(145deg, var(--panel), var(--bg-soft)); }
.scenario-label { margin-bottom: 12px; color: var(--brand-color); font-family: 'Cormorant', Georgia, serif; font-size: 29px; font-weight: 600; line-height: 1.05; }
.scenario-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.58; }
.scenario-card a { color: var(--brand-color); text-decoration: underline; text-underline-offset: 3px; }
.steps-followup { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 820px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .steps-followup { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .steps-intro-card, .scenario-card { padding: 16px; }
  .steps-intro-card p { margin-left: 0; }
  .scenario-label { font-size: 26px; }
  .scenario-card p { font-size: 15px; }
}


/* Revision 8: branching first actions, unified pricing and catalog links */
.hero-lead > span { display: block; }
.steps-heading { max-width: 900px; }
.path-choice {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.path-choice::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 1px;
  height: 24px;
  background: var(--gold-dark);
}
.path-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(34, 29, 25, .98), rgba(18, 16, 14, .98));
}
.path-card-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.path-number {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-dark);
  color: var(--brand-color);
  font-family: 'Cormorant', Georgia, serif;
  font-size: 22px;
  line-height: 1;
}
.path-kicker { display: block; margin-bottom: 5px; color: var(--brand-color); font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.path-card h3 { margin: 0; font-size: clamp(29px, 3vw, 39px); line-height: 1.02; }
.path-card p, .path-card li { color: var(--muted); font-size: 17px; line-height: 1.58; }
.path-card p { margin: 0; }
.path-card ol { margin: 0; padding-left: 22px; }
.path-card li + li { margin-top: 11px; }
.path-card a { color: var(--brand-color); text-decoration: underline; text-underline-offset: 3px; }
.common-path-label { display: flex; align-items: center; gap: 16px; margin: 24px 0 15px; color: var(--brand-color); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.common-path-label::before, .common-path-label::after { content: ''; height: 1px; background: var(--line-strong); flex: 1 1 auto; }
.pricing-unified { display: block; }
.pricing-unified .pricing-copy { max-width: 1000px; }
.pricing-unified .pricing-copy p:last-child { margin-bottom: 0; line-height: 1.7; }
.about-card > p + p { margin-top: 18px; }
.about-card .about-lead { margin-top: 0; color: #f0e9e0; font-family: 'Cormorant', Georgia, serif; font-size: clamp(31px, 3.2vw, 43px); font-weight: 600; line-height: 1.08; }
.category-card-placeholder-media { display: grid; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(181,150,94,.12), transparent 34%), linear-gradient(135deg, #241f1b, #171411); }
.category-card-placeholder-media > span { padding: 20px; color: #91867b; font-size: 11px; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
@media (max-width: 760px) {
  .path-choice { grid-template-columns: 1fr; }
  .path-choice::after { display: none; }
  .path-card { padding: 18px 16px; }
  .path-card-head { gap: 12px; margin-bottom: 14px; }
  .path-number { flex-basis: 46px; width: 46px; height: 46px; font-size: 19px; }
  .path-card h3 { font-size: 29px; }
  .path-card p, .path-card li { font-size: 16px; }
  .common-path-label { margin-top: 17px; font-size: 9px; }
}

/* Revision 9: interactive first-action path */
.scenario-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scenario-button {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 118px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: linear-gradient(145deg, rgba(34, 29, 25, .98), rgba(18, 16, 14, .98));
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.scenario-button::after {
  content: '→';
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--brand-color);
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
}

.scenario-button:hover,
.scenario-button:focus-visible,
.scenario-button.is-active {
  border-color: var(--brand-color);
  background: linear-gradient(145deg, rgba(47, 39, 31, .98), rgba(22, 18, 15, .98));
  outline: none;
}

.scenario-button:hover,
.scenario-button:focus-visible {
  transform: translateY(-1px);
}

.scenario-button.is-active::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand-color);
}

.scenario-button-kicker {
  max-width: calc(100% - 44px);
  color: var(--brand-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.scenario-button strong {
  max-width: calc(100% - 44px);
  font-family: "Cormorant", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.03;
}

.scenario-placeholder {
  display: none;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 2px solid var(--gold-dark);
  color: var(--muted);
  font-size: 16px;
}

.js .scenario-placeholder {
  display: block;
}

.scenario-result {
  margin-top: 18px;
}

.js .scenario-result {
  display: none;
}

.js .scenario-result.is-visible {
  display: block;
}

.js .scenario-panel {
  display: none;
}

.js .scenario-panel.is-visible {
  display: block;
}

.scenario-panel {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.scenario-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scenario-steps-hospital {
  grid-template-columns: minmax(0, 1fr);
}

.scenario-steps article {
  min-width: 0;
  min-height: 148px;
  padding: 19px 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--panel), var(--bg-soft));
}

.scenario-steps .card-title-row > span {
  flex: 0 0 auto;
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: 23px;
  line-height: 1;
}

.scenario-steps h3 {
  min-width: 0;
  margin: 0;
  font-size: 27px;
  line-height: 1.05;
}

.scenario-steps p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.scenario-steps a {
  color: var(--brand-color);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

@media (max-width: 820px) {
  .scenario-selector,
  .scenario-steps,
  .scenario-common-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .scenario-button {
    min-height: 102px;
    padding: 18px 19px;
  }

  .scenario-button::after {
    right: 17px;
  }

  .scenario-button-kicker,
  .scenario-button strong {
    max-width: calc(100% - 38px);
  }

  .scenario-button strong {
    font-size: 29px;
  }

  .scenario-placeholder {
    font-size: 15px;
  }

  .scenario-steps article {
    min-height: 0;
    padding: 16px;
  }

  .scenario-steps h3 {
    font-size: 25px;
  }

  .scenario-steps p {
    margin-top: 8px;
    font-size: 16px;
  }
}

/* Readable layout for the visually impaired version. */
body.accessible,
body.accessible button,
body.accessible input,
body.accessible select,
body.accessible textarea {
  font-family: Arial, Helvetica, sans-serif !important;
}

body.accessible {
  font-size: 20px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: auto;
}

body.accessible * {
  letter-spacing: normal !important;
}

body.accessible h1,
body.accessible h2,
body.accessible h3,
body.accessible .brand-text strong,
body.accessible .header-contact a,
body.accessible .hero-name,
body.accessible .about-lead,
body.accessible .phone-large,
body.accessible .scenario-button strong,
body.accessible .scenario-steps .card-title-row > span,
body.accessible .steps-grid .card-title-row > span,
body.accessible .service-grid .card-title-row > span,
body.accessible .download-card strong,
body.accessible .pricing-points strong {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
  line-height: 1.22;
}

body.accessible p,
body.accessible li,
body.accessible dd,
body.accessible dt,
body.accessible a,
body.accessible button,
body.accessible select {
  line-height: 1.65;
}

body.accessible .eyebrow,
body.accessible .scenario-button-kicker,
body.accessible .category-card-caption > span:first-child {
  letter-spacing: .04em !important;
}

body.accessible .brand-text strong,
body.accessible .brand-name-inline {
  white-space: normal;
}

body.accessible .button,
body.accessible .site-nav a,
body.accessible .accessibility-toggle {
  min-height: 52px;
  font-size: 18px;
}

body.accessible .section-heading p:last-child,
body.accessible .pricing-copy p:last-child,
body.accessible .about-card > p,
body.accessible .contacts-main > p,
body.accessible .route-copy > p,
body.accessible .scenario-steps p,
body.accessible .steps-grid p,
body.accessible .service-grid p,
body.accessible .service-note {
  font-size: 20px;
}

body.accessible .steps-grid article,
body.accessible .service-grid article,
body.accessible .scenario-steps article {
  min-height: 0;
}

body.accessible .card-title-row {
  align-items: flex-start;
}

body.accessible .category-card-caption {
  align-items: center;
}

@media (min-width: 921px) {
  body.accessible .header-inner {
    grid-template-columns: minmax(280px, auto) minmax(280px, 1fr);
    grid-template-areas:
      "brand contact"
      "nav nav";
    gap: 8px 24px;
    padding-block: 12px;
  }

  body.accessible .brand { grid-area: brand; }
  body.accessible .header-contact { grid-area: contact; }
  body.accessible .site-nav {
    grid-area: nav;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }
}

@media (max-width: 920px) {
  body.accessible {
    font-size: 19px;
  }

  body.accessible .header-contact span {
    max-width: 42%;
    font-size: 13px;
    line-height: 1.35;
  }

  body.accessible .header-contact a {
    font-size: clamp(22px, 6.5vw, 29px);
    line-height: 1.15;
  }

  body.accessible .site-nav a,
  body.accessible .accessibility-toggle {
    font-size: 18px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  body.accessible .section-heading h2,
  body.accessible .pricing h2,
  body.accessible .about h2,
  body.accessible .contacts h2,
  body.accessible .route-copy h2 {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.2;
  }

  body.accessible .hero-name {
    font-size: clamp(29px, 8.5vw, 39px);
  }

  body.accessible .scenario-button strong,
  body.accessible .scenario-steps h3,
  body.accessible .steps-grid h3,
  body.accessible .service-grid h3 {
    font-size: 23px;
    line-height: 1.28;
  }

  body.accessible .about-card,
  body.accessible .contacts-main,
  body.accessible .contact-details,
  body.accessible .pricing {
    padding: 21px;
  }
}


/* Revision 10: scenario flow, exhibition photo and accessible-mode indicator. */
.scenario-placeholder {
  display: block;
  margin: 0 0 14px;
}

.js .scenario-placeholder {
  display: block;
}

.scenario-button {
  gap: 0;
  text-align: center;
}

.scenario-button strong {
  max-width: calc(100% - 44px);
  margin-inline: auto;
}

.about-photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: start;
}

.about-photo picture {
  position: static;
  width: 100%;
  height: auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.about-photo::after {
  display: none;
}

.accessibility-status[hidden] {
  display: none !important;
}

.accessibility-status {
  position: fixed;
  z-index: 220;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(520px, calc(100% - 36px));
  padding: 12px 14px;
  border: 3px solid #fff;
  background: #ffdf00;
  color: #000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .5);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.accessibility-status button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 7px 12px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

body.accessible .accessibility-toggle[aria-pressed="true"] {
  border-color: #fff;
  background: #ffdf00;
  color: #000;
}

body.accessible .hero {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "content"
    "panel"
    "notice";
}

body.accessible .hero-content,
body.accessible .hero-panel {
  max-width: 100%;
}

body.accessible .hero-name {
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .accessibility-status {
    right: 10px;
    bottom: 72px;
    left: 10px;
    max-width: none;
    justify-content: space-between;
    font-size: 16px;
  }

  .accessibility-status button {
    font-size: 15px;
  }
}

/* Revision 11: equal spacing in the action flow and a clear About heading. */
.js .scenario-result.is-visible {
  display: grid;
  gap: 12px;
}

.scenario-panel,
.scenario-common-steps {
  margin: 0;
}

.about-card .about-heading {
  margin: 0 0 24px;
  color: var(--brand-color);
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1;
  letter-spacing: .08em;
}

.about-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.about-card > p + p {
  margin-top: 18px;
}

.about-brand {
  color: #eee4d8;
  font-family: "Cormorant", Georgia, serif;
  font-size: 1.16em;
  font-weight: 600;
  line-height: 1.2;
}

body.accessible .about-card .about-heading,
body.accessible .about-brand {
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 700;
}

body.accessible .about-brand {
  font-size: 1.08em;
}

@media (max-width: 760px) {
  .about-card .about-heading {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .about-card > p {
    font-size: 17px;
  }
}

/* Revision 12: desktop hero cleanup and unified About composition. */
@media (min-width: 1101px) {
  .hero {
    border-bottom: 0;
  }
}

.about {
  grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--panel), var(--bg-soft));
}

.about-card {
  align-self: stretch;
  padding: 40px;
  border: 0;
  background: transparent;
}

.about-card .about-heading {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(42px, 4.7vw, 64px);
  line-height: .98;
  letter-spacing: 0;
}

.about-brand {
  color: var(--brand-color);
  font-family: "Cormorant", Georgia, serif;
  font-size: calc(1em + 2px);
  font-weight: 600;
  line-height: inherit;
}

.about-photo {
  align-self: stretch;
  min-height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-left: 1px solid var(--line);
  background: #171411;
}

.about-photo picture,
.about-photo img {
  width: 100%;
  height: 100%;
}

.about-photo picture {
  position: absolute;
  inset: 0;
}

.about-photo img {
  object-fit: contain;
  object-position: center;
}

.contacts-main > p strong {
  color: var(--text);
  font-weight: 600;
}

body.accessible .about-card .about-heading {
  font-size: clamp(42px, 4.7vw, 64px);
}

body.accessible .about-brand {
  color: #000;
  font-size: calc(1em + 2px);
}

@media (max-width: 1100px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .about-card {
    padding: 25px;
  }

  .about-card .about-heading {
    margin-bottom: 18px;
    font-size: clamp(37px, 11vw, 52px);
  }
}

/* Remove the redundant divider below the title block; the inset frame remains. */
.hero {
  border-bottom: 0;
}


/* Revision 13: About block rhythm and typography. */
.about {
  margin-top: 96px;
}

.about-card .about-heading,
body.accessible .about-card .about-heading {
  margin: 0 0 14px;
  color: var(--brand-color);
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-brand {
  color: #f1ddb0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.14em;
  font-weight: 700;
  line-height: 1;
}

.about-photo {
  border-top: 0;
  border-left: 0;
}

body.accessible .about-brand {
  color: #ffdf00;
  font-size: 1.12em;
  font-weight: 700;
}

@media (max-width: 760px) {
  .about {
    margin-top: 68px;
  }

  .about-card .about-heading,
  body.accessible .about-card .about-heading {
    margin-bottom: 13px;
    font-size: 13px;
  }
}

.about-brand {
  line-height: inherit;
}


/* Revision 14: About spacing, brand colour and one-control accessible mode. */
.about-brand,
body.accessible .about-brand {
  color: var(--brand-color);
  font-size: 1.18em;
  font-weight: 700;
}

.accessibility-status {
  justify-content: center;
  text-align: center;
}

@media (min-width: 1101px) {
  .about-photo {
    margin: 28px 28px 28px 0;
    min-height: 420px;
    overflow: hidden;
    border-radius: calc(var(--radius) - 8px);
  }
}

@media (max-width: 1100px) {
  .about-photo {
    margin: 0 22px 22px;
    overflow: hidden;
    border-radius: calc(var(--radius) - 8px);
  }
}

@media (max-width: 760px) {
  .about-photo {
    margin: 0 16px 16px;
  }
}

/* v20: persistent light theme and fixed theme switcher. */
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f1e8;
  --bg-soft: #fffaf3;
  --panel: #fffdf9;
  --panel-2: #eee4d7;
  --text: #211b17;
  --muted: #665b51;
  --brand-color: #956522;
  --gold-dark: #b38337;
  --line: rgba(116, 78, 30, .18);
  --line-strong: rgba(116, 78, 30, .42);
  --shadow: 0 22px 70px rgba(69, 45, 19, .14);
}

:root[data-theme="light"] body:not(.accessible) {
  background:
    radial-gradient(circle at 12% 0, rgba(179, 131, 55, .12), transparent 31%),
    linear-gradient(180deg, #faf6ef 0, #f3ede4 100%);
  color: var(--text);
}

:root[data-theme="light"] body:not(.accessible) .site-header {
  border-bottom-color: var(--line);
  background: rgba(250, 246, 239, .96);
  box-shadow: 0 8px 24px rgba(75, 49, 20, .06);
}

:root[data-theme="light"] body:not(.accessible) .site-nav a,
:root[data-theme="light"] body:not(.accessible) .accessibility-toggle,
:root[data-theme="light"] body:not(.accessible) .hero-kicker,
:root[data-theme="light"] body:not(.accessible) .messenger-links a {
  color: var(--text);
}

:root[data-theme="light"] body:not(.accessible) .accessibility-toggle,
:root[data-theme="light"] body:not(.accessible) .header-contact a,
:root[data-theme="light"] body:not(.accessible) .brand-name,
:root[data-theme="light"] body:not(.accessible) .brand-name-inline {
  color: var(--brand-color);
}

:root[data-theme="light"] body:not(.accessible) .hero::before {
  background: linear-gradient(120deg, rgba(255, 253, 249, .98), rgba(239, 230, 217, .96));
  box-shadow: var(--shadow);
}

:root[data-theme="light"] body:not(.accessible) .hero-mark {
  opacity: .075;
  filter: sepia(.25) saturate(.7);
}

:root[data-theme="light"] body:not(.accessible) .button-secondary {
  background: rgba(255, 253, 249, .72);
}

:root[data-theme="light"] body:not(.accessible) .hero-panel {
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 18px 48px rgba(75, 49, 20, .1);
}

:root[data-theme="light"] body:not(.accessible) .notice {
  background: linear-gradient(135deg, rgba(179, 131, 55, .13), rgba(255, 253, 249, .82));
}

:root[data-theme="light"] body:not(.accessible) .steps-grid article,
:root[data-theme="light"] body:not(.accessible) .service-grid article,
:root[data-theme="light"] body:not(.accessible) .scenario-steps article,
:root[data-theme="light"] body:not(.accessible) .scenario-button,
:root[data-theme="light"] body:not(.accessible) .path-card,
:root[data-theme="light"] body:not(.accessible) .pricing,
:root[data-theme="light"] body:not(.accessible) .about,
:root[data-theme="light"] body:not(.accessible) .about-card,
:root[data-theme="light"] body:not(.accessible) .contacts-main,
:root[data-theme="light"] body:not(.accessible) .contact-details {
  background: linear-gradient(145deg, var(--panel), var(--bg-soft));
}

:root[data-theme="light"] body:not(.accessible) .scenario-button:hover,
:root[data-theme="light"] body:not(.accessible) .scenario-button:focus-visible,
:root[data-theme="light"] body:not(.accessible) .scenario-button.is-active {
  background: linear-gradient(145deg, #fffdf9, #eee2d2);
}

:root[data-theme="light"] body:not(.accessible) .category-card-placeholder-media,
:root[data-theme="light"] body:not(.accessible) .category-placeholder {
  background: radial-gradient(circle at 50% 35%, rgba(179, 131, 55, .13), transparent 36%), linear-gradient(135deg, #fffdf9, #eadfce);
  color: #75685a;
}

:root[data-theme="light"] body:not(.accessible) .about-photo,
:root[data-theme="light"] body:not(.accessible) .about-photo-placeholder {
  background: #ece3d7;
}

:root[data-theme="light"] body:not(.accessible) .site-footer {
  background: #e9dfd2;
}

:root[data-theme="light"] body:not(.accessible) .back-to-top,
:root[data-theme="light"] body:not(.accessible) .theme-toggle {
  background: rgba(255, 253, 249, .97);
  color: var(--brand-color);
  box-shadow: 0 12px 34px rgba(69, 45, 19, .16);
}

:root[data-theme="light"] body:not(.accessible) .map-modal-box {
  background: var(--bg);
}

:root[data-theme="light"] body:not(.accessible) .map-viewport {
  background: #eee5da;
}

.theme-toggle {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 185;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(16, 14, 13, .96);
  color: var(--brand-color);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .32);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--brand-color);
  outline: none;
  transform: translateY(-1px);
}

.theme-toggle-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 21px;
  line-height: 1;
}

body.accessible .theme-toggle {
  border: 2px solid #fff;
  background: #000;
  color: #ffdf00;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media (max-width: 760px) {
  .theme-toggle {
    left: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 13px;
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .theme-toggle [data-theme-label] {
    max-width: 72px;
    line-height: 1.1;
    text-align: left;
  }
}

/* v21: theme switcher lives inside the mobile menu and the light menu is fully themed. */
@media (max-width: 920px) {
  :root[data-theme="light"] body:not(.accessible) .site-nav {
    border-top-color: var(--line);
    border-bottom-color: var(--line);
    background: #faf6ef;
    box-shadow: 0 20px 50px rgba(69, 45, 19, .16);
  }

  :root[data-theme="light"] body:not(.accessible) .menu-toggle {
    border-color: var(--line-strong);
    background: rgba(255, 253, 249, .72);
  }

  .site-nav .theme-toggle {
    position: static;
    left: auto;
    bottom: auto;
    z-index: auto;
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    padding: 0 14px;
    justify-content: center;
    border-color: var(--line);
    box-shadow: none;
    font-size: 14px;
  }

  :root[data-theme="light"] body:not(.accessible) .site-nav .theme-toggle {
    border-color: var(--line-strong);
    background: #fffdf9;
    color: var(--brand-color);
  }

  body.accessible .site-nav .theme-toggle {
    border: 2px solid #fff;
    background: #000;
    color: #ffdf00;
  }
}

/* v22: keep the mobile back-to-top control comfortably inside the screen edge. */
@media (max-width: 760px) {
  .back-to-top {
    right: calc(22px + env(safe-area-inset-right));
  }
}

/* v23: informational catalogue cards */
.category-card-caption .category-card-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.category-card-caption .category-card-note + span[aria-hidden="true"] {
  grid-column: 2;
  grid-row: 2;
}
body.accessible .category-card-caption .category-card-note {
  color: inherit;
  font-size: 20px;
  line-height: 1.55;
}


/* v24: compact mobile menu. */
@media (max-width: 920px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
  }

  .site-nav {
    left: auto;
    right: 0;
    width: min(310px, calc(100vw - 20px));
    padding: 7px;
    gap: 2px;
    border: 1px solid var(--line-strong);
    background: var(--bg);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .42);
  }

  .site-nav a,
  .site-nav .accessibility-toggle,
  .site-nav .theme-toggle-menu {
    min-height: 42px;
    padding: 9px 11px;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.25;
  }

  .site-nav > :last-child {
    border-bottom: 0;
  }

  :root[data-theme="light"] body:not(.accessible) .site-nav {
    background: #faf6ef;
    color: var(--text);
    box-shadow: 0 18px 46px rgba(69, 45, 19, .18);
  }
}


/* v25: showroom zoom, visible route link, balanced information cards and accessible light mode. */
.about-photo-zoom { position:relative; width:100%; padding:0; cursor:zoom-in; color:inherit; text-align:inherit; }
.about-photo-zoom-hint { position:absolute; right:16px; bottom:16px; display:inline-flex; align-items:center; gap:8px; padding:9px 12px; border:1px solid rgba(255,255,255,.42); border-radius:999px; background:rgba(10,9,8,.78); color:#fff; font-size:13px; font-weight:700; backdrop-filter:blur(8px); }
.about-photo-zoom-hint svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; }
.about-photo-zoom:hover .about-photo-zoom-hint, .about-photo-zoom:focus-visible .about-photo-zoom-hint { background:var(--brand-color); color:#17100a; }
.showroom-modal { width:min(96vw, 1500px); max-height:94vh; padding:0; border:1px solid var(--line); border-radius:16px; background:#151210; color:var(--text); }
.showroom-modal::backdrop { background:rgba(0,0,0,.86); }
.showroom-modal-box { display:grid; max-height:94vh; }
.showroom-modal-head { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:16px 18px; border-bottom:1px solid var(--line); }
.showroom-modal-head h2 { margin:2px 0 0; font-size:clamp(22px,3vw,34px); }
.showroom-modal-head .eyebrow { margin:0; }
.showroom-close { width:46px; height:46px; border:1px solid var(--line); border-radius:50%; background:#211c18; color:#fff; font-size:32px; line-height:1; cursor:pointer; }
.showroom-modal img { display:block; width:100%; height:auto; max-height:calc(94vh - 82px); object-fit:contain; }
.route-link { display:inline-block; text-decoration-thickness:1px; text-underline-offset:4px; }
.route-link-hint { display:inline-flex; margin-top:7px; padding:5px 9px; border:1px solid currentColor; border-radius:999px; color:var(--brand-color); font-size:12px; font-weight:700; text-decoration:none; }
@media (min-width:921px) {
  .category-grid { grid-template-columns:repeat(6,minmax(0,1fr)); }
  .category-grid > .category-card { grid-column:span 2; }
  .category-grid > .category-card-info { grid-column:span 3; }
}

:root[data-theme="light"] body.accessible { background:#fff; color:#000; }
:root[data-theme="light"] body.accessible .site-header,
:root[data-theme="light"] body.accessible .site-nav,
:root[data-theme="light"] body.accessible .hero,
:root[data-theme="light"] body.accessible .hero-content,
:root[data-theme="light"] body.accessible .hero-panel,
:root[data-theme="light"] body.accessible .notice,
:root[data-theme="light"] body.accessible .scenario-button,
:root[data-theme="light"] body.accessible .scenario-steps article,
:root[data-theme="light"] body.accessible .steps-grid article,
:root[data-theme="light"] body.accessible .service-grid article,
:root[data-theme="light"] body.accessible .pricing,
:root[data-theme="light"] body.accessible .category-card,
:root[data-theme="light"] body.accessible .about,
:root[data-theme="light"] body.accessible .about-card,
:root[data-theme="light"] body.accessible .contacts-main,
:root[data-theme="light"] body.accessible .contact-details,
:root[data-theme="light"] body.accessible .route-section,
:root[data-theme="light"] body.accessible .site-footer { background:#fff; color:#000; border-color:#000; }
:root[data-theme="light"] body.accessible p,
:root[data-theme="light"] body.accessible span,
:root[data-theme="light"] body.accessible li,
:root[data-theme="light"] body.accessible dd,
:root[data-theme="light"] body.accessible dt { color:#000; }
:root[data-theme="light"] body.accessible a { color:#003b73; }
:root[data-theme="light"] body.accessible .button,
:root[data-theme="light"] body.accessible button { border-color:#000; }
:root[data-theme="light"] body.accessible .button-primary { background:#000; color:#fff; }
:root[data-theme="light"] body.accessible .button-secondary,
:root[data-theme="light"] body.accessible .theme-toggle { background:#fff; color:#000; }
:root[data-theme="light"] body.accessible .menu-toggle span { background:#000; }
:root[data-theme="light"] body.accessible .site-nav a,
:root[data-theme="light"] body.accessible .accessibility-toggle,
:root[data-theme="light"] body.accessible .theme-toggle-menu { background:#fff; color:#000; border-color:#000; }
:root[data-theme="light"] body.accessible .accessibility-toggle[aria-pressed="true"] { background:#000; color:#fff; }
:root[data-theme="light"] body.accessible .about-photo-zoom-hint { background:#fff; color:#000; border-color:#000; }

/* Compact full-width mobile navigation sheet. */
@media (max-width:920px) {
  .site-nav { left:0; right:0; width:100%; max-width:none; padding:12px; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; border-radius:0 0 14px 14px; }
  .site-nav.is-open { display:grid; }
  .site-nav a { min-height:44px; display:flex; align-items:center; justify-content:center; text-align:center; padding:8px 10px; }
  .site-nav .accessibility-toggle { grid-column:1 / -1; width:100%; min-height:54px; padding:10px 12px; font-size:clamp(15px,4.2vw,20px); line-height:1.15; text-align:center; }
  .site-nav .theme-toggle-menu { grid-column:1 / -1; justify-self:start; width:auto; max-width:100%; margin:2px 0 0 4px; }
  .about-photo-zoom-hint { right:10px; bottom:10px; }
}


/* v26: cleaner image viewers, centered mobile menu and accessible light contrast. */
.about-photo-zoom-hint {
  top: 14px;
  right: auto;
  bottom: auto;
  left: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
  filter: drop-shadow(0 1px 2px #000) drop-shadow(0 0 5px rgba(0,0,0,.9));
  transition: transform .18s ease, color .18s ease;
}
.about-photo-zoom-hint svg { width: 32px; height: 32px; stroke-width: 2; }
.about-photo-zoom:hover .about-photo-zoom-hint,
.about-photo-zoom:focus-visible .about-photo-zoom-hint {
  background: transparent;
  color: #fff;
  transform: scale(1.08);
}

.map-modal-clean {
  width: min(96vw, 1600px);
  max-width: none;
  max-height: 96dvh;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}
.map-modal-clean::backdrop { background: rgba(0,0,0,.92); }
.map-modal-clean .map-modal-box {
  position: relative;
  display: grid;
  place-items: center;
  max-height: 96dvh;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.map-modal-clean picture { display: block; max-width: 100%; max-height: 96dvh; }
.map-modal-clean img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 96dvh;
  margin: auto;
  object-fit: contain;
}
.map-modal-clean .map-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 0 3px;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: rgba(0,0,0,.72);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.45);
  font-size: 31px;
  line-height: 1;
}
.map-modal-clean .map-close:hover,
.map-modal-clean .map-close:focus-visible { background: #000; outline: 3px solid #fff; outline-offset: 2px; }

@media (max-width: 920px) {
  .site-nav {
    display: none;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a {
    flex: 0 1 calc(50% - 4px);
    width: auto;
    min-width: 0;
    white-space: normal;
  }
  .site-nav .accessibility-toggle {
    flex: 0 0 100%;
    width: 100%;
  }
  .site-nav .theme-toggle-menu {
    flex: 0 0 auto;
    width: auto;
    margin: 2px auto 0 4px;
  }
  .about-photo-zoom-hint { top: 10px; left: 10px; right: auto; bottom: auto; }
  .map-modal-clean { width: 100vw; max-height: 100dvh; }
  .map-modal-clean .map-modal-box,
  .map-modal-clean picture,
  .map-modal-clean img { max-height: 100dvh; }
  .map-modal-clean .map-close {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
  }
}

:root[data-theme="light"] body.accessible {
  --bg: #fff;
  --bg-soft: #fff;
  --panel: #fff;
  --panel-2: #f4f4f4;
  --text: #000;
  --muted: #111;
  --brand-color: #004b87;
  --gold-dark: #004b87;
  --line: #000;
  --line-strong: #000;
  background: #fff;
  color: #000;
}
:root[data-theme="light"] body.accessible .brand-name,
:root[data-theme="light"] body.accessible .brand-name-inline,
:root[data-theme="light"] body.accessible .about-brand,
:root[data-theme="light"] body.accessible .eyebrow,
:root[data-theme="light"] body.accessible .header-contact a,
:root[data-theme="light"] body.accessible .phone-large,
:root[data-theme="light"] body.accessible .route-link-hint,
:root[data-theme="light"] body.accessible .card-title-row > span,
:root[data-theme="light"] body.accessible .scenario-button-kicker,
:root[data-theme="light"] body.accessible .notice-icon {
  color: #004b87 !important;
}
:root[data-theme="light"] body.accessible .notice-icon { border-color: #004b87 !important; }
:root[data-theme="light"] body.accessible a:focus-visible,
:root[data-theme="light"] body.accessible button:focus-visible,
:root[data-theme="light"] body.accessible select:focus-visible {
  outline: 4px solid #004b87 !important;
  outline-offset: 3px;
}
:root[data-theme="light"] body.accessible .scenario-button.is-active,
:root[data-theme="light"] body.accessible .scenario-button:hover,
:root[data-theme="light"] body.accessible .scenario-button:focus-visible {
  background: #004b87 !important;
  color: #fff !important;
  border-color: #004b87 !important;
}
:root[data-theme="light"] body.accessible .scenario-button.is-active *,
:root[data-theme="light"] body.accessible .scenario-button:hover *,
:root[data-theme="light"] body.accessible .scenario-button:focus-visible * { color: #fff !important; }
:root[data-theme="light"] body.accessible .button-primary,
:root[data-theme="light"] body.accessible .accessibility-toggle[aria-pressed="true"] {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}
:root[data-theme="light"] body.accessible .button-secondary,
:root[data-theme="light"] body.accessible .theme-toggle,
:root[data-theme="light"] body.accessible .site-nav a,
:root[data-theme="light"] body.accessible .accessibility-toggle:not([aria-pressed="true"]) {
  background: #fff !important;
  color: #000 !important;
  border-color: #000 !important;
}
:root[data-theme="light"] body.accessible .back-to-top {
  border: 3px solid #000 !important;
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 6px 22px rgba(0,0,0,.22);
}
:root[data-theme="light"] body.accessible .back-to-top > span {
  color: #000 !important;
  font-size: 29px;
  font-weight: 900;
}
:root[data-theme="light"] body.accessible .about-photo-zoom-hint {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
}
:root[data-theme="light"] body.accessible .map-modal-clean .map-close {
  border-color: #fff !important;
  background: #000 !important;
  color: #fff !important;
}

/* v27: exhibition hall photo alignment and zoom icon containment. */
.about-photo.about-photo-zoom {
  display: block;
  width: auto;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  align-self: stretch;
  justify-self: stretch;
  overflow: hidden;
  isolation: isolate;
}

.about-photo.about-photo-zoom picture {
  z-index: 0;
}

.about-photo.about-photo-zoom::after {
  z-index: 1;
}

.about-photo.about-photo-zoom .about-photo-zoom-hint {
  z-index: 2;
  pointer-events: none;
}

/* v29: keep the showroom zoom icon inside the photo, in the upper-right corner. */
.about-photo.about-photo-zoom {
  position: relative;
  overflow: hidden;
}
@media (min-width: 921px) {
  .about-photo.about-photo-zoom .about-photo-zoom-hint {
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 920px) {
  .about-photo.about-photo-zoom .about-photo-zoom-hint {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
  }
}

/* v30: magnifier is painted inside the showroom image, upper-left. */
.about-photo.about-photo-zoom {
  position: relative !important;
  overflow: hidden !important;
  contain: paint;
}
.about-photo.about-photo-zoom > picture {
  position: absolute;
  inset: 0;
}
.about-photo.about-photo-zoom > .about-photo-zoom-hint {
  position: absolute !important;
  z-index: 4 !important;
  top: 16px !important;
  right: auto !important;
  bottom: auto !important;
  left: 16px !important;
  margin: 0 !important;
  transform-origin: center;
  pointer-events: none;
}
@media (max-width: 920px) {
  .about-photo.about-photo-zoom > .about-photo-zoom-hint {
    top: 12px !important;
    left: 12px !important;
  }
}


/* v31: exhibition-hall photo fills its frame; magnifier remains inside the image. */
.about-photo.about-photo-zoom {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.about-photo.about-photo-zoom > picture,
.about-photo.about-photo-zoom > picture > img {
  position: absolute !important;
  inset: 0 !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
.about-photo.about-photo-zoom > picture > img {
  object-fit: cover !important;
  object-position: center !important;
}
.about-photo.about-photo-zoom > .about-photo-zoom-hint {
  top: 18px !important;
  right: auto !important;
  bottom: auto !important;
  left: 18px !important;
}
@media (max-width: 920px) {
  .about-photo.about-photo-zoom > .about-photo-zoom-hint {
    top: 14px !important;
    left: 14px !important;
  }
}

/* v32: stable desktop header and proportionate showroom photo. */
@media (min-width: 921px) and (max-width: 1240px) {
  :root {
    --header-height: 132px;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 8px 22px !important;
    min-height: var(--header-height);
    padding-block: 10px 8px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 1;
  }

  .header-contact a {
    font-size: clamp(29px, 3.25vw, 38px);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
  }

  body:not(.accessible) .site-nav {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1101px) {
  .about-photo.about-photo-zoom {
    align-self: center !important;
    justify-self: stretch !important;
    width: calc(100% - 28px) !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 28px 0 0 !important;
  }

  .about-photo.about-photo-zoom > picture,
  .about-photo.about-photo-zoom > picture > img {
    width: 100% !important;
    height: 100% !important;
  }
}

/* v35: compact mobile showroom viewer header. */
@media (max-width: 920px) {
  .showroom-modal {
    width: min(calc(100vw - 16px), 760px);
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }

  .showroom-modal-box {
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100dvh - 16px);
  }

  .showroom-modal-head {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 6px 60px 6px 12px;
    gap: 0;
  }

  .showroom-modal-head > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .showroom-modal-head .eyebrow {
    display: none;
  }

  .showroom-modal-head h2 {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    font-size: clamp(13px, 3.7vw, 17px);
    line-height: 1.15;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .showroom-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .showroom-modal img {
    max-height: calc(100dvh - 74px);
  }
}
