:root {
  --bg-dark: #0b0b0b;
  --surface-dark: #111111;
  --bg-light: #f5f5f2;
  --text-light: #ffffff;
  --text-dark: #111111;
  --muted-light: #b8b8b8;
  --muted-dark: #4f4f4f;
  --border-soft: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(17, 17, 17, 0.12);
  --accent: #d9d1c7;
  --accent-strong: #e9dece;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-xl: 0 35px 80px rgba(0, 0, 0, 0.38);
  --section-gap: clamp(4rem, 9vw, 8rem);
  --container: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-light);
  background: var(--bg-dark);
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding-bottom: 6.6rem;
}

body.loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 0.9rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 78% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    #090909;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader p {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.loader-orb {
  width: 52px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
  box-shadow: 0 0 28px rgba(217, 209, 199, 0.2);
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

main img,
.site-footer img {
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
}

img.loading-image {
  opacity: 0.3;
  filter: grayscale(0.65) blur(7px);
}

img.loaded-image {
  opacity: 1;
  filter: none;
}

.brand-logo {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

h3 {
  font-size: clamp(1.4rem, 3.3vw, 2rem);
}

p {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-padding {
  padding-block: var(--section-gap);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.07) 0, rgba(0, 0, 0, 0) 42%),
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.08) 0, rgba(0, 0, 0, 0) 35%),
    var(--surface-dark);
}

.section-head {
  text-align: center;
  max-width: 760px;
}

.section-head p {
  color: inherit;
  opacity: 0.85;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.section-kicker::before,
.eyebrow::before {
  content: none;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  background: var(--accent);
  color: #000;
  z-index: 1001;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 1rem;
}

.dock-wrap {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1100;
  width: min(94vw, 740px);
}

.dock-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0.35rem;
  padding: 0.44rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 16px 38px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.dock-link {
  position: relative;
  display: grid;
  place-items: center;
  gap: 0.08rem;
  min-height: 58px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.dock-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.dock-link:hover,
.dock-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.dock-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.dock-link.active::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.dock-link span {
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(11, 11, 11, 0.8);
  border-color: var(--border-soft);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  width: min(168px, 45vw);
}

.brand img {
  filter: brightness(1.2) contrast(0.96);
}

.menu {
  position: fixed;
  inset: 74px 1rem auto 1rem;
  background: rgba(14, 14, 14, 0.93);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu a {
  padding: 0.75rem 0.95rem;
  border-radius: 11px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  appearance: none;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08) translateY(var(--hero-shift, 0));
  transform-origin: center top;
  filter: grayscale(0.25) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.75) 58%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(4.5rem, 16vw, 12rem);
  margin-bottom: 1rem;
}

.hero-subhead {
  font-size: clamp(1.08rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin-inline: auto;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  min-height: 48px;
  padding: 0.72rem 1.3rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.glass-card,
.comparison-card,
.price-card,
.timeline-item,
.contact-form,
.dock-link,
.footer-links a,
.gallery-item,
.section h2,
.section-kicker {
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, color 0.28s ease, background-color 0.28s ease;
}

.glass-card:hover,
.comparison-card:hover,
.timeline-item:hover,
.contact-form:hover,
.footer-links a:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #0e0e0e;
  box-shadow: 0 10px 24px rgba(217, 209, 199, 0.25);
}

.button-secondary {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.button-dark {
  border-color: var(--border-dark);
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.03);
}

.editorial-grid {
  display: grid;
  gap: 1.4rem 2.3rem;
}

.editorial-grid p {
  color: var(--muted-dark);
}

.media-block {
  margin-top: 2rem;
}

.media-block img,
.wide-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.wide-media {
  margin-block: 1.6rem 1.8rem;
}

.wide-media img {
  max-height: 74svh;
}

.narrow-copy {
  max-width: 720px;
}

.narrow-copy p {
  color: var(--muted-light);
}

.gallery-horizontal {
  margin-top: 2.1rem;
  position: relative;
}

.gallery-pin {
  position: sticky;
  top: 1.2rem;
  height: calc(100svh - 2.4rem);
  overflow: hidden;
}

.gallery-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: max-content;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.gallery-column {
  flex: 0 0 clamp(220px, 26vw, 340px);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.gallery-item {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  --parallax-y: 0px;
  --hover-x: 0px;
  --hover-y: 0px;
  --img-scale: 1;
  width: 100%;
  height: auto;
  display: block;
  transform: translate3d(var(--hover-x), calc(var(--parallax-y) + var(--hover-y)), 0) scale(var(--img-scale));
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: grayscale(0.2);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  --img-scale: 1.03;
  filter: grayscale(0.04);
}

.gallery-item.style-soft {
  border-radius: 26px;
}

.gallery-item.style-frame {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
}

.gallery-item.style-edge {
  border-radius: 12px;
}

.gallery-item.style-tilt {
  transform: rotate(-0.7deg);
}

.gallery-item.style-glass {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(7px);
}

.gallery-item.style-mono img {
  filter: grayscale(0.8) contrast(1.05);
}

img.parallax-hover:not(.hero-media):not(#lightbox-image) {
  --hover-x: 0px;
  --hover-y: 0px;
  --img-scale: 1;
  transform: translate3d(var(--hover-x), var(--hover-y), 0) scale(var(--img-scale));
  transform-origin: center;
}

img.parallax-hover:not(.hero-media):not(#lightbox-image):hover {
  --img-scale: 1.02;
}

.cards-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.glass-card {
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border-radius: var(--radius-md);
  padding: 1.35rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.25);
}

.glass-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.87);
}

.supporting-copy {
  max-width: 830px;
  margin-top: 1.6rem;
}

.supporting-copy p {
  color: var(--muted-light);
}

.comparison-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.comparison-card {
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-dark);
}

.comparison-card h3 {
  margin-bottom: 0.95rem;
}

.comparison-card li {
  margin-bottom: 0.75rem;
  color: var(--muted-dark);
  position: relative;
  padding-left: 1.25rem;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.comparison-kiosk {
  background: #efefeb;
}

.comparison-pose {
  background: linear-gradient(160deg, rgba(217, 209, 199, 0.35), rgba(217, 209, 199, 0.7));
}

.comparison-pose li {
  color: #252525;
  font-weight: 500;
}

.split-layout {
  display: grid;
  gap: 1.6rem;
}

.checklist {
  margin-top: 1rem;
}

.checklist li {
  padding: 0.9rem 0 0.9rem 2rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.35rem;
  top: 0.82rem;
  color: var(--accent);
  font-weight: 700;
}

.image-frame img {
  border-radius: var(--radius-lg);
  max-height: 74svh;
  object-fit: cover;
}

.pricing-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
}

.price-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.48);
  padding: 1.25rem;
  display: grid;
  gap: 0.8rem;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.price-card.featured {
  background: #111;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.36);
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.88);
}

.price-card .plan-name {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.price-card .price {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 3.1rem);
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
}

.price-card .tagline {
  margin: 0;
  color: inherit;
  opacity: 0.8;
}

.price-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted-dark);
  margin-bottom: 0.52rem;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.price-card:hover,
.price-card:focus-within,
.price-card.active {
  transform: translateY(-8px);
  border-color: rgba(217, 209, 199, 0.85);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.18);
}

.timeline {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.timeline-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.timeline-step {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.section-contact {
  position: relative;
  overflow: clip;
  background: #0a0a0a url("assets/DSC03296.jpg") center/cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0 50%, rgba(0, 0, 0, 0.42) 100%),
    radial-gradient(circle at 10% 20%, rgba(217, 209, 199, 0.14), transparent 35%);
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font: inherit;
  padding: 0.7rem 0.8rem;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.2em;
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.86);
}

.form-status.success {
  color: #d3f9d8;
}

.form-status.error {
  color: #ffd0d0;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.button:focus-visible,
.menu a:focus-visible,
.gallery-item:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.form-note {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #070707;
  border-top: 1px solid var(--border-soft);
  padding: 2.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.footer-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.muted {
  color: rgba(255, 255, 255, 0.68);
}

.qr {
  width: 96px;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.lightbox {
  border: 0;
  width: min(1000px, calc(100% - 2rem));
  padding: 0;
  border-radius: 20px;
  overflow: clip;
  background: #070707;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(2px);
}

.lightbox img {
  max-height: 80svh;
  object-fit: contain;
  background: #111;
}

.lightbox p {
  margin: 0;
  padding: 0.9rem 1rem 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.lightbox-close {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.44);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .dock-link span {
    display: none;
  }

  .dock-link {
    min-height: 52px;
  }
}

@media (min-width: 760px) {
  .editorial-grid {
    grid-template-columns: 1.03fr 1fr;
    align-items: start;
  }

  .gallery-column:nth-child(2n) {
    margin-top: 2.2rem;
  }

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

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

  .split-layout {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
  }

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

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

  .contact-wrap {
    grid-template-columns: 1fr minmax(320px, 430px);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 0.8fr;
    align-items: start;
  }
}

@media (max-width: 900px) {
  .gallery-pin {
    position: static;
    height: auto;
    overflow: visible;
  }

  .gallery-track {
    width: 100%;
    display: block;
    column-count: 2;
    column-gap: 0.72rem;
    transform: none !important;
  }

  .gallery-column {
    display: contents;
  }

  .gallery-column:nth-child(2n) {
    margin-top: 0;
  }

  .gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 0.72rem;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .gallery-item.style-tilt {
    transform: none;
  }
}

@media (max-width: 560px) {
  .gallery-track {
    column-count: 1;
  }
}

@media (min-width: 1200px) {
  .gallery-column {
    flex-basis: 320px;
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
    display: flex;
    gap: 0.2rem;
    padding: 0;
  }

  .menu a {
    padding: 0.56rem 0.75rem;
    font-size: 0.73rem;
    opacity: 0.9;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-media {
    transform: none;
  }

  .page-loader {
    display: none;
  }

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
