:root {
  --graphite: #171819;
  --graphite-2: #242628;
  --ink: #2f3133;
  --steel: #6f7478;
  --line: #cfd2ce;
  --line-dark: rgba(23, 24, 25, .2);
  --paper: #efede7;
  --paper-2: #e4e1d8;
  --white: #fffdfa;
  --brand-red: #d71016;
  --brand-red-dark: #971116;
  --max: 1200px;
  --pad: clamp(18px, 4vw, 64px);
  --section-y: clamp(58px, 7vw, 108px);
  --header-h: 76px;
  --h1: clamp(32px, 4.5vw, 64px);
  --h2: clamp(26px, 3.45vw, 46px);
  --h3: clamp(18px, 1.55vw, 22px);
  --body: clamp(16px, 1.06vw, 18px);
  --small: clamp(13px, .9vw, 15px);
  --font: "Bahnschrift", "DIN Alternate", "Segoe UI", Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 24, 25, .045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(23, 24, 25, .032) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--paper);
  color: var(--graphite);
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--graphite);
  border: 2px solid var(--brand-red);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(270px, auto) 1fr auto;
  align-items: stretch;
  background: rgba(23, 24, 25, .96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 18px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.brand-box {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 78px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: var(--white);
  overflow: hidden;
}

[data-logo] img {
  opacity: 0;
}

[data-logo].has-logo img {
  opacity: 1;
}

[data-logo].has-logo b,
[data-logo].has-logo span {
  display: none;
}

.brand-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand-box b {
  padding: 0 6px;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.brand-text small {
  max-width: 300px;
  color: rgba(255, 253, 250, .66);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
}

.nav-link,
.nav-arrow {
  display: inline-flex;
  align-items: center;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 253, 250, .78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-link {
  padding: 0 clamp(8px, .85vw, 13px);
}

.nav-link:hover,
.nav-link.is-active,
.nav-group.is-active > .nav-link {
  background: rgba(255, 255, 255, .075);
  color: var(--white);
}

.nav-link.is-active,
.nav-group.is-active > .nav-link {
  box-shadow: inset 0 -3px 0 var(--brand-red);
}

.nav-group {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-arrow {
  width: 20px;
  padding: 0;
}

.nav-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  margin: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(370px, calc(100vw - 24px));
  min-width: 270px;
  padding: 8px;
  background: var(--graphite);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: 0 22px 34px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-group:nth-last-child(-n + 2) .dropdown {
  right: 0;
  left: auto;
}

.desktop-nav .nav-group:nth-last-of-type(-n + 2) .dropdown {
  right: 0;
  left: auto;
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  color: rgba(255, 253, 250, .76);
  border-left: 3px solid transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.dropdown a:hover {
  color: var(--white);
  border-left-color: var(--brand-red);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 78px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  position: absolute;
  left: 26px;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

.menu-toggle b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.home-hero {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-h)));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  padding: clamp(78px, 10vw, 132px) var(--pad) clamp(60px, 8vw, 98px);
  background: var(--graphite);
  color: var(--white);
  isolation: isolate;
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(23, 24, 25, .98) 0 40%, rgba(23, 24, 25, .74) 40.2% 71%, rgba(215, 16, 22, .65) 71.2% 72.2%, rgba(23, 24, 25, .88) 72.4%),
    linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px) 0 0 / 58px 58px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
}

.hero-bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.home-copy {
  max-width: 850px;
  min-width: 0;
}

.hero-logo {
  width: min(360px, 80vw);
  margin-bottom: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .96);
  padding: 12px 16px;
}

.hero-logo img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.hero-logo span {
  display: block;
  color: var(--white);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3,
.headline-line,
.link-tile strong,
.external-link {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  letter-spacing: .01em;
}

h1 {
  margin-bottom: 0;
  max-width: 900px;
  font-size: var(--h1);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: var(--h2);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

h3 {
  font-size: var(--h3);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

main p,
main li {
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(24px, 4vw, 40px);
}

.button-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--graphite);
  background: var(--graphite);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
  transform: translateY(-1px);
}

.button-link-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--graphite);
}

.text-link {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
}

.text-link:hover {
  border-color: var(--brand-red);
  color: var(--white);
}

.hero-facts {
  align-self: end;
  border-left: 4px solid var(--brand-red);
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 20px 0 0 22px;
}

.hero-facts span,
.hero-facts strong {
  display: block;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-facts span {
  color: rgba(255, 253, 250, .7);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts strong {
  margin: 8px 0;
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
  isolation: isolate;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  min-height: clamp(280px, 32vw, 380px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0;
  display: grid;
  align-content: end;
}

.hero-body {
  max-width: 880px;
  margin-top: 24px;
  color: rgba(255, 253, 250, .78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.7;
}

.content-section {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.content-section + .content-section {
  padding-top: 0;
}

.intro-grid,
.text-image-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.copy-block {
  min-width: 0;
}

.lead {
  color: var(--brand-red-dark);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.headline-line {
  color: var(--graphite);
  font-size: clamp(25px, 3.15vw, 42px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.text-band,
.contact-block,
.mission-text,
.legal-text,
.single-note,
.unavailable,
.contact-details,
.contact-form {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 12px 12px 0 rgba(23, 24, 25, .05);
}

.text-band::before,
.contact-block::before,
.mission-text::before,
.legal-text::before,
.single-note::before,
.unavailable::before,
.contact-details::before,
.contact-form::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 94px;
  height: 5px;
  background: var(--brand-red);
}

.text-band p,
.mission-text p,
.legal-text p {
  max-width: 920px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.74;
}

.area-showcase {
  display: grid;
  grid-template-columns: minmax(240px, .58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: stretch;
}

.area-heading {
  display: grid;
  align-content: start;
  min-width: 0;
  padding-top: 8px;
}

.area-heading h2 {
  max-width: 520px;
}

.area-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--graphite);
  background: var(--graphite);
}

.area-panel article,
.area-note {
  min-width: 0;
  background: var(--white);
  padding: clamp(24px, 3.5vw, 40px);
}

.area-panel article {
  border-bottom: 1px solid var(--graphite);
}

.area-panel article + article {
  border-left: 1px solid var(--graphite);
}

.area-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-red-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.area-panel strong {
  display: block;
  color: var(--graphite);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.area-panel p {
  margin: 12px 0 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.area-note {
  grid-column: 1 / -1;
  border-left: 8px solid var(--brand-red);
}

.area-note p {
  max-width: 800px;
  margin: 0;
  font-size: clamp(17px, 1.45vw, 20px);
}

.exact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.exact-card {
  min-width: 0;
  min-height: 240px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  transition: background .18s ease, color .18s ease;
}

.exact-card h3 {
  color: var(--brand-red-dark);
}

.exact-card p {
  margin-bottom: 0;
}

.exact-card:hover {
  background: #f7f5ef;
}

.image-panel {
  position: relative;
  min-width: 0;
  min-height: 280px;
  display: grid;
  align-content: end;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px) 0 0 / 24px 24px,
    #27292b;
  border: 1px solid rgba(23, 24, 25, .25);
  color: var(--white);
  isolation: isolate;
  box-shadow: 10px 10px 0 rgba(23, 24, 25, .055);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 24, 25, .84));
  pointer-events: none;
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f7f2;
  transition: transform .26s ease, filter .26s ease;
}

.image-panel.tall,
.image-panel.wide {
  min-height: 440px;
}

.image-panel:hover img {
  transform: scale(1.018);
  filter: contrast(1.03);
}

.image-panel span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 14px;
  padding: 10px 13px;
  background: var(--graphite);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.image-placeholder {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.image-placeholder p {
  color: rgba(255, 255, 255, .72);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.link-tile {
  min-height: 205px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 0;
  transition: background .18s ease, color .18s ease;
}

.link-tile span {
  color: var(--brand-red-dark);
  font-weight: 800;
}

.link-tile strong {
  font-size: clamp(20px, 2.15vw, 28px);
  line-height: 1.14;
  text-transform: uppercase;
}

.link-tile:hover {
  background: var(--graphite);
  color: var(--white);
}

.plan-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

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

.plan-gallery .image-panel.wide {
  min-height: 0;
  aspect-ratio: 16 / 8;
}

.portrait-gallery .image-panel {
  min-height: clamp(440px, 50vw, 580px);
}

.plan-feature .image-panel {
  min-height: clamp(500px, 62vw, 720px);
}

.contact-block h2 {
  font-size: clamp(24px, 2.55vw, 34px);
}

.contact-block p,
.single-note,
.unavailable p {
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 800;
  line-height: 1.5;
}

.contact-block a:not(.button-link),
.legal-text a,
.contact-details a {
  color: var(--brand-red-dark);
  border-bottom: 1px solid rgba(151, 17, 22, .3);
}

.contact-block .button-link {
  margin-top: 12px;
}

.external-link {
  display: inline-flex;
  border-bottom: 3px solid var(--brand-red);
  font-size: clamp(30px, 3.7vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.contact-details h2 {
  margin-bottom: 24px;
}

.contact-details p {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 750;
}

.contact-persons {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.contact-persons article {
  min-width: 0;
  background: var(--paper);
  padding: 22px;
}

.contact-persons h3 {
  margin-bottom: 8px;
  color: var(--brand-red-dark);
}

.contact-persons p {
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.delivery-map-section {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 4.5vw, 58px);
  align-items: start;
}

.delivery-map-copy,
.delivery-map-stage {
  min-width: 0;
}

.delivery-map-copy {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 12px 12px 0 rgba(23, 24, 25, .05);
  padding: clamp(26px, 4vw, 42px);
}

.delivery-map-copy::before,
.delivery-map-stage::before {
  content: "";
  display: block;
  width: 96px;
  height: 5px;
  margin: -1px 0 clamp(22px, 3vw, 30px) -1px;
  background: #4d6f61;
}

.delivery-map-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.delivery-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.delivery-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(104px, .75fr);
  border: 1px solid var(--graphite);
  border-bottom: 0;
  background: var(--graphite);
  color: var(--white);
}

.delivery-table-head span {
  min-width: 0;
  padding: 14px 16px;
  color: rgba(255, 253, 250, .74);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.delivery-table-head span + span {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.delivery-list-table {
  border-top: 0;
}

.delivery-list-item {
  min-width: 0;
}

.delivery-list-item button {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  border: 0;
  background: var(--white);
  color: var(--graphite);
  padding: 18px 18px 17px;
  text-align: left;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.delivery-list-table .delivery-list-item button {
  grid-template-columns: minmax(0, 1.25fr) minmax(104px, .75fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.delivery-list-table .delivery-list-item strong,
.delivery-list-table .delivery-list-item em {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
}

.delivery-list-table .delivery-list-item em {
  border-left: 1px solid rgba(23, 24, 25, .12);
  text-transform: none;
  overflow-wrap: anywhere;
}

.delivery-list-table .delivery-list-item button:hover em,
.delivery-list-table .delivery-list-item button:focus-visible em,
.delivery-list-table .delivery-list-item.is-active em {
  border-left-color: rgba(255, 255, 255, .14);
}

.delivery-list-item span {
  grid-row: span 2;
  color: #4d6f61;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.delivery-list-item strong,
.delivery-list-item em {
  min-width: 0;
  overflow-wrap: break-word;
}

.delivery-list-item strong {
  font-size: clamp(16px, 1.18vw, 18px);
  font-weight: 800;
  line-height: 1.25;
}

.delivery-list-item em {
  color: var(--steel);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.delivery-list-item button:hover,
.delivery-list-item button:focus-visible,
.delivery-list-item.is-active button {
  background: var(--graphite);
  color: var(--white);
  box-shadow: inset 5px 0 0 #4d6f61;
}

.delivery-list-item button:hover em,
.delivery-list-item button:focus-visible em,
.delivery-list-item.is-active em {
  color: rgba(255, 253, 250, .72);
}

.delivery-map-stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 12px 12px 0 rgba(23, 24, 25, .05);
  padding: clamp(18px, 2.4vw, 28px);
}

.delivery-map-frame {
  position: relative;
  min-height: clamp(520px, 48vw, 760px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 24, 25, .05) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(23, 24, 25, .04) 1px, transparent 1px) 0 0 / 36px 36px,
    #f7f7f2;
  border: 1px solid rgba(23, 24, 25, .22);
}

.delivery-map-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.delivery-overlay {
  position: absolute;
  pointer-events: none;
}

.delivery-hotspot {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(77, 111, 97, .78);
  background: rgba(23, 24, 25, .78);
  color: var(--white);
  opacity: 1;
  visibility: hidden;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform .16s ease, border-color .16s ease;
}

.delivery-hotspot::before,
.delivery-hotspot::after,
.delivery-hotspot span::before,
.delivery-hotspot span::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-color: #91aa9e;
  border-style: solid;
}

.delivery-hotspot::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.delivery-hotspot::after {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.delivery-hotspot span::before {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.delivery-hotspot span::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.delivery-hotspot.is-active,
.delivery-overlay [data-point-hotspot].is-active,
.delivery-hotspot:focus-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.delivery-tooltip {
  position: absolute;
  z-index: 4;
  width: min(270px, calc(100% - 24px));
  border-left: 4px solid #91aa9e;
  background: rgba(23, 24, 25, .94);
  color: var(--white);
  padding: 14px 15px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
  pointer-events: none;
}

.delivery-tooltip strong,
.delivery-tooltip span {
  display: block;
}

.delivery-tooltip strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.delivery-tooltip span {
  margin-top: 4px;
  color: rgba(255, 253, 250, .72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}


.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field label,
.privacy-check {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: #fbfaf6;
  color: var(--graphite);
  padding: 13px 14px;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-red);
  background: var(--white);
  box-shadow: inset 4px 0 0 var(--brand-red);
}

.field-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  text-transform: none;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--brand-red);
}

.form-status {
  border-left: 5px solid currentColor;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.success {
  background: #edf3ec;
  color: #2b5c39;
}

.form-status.error {
  background: #f8ecec;
  color: #9a1218;
}

.php-runtime-notice {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 220;
  width: min(520px, calc(100vw - 28px));
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  background: var(--graphite);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 6px solid var(--brand-red);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.php-runtime-notice strong,
.php-runtime-notice span {
  display: block;
}

.php-runtime-notice strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.php-runtime-notice span {
  color: rgba(255, 253, 250, .78);
  font-size: 14px;
  line-height: 1.48;
}

.php-runtime-notice button {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, .22);
  background: transparent;
  color: var(--white);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.tenant-bridge {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 58px 58px,
    var(--graphite);
}

.tenant-bridge-panel {
  width: min(720px, 100%);
  position: relative;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 14px 14px 0 rgba(215, 16, 22, .26);
}

.tenant-bridge-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 110px;
  height: 6px;
  background: var(--brand-red);
}

.tenant-bridge-panel h1 {
  margin-bottom: 18px;
}

.tenant-bridge-panel p:not(.kicker) {
  color: var(--ink);
  font-weight: 700;
}

.tenant-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--brand-red);
}

.tenant-toolbar,
.tenant-filter,
.tenant-home-teaser,
.tenant-form-layout,
.tenant-profile-layout,
.tenant-admin-header,
.tenant-admin-grid {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.tenant-toolbar,
.tenant-home-teaser,
.tenant-admin-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.tenant-toolbar h2,
.tenant-home-teaser h2,
.tenant-form-aside h2,
.tenant-admin-header h1 {
  margin-bottom: 0;
}

.tenant-filter {
  grid-template-columns: minmax(220px, 1.3fr) minmax(160px, .7fr) minmax(220px, 1fr) auto;
  align-items: end;
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--graphite);
  box-shadow: 10px 10px 0 rgba(23, 24, 25, .05);
}

.tenant-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vw, 54px);
  background: var(--graphite);
  border: 1px solid var(--graphite);
}

.tenant-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
}

.tenant-card-logo,
.tenant-profile-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f6ef;
  border: 1px solid var(--line-dark);
  color: var(--graphite);
  font-weight: 900;
  line-height: 1;
}

.tenant-card-logo {
  width: 92px;
  height: 92px;
  font-size: 28px;
}

.tenant-card-logo img,
.tenant-profile-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.tenant-card-meta,
.tenant-profile-badges,
.tenant-status-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tenant-card-meta span,
.tenant-card-meta b,
.tenant-profile-badges span,
.tenant-status-pill {
  border: 1px solid var(--line-dark);
  background: #f7f5ef;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.tenant-card-meta span {
  color: var(--brand-red-dark);
}

.tenant-card h3 {
  margin: 16px 0 10px;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.16;
}

.tenant-card p {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.tenant-card-link {
  width: fit-content;
}

.tenant-empty,
.tenant-verification-result,
.tenant-form-aside,
.tenant-profile-main,
.tenant-contact-box,
.tenant-admin-side,
.tenant-admin-content,
.tenant-admin-view,
.tenant-admin-edit {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-dark);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 10px 10px 0 rgba(23, 24, 25, .05);
}

.tenant-empty::before,
.tenant-verification-result::before,
.tenant-form-aside::before,
.tenant-profile-main::before,
.tenant-contact-box::before,
.tenant-admin-side::before,
.tenant-admin-content::before,
.tenant-admin-view::before,
.tenant-admin-edit::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 90px;
  height: 5px;
  background: var(--brand-red);
}

.tenant-empty {
  margin-top: clamp(30px, 5vw, 54px);
}

.tenant-home-teaser {
  align-items: center;
  background: var(--graphite);
  color: var(--white);
  border-left: 8px solid var(--brand-red);
  padding: clamp(28px, 5vw, 46px);
}

.tenant-home-teaser p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 253, 250, .76);
}

.tenant-form-layout {
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  align-items: start;
}

.tenant-form-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.tenant-form-aside ol {
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--ink);
}

.tenant-form-aside li + li {
  margin-top: 12px;
}

.tenant-entry-form .field label span,
.upload-field small,
.tenant-form-note {
  color: var(--steel);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.upload-field input[type="file"] {
  background: repeating-linear-gradient(135deg, #fbfaf6, #fbfaf6 12px, #f1eee6 12px, #f1eee6 24px);
}

.tenant-privacy {
  margin-top: 8px;
}

.tenant-form-note {
  margin: 0;
}

.tenant-profile-hero {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px) 0 0 / 58px 58px,
    var(--graphite);
  color: var(--white);
}

.tenant-profile-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tenant-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 24, 25, .94), rgba(23, 24, 25, .62) 52%, rgba(23, 24, 25, .34));
}

.tenant-profile-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 94px) 0;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: center;
}

.tenant-profile-logo {
  width: 140px;
  height: 140px;
  background: var(--white);
  color: var(--graphite);
  font-size: 42px;
  box-shadow: 10px 10px 0 rgba(215, 16, 22, .5);
}

.tenant-profile-badges span {
  background: rgba(255, 253, 250, .12);
  border-color: rgba(255, 253, 250, .32);
  color: var(--white);
}

.tenant-profile-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: start;
}

.tenant-profile-lead {
  margin-top: 0;
  color: var(--brand-red-dark);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.28;
}

.tenant-profile-main h2,
.tenant-contact-box h2,
.tenant-admin-content h2 {
  margin-top: 30px;
  font-size: clamp(20px, 1.8vw, 26px);
}

.tenant-rich-text {
  color: var(--ink);
  line-height: 1.75;
}

.tenant-contact-box {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.tenant-contact-box dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.tenant-contact-box div {
  min-width: 0;
}

.tenant-contact-box dt {
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tenant-contact-box dd {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.tenant-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.tenant-socials a,
.tenant-admin-status a,
.tenant-admin-actions a,
.tenant-admin-actions button {
  border: 1px solid var(--line-dark);
  background: #f7f5ef;
  padding: 8px 10px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.tenant-verification-result {
  max-width: 820px;
}

.tenant-admin-page {
  width: min(1440px, calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
}

.tenant-admin-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.tenant-admin-grid {
  grid-template-columns: minmax(230px, 300px) minmax(0, 1fr);
  align-items: start;
  margin-top: 28px;
}

.tenant-admin-side {
  position: sticky;
  top: 24px;
}

.tenant-admin-status {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.tenant-admin-status a.is-active {
  background: var(--graphite);
  color: var(--white);
}

.tenant-admin-note {
  color: var(--ink);
  font-size: 14px;
}

.tenant-admin-content {
  display: grid;
  gap: 18px;
}

.tenant-admin-list {
  display: grid;
  gap: 12px;
}

.tenant-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, auto);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: #fbfaf6;
  border: 1px solid var(--line-dark);
}

.tenant-admin-row h2 {
  margin: 12px 0 6px;
}

.tenant-admin-row p,
.tenant-admin-row small {
  display: block;
  margin: 0;
  color: var(--ink);
}

.tenant-admin-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.tenant-admin-actions form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tenant-admin-actions button {
  cursor: pointer;
}

.tenant-admin-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

.tenant-admin-edit {
  display: grid;
  gap: 18px;
}

.tenant-admin-view h3 {
  margin-top: 24px;
}

.site-footer {
  background: var(--graphite);
  color: rgba(255, 253, 250, .74);
  border-top: 5px solid var(--brand-red);
}

.footer-grid {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px) 0;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.agency {
  margin-top: 18px;
  color: rgba(255, 253, 250, .52);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 24px;
  background: rgba(23, 24, 25, .96);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox button {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f7f7f2;
}

.lightbox p {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1260px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    padding: 20px var(--pad) 28px;
    background: var(--graphite);
    border-top: 1px solid rgba(255, 255, 255, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a,
  .mobile-menu summary {
    display: block;
    padding: 13px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.34;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu details a {
    padding-left: 18px;
    color: rgba(255, 253, 250, .73);
  }

  .mobile-menu a.is-active {
    color: var(--white);
    border-left: 3px solid var(--brand-red);
    padding-left: 12px;
    background: rgba(255, 255, 255, .045);
  }

  .home-hero,
  .intro-grid,
  .text-image-grid,
  .area-showcase,
  .contact-page-grid,
  .delivery-map-section {
    grid-template-columns: 1fr;
  }

  .delivery-map-copy {
    position: relative;
    top: auto;
  }

  .hero-facts {
    max-width: 420px;
  }

  .footer-grid,
  .link-grid,
  .portrait-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --body: 16px;
    --section-y: 52px;
    --header-h: 70px;
  }

  .brand {
    gap: 10px;
    padding: 9px 12px;
  }

  .brand-box {
    width: 58px;
    height: 44px;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 15px;
    line-height: 1.18;
  }

  .menu-toggle {
    width: 66px;
  }

  .menu-toggle span {
    left: 21px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .hero-logo {
    width: min(300px, 86vw);
  }

  h1 {
    font-size: clamp(30px, 8.4vw, 43px);
    line-height: 1.13;
  }

  h2 {
    font-size: clamp(25px, 7.2vw, 36px);
    line-height: 1.15;
  }

  .page-hero-inner {
    min-height: 270px;
  }

  .area-panel,
  .exact-grid,
  .footer-grid,
  .link-grid,
  .plan-gallery,
  .portrait-gallery,
  .form-row {
    grid-template-columns: 1fr;
  }

  .area-panel article + article {
    border-left: 0;
  }

  .area-note {
    border-left-width: 5px;
  }

  .image-panel,
  .image-panel.tall,
  .portrait-gallery .image-panel,
  .plan-feature .image-panel {
    min-height: 330px;
  }

  .image-panel.wide,
  .plan-gallery .image-panel.wide,
  .plan-feature .image-panel.wide {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .content-section {
    padding: 52px 0;
  }

  .text-band,
  .contact-block,
  .mission-text,
  .legal-text,
  .single-note,
  .unavailable,
  .contact-details,
  .contact-form,
  .delivery-map-copy,
  .delivery-map-stage,
  .exact-card,
  .link-tile {
    padding: 24px;
  }

  .delivery-map-frame {
    min-height: 360px;
  }

  .delivery-list-item button {
    min-height: 74px;
  }

  .delivery-table-head,
  .delivery-list-table .delivery-list-item button {
    grid-template-columns: minmax(0, 1.15fr) minmax(88px, .85fr);
  }

  .delivery-table-head span,
  .delivery-list-table .delivery-list-item strong,
  .delivery-list-table .delivery-list-item em {
    padding: 13px 14px;
  }

  .delivery-list-table .delivery-list-item button {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  :root {
    --pad: 16px;
  }

  .brand-box {
    width: 52px;
    height: 42px;
  }

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

  .home-hero {
    padding-top: 40px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .area-panel strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .delivery-map-frame {
    min-height: 320px;
  }

  .delivery-hotspot {
    width: 46px;
    height: 46px;
  }

  .delivery-tooltip {
    width: calc(100% - 24px);
  }

  .delivery-table-head,
  .delivery-list-table .delivery-list-item button {
    grid-template-columns: minmax(0, 1fr) minmax(78px, .68fr);
  }

  .delivery-table-head span,
  .delivery-list-table .delivery-list-item strong,
  .delivery-list-table .delivery-list-item em {
    padding: 12px;
  }
}

@media (max-width: 360px) {
  :root {
    --pad: 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-box {
    width: 46px;
  }

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

  .menu-toggle {
    width: 58px;
  }

  .menu-toggle span {
    left: 18px;
    width: 23px;
  }

  .delivery-map-frame {
    min-height: 300px;
  }
}

@media (max-width: 1260px) {
  .tenant-filter,
  .tenant-form-layout,
  .tenant-profile-layout,
  .tenant-admin-grid {
    grid-template-columns: 1fr;
  }

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

  .tenant-form-aside,
  .tenant-contact-box,
  .tenant-admin-side {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .tenant-toolbar,
  .tenant-home-teaser,
  .tenant-admin-header,
  .tenant-admin-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tenant-filter,
  .tenant-card-grid {
    grid-template-columns: 1fr;
  }

  .tenant-filter,
  .tenant-card,
  .tenant-home-teaser,
  .tenant-empty,
  .tenant-verification-result,
  .tenant-form-aside,
  .tenant-profile-main,
  .tenant-contact-box,
  .tenant-admin-side,
  .tenant-admin-content,
  .tenant-admin-view,
  .tenant-admin-edit {
    padding: 24px;
  }

  .tenant-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 0;
  }

  .tenant-card-logo {
    width: 76px;
    height: 76px;
    font-size: 22px;
  }

  .tenant-profile-hero-inner {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .tenant-profile-logo {
    width: 92px;
    height: 92px;
    font-size: 30px;
  }

  .tenant-admin-actions {
    justify-items: start;
  }

  .tenant-admin-actions form {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .tenant-card {
    grid-template-columns: 1fr;
  }

  .tenant-profile-hero-inner {
    grid-template-columns: 1fr;
  }
}
