@font-face {
  font-display: swap;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/bebas-neue-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/roboto-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-400.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-700.woff2") format("woff2");
}

:root {
  --black: #050505;
  --black-soft: #111111;
  --graphite: #1b1b1b;
  --white: #ffffff;
  --off-white: #f2f1ef;
  --grey: #a5a5a5;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(5, 5, 5, 0.16);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
  --header-height: 228px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

main {
  overflow: clip;
}

.site-header {
  align-items: center;
  background: var(--black);
  display: flex;
  flex-direction: column;
  height: var(--header-height);
  justify-content: flex-start;
  padding: 24px 5vw 0;
  position: relative;
  width: 100%;
  z-index: 80;
}

.brand {
  align-items: center;
  display: flex;
  height: 138px;
  justify-content: center;
  overflow: hidden;
  width: min(330px, 42vw);
}

.brand img {
  height: auto;
  width: 100%;
}

.desktop-nav {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: clamp(42px, 6vw, 94px);
  height: 66px;
  justify-content: center;
  width: min(1040px, 90vw);
}

.desktop-nav a {
  color: #bcbcbc;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.13em;
  padding: 24px 3px 20px;
  position: relative;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.desktop-nav a::after {
  background: var(--white);
  bottom: 12px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
  width: calc(100% - 0.13em);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 8px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 46px;
  z-index: 102;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 1px;
  margin: 7px 0 7px auto;
  transition: transform 300ms ease, opacity 200ms ease, width 300ms ease;
  width: 30px;
}

.menu-toggle span:nth-child(2) {
  width: 22px;
}

.menu-toggle.open span:first-child {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-backdrop {
  background: rgba(0, 0, 0, 0.72);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 350ms ease;
  z-index: 89;
}

.menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  justify-content: center;
  max-width: 470px;
  padding: 95px 48px 42px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(105%);
  transition: transform 450ms cubic-bezier(0.76, 0, 0.24, 1);
  width: min(88vw, 470px);
  z-index: 100;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu::before {
  color: rgba(255, 255, 255, 0.025);
  content: "ATI";
  font-family: var(--font-display);
  font-size: 260px;
  line-height: 0.8;
  position: absolute;
  right: -15px;
  top: 14%;
}

.mobile-menu-kicker {
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.26em;
  margin-bottom: 26px;
  position: relative;
  text-transform: uppercase;
}

.mobile-menu nav {
  position: relative;
}

.mobile-menu nav a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(44px, 12vw, 68px);
  justify-content: space-between;
  line-height: 1;
  padding: 15px 0 11px;
  text-transform: uppercase;
  transition: color 250ms ease, padding 250ms ease;
}

.mobile-menu nav a span {
  color: #666;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  order: 2;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: #bcbcbc;
  padding-left: 8px;
}

.mobile-menu-contact {
  margin-top: auto;
  position: relative;
}

.mobile-menu-contact p {
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.mobile-menu-contact a {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
}

.hero {
  background: var(--black);
  height: max(640px, calc(100svh - var(--header-height)));
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-image,
.top-hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-slide .hero-image {
  transform: scale(1.065);
  transition: transform 7s ease-out;
}

.hero-slide.active .hero-image {
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.28) 46%, transparent 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, transparent 40%);
  inset: 0;
  position: absolute;
}

.hero-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  max-width: 770px;
  padding: 1vw 6vw 4vw;
  position: absolute;
}

.eyebrow,
.kicker {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  gap: 14px;
  letter-spacing: 0.26em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 32px;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-copy,
.hero-content .button {
  opacity: 0;
  transform: translateY(32px);
}

.hero-slide.active .eyebrow {
  animation: hero-in 700ms 200ms forwards;
}

.hero-slide.active h1 {
  animation: hero-in 800ms 330ms forwards;
}

.hero-slide.active .hero-copy {
  animation: hero-in 800ms 480ms forwards;
}

.hero-slide.active .button {
  animation: hero-in 800ms 630ms forwards;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1,
.top-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 9.5vw, 156px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.82;
  margin: 0;
  max-width: 760px;
  text-transform: uppercase;
}

.hero-copy {
  color: #d3d3d3;
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  margin: 30px 0 34px;
  max-width: 560px;
}

.button {
  align-items: center;
  border: 1px solid;
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 32px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}

.button span:last-child {
  font-size: 17px;
  font-weight: 300;
  transition: transform 250ms ease;
}

.button:hover span:last-child {
  transform: translate(3px, -3px);
}

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

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.button-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: transparent;
  color: var(--black);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-controls {
  align-items: center;
  bottom: 38px;
  display: flex;
  gap: 18px;
  position: absolute;
  right: 5vw;
  z-index: 5;
}

.hero-controls > button {
  align-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 45px;
  justify-content: center;
  transition: background 250ms ease, color 250ms ease;
  width: 45px;
}

.hero-controls > button:hover {
  background: var(--white);
  color: var(--black);
}

.hero-controls svg {
  height: 20px;
  width: 20px;
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dots button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px 2px;
}

.hero-dots button span {
  background: rgba(255, 255, 255, 0.45);
  display: block;
  height: 1px;
  transition: background 250ms ease, width 300ms ease;
  width: 18px;
}

.hero-dots button.active span {
  background: var(--white);
  width: 38px;
}

.scroll-cue {
  align-items: center;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 5vw;
  position: absolute;
  z-index: 5;
}

.scroll-cue span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  background: rgba(255, 255, 255, 0.35);
  display: block;
  height: 45px;
  overflow: hidden;
  position: relative;
  width: 1px;
}

.scroll-cue i::after {
  animation: scroll-line 1.8s infinite ease-in-out;
  background: var(--white);
  content: "";
  height: 55%;
  left: 0;
  position: absolute;
  top: -55%;
  width: 1px;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(180%); }
}

.marquee {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1;
  overflow: hidden;
  padding: 16px 0 10px;
  white-space: nowrap;
}

.marquee > div {
  animation: marquee 22s linear infinite;
  display: inline-flex;
}

.marquee span {
  padding-right: 8px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(88px, 10vw, 160px) 6vw;
  position: relative;
}

.section-light {
  background: var(--off-white);
  color: var(--black);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.intro {
  display: grid;
  gap: 4vw;
  grid-template-columns: 0.25fr 1.35fr 1fr;
}

.section-index {
  color: #777;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  padding-top: 42px;
}

.intro-heading h2,
.section-title h2,
.manifesto-copy h2,
.editorial-panel h2,
.price-intro h2,
.contact-details h2,
.map-placeholder h2,
.cta-band h2,
.legal h1,
.legal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.intro-heading h2,
.section-title h2,
.price-intro h2,
.contact-details h2 {
  font-size: clamp(54px, 6.5vw, 102px);
}

.intro-copy {
  align-self: end;
  max-width: 560px;
}

.intro-copy p,
.manifesto-copy > p,
.price-intro > p,
.contact-details > p,
.legal-copy p {
  color: #494949;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.85;
  margin: 0 0 22px;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid var(--black);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 35px;
  letter-spacing: 0.13em;
  margin-top: 14px;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.text-link span {
  font-size: 16px;
  transition: transform 250ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.services {
  padding-bottom: clamp(100px, 11vw, 170px);
}

.section-title {
  display: flex;
  flex-direction: column;
  margin: 0 0 clamp(55px, 7vw, 100px);
}

.section-dark .section-title {
  margin-left: 4vw;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  height: clamp(500px, 56vw, 810px);
  overflow: hidden;
  position: relative;
}

.service-card img {
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transition: filter 600ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.service-card:hover img {
  filter: brightness(0.75);
  transform: scale(1.045);
}

.service-overlay {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 55%);
  inset: 0;
  position: absolute;
}

.service-card > div:last-of-type {
  bottom: 44px;
  left: 42px;
  position: absolute;
}

.service-card p {
  font-size: 10px;
  letter-spacing: 0.22em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 126px);
  font-weight: 400;
  line-height: 0.8;
  margin: 0;
  text-transform: uppercase;
}

.service-number {
  font-size: 11px;
  left: 32px;
  letter-spacing: 0.2em;
  position: absolute;
  top: 30px;
}

.service-arrow {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  bottom: 40px;
  display: flex;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  position: absolute;
  right: 35px;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
  width: 52px;
}

.service-card:hover .service-arrow {
  background: var(--white);
  color: var(--black);
  transform: rotate(8deg);
}

.certificates {
  padding-bottom: clamp(100px, 11vw, 170px);
}

.certificate-grid {
  display: grid;
  gap: clamp(22px, 3.5vw, 54px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.certificate-card {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: zoom-in;
  display: block;
  font: inherit;
  min-width: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.certificate-frame {
  align-items: center;
  aspect-ratio: 210 / 297;
  background: #e8e8e5;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 20px);
  position: relative;
}

.certificate-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.certificate-frame img {
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  filter: brightness(1.015) contrast(1.035);
  height: 100%;
  object-fit: contain;
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.certificate-card:hover .certificate-frame img,
.certificate-card:focus-visible .certificate-frame img {
  filter: brightness(1.025) contrast(1.055);
  transform: scale(1.018);
}

.certificate-card:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 7px;
}

.certificate-meta {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  letter-spacing: 0.17em;
  padding: 18px 2px 15px;
  text-transform: uppercase;
}

.certificate-zoom {
  color: #aaa;
}

.certificate-zoom > span {
  display: inline-block;
  font-size: 15px;
  margin-left: 8px;
  transition: transform 250ms ease;
}

.certificate-card:hover .certificate-zoom > span {
  transform: translate(3px, -3px);
}

.certificate-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: clamp(18px, 4vw, 54px);
  position: fixed;
  transition: opacity 250ms ease;
  z-index: 1000;
}

.certificate-lightbox[hidden] {
  display: none;
}

.certificate-lightbox.is-open {
  opacity: 1;
}

.certificate-lightbox-stage {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}

.certificate-lightbox-stage img {
  background: #fff;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  filter: brightness(1.015) contrast(1.035);
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  pointer-events: auto;
  transform: scale(0.975);
  transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.certificate-lightbox.is-open .certificate-lightbox-stage img {
  transform: scale(1);
}

.certificate-lightbox-close {
  align-items: center;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  color: var(--black);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 300;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0 0 3px;
  position: absolute;
  right: clamp(16px, 3vw, 42px);
  top: clamp(16px, 3vw, 35px);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  width: 48px;
  z-index: 2;
}

.certificate-lightbox-close:hover,
.certificate-lightbox-close:focus-visible {
  background: #cfcfcf;
  outline: 0;
  transform: rotate(6deg);
}

body.certificate-is-open {
  overflow: hidden;
}

.manifesto {
  background: var(--white);
  color: var(--black);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 720px;
}

.manifesto-image {
  min-height: 720px;
  overflow: hidden;
}

.manifesto-image img {
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transition: transform 1s ease;
  width: 100%;
}

.manifesto-image:hover img {
  transform: scale(1.025);
}

.manifesto-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
}

.manifesto-copy h2 {
  font-size: clamp(62px, 7vw, 112px);
  margin-bottom: 35px;
}

.manifesto-copy .button {
  margin-top: 14px;
}

.values {
  padding-bottom: clamp(100px, 12vw, 180px);
}

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

.value-card {
  border-right: 1px solid var(--line-dark);
  min-height: 280px;
  padding: 35px 38px 35px 0;
}

.value-card + .value-card {
  padding-left: 38px;
}

.value-card:last-child {
  border-right: 0;
}

.value-card > span {
  color: #858585;
  font-family: var(--font-display);
  font-size: 18px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 64px 0 18px;
  text-transform: uppercase;
}

.value-card p {
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.social-wall {
  border-top: 1px solid var(--line);
  padding-bottom: clamp(100px, 11vw, 170px);
}

.social-wall-heading.section-title {
  align-items: end;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  margin-left: 0;
}

.social-wall-heading h2 {
  font-size: clamp(58px, 7vw, 112px);
}

.social-wall-intro {
  color: #aaa;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 6px;
  max-width: 520px;
}

.social-wall-grid {
  display: grid;
  gap: clamp(22px, 3vw, 46px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-wall-grid-single {
  grid-template-columns: minmax(0, 820px);
}

.social-wall-card {
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-top: 22px;
}

.social-network-head {
  align-items: center;
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr auto;
  margin-bottom: 20px;
}

.social-platform-mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  font-family: var(--font-display);
  font-size: 18px;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 48px;
}

.social-profile-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.social-profile-copy > span {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.social-profile-copy a {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.035em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-profile-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.social-profile-link span {
  display: inline-block;
  font-size: 14px;
  margin-left: 7px;
  transition: transform 250ms ease;
}

.social-profile-link:hover span {
  transform: translate(3px, -3px);
}

.social-embed-shell {
  align-items: start;
  background: #e9e8e5;
  color: var(--black);
  display: grid;
  flex: 1;
  justify-items: center;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(12px, 2vw, 24px);
  position: relative;
}

.social-embed-shell iframe,
.social-embed-shell blockquote {
  max-width: 100% !important;
}

.social-embed-shell > .instagram-media,
.social-embed-shell > .tiktok-embed {
  margin: 0 auto !important;
  min-width: 0 !important;
  width: 100% !important;
}

.social-consent-placeholder {
  align-items: center;
  align-self: stretch;
  background:
    linear-gradient(rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    var(--off-white);
  background-size: 38px 38px;
  border: 0;
  color: var(--black);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: stretch;
  min-height: 570px;
  padding: 35px;
  text-align: center;
}

.social-consent-placeholder > span {
  align-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  font-family: var(--font-display);
  font-size: 25px;
  height: 68px;
  justify-content: center;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  transition: background 250ms ease, color 250ms ease;
  width: 68px;
}

.social-consent-placeholder:hover > span {
  background: var(--black);
  color: var(--white);
}

.social-consent-placeholder strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.social-consent-placeholder small {
  color: #666;
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-top: 13px;
  text-transform: uppercase;
}

.social-embed-shell noscript {
  bottom: 18px;
  color: #666;
  font-size: 11px;
  left: 20px;
  position: absolute;
  right: 20px;
  text-align: center;
}

.cta-band {
  align-items: flex-end;
  background: var(--black);
  color: var(--white);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: clamp(70px, 9vw, 130px) 6vw;
}

.cta-band h2 {
  font-size: clamp(58px, 7.2vw, 116px);
}

.top-hero {
  height: clamp(390px, 42vw, 610px);
  overflow: hidden;
  position: relative;
}

.top-hero-image {
  animation: top-image-in 1.6s ease-out both;
  background-position: center;
}

@keyframes top-image-in {
  from { opacity: 0.4; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

.top-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 70%);
  inset: 0;
  position: absolute;
}

.top-hero-content {
  bottom: clamp(42px, 6vw, 88px);
  left: 6vw;
  position: absolute;
}

.top-hero-content .eyebrow {
  animation: hero-in 700ms 200ms both;
}

.top-hero-content h1 {
  animation: hero-in 800ms 350ms both;
  font-size: clamp(82px, 11vw, 172px);
}

.page-number {
  bottom: 32px;
  font-size: 9px;
  letter-spacing: 0.22em;
  position: absolute;
  right: 4vw;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.editorial-split {
  background: var(--black);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 760px;
}

.editorial-photo {
  overflow: hidden;
}

.editorial-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transition: transform 1s ease;
  width: 100%;
}

.editorial-photo:hover img {
  transform: scale(1.03);
}

.editorial-panel {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 8vw;
  position: relative;
}

.giant-number {
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: 400px;
  line-height: 0.8;
  position: absolute;
  right: -25px;
  top: 28px;
}

.editorial-panel h2 {
  font-size: clamp(62px, 7vw, 112px);
  margin: 0 0 32px;
  position: relative;
}

.editorial-panel > p:last-child {
  color: #bcbcbc;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
  position: relative;
}

.process-list {
  border-top: 1px solid var(--line-dark);
}

.process-item {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 32px;
  grid-template-columns: 80px 0.75fr 1fr;
  padding: 30px 0;
  transition: padding 300ms ease;
}

.process-item:hover {
  padding-left: 15px;
}

.process-item > span {
  color: #777;
  font-family: var(--font-display);
}

.process-item h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}

.process-item p {
  color: #555;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.category-intro {
  padding-left: 28vw;
}

.category-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.84;
  margin: 0 0 42px;
  text-transform: uppercase;
}

.category-intro > p:last-child {
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  max-width: 650px;
}

.price-section {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.75fr 1.25fr;
}

.price-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.price-intro h2 {
  margin-bottom: 30px;
}

.price-note,
.sample-note {
  background: rgba(0, 0, 0, 0.055);
  border-left: 2px solid var(--black);
  color: #666;
  font-size: 12px;
  line-height: 1.65;
  margin-top: 32px;
  padding: 15px 18px;
}

.price-list {
  border-top: 1px solid var(--black);
}

.price-empty {
  border-bottom: 1px solid var(--line-dark);
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding: 28px 0;
}

.price-row {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 18px;
  grid-template-columns: 34px auto 1fr auto;
  padding: 27px 0;
  transition: padding 250ms ease;
}

.price-row:hover {
  padding-left: 8px;
  padding-right: 8px;
}

.price-index {
  color: #888;
  font-family: var(--font-display);
  font-size: 15px;
}

.price-service {
  font-size: 15px;
}

.price-dots {
  border-bottom: 1px dotted #aaa;
  height: 1px;
}

.price-values {
  display: grid;
  gap: 7px;
  min-width: 154px;
}

.price-value {
  align-items: baseline;
  display: grid;
  gap: 14px;
  grid-template-columns: 34px auto;
  justify-content: end;
}

.price-value-single {
  grid-template-columns: auto;
}

.price-length {
  color: #777;
  font-size: 12px;
  text-align: right;
  text-transform: uppercase;
}

.price-value strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: right;
  white-space: nowrap;
}

.contact-section {
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.8fr 1.2fr;
}

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

.contact-list {
  border-top: 1px solid var(--line-dark);
  margin-top: 46px;
}

.contact-list > div {
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 0;
}

.contact-list span {
  color: #777;
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-list p,
.contact-list a {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.contact-form {
  background: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  padding: clamp(28px, 5vw, 72px);
}

.contact-form label {
  color: #555;
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  color: var(--black);
  display: block;
  font-size: 16px;
  margin-top: 10px;
  outline: 0;
  padding: 9px 0 12px;
  resize: vertical;
  transition: border-color 200ms ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
}

.form-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.checkbox-label {
  align-items: flex-start;
  display: flex !important;
  gap: 12px;
  letter-spacing: 0 !important;
  line-height: 1.6;
  text-transform: none !important;
}

.checkbox-label input {
  accent-color: var(--black);
  margin-top: 2px;
}

.checkbox-label a {
  text-decoration: underline;
}

.form-success {
  border-left: 2px solid var(--black);
  color: #333;
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0 0;
  padding: 10px 15px;
}

.contact-map {
  background: #141414;
  height: 520px;
}

.contact-map iframe {
  border: 0;
  filter: grayscale(1) contrast(1.15);
  height: 100%;
  width: 100%;
}

.contact-map > [data-consent-map] {
  height: 100%;
}

.contact-map > [data-consent-map] > iframe {
  display: block;
}

.map-placeholder {
  align-items: flex-start;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #111;
  background-size: 50px 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 6vw;
}

.map-placeholder h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.map-placeholder > p:last-of-type {
  color: #aaa;
  font-weight: 300;
  line-height: 1.7;
  margin: 24px 0 30px;
  max-width: 540px;
}

.legal {
  min-height: 70vh;
  padding-left: max(6vw, calc((100vw - 1150px) / 2));
  padding-right: max(6vw, calc((100vw - 1150px) / 2));
}

.legal > h1 {
  font-size: clamp(70px, 10vw, 150px);
  margin-bottom: 60px;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  margin: 48px 0 15px;
}

.legal-copy .sample-note {
  border-left-color: #9b0000;
  color: #5e0000;
}

.site-footer {
  background: var(--black-soft);
  color: var(--white);
  padding: 70px 5vw 24px;
}

.footer-brand {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 45px;
}

.footer-brand img {
  height: auto;
  width: 230px;
}

.footer-brand p {
  color: #777;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.4fr;
  min-height: 340px;
}

.footer-column {
  align-items: flex-start;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 46px 5vw 35px 0;
}

.footer-column + .footer-column {
  padding-left: 5vw;
}

.footer-title {
  color: #777 !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em;
  margin: 0 0 25px !important;
  text-transform: uppercase;
}

.footer-column a,
.footer-column button {
  background: transparent;
  border: 0;
  color: #e5e5e5;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.035em;
  line-height: 1.45;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
  transition: color 200ms ease, padding 200ms ease;
}

.footer-column a:hover,
.footer-column button:hover {
  color: #888;
  padding-left: 5px;
}

.footer-address > p {
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 25px;
}

.hours {
  display: grid;
  font-size: 12px;
  gap: 9px 22px;
  grid-template-columns: auto auto;
  width: 100%;
}

.hours span {
  color: #777;
}

.hours strong {
  font-weight: 400;
}

.footer-address small {
  color: #666;
  font-size: 10px;
  margin-top: 24px;
}

.footer-map {
  padding: 46px 0 35px 5vw;
}

.footer-map [data-consent-map] {
  height: 255px;
}

.footer-map iframe,
.map-consent {
  background: #1a1a1a;
  border: 0;
  filter: grayscale(1) contrast(1.15);
  height: 255px;
  width: 100%;
}

.map-consent {
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #181818;
  background-size: 30px 30px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  filter: none;
  flex-direction: column;
  justify-content: center;
}

.map-consent span {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.map-consent strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #656565;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  padding-top: 22px;
  text-transform: uppercase;
}

.cookie-layer {
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.54);
  display: flex;
  inset: 0;
  padding: 22px;
  position: fixed;
  z-index: 500;
}

.cookie-layer[hidden] {
  display: none;
}

.cookie-settings-panel[hidden] {
  display: none;
}

.cookie-card {
  animation: cookie-in 500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  background: var(--black-soft);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  grid-template-columns: 160px 1fr;
  max-height: calc(100dvh - 44px);
  max-width: 820px;
  overflow-y: auto;
  width: 100%;
}

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-mark {
  align-items: center;
  background: var(--white);
  color: var(--black);
  display: flex;
  font-family: var(--font-display);
  font-size: 60px;
  justify-content: center;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}

.cookie-copy {
  padding: 38px 40px 32px;
}

.cookie-copy .kicker {
  color: #8c8c8c;
  margin-bottom: 12px;
}

.cookie-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.cookie-copy > p {
  color: #aaa;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  max-width: 570px;
}

.cookie-options {
  border-top: 1px solid var(--line);
  margin-top: 25px;
}

.cookie-options > div,
.cookie-options label {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

.cookie-options span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cookie-options strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-options small {
  color: #777;
  font-size: 10px;
}

.cookie-options em {
  color: #888;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.cookie-options input {
  height: 24px;
  opacity: 0;
  position: absolute;
  right: 0;
  width: 44px;
  z-index: 2;
}

.cookie-options label > i {
  background: #333;
  border-radius: 20px;
  height: 24px;
  position: relative;
  transition: background 200ms ease;
  width: 44px;
}

.cookie-options label > i::after {
  background: var(--white);
  border-radius: 50%;
  content: "";
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 200ms ease;
  width: 18px;
}

.cookie-options input:checked + i {
  background: #747474;
}

.cookie-options input:checked + i::after {
  transform: translateX(20px);
}

.cookie-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cookie-actions .button {
  min-height: 46px;
  padding: 0 16px;
}

.cookie-text-button,
.cookie-links button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 10px 8px;
  text-decoration: underline;
  text-transform: uppercase;
}

.cookie-links {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.cookie-links a,
.cookie-links button {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 0;
  text-decoration: underline;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 200ms;
}

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

  .category-intro {
    padding-left: 18vw;
  }

  .price-section,
  .contact-section {
    gap: 6vw;
  }

  .footer-grid {
    grid-template-columns: 0.7fr 1fr 1.1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    align-items: flex-start;
    height: var(--header-height);
    justify-content: center;
    padding: 12px 24px;
  }

  .brand {
    height: 68px;
    justify-content: flex-start;
    width: 168px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: calc(100svh - var(--header-height));
    min-height: 620px;
  }

  .hero-image {
    background-position: 60% center;
  }

  .hero-content {
    justify-content: flex-end;
    padding: 50px 7vw 130px;
  }

  .hero h1 {
    font-size: clamp(68px, 15vw, 118px);
  }

  .hero-copy {
    margin: 23px 0 28px;
    max-width: 520px;
  }

  .scroll-cue {
    display: none;
  }

  .intro {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .section-index {
    padding-top: 0;
  }

  .intro-copy {
    max-width: 650px;
  }

  .manifesto,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .manifesto-image,
  .editorial-photo {
    min-height: 520px;
  }

  .manifesto-copy,
  .editorial-panel {
    min-height: 570px;
    padding: 11vw 8vw;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card + .value-card {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    min-height: 0;
    padding: 30px 0 36px;
  }

  .value-card h3 {
    margin-top: 32px;
  }

  .social-wall-heading.section-title,
  .social-wall-grid {
    grid-template-columns: 1fr;
  }

  .social-wall-heading.section-title {
    align-items: start;
    gap: 30px;
  }

  .social-wall-intro {
    max-width: 620px;
  }

  .social-wall-grid-single {
    max-width: none;
  }

  .price-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .price-intro {
    position: static;
  }

  .contact-details {
    max-width: 620px;
  }

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

  .footer-map {
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 135px;
  }

  .hero h1 {
    font-size: clamp(64px, 20vw, 98px);
    max-width: 95%;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-controls {
    bottom: 34px;
    left: 7vw;
    right: auto;
  }

  .hero-controls > button {
    display: none;
  }

  .section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

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

  .certificate-grid {
    gap: 42px;
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .certificate-lightbox {
    padding: 70px 12px 16px;
  }

  .certificate-lightbox-close {
    height: 42px;
    right: 12px;
    top: 14px;
    width: 42px;
  }

  .service-card {
    height: 570px;
  }

  .service-card h3 {
    font-size: 88px;
  }

  .service-card > div:last-of-type {
    bottom: 35px;
    left: 26px;
  }

  .service-arrow {
    bottom: 30px;
    right: 25px;
  }

  .manifesto-image,
  .editorial-photo {
    min-height: 430px;
  }

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

  .top-hero {
    height: 470px;
  }

  .top-hero-image {
    background-position: 60% center;
  }

  .top-hero-content {
    left: 7vw;
  }

  .top-hero-content h1 {
    font-size: 88px;
  }

  .process-item {
    align-items: flex-start;
    gap: 12px 20px;
    grid-template-columns: 45px 1fr;
  }

  .process-item p {
    grid-column: 2;
  }

  .category-intro {
    padding-left: 7vw;
  }

  .price-row {
    gap: 8px;
    grid-template-columns: 26px 1fr auto;
  }

  .price-service {
    line-height: 1.45;
  }

  .price-dots {
    display: none;
  }

  .price-values {
    min-width: 132px;
  }

  .price-value {
    gap: 9px;
    grid-template-columns: 29px auto;
  }

  .price-value-single {
    grid-template-columns: auto;
  }

  .form-row {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 460px;
  }

  .social-network-head {
    grid-template-columns: auto 1fr;
  }

  .social-profile-link {
    grid-column: 2;
    justify-self: start;
  }

  .social-embed-shell {
    min-height: 540px;
    padding: 8px;
  }

  .social-consent-placeholder {
    min-height: 524px;
    padding: 24px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-brand img {
    width: 190px;
  }

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

  .footer-column {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 36px 0;
  }

  .footer-column + .footer-column {
    padding-left: 0;
  }

  .footer-map {
    grid-column: auto;
    padding-top: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-layer {
    padding: 10px;
  }

  .cookie-card {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 20px);
  }

  .cookie-mark {
    font-size: 34px;
    height: 68px;
    writing-mode: horizontal-tb;
  }

  .cookie-copy {
    padding: 26px 22px 22px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .cookie-text-button {
    align-self: flex-start;
  }
}

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

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

/* Kontaktformular: SMTP-Versand und Rueckmeldungen */
#contact-form { scroll-margin-top: 12rem; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-form > input[type="hidden"] { display: none; }
.contact-form .form-feedback { margin: 0 0 1.5rem; padding: 1rem; font-size: 0.9375rem; line-height: 1.6; letter-spacing: 0; text-transform: none; }
.contact-form .form-success { background: #f2f6f2; border-left: 3px solid #345d3c; color: #23452b; }
.contact-form .form-error { background: #fff2f2; border-left: 3px solid #a52e2e; color: #822222; }
.contact-form-note { margin: 1.25rem 0 0; color: #555; font-size: 0.875rem; line-height: 1.6; }
.contact-form button:disabled { opacity: 0.65; cursor: wait; }
