@font-face {
  font-family: "Atrium Akrobat";
  src: url("/assets/brand/fonts/akrobat-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atrium Akrobat";
  src: url("/assets/brand/fonts/akrobat-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atrium Akrobat";
  src: url("/assets/brand/fonts/akrobat-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #050505;
  --ink: #111111;
  --charcoal: #1d1d1d;
  --soft: #f7f2ea;
  --paper: #fffaf0;
  --white: #ffffff;
  --muted: #cfc8bd;
  --red: #c12a29;
  --red-deep: #681313;
  --yellow: #ffba04;
  --green: #00983a;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body.atrium-redesign {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Atrium Akrobat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.8vw, 24px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
  content: "";
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav .nav-order {
  padding: 12px 16px;
  border: 2px solid var(--yellow);
  background: var(--red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.main-nav .nav-order::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 54svh;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}

.hero-home {
  min-height: 84svh;
}

.hero-bg,
.hero-bg picture,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-home .hero-bg img {
  filter: brightness(1.22) saturate(1.18) contrast(1.05);
  object-position: 56% 48%;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.1) 46%, rgba(5, 5, 5, 0.34) 100%);
  content: "";
}

.hero-home .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.3) 36%, rgba(0, 0, 0, 0.07) 62%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.02) 55%, rgba(5, 5, 5, 0.12) 100%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 74px 0 94px;
}

.hero-home .hero-content {
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.78);
}

.hero-home .hero-content::before {
  position: absolute;
  inset: -28px -34px -28px -34px;
  z-index: -1;
  background: radial-gradient(ellipse at 24% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0) 72%);
  content: "";
  pointer-events: none;
}

.eyebrow,
.section-heading p {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  max-width: 980px;
  color: var(--white);
  font-size: clamp(2.45rem, 7vw, 6rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-strip span {
  min-height: 36px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-internal {
  min-height: 44svh;
}

.hero-internal .hero-content {
  padding: 82px 0;
}

.hero-internal h1 {
  font-size: clamp(2.1rem, 6vw, 4.6rem);
}

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  padding: clamp(58px, 9vw, 112px) 0;
  background: var(--black);
}

.band-light {
  background: var(--soft);
  color: var(--ink);
}

.band-dark {
  background: var(--charcoal);
}

.band-red {
  background: linear-gradient(180deg, var(--red-deep), #61000d);
}

.section-heading {
  margin: 0 0 32px;
}

.band-light .section-heading h2,
.band-light .section-heading span,
.band-light .lead,
.band-light p {
  color: var(--ink);
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.section-heading span,
.lead {
  display: block;
  max-width: 760px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--red);
  border-color: var(--yellow);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.btn-ghost {
  border-color: currentColor;
  color: var(--white);
}

.band-light .btn-ghost {
  color: var(--ink);
}

.category-grid,
.product-grid,
.news-grid,
.location-grid {
  display: grid;
  gap: 20px;
}

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

.category-card {
  position: relative;
  display: block;
  cursor: default;
  min-width: 0;
  min-height: 230px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.category-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.category-card picture,
.category-card img,
.category-card .no-photo {
  width: 100%;
  height: 100%;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82));
  content: "";
}

.category-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.category-caption span {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card.is-empty .no-photo {
  min-height: 230px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split.reverse > :first-child {
  order: 2;
}

.feature-collage {
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  gap: 16px;
  align-items: end;
}

.feature-collage.single {
  grid-template-columns: 1fr;
}

.feature-collage picture,
.framed-media {
  overflow: hidden;
  border-radius: 8px;
  background: #191919;
  box-shadow: var(--shadow);
}

.feature-collage picture:first-child {
  aspect-ratio: 4 / 3;
}

.feature-collage picture:last-child {
  aspect-ratio: 3 / 4;
}

.feature-collage.single picture:first-child {
  aspect-ratio: 16 / 10;
}

.framed-media {
  aspect-ratio: 4 / 3;
}

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

.product-grid.featured {
  align-items: stretch;
}

.product-card,
.news-card,
.location-card {
  overflow: hidden;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.band-light .product-card,
.band-light .news-card,
.band-light .location-card {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.product-media,
.news-media,
.location-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: default;
}

.product-media.is-empty,
.no-photo {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(193, 42, 41, 0.2), rgba(255, 186, 4, 0.12)),
    #171717;
}

.no-photo strong {
  color: var(--yellow);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-media {
  aspect-ratio: 16 / 10;
}

.location-media {
  position: relative;
  aspect-ratio: 16 / 11;
  --location-focus-y: 50%;
}

.location-media .cover-img {
  object-position: 50% var(--location-focus-y);
}

.location-carousel {
  cursor: default;
}

.location-slides,
.location-slide {
  position: absolute;
  inset: 0;
}

.location-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.location-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.location-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.location-carousel-btn:hover,
.location-carousel-btn:focus-visible {
  background: var(--red);
  border-color: var(--yellow);
  transform: translateY(-50%) scale(1.06);
}

.location-carousel-btn.prev {
  left: 10px;
}

.location-carousel-btn.next {
  right: 10px;
}

.location-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.location-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
}

.location-dots span.is-active {
  background: var(--yellow);
}

.product-body,
.news-card > div,
.location-body {
  padding: 20px;
}

.product-category {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-title-row h3,
.news-card h3,
.location-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.product-title-row strong {
  color: var(--red);
  font-size: 1rem;
  white-space: nowrap;
}

.product-card p,
.news-card p,
.location-card p {
  margin: 12px 0 0;
  color: inherit;
  opacity: 0.78;
}

.product-card p {
  display: -webkit-box;
  min-height: 4.6em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.menu-category-page .product-card p {
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: initial;
}

.product-note,
.text-link,
.location-phone {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
}

.location-actions {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 4px 16px;
  align-items: baseline;
  margin-top: 14px;
}

.location-actions .location-phone,
.location-actions .text-link {
  margin-top: 0;
  line-height: 1.2;
}

.menu-band .category-grid {
  margin-bottom: 0;
}

.menu-band {
  scroll-margin-top: 96px;
}

.menu-category-page {
  min-height: 72svh;
  padding-top: clamp(42px, 7vw, 86px);
}

.menu-category-page .pill-row {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.menu-official-link {
  margin: -6px 0 22px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.back-link::before {
  margin-right: 8px;
  content: "<";
}

.menu-section-stack {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
}

.menu-product-section {
  scroll-margin-top: 108px;
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.menu-product-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.menu-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.menu-section-head span {
  display: block;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.menu-section-head .text-link {
  margin-top: 0;
}

.menu-product-group + .menu-product-group {
  margin-top: clamp(28px, 4vw, 48px);
}

.menu-product-group h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.location-note {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

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

.location-grid.directory .location-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1fr);
  min-height: 218px;
}

.location-grid.directory .location-media {
  height: 100%;
  aspect-ratio: auto;
}

.location-grid.directory .location-body {
  display: grid;
  align-content: center;
  padding: clamp(18px, 2.4vw, 26px);
}

.location-grid.directory .location-card p {
  margin-top: 8px;
}

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

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-row picture {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.pill-row a {
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pill-row a.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.atrium-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.atrium-form label {
  display: grid;
  gap: 8px;
  color: #2b2b2b;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atrium-form .full,
.atrium-form button,
.notice {
  grid-column: 1 / -1;
}

.atrium-form input,
.atrium-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8d1c8;
  border-radius: 4px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.atrium-form textarea {
  min-height: 136px;
  resize: vertical;
}

.notice {
  padding: 14px 16px;
  border-radius: 6px;
  background: #e8f2e4;
  color: #28451f;
  font-weight: 800;
}

.contact-aside {
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: start;
}

.site-footer {
  background: #080808;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(440px, 1.65fr) minmax(230px, 0.85fr);
  gap: 30px;
  padding: 44px 0;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 0;
}

.footer-quick {
  display: grid;
  grid-template-columns: minmax(260px, 1.18fr) minmax(180px, 0.82fr);
  gap: 26px;
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-locations ul,
.footer-access {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

.footer-locations h2,
.footer-access h2 {
  grid-column: 1 / -1;
}

.site-footer li,
.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: inherit;
}

.footer-locations li,
.footer-access a {
  margin-bottom: 0;
  line-height: 1.35;
}

.footer-phone {
  display: inline;
  color: inherit;
  font-weight: inherit;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  color: var(--yellow);
}

.site-footer .footer-work-link {
  width: fit-content;
  margin-top: 2px;
  padding: 8px 10px;
  background: rgba(255, 186, 4, 0.07);
  border: 1px solid rgba(255, 186, 4, 0.38);
  border-radius: 6px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-footer .footer-work-link:hover,
.site-footer .footer-work-link:focus-visible {
  background: rgba(255, 186, 4, 0.13);
  border-color: var(--yellow);
  transform: translateX(2px);
}

.footer-allies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.ally-logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.footer-bottom {
  padding: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 0.86rem;
}

.floating-order {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  max-width: calc(100vw - 36px);
  padding: 14px 18px;
  background: var(--red);
  border: 3px solid var(--yellow);
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  overflow: visible;
  font-size: 0.94rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.floating-order strong {
  color: var(--yellow);
}

.order-arrow {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.order-pulse {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.order-pulse::before {
  position: absolute;
  inset: 0;
  background: var(--yellow);
  border-radius: inherit;
  content: "";
  opacity: 0;
}

.floating-order.is-hidden {
  opacity: 0;
  transform: translateY(120px);
}

.floating-order:hover,
.floating-order:focus-visible,
.floating-order.is-menu-hover {
  box-shadow: 0 22px 54px rgba(255, 186, 4, 0.28), 0 16px 42px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08);
  transform: translateY(-3px) scale(1.08);
}

.floating-order:hover .order-arrow,
.floating-order:focus-visible .order-arrow,
.floating-order.is-menu-hover .order-arrow {
  transform: translateX(3px);
}

.floating-order:hover .order-pulse,
.floating-order:focus-visible .order-pulse,
.floating-order.is-menu-hover .order-pulse {
  opacity: 1;
}

.floating-order:hover .order-pulse::before,
.floating-order:focus-visible .order-pulse::before,
.floating-order.is-menu-hover .order-pulse::before {
  animation: order-ping 1.25s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.floating-order.is-hidden:hover,
.floating-order.is-hidden:focus-visible {
  transform: translateY(120px);
}

@keyframes order-ping {
  75%,
  100% {
    opacity: 0;
    transform: scale(2.2);
  }

  0% {
    opacity: 0.72;
    transform: scale(1);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(980px, 92vw);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox p {
  margin: 12px 0 0;
  color: var(--white);
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 24px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav .nav-order {
    margin-top: 10px;
    text-align: center;
  }

  .product-grid,
  .news-grid,
  .location-grid,
  .location-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid.directory {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-quick {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  }

  .footer-allies {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .form-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }
}

@media (max-width: 640px) {
  body.atrium-redesign {
    font-size: 15px;
  }

  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 142px;
  }

  .hero-home {
    min-height: 76svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 54px 0 104px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 11.4vw, 3rem);
  }

  .hero-home .hero-content p:not(.eyebrow) {
    max-width: 330px;
  }

  .hero-strip {
    left: 16px;
    right: 16px;
    bottom: 14px;
  }

  .hero-strip span {
    flex: 1 1 auto;
    text-align: center;
  }

  .band {
    padding: 54px 0;
  }

  .product-grid,
  .news-grid,
  .location-grid,
  .location-grid.compact,
  .gallery-row,
  .footer-grid,
  .atrium-form {
    grid-template-columns: 1fr;
  }

  .location-grid.directory {
    gap: 12px;
  }

  .location-grid.directory .location-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 134px;
  }

  .location-grid.directory .location-media {
    min-height: 134px;
  }

  .location-grid.directory .location-body {
    padding: 14px;
  }

  .location-grid.directory .location-card h3 {
    font-size: 0.92rem;
  }

  .location-grid.directory .location-card p {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .location-grid.directory .location-actions {
    gap: 4px 10px;
    margin-top: 10px;
  }

  .location-grid.directory .location-actions a {
    font-size: 0.82rem;
  }

  .location-grid.directory .location-note {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .footer-grid {
    gap: 28px;
    padding: 34px 0;
  }

  .footer-brand {
    justify-content: center;
    padding-bottom: 2px;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-quick {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-locations ul,
  .footer-access {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }

  .site-footer .footer-work-link {
    grid-column: 1 / -1;
  }

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

  .category-card {
    min-height: 116px;
  }

  .category-card.is-empty .no-photo {
    min-height: 116px;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .category-caption {
    left: 8px;
    right: 8px;
    bottom: 10px;
  }

  .category-caption span {
    font-size: 0.68rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .feature-collage {
    grid-template-columns: 1fr;
  }

  .menu-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-order {
    left: auto;
    right: 0;
    top: 54%;
    bottom: auto;
    width: 48px;
    min-height: 196px;
    padding: 14px 8px;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    justify-content: center;
    font-size: 0.78rem;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
  }

  .floating-order:hover,
  .floating-order:focus-visible,
  .floating-order.is-menu-hover {
    transform: translateY(-50%) scale(1.08);
  }

  .floating-order.is-hidden {
    opacity: 0;
    transform: translateY(-50%) translateX(120%);
  }

  .site-footer {
    padding-bottom: 86px;
  }
}
