:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 59, 48, 0.18), transparent 30%),
    linear-gradient(180deg, #030303 0%, #0a0d11 38%, #050608 100%);
}

.grid-floor {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent);
}

.clip-panel {
  clip-path: polygon(0 0, 100% 0, 100% 84%, 93% 100%, 0 100%);
}

.clip-badge {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.section-label::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 59, 48, 1), rgba(255, 59, 48, 0));
}

.image-mask-a {
  clip-path: polygon(0 0, 100% 0, 100% 83%, 88% 100%, 0 100%);
}

.image-mask-b {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 17%);
}

.noise::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.085) 0.6px, transparent 0.6px);
  background-size: 11px 11px;
  opacity: 0.08;
  mix-blend-mode: screen;
}

.beam {
  position: relative;
  overflow: hidden;
}

.beam::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
  transform: translateX(-65%);
  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  to {
    transform: translateX(65%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.gallery-item {
  cursor: zoom-in;
}

details[open] summary svg {
  transform: rotate(45deg);
}

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

  .beam::after,
  .float {
    animation: none;
  }

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
p,
h1,
h2,
h3 {
  margin: 0;
}

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

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

img,
video {
  display: block;
}

button {
  background: none;
  border: 0;
  padding: 0;
}

.font-body { font-family: "Sora", sans-serif; }
.font-display { font-family: "Chakra Petch", sans-serif; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.list-none { list-style: none; }
.block { display: block; }
.hidden { display: none; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.items-end { align-items: end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.isolate { isolation: isolate; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.top-1\/2 { top: 50%; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-\[70\] { z-index: 70; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[14rem\] { max-width: 14rem; }
.max-h-\[80vh\] { max-height: 80vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[180px\] { min-height: 180px; }
.min-h-\[220px\] { min-height: 220px; }
.min-h-\[260px\] { min-height: 260px; }
.min-h-\[420px\] { min-height: 420px; }
.min-h-\[560px\] { min-height: 560px; }

.h-0\.5 { height: 0.125rem; }
.h-1\.5 { height: 0.375rem; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-28 { height: 7rem; }
.h-64 { height: 16rem; }
.h-full { height: 100%; }
.w-5 { width: 1.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-full { width: 100%; }
.w-px { width: 1px; }

.gap-0 { gap: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pb-24 { padding-bottom: 6rem; }

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; }
.divide-y > * + * { border-top: 1px solid rgba(255,255,255,.1); }
.border-white\/10,
.divide-white\/10 > * + * { border-color: rgba(255,255,255,.1); }
.border-ember\/40 { border-color: rgba(255,59,48,.4); }
.border-ember\/50 { border-color: rgba(255,59,48,.5); }

.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-\[1\.4rem\] { border-radius: 1.4rem; }
.rounded-\[2rem\] { border-radius: 2rem; }

.bg-black { background-color: #000; }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #fff; }
.bg-steel { background-color: #101318; }
.bg-ember { background-color: #ff3b30; }
.bg-white\/5 { background-color: rgba(255,255,255,.05); }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }
.bg-black\/25 { background-color: rgba(0,0,0,.25); }
.bg-black\/30 { background-color: rgba(0,0,0,.3); }
.bg-black\/35 { background-color: rgba(0,0,0,.35); }
.bg-black\/55 { background-color: rgba(0,0,0,.55); }
.bg-black\/70 { background-color: rgba(0,0,0,.7); }
.bg-black\/85 { background-color: rgba(0,0,0,.85); }
.bg-black\/90 { background-color: rgba(0,0,0,.9); }
.bg-ember\/30 { background-color: rgba(255,59,48,.3); }
.bg-\[linear-gradient\(180deg\,rgba\(255\,59\,48\,\.12\)\,rgba\(255\,59\,48\,0\)_42\%\)\,linear-gradient\(180deg\,\#07090c\,\#030303\)\] {
  background: linear-gradient(180deg, rgba(255,59,48,.12), rgba(255,59,48,0) 42%), linear-gradient(180deg, #07090c, #030303);
}
.bg-\[linear-gradient\(135deg\,rgba\(0\,0\,0\,\.25\)\,rgba\(0\,0\,0\,\.8\)\)\,linear-gradient\(180deg\,rgba\(255\,59\,48\,\.2\)\,transparent_45\%\)\] {
  background: linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.8)), linear-gradient(180deg, rgba(255,59,48,.2), transparent 45%);
}
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-white\/10 { --tw-gradient-from: rgba(255,255,255,.1); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-white\/8 { --tw-gradient-from: rgba(255,255,255,.08); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-ember { --tw-gradient-from: #ff3b30; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,59,48,0)); }
.from-ember\/15 { --tw-gradient-from: rgba(255,59,48,.15); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,59,48,0)); }
.from-black { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.from-black\/80 { --tw-gradient-from: rgba(0,0,0,.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.from-black\/90 { --tw-gradient-from: rgba(0,0,0,.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0,0,0,0)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-white\/\[0\.05\] { --tw-gradient-stops: var(--tw-gradient-from), rgba(255,255,255,.05), var(--tw-gradient-to, rgba(255,255,255,0)); }
.via-white\/15 { --tw-gradient-stops: var(--tw-gradient-from), rgba(255,255,255,.15), var(--tw-gradient-to, rgba(255,255,255,0)); }
.via-black\/15 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0,0,0,.15), var(--tw-gradient-to, rgba(0,0,0,0)); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0,0,0,.2), var(--tw-gradient-to, rgba(0,0,0,0)); }
.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220,38,38,0)); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.to-white\/\[0\.02\] { --tw-gradient-to: rgba(255,255,255,.02); }
.to-white\/\[0\.03\] { --tw-gradient-to: rgba(255,255,255,.03); }
.to-white\/0 { --tw-gradient-to: rgba(255,255,255,0); }
.to-white\/5 { --tw-gradient-to: rgba(255,255,255,.05); }
.to-red-800 { --tw-gradient-to: #991b1b; }
.to-transparent { --tw-gradient-to: transparent; }

.text-white { color: #fff; }
.text-chrome { color: #f3f5f7; }
.text-ember { color: #ff3b30; }
.text-mist { color: #8d949e; }
.text-ash { color: #d7dadf; }
.text-ash\/70 { color: rgba(215,218,223,.7); }
.text-ash\/75 { color: rgba(215,218,223,.75); }
.text-ash\/80 { color: rgba(215,218,223,.8); }
.text-ash\/85 { color: rgba(215,218,223,.85); }
.text-white\/70 { color: rgba(255,255,255,.7); }
.text-white\/75 { color: rgba(255,255,255,.75); }
.text-white\/80 { color: rgba(255,255,255,.8); }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }

.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.25; }
.leading-\[0\.92\] { line-height: .92; }

.tracking-\[0\.18em\] { letter-spacing: .18em; }
.tracking-\[0\.12em\] { letter-spacing: .12em; }
.tracking-normal { letter-spacing: 0; }
.tracking-\[0\.2em\] { letter-spacing: .2em; }
.tracking-\[0\.22em\] { letter-spacing: .22em; }
.tracking-\[0\.24em\] { letter-spacing: .24em; }
.tracking-\[0\.28em\] { letter-spacing: .28em; }
.tracking-\[0\.3em\] { letter-spacing: .3em; }
.tracking-\[0\.35em\] { letter-spacing: .35em; }
.tracking-\[0\.4em\] { letter-spacing: .4em; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-top { object-position: top; }
.blur-3xl { filter: blur(64px); }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: .5; }
.shadow-glow { box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 30px 80px rgba(0,0,0,.45); }
.shadow-ember { box-shadow: 0 0 40px rgba(255,59,48,.28); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.transition { transition: all .2s ease; }
.transition-transform { transition: transform .2s ease; }
.duration-300 { transition-duration: .3s; }
.cursor-pointer { cursor: pointer; }
.hover\:text-white:hover { color: #fff; }
.hover\:text-ember:hover { color: #ff3b30; }
.hover\:bg-red-500:hover { background-color: #ef4444; }
.hover\:bg-white\/\[0\.08\]:hover { background-color: rgba(255,255,255,.08); }
.hover\:border-ember\/50:hover { border-color: rgba(255,59,48,.5); }

summary::-webkit-details-marker {
  display: none;
}

.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

.lg\:grid-cols-\[1\.08fr_0\.92fr\] { grid-template-columns: 1fr; }
.lg\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 1fr; }
.lg\:grid-cols-2 { grid-template-columns: 1fr; }
.lg\:grid-cols-3 { grid-template-columns: 1fr; }
.lg\:grid-cols-\[1\.15fr_0\.85fr\] { grid-template-columns: 1fr; }
.lg\:grid-cols-\[1fr_0\.92fr\] { grid-template-columns: 1fr; }
.lg\:grid-cols-\[0\.4fr_0\.6fr\] { grid-template-columns: 1fr; }
.lg\:grid-cols-\[0\.92fr_1\.08fr\] { grid-template-columns: 1fr; }
.sm\:grid-cols-2 { grid-template-columns: 1fr; }
.sm\:grid-cols-3 { grid-template-columns: 1fr; }
.sm\:grid-cols-\[1\.18fr_0\.82fr\] { grid-template-columns: 1fr; }
.md\:grid-cols-2 { grid-template-columns: 1fr; }
.md\:grid-cols-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:h-14 { height: 3.5rem; }
  .sm\:h-16 { height: 4rem; }
  .sm\:w-auto { width: auto; }
  .sm\:bottom-6 { bottom: 1.5rem; }
  .sm\:right-6 { right: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .sm\:inline-block { display: inline-block; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-\[1\.18fr_0\.82fr\] { grid-template-columns: 1.18fr 0.82fr; }
  .sm\:divide-x > * + * { border-left: 1px solid rgba(255,255,255,.1); }
  .sm\:divide-y-0 > * + * { border-top: 0; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:gap-2 { gap: 0.5rem; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:items-center { align-items: center; }
  .lg\:items-end { align-items: end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1\.08fr_0\.92fr\] { grid-template-columns: 1.08fr 0.92fr; }
  .lg\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 0.95fr 1.05fr; }
  .lg\:grid-cols-\[1\.15fr_0\.85fr\] { grid-template-columns: 1.15fr 0.85fr; }
  .lg\:grid-cols-\[1fr_0\.92fr\] { grid-template-columns: 1fr 0.92fr; }
  .lg\:grid-cols-\[0\.4fr_0\.6fr\] { grid-template-columns: 0.4fr 0.6fr; }
  .lg\:grid-cols-\[0\.92fr_1\.08fr\] { grid-template-columns: 0.92fr 1.08fr; }
  .lg\:border-b-0 { border-bottom-width: 0; }
  .lg\:border-r { border-right: 1px solid rgba(255,255,255,.1); }
}

@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (max-width: 1023.98px) {
  .max-lg\:hidden { display: none; }
}

@media (max-width: 767.98px) {
  html,
  body {
    overflow-x: hidden;
  }

  * {
    min-width: 0;
  }

  .clip-panel {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 96% 100%, 0 100%);
  }

  .clip-badge {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  }

  .image-mask-a {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 94% 100%, 0 100%);
  }

  .image-mask-b {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
  }

  .section-label {
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .section-label::before {
    width: 2rem;
  }

  .text-2xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .text-3xl {
    font-size: 1.45rem;
    line-height: 1.8rem;
  }

  .text-4xl {
    font-size: 1.7rem;
    line-height: 2rem;
  }

  .text-5xl {
    font-size: 2.15rem;
    line-height: 0.92;
  }

  .text-base {
    font-size: 0.97rem;
    line-height: 1.55rem;
  }

  .leading-8 {
    line-height: 1.7rem;
  }

  .tracking-\[0\.35em\],
  .tracking-\[0\.4em\] {
    letter-spacing: 0.18em;
  }

  .min-h-screen {
    min-height: auto;
  }

  .min-h-\[180px\] {
    min-height: 170px;
  }

  .min-h-\[220px\] {
    min-height: 190px;
  }

  .min-h-\[260px\] {
    min-height: 210px;
  }

  .min-h-\[420px\] {
    min-height: 320px;
  }

  .min-h-\[560px\] {
    min-height: 360px;
  }

  .p-6 {
    padding: 1.25rem;
  }

  .p-8 {
    padding: 1.5rem;
  }

  .py-24 {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .pb-24 {
    padding-bottom: 4.75rem;
  }

  .pt-20 {
    padding-top: 4.5rem;
  }

  #avaleht > section > .mx-auto {
    gap: 2rem;
    padding-top: 1.75rem;
    padding-bottom: 3rem;
  }

  #avaleht .max-w-3xl .mb-6 {
    margin-bottom: 1rem;
  }

  .hero-title {
    max-width: 9ch;
    overflow-wrap: break-word;
  }

  #avaleht p.max-w-2xl {
    max-width: none;
  }

  #avaleht .clip-badge,
  #avaleht .section-label,
  #avaleht .text-sm,
  #avaleht p {
    overflow-wrap: break-word;
  }

  #avaleht .mt-8.overflow-hidden {
    margin-top: 1.5rem;
  }

  #avaleht .mt-8.overflow-hidden .p-4 {
    padding: 0.9rem 1rem;
  }

  #avaleht .mt-8.overflow-hidden .text-sm {
    font-size: 0.95rem;
    line-height: 1.45rem;
  }

  #avaleht .image-mask-a .p-6,
  #avaleht .image-mask-b .p-5,
  #avaleht .clip-panel.p-6 {
    padding: 1rem;
  }

  #galerii .rounded-\[1\.4rem\] {
    border-radius: 1rem;
  }

  #kontakt .clip-panel .text-4xl,
  #kontakt .clip-panel .text-3xl {
    line-height: 1.1;
  }

  #mobile-cta-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #lightbox {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #lightbox-title {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.16em;
  }
}
