:root {
  --ink: #f8f4ec;
  --muted: #b8afa2;
  --line: rgba(248, 244, 236, .14);
  --paper: #07080a;
  --panel: rgba(255, 255, 255, .075);
  --panel-solid: #12161b;
  --accent: #f0b35b;
  --accent-2: #65d6cf;
  --ember: #e15f45;
  --deep: #090d12;
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 8%, rgba(101, 214, 207, .15), transparent 28%),
    radial-gradient(circle at 20% 0%, rgba(240, 179, 91, .12), transparent 30%),
    linear-gradient(180deg, #090b0f, #07080a 42%, #0b0d10);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 10px 14px 10px 18px;
  background: rgba(9, 12, 16, .62);
  border: 1px solid rgba(248, 244, 236, .14);
  border-radius: 8px;
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 58px;
  filter: brightness(1.08) contrast(1.15);
}
.brand span {
  color: #fffaf3;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 950;
  line-height: 1;
}
.brand span::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(248, 244, 236, .78);
  font-size: 13px;
  font-weight: 850;
}
.nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover {
  color: white;
  background: rgba(255, 255, 255, .09);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.12);
  transform: scale(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 7, .96) 0%, rgba(3, 5, 7, .72) 46%, rgba(3, 5, 7, .16) 100%),
    linear-gradient(0deg, rgba(3, 5, 7, .96), rgba(3, 5, 7, 0) 58%),
    radial-gradient(circle at 76% 44%, rgba(101, 214, 207, .24), transparent 28%);
}
.hero-grid {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 142px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: end;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 900;
}
.eyebrow:empty { display: none; }
.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(56px, 8vw, 124px);
  line-height: .86;
  letter-spacing: 0;
}
.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(248, 244, 236, .80);
  font-size: clamp(18px, 2.1vw, 24px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--ember));
  color: #100b07;
  box-shadow: 0 18px 46px rgba(240, 179, 91, .22);
}
.button.secondary {
  border: 1px solid rgba(248, 244, 236, .32);
  color: white;
  background: rgba(255, 255, 255, .07);
}
.button:hover { transform: translateY(-2px); }

.hero-showcase {
  display: grid;
  gap: 14px;
}
.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(248, 244, 236, .16);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-frame span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, .58);
  color: white;
  font-size: 13px;
  font-weight: 850;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.hero-metrics div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(248, 244, 236, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
}
.hero-metrics strong {
  display: block;
  color: #fffaf3;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}
.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-section,
.section,
.video-section,
.contact-section,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 28px;
  padding: 92px 0 58px;
}
.intro-copy h2,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(34px, 4.4vw, 66px);
  line-height: .96;
}
.intro-copy p:last-child,
.contact-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.trust-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 244, .96), rgba(232, 239, 239, .88));
  box-shadow: 0 24px 68px rgba(0, 0, 0, .28);
}
.trust-panel img {
  width: 168px;
}
.trust-panel p {
  margin: 0;
  color: #334047;
}

.section,
.video-section { padding: 82px 0; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}
.section-note {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
}

.faq-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 24px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
  overflow: hidden;
}
.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: #fffaf3;
  font-weight: 900;
  cursor: pointer;
}
.faq-item summary::marker { color: var(--accent); }
.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 17px;
}
.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.services-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
}
.featured-copy h3 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .96;
}
.featured-copy p {
  color: var(--muted);
  font-size: 18px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #11161b;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 179, 91, .46);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
}
.service-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.06);
  transition: transform .45s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 7, .92), rgba(3, 5, 7, .18) 66%);
}
.service-index {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 900;
}
.service-card-copy {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
}
.service-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 26px;
  line-height: 1.05;
}
.service-card p {
  margin: 0;
  color: rgba(248, 244, 236, .72);
}

.service-detail-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 54px;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.service-detail:nth-child(even) .service-detail-media { order: 2; }
.service-detail-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.service-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-detail-copy h2 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .96;
}
.service-detail-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}
.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.text-button:hover { color: var(--accent-2); }
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-right: 18px;
  color: var(--accent);
  font-weight: 900;
}
.text-link:hover { color: var(--accent-2); }

.service-page-hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
}
.service-page-hero .hero-grid {
  min-height: 86svh;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
}
.service-page-media {
  overflow: hidden;
  border: 1px solid rgba(248, 244, 236, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
}
.service-page-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-content {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}
.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 42px;
  align-items: start;
}
.service-rich-text h2,
.service-side-card h2 {
  margin: 0 0 18px;
  color: #fffaf3;
  font-size: clamp(32px, 4vw, 56px);
  line-height: .98;
}
.service-rich-text h3 {
  margin: 34px 0 12px;
  color: #fffaf3;
  font-size: 25px;
  line-height: 1.1;
}
.service-rich-text p,
.service-rich-text li,
.service-side-card p {
  color: var(--muted);
  font-size: 18px;
}
.service-rich-text ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}
.service-side-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(240, 179, 91, .14), rgba(101, 214, 207, .08)),
    rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
}
.service-side-card a {
  width: 100%;
}
.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gallery-section {
  width: 100%;
  padding: 88px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0));
}
.gallery-section .section-heading,
.gallery-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-auto-rows: 116px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #111;
  cursor: zoom-in;
}
.gallery-item.is-hero {
  grid-column: span 4;
  grid-row: span 3;
}
.gallery-item.is-tall {
  grid-column: span 2;
  grid-row: span 3;
}
.gallery-item.is-wide {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item:not(.is-hero):not(.is-tall):not(.is-wide) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease, filter .38s ease;
}
.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.08);
}

.video-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
}
.video-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}
.video-tabs button {
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .065);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.video-tabs button span {
  display: inline-block;
  width: 30px;
  color: var(--accent);
}
.video-tabs button[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(240, 179, 91, .92), rgba(225, 95, 69, .92));
  color: #100b07;
}
.video-tabs button[aria-pressed="true"] span { color: #100b07; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: stretch;
  padding: 98px 0;
}
.contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 188px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(240, 179, 91, .16), rgba(101, 214, 207, .08)),
    rgba(255, 255, 255, .07);
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 179, 91, .42);
}
.contact-card-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-card strong {
  color: #fffaf3;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.contact-detail {
  color: rgba(248, 244, 236, .86);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-card small {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  width: 62px;
  filter: brightness(1.08) contrast(1.15);
}
.footer-brand span {
  color: #fffaf3;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 950;
  line-height: 1;
}
.footer-brand span::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.footer-note {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.footer-note img { width: 76px; }
.site-version {
  margin-left: auto;
  color: rgba(248, 244, 236, .32);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}
.lightbox::backdrop { background: rgba(0, 0, 0, .90); }
.lightbox img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}
.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: white;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.error-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 70px;
}
.error-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, .96), rgba(3, 5, 7, .70)),
    radial-gradient(circle at 72% 34%, rgba(101, 214, 207, .22), transparent 30%),
    radial-gradient(circle at 20% 12%, rgba(240, 179, 91, .16), transparent 28%),
    url("../img/hero.jpg") center / cover;
}
.error-brand {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 12, 16, .62);
  backdrop-filter: blur(24px);
}
.error-hero {
  max-width: 840px;
}
.error-hero h1 {
  margin: 0;
  color: #fffaf3;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .88;
  letter-spacing: 0;
}
.error-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(248, 244, 236, .80);
  font-size: clamp(18px, 2vw, 23px);
}

@media (max-width: 980px) {
  .hero-grid,
  .service-page-hero .hero-grid,
  .intro-section,
  .services-feature,
  .service-detail,
  .service-content-grid,
  .video-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .hero-showcase { max-width: 520px; }
  .services-grid,
  .video-grid { grid-template-columns: 1fr; }
  .service-side-card { position: static; }
  .service-detail:nth-child(even) .service-detail-media { order: 0; }
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 110px;
  }
  .gallery-item.is-hero,
  .gallery-item.is-tall,
  .gallery-item.is-wide,
  .gallery-item:not(.is-hero):not(.is-tall):not(.is-wide) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 8px 10px auto;
    min-height: 58px;
    padding: 7px 8px 7px 10px;
  }
  .brand {
    min-width: 0;
    gap: 8px;
  }
  .brand img { width: 42px; }
  .brand span {
    max-width: 155px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand span::after { display: none; }
  .menu-button {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .nav {
    position: fixed;
    top: 74px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: rgba(9, 12, 16, .96);
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a {
    justify-content: center;
    min-height: 46px;
  }
  .hero-grid {
    width: min(100% - 28px, 1240px);
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 54px;
    transition: padding-top .22s ease;
  }
  body.menu-open .hero-grid { padding-top: 342px; }
  .hero h1 { font-size: clamp(48px, 15vw, 76px); }
  .hero-showcase {
    max-width: none;
    margin-top: 24px;
  }
  .hero-frame { display: none; }
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-metrics div {
    min-height: 72px;
    padding: 11px;
  }
  .hero-metrics strong {
    font-size: clamp(20px, 7vw, 28px);
  }
  .hero-metrics span {
    font-size: 10px;
    overflow-wrap: anywhere;
  }
  .section-heading { display: block; }
  .section-note { margin-top: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item.is-hero,
  .gallery-item.is-tall,
  .gallery-item.is-wide,
  .gallery-item:not(.is-hero):not(.is-tall):not(.is-wide) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .error-brand {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .error-page {
    padding-top: 112px;
  }
  .error-hero h1 {
    font-size: clamp(46px, 14vw, 76px);
  }
}
