﻿:root {
  --bg: #070707;
  --bg-soft: #111111;
  --text: #f2f2f2;
  --muted: #bbbbbb;
  --line: #222222;
  --accent: #d4b16e;
  --max: 1120px;
  --space-xs: 0.5rem;
  --space-sm: 0.9rem;
  --space-md: 1.3rem;
  --space-lg: 2rem;
  --space-xl: 3.6rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background-color: #000000;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../Hex TILE.png");
  background-repeat: repeat;
  background-size: 67px 39px;
  background-attachment: fixed;
  background-position: left top;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

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

a:hover {
  color: var(--accent);
}

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

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

.page-shell main,
.page-shell .site-footer {
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    filter 360ms ease;
}

.page-shell.is-page-exit main,
.page-shell.is-page-exit .site-footer {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  pointer-events: none;
}

@keyframes page-content-enter {
  0% {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

.page-shell.is-page-enter main,
.page-shell.is-page-enter .site-footer {
  animation: page-content-enter 430ms ease both;
}

.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(8px);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 1rem;
  text-transform: uppercase;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dddddd;
  transition: color 500ms ease, text-shadow 500ms ease, opacity 500ms ease;
}

.site-nav a[aria-current="page"] {
  color: #dddddd;
}

.nav-toggle {
  display: none;
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #f1f1f1;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switcher {
  display: none;
  position: relative;
  margin-left: 0.55rem;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(38, 38, 38, 0.92);
  color: #f3f3f3;
  min-width: 84px;
  height: 48px;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0 0.88rem;
  cursor: pointer;
  transition:
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.lang-chip-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.lang-chip-caret {
  font-size: 0.72rem;
  opacity: 0.86;
  transform: translateY(1px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.lang-switcher.is-open .lang-chip-caret {
  transform: translateY(1px) rotate(180deg);
  opacity: 1;
}

.lang-chip:hover,
.lang-chip:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.36);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 156px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.72rem;
  background: rgba(16, 16, 16, 0.95);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 0.35rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 32;
}

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

.lang-option {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  background: transparent;
  color: #f2f2f2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.62rem;
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.lang-option-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-option-label {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.lang-option:hover,
.lang-option:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.lang-option[aria-selected="true"] {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  padding: var(--space-xl) 0;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  border: 1px solid #1f1f1f;
}

.hero-image {
  width: 100%;
  height: min(62vh, 640px);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  padding: clamp(1.2rem, 3vw, 2.6rem);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 0.3rem 0 0;
  color: #d9d9d9;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.home-page .site-header {
  border-bottom: none;
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .header-row {
  min-height: 88px;
  align-items: center;
  padding-left: 0.7rem;
}

.home-page .logo {
  font-size: clamp(2.15rem, 3.2vw, 2.9rem);
  letter-spacing: 0.06em;
  color: #f8f8f8;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.95),
    0 2px 6px rgba(0, 0, 0, 0.88),
    0 0 12px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 255, 255, 0.14);
  -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.45);
  transition: color 500ms ease, text-shadow 500ms ease, opacity 500ms ease;
}

.home-page .site-nav {
  margin-left: clamp(2.2rem, 5vw, 5.5rem);
  margin-right: auto;
}

.home-page .site-nav a {
  color: #f3f3f3;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.95),
    0 2px 6px rgba(0, 0, 0, 0.88),
    0 0 12px rgba(0, 0, 0, 0.52),
    0 0 18px rgba(255, 255, 255, 0.16);
  -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.45);
}

.home-page .site-nav a[aria-current="page"] {
  color: #ffffff;
}

.home-page .logo:hover,
.home-page .site-nav a:hover {
  color: #8f8f8f;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.98),
    0 2px 7px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(255, 255, 255, 0.3),
    0 0 34px rgba(255, 255, 255, 0.17);
  opacity: 0.95;
}

.home-page .logo:focus-visible,
.home-page .site-nav a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
  color: #8f8f8f;
}

.home-page .lang-switcher {
  display: inline-flex;
}

.home-hero {
  padding: 0;
}

.home-hero-image-wrap {
  width: 100%;
  overflow: hidden;
  border: none;
}

.home-hero-image {
  width: 100%;
  height: min(73vh, 760px);
  object-fit: cover;
  object-position: center center;
  filter: none;
}

@keyframes home-hero-reveal {
  0% {
    opacity: 0;
    filter: blur(16px) saturate(0.82) brightness(0.84);
  }

  72% {
    opacity: 1;
    filter: blur(1.5px) saturate(1.03) brightness(0.98);
  }

  100% {
    opacity: 1;
    filter: none;
  }
}

@keyframes home-menu-slide-snap {
  0% {
    opacity: 0;
    transform: translateX(-52px);
  }

  74% {
    opacity: 1;
    transform: translateX(6px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-intro {
  background: #000000;
  text-align: center;
  padding: clamp(0.45rem, 1.45vw, 1rem) 0 clamp(2.2rem, 5vw, 4.7rem);
}

.home-display-title {
  margin: 0;
  font-size: clamp(2rem, 5.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 500ms ease, text-shadow 500ms ease, opacity 500ms ease;
}

.home-title-link:hover,
.home-title-link:focus-visible {
  color: #9c9c9c;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.92),
    0 0 16px rgba(255, 255, 255, 0.34),
    0 0 30px rgba(255, 255, 255, 0.2);
  opacity: 0.98;
}

.home-display-subtitle {
  margin: clamp(1.1rem, 2.4vw, 2.2rem) 0 0;
  color: #efefef;
  letter-spacing: 0.2em;
  font-size: clamp(1.15rem, 2vw, 2rem);
  text-transform: lowercase;
}

.home-subtitle-link {
  color: inherit;
  text-decoration: none;
  transition: color 500ms ease, text-shadow 500ms ease, opacity 500ms ease;
}

.home-subtitle-link:hover,
.home-subtitle-link:focus-visible {
  color: #9b9b9b;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.9),
    0 0 14px rgba(255, 255, 255, 0.32),
    0 0 24px rgba(255, 255, 255, 0.17);
  opacity: 0.98;
}

@keyframes home-intro-rise {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page .quick-links {
  background: #000000;
  padding-top: 0.4rem;
}

.home-page .quick-links .section-title {
  display: none;
}

.home-feature-links {
  padding-bottom: clamp(1.4rem, 3.4vw, 2.8rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.8vw, 2.5rem);
  align-items: start;
}

.feature-tile {
  position: relative;
  display: block;
  width: 100%;
  max-width: 416px;
  margin: 0 auto;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(120, 120, 120, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 18px 28px rgba(0, 0, 0, 0.48);
}

.feature-image-stack {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    filter 320ms ease;
}

.feature-image-top {
  opacity: 1;
}

.feature-image-bottom {
  opacity: 0;
  filter: brightness(1.03) saturate(1.02);
}

.feature-frame {
  position: absolute;
  inset: 4.6%;
  border: 2px solid rgba(235, 235, 235, 0.68);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 22px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.feature-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.45rem, 3.2vw, 4rem);
  font-weight: 500;
  color: rgba(248, 248, 248, 0.98);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 0 8px rgba(0, 0, 0, 0.35);
  transition:
    color 300ms ease,
    text-shadow 300ms ease;
  pointer-events: none;
}

.feature-tile:hover .feature-image-top,
.feature-tile:focus-visible .feature-image-top {
  opacity: 0;
}

.feature-tile:hover .feature-image-bottom,
.feature-tile:focus-visible .feature-image-bottom {
  opacity: 1;
  filter: brightness(1.12) saturate(1.06) drop-shadow(0 0 15px rgba(255, 255, 255, 0.22));
}

.feature-tile:hover .feature-label,
.feature-tile:focus-visible .feature-label {
  color: #ffffff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(255, 255, 255, 0.26);
}

.feature-tile:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.76);
  outline-offset: 3px;
}

.quick-links {
  padding: 0 0 var(--space-xl);
}

.section-title,
.page-title {
  margin: 0 0 var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.link-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #111111, #0b0b0b);
  min-height: 108px;
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.86rem;
  transition: border-color 140ms ease, transform 140ms ease;
}

.link-card:hover {
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

.page-header {
  padding: var(--space-xl) 0 var(--space-md);
}

.page-intro {
  color: var(--muted);
  max-width: 76ch;
}

.content-section {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.about-portrait {
  border: 1px solid #262626;
}

.about-paragraphs p {
  margin: 0 0 0.95rem;
  color: #dddddd;
}

.info-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #dbdbdb;
}

.info-list li {
  margin: 0 0 0.65rem;
}

.muted {
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.about-textbox {
  border: 1px solid #252525;
  background: #0f0f0f;
  padding: clamp(1rem, 2.6vw, 1.7rem);
  margin: 0 auto;
  text-align: left;
}

.about-textbox .section-title:first-child {
  margin-top: 0;
}

.about-textbox .section-title:not(:first-child) {
  margin-top: 1.65rem;
}

body.about-page .about-textbox .section-title {
  text-align: center;
}

.about-back-row {
  margin: 1.25rem 0 0;
  text-align: center;
}

.about-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 0.62rem 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.about-back-button:hover,
.about-back-button:focus-visible {
  color: #f4f4f4;
  border-color: var(--accent);
}

body.about-page .about-paragraphs a,
body.about-page .about-textbox a {
  color: #b98739;
}

body.about-page .about-paragraphs a:hover,
body.about-page .about-textbox a:hover {
  color: var(--accent);
}

.music-hero {
  position: relative;
  min-height: min(54vh, 590px);
  overflow: hidden;
}

.music-hero-image {
  width: 100%;
  height: min(54vh, 590px);
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.04);
}

.music-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 10, 26, 0.56), rgba(0, 0, 0, 0.66)),
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1));
}

.music-hero-content {
  height: min(54vh, 590px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: calc(clamp(1.1rem, 2.6vw, 2rem) + 2cm);
}

.music-hero-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  color: #f8f8f8;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 0 16px rgba(63, 106, 226, 0.26);
}

.music-hero-links {
  margin-top: clamp(0.95rem, 2vw, 1.35rem);
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.music-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.46rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  color: #f0f0f0;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.75),
    0 0 10px rgba(255, 255, 255, 0.14);
  transition: color 320ms ease, text-shadow 320ms ease, opacity 320ms ease;
}

.music-hero-link img {
  width: 20px;
  height: 20px;
}

.music-hero-link:hover,
.music-hero-link:focus-visible {
  color: var(--accent);
  text-shadow:
    0 1px 5px rgba(0, 0, 0, 0.82),
    0 0 14px rgba(212, 177, 110, 0.38);
}

.music-hero-copy {
  margin: 1rem auto 0;
  max-width: 900px;
  text-align: center;
  color: #e7e7e7;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.music-intro-copy {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  color: #e7e7e7;
  letter-spacing: 0.04em;
}

.music-videos-section {
  padding-top: 1.2rem;
  padding-bottom: 0;
}

.music-video-row {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}

.music-video-row-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.music-video-row-wide {
  max-width: min(100%, 980px);
  margin-inline: auto;
}

.music-video-card {
  margin: 0;
}

.music-video-title {
  margin: 0 0 0.58rem;
  text-align: center;
  font-size: clamp(0.9rem, 1.7vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #f2f2f2;
}

.music-video-embed {
  border: 1px solid #262626;
  background: #0f0f0f;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 10px 24px rgba(0, 0, 0, 0.42);
}

.music-video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.music-video-fallback {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #ffffff;
}

.music-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.95);
  transition: transform 260ms ease, filter 260ms ease;
}

.music-video-fallback-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.25));
}

.music-video-fallback-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(8, 8, 8, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

.music-video-fallback-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.music-video-fallback-play svg {
  width: clamp(54px, 9vw, 78px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.music-video-fallback:hover img,
.music-video-fallback:focus-visible img {
  transform: scale(1.03);
  filter: brightness(0.84) saturate(1);
}

.music-video-fallback:hover .music-video-fallback-text,
.music-video-fallback:focus-visible .music-video-fallback-text {
  border-color: rgba(212, 177, 110, 0.9);
  color: var(--accent);
}

.music-video-fallback:hover .music-video-fallback-play svg,
.music-video-fallback:focus-visible .music-video-fallback-play svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.48));
}

.music-block-title {
  margin: 0.45rem 0 0.8rem;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.07em;
  color: #f4f4f4;
}

.music-covers-heading {
  margin-top: 1.15rem;
  margin-bottom: 0.6rem;
  text-align: center;
}

.music-session-heading {
  margin-top: 0.2rem;
  margin-bottom: 1.1rem;
  text-align: center;
}

.music-covers-copy {
  margin-bottom: 1.35rem;
}

.music-back-row {
  margin: 1.25rem 0 0;
  text-align: center;
}

.music-videos-section .music-video-row:last-of-type {
  margin-bottom: 0;
}

.music-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 0.62rem 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.music-back-button:hover,
.music-back-button:focus-visible {
  color: #f4f4f4;
  border-color: var(--accent);
}

.portfolio-page-header {
  padding-top: clamp(2.1rem, 4.4vw, 3.6rem);
}

.portfolio-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.05rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-intro-section {
  padding-top: 1.2rem;
}

.portfolio-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(1.1rem, 2.5vw, 2.2rem);
  align-items: center;
}

.portfolio-intro-copy {
  max-width: 860px;
}

.portfolio-role {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #dcdcdc;
  font-size: 0.82rem;
}

.portfolio-name {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.portfolio-intro-text {
  margin: 0;
  color: #e1e1e1;
}

.portfolio-resume-wrap {
  margin: 1.02rem 0 0;
}

.portfolio-resume-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 0.62rem 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.portfolio-resume-link:hover,
.portfolio-resume-link:focus-visible {
  color: #f4f4f4;
  border-color: var(--accent);
}

.portfolio-hero-media {
  margin: 0;
  border: 1px solid #262626;
  background: #0b0b0b;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 10px 24px rgba(0, 0, 0, 0.38);
}

.portfolio-hero-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.portfolio-media-section {
  padding-top: 1.05rem;
}

.portfolio-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.portfolio-media-card {
  margin: 0;
}

.portfolio-media-title {
  margin: 0 0 0.55rem;
  text-align: center;
  font-size: clamp(0.9rem, 1.7vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.045em;
  color: #f2f2f2;
}

.portfolio-video-embed {
  border: 1px solid #262626;
  background: #0f0f0f;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 10px 24px rgba(0, 0, 0, 0.38);
}

.portfolio-video-embed iframe,
.portfolio-video-embed video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #060606;
}

.portfolio-media-link {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-media-link a {
  color: #e2e2e2;
  border-bottom: 1px solid rgba(220, 220, 220, 0.3);
}

.portfolio-media-link a:hover,
.portfolio-media-link a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.portfolio-back-row {
  margin: 1.35rem 0 0;
  text-align: center;
}

.music-highlight {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  align-items: center;
}

.music-cover {
  border: 1px solid #262626;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a3a3a;
  padding: 0.62rem 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button-link:hover {
  border-color: var(--accent);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-item {
  border: 1px solid #262626;
  background: #0f0f0f;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.video-caption {
  margin: 0;
  padding: 0.6rem 0.75rem 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.category-row li {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8d8d8;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  border: 1px solid #232323;
  display: block;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 150ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-note {
  color: var(--muted);
  margin-top: 1rem;
}

.photos-page-header {
  padding-top: clamp(2.2rem, 5vw, 3.9rem);
}

.photos-title {
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8f8f8;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 0 16px rgba(63, 106, 226, 0.26);
}

.photos-instagram-row {
  margin: 0.45rem 0 0;
  text-align: center;
}

.photos-instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #f3f3f3;
  transition: color 260ms ease, text-shadow 260ms ease;
}

.photos-instagram-link img {
  width: 24px;
  height: 24px;
}

.photos-instagram-link:hover,
.photos-instagram-link:focus-visible {
  color: var(--accent);
  text-shadow:
    0 0 10px rgba(212, 177, 110, 0.28),
    0 1px 3px rgba(0, 0, 0, 0.85);
}

.photos-title-divider {
  width: min(100%, 520px);
  margin: 0.72rem auto 0;
  border-top: 1px solid rgba(235, 235, 235, 0.62);
}

.photos-categories {
  width: min(100%, 860px);
  margin: 0.95rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1.2rem;
}

.photos-category-link {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #ededed;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.9rem, 1.75vw, 1.3rem);
  line-height: 1.2;
  text-align: center;
  padding: 0.34rem 0.6rem;
  cursor: pointer;
  transition:
    color 260ms ease,
    text-shadow 260ms ease,
    opacity 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.photos-category-link:hover,
.photos-category-link:focus-visible {
  color: var(--accent);
  text-shadow:
    0 0 12px rgba(212, 177, 110, 0.24),
    0 1px 3px rgba(0, 0, 0, 0.82);
}

.photos-category-link.is-active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.3),
    0 1px 3px rgba(0, 0, 0, 0.84);
}

.photos-gallery-shell {
  margin-top: 1.1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(225, 225, 225, 0.56);
}

.photos-back-row {
  margin: 1.25rem 0 0;
  text-align: center;
}

.photos-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252525;
  background: #0f0f0f;
  color: #f4f4f4;
  padding: 0.62rem 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.photos-back-button:hover,
.photos-back-button:focus-visible {
  color: #f4f4f4;
  border-color: var(--accent);
}

.photos-gallery-description {
  margin: 0;
  text-align: center;
  color: #e8e8e8;
  font-size: clamp(0.88rem, 1.3vw, 1.08rem);
  letter-spacing: 0.04em;
  font-style: italic;
}

.photos-travel-link-wrap {
  margin: 1.05rem 0 0;
  text-align: center;
}

.photos-travel-link {
  border-color: rgba(214, 214, 214, 0.5);
  background: rgba(8, 8, 8, 0.72);
}

.photos-gallery-stage {
  margin-top: 1rem;
  transition: opacity 240ms ease, transform 240ms ease, filter 240ms ease;
}

.photos-gallery-stage.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(1.7px);
}

.photos-gallery-stage.is-fading-in {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.photos-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.photos-gallery-card {
  position: relative;
  display: block;
  border: 1px solid rgba(206, 206, 206, 0.42);
  overflow: hidden;
  background: transparent;
}

.photos-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.photos-gallery-card:hover img,
.photos-gallery-card:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.03) saturate(1.03);
}

.photos-gallery-status {
  grid-column: 1 / -1;
  margin: 1rem 0;
  text-align: center;
  color: #cfcfcf;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.place-tags li {
  border: 1px solid #303030;
  padding: 0.38rem 0.55rem;
  font-size: 0.73rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.travel-gallery-header {
  padding-bottom: 0;
}

.travel-gallery-title {
  margin-bottom: 0;
}

.travel-main-back-row {
  margin: 0.72rem 0 0;
  text-align: center;
}

.travel-main-back-link {
  margin-top: 0;
}

.travel-locations-shell {
  width: min(100%, 1080px);
  margin: 0.95rem auto 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 0.58rem;
  align-items: stretch;
}

.travel-locations-window {
  border: 1px solid rgba(231, 231, 231, 0.56);
  background: rgba(8, 8, 8, 0.76);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 10px 20px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.travel-locations-strip {
  --travel-tabs-count: 6;
  display: grid;
  grid-template-columns: repeat(var(--travel-tabs-count), minmax(0, 1fr));
  gap: 0.46rem;
  padding: 0.45rem;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}

.travel-locations-strip.is-switching {
  opacity: 0.15;
  transform: translateY(8px);
  filter: blur(1.8px);
}

.travel-location-link {
  width: 100%;
  padding: 0.42rem 0.34rem;
  font-size: clamp(0.73rem, 1.08vw, 0.86rem);
  letter-spacing: 0.09em;
  border-radius: 0.46rem;
}

.travel-locations-arrow {
  appearance: none;
  border: 1px solid rgba(225, 225, 225, 0.42);
  background: rgba(8, 8, 8, 0.84);
  color: #f4f4f4;
  font-size: 1.42rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.travel-locations-arrow:hover,
.travel-locations-arrow:focus-visible {
  color: var(--accent);
  border-color: rgba(212, 177, 110, 0.64);
  background: rgba(16, 16, 16, 0.95);
  box-shadow: 0 0 10px rgba(212, 177, 110, 0.16);
}

.travel-locations-arrow:disabled {
  opacity: 0.42;
  cursor: default;
}

.travel-gallery-shell {
  margin-top: 0.95rem;
}

.travel-gallery-stage {
  margin-top: 0;
}

.travel-page-back-row {
  margin-top: 1.25rem;
}

.travel-gallery-card img {
  aspect-ratio: 4 / 3;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.contact-card,
.contact-form {
  border: 1px solid #252525;
  background: #0f0f0f;
  padding: 1rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.32rem;
  text-transform: uppercase;
  color: #d7d7d7;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #333333;
  background: #090909;
  color: #f3f3f3;
  padding: 0.6rem 0.7rem;
  margin: 0 0 0.85rem;
  font: inherit;
}

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

.form-button {
  border: 1px solid #4b4b4b;
  background: #141414;
  color: #f4f4f4;
  padding: 0.62rem 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.contact-minimal {
  padding: clamp(2.2rem, 5vw, 4.1rem) 0 clamp(2.5rem, 6vw, 5.2rem);
}

.contact-minimal-wrap {
  width: min(100% - 2.2rem, 980px);
}

.contact-minimal-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 5.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f8f8f8;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 0 16px rgba(63, 106, 226, 0.26);
}

.contact-minimal-intro {
  margin: clamp(1.8rem, 3.8vw, 3.1rem) 0 0;
  color: #ececec;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  letter-spacing: 0.02em;
  text-align: center;
}

.contact-minimal-feedback {
  margin: 1rem 0 0;
  color: #d7d7d7;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.contact-minimal-form {
  margin-top: clamp(1.8rem, 4vw, 3.1rem);
  width: min(100%, 760px);
  margin-inline: auto;
}

.contact-honeypot {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-row {
  margin-bottom: clamp(1.25rem, 2.1vw, 1.95rem);
}

.contact-row-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2.1rem);
}

.contact-line-field {
  display: block;
}

.contact-line-field span {
  display: block;
  margin: 0 0 0.44rem;
  color: #f1f1f1;
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  letter-spacing: 0.02em;
}

.contact-line-field input,
.contact-line-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(235, 235, 235, 0.82);
  background: transparent;
  color: #f5f5f5;
  font: inherit;
  padding: 0 0 0.35rem;
  border-radius: 0;
}

.contact-line-field textarea {
  min-height: clamp(9rem, 21vh, 14rem);
  resize: vertical;
  padding-top: 0.2rem;
}

.contact-line-field input:focus-visible,
.contact-line-field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: 0 1px 0 0 var(--accent);
}

.contact-send-wrap {
  margin-top: clamp(0.35rem, 1vw, 0.65rem);
  text-align: center;
}

.contact-send-button {
  border: 0;
  background: transparent;
  color: #f3f3f3;
  font-size: clamp(1.2rem, 1.9vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: color 260ms ease, text-shadow 260ms ease, opacity 260ms ease;
}

.contact-send-button:hover,
.contact-send-button:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(212, 177, 110, 0.3);
}

.contact-back-wrap {
  margin: clamp(2.2rem, 5vw, 4.2rem) 0 0;
  text-align: center;
}

.contact-back-link {
  display: inline-block;
  text-transform: uppercase;
  color: #f3f3f3;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  letter-spacing: 0.08em;
  transition: color 260ms ease, text-shadow 260ms ease, opacity 260ms ease;
}

.contact-back-link:hover,
.contact-back-link:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(212, 177, 110, 0.32);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: var(--space-xl);
  padding: 1.2rem 0 1.6rem;
  text-align: center;
}

.site-footer-empty {
  display: none;
}

.footer-contact {
  color: #d0d0d0;
  font-size: 0.92rem;
}

.footer-contact a {
  color: #efefef;
}

.social-links {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.social-links img {
  width: 22px;
  height: 22px;
}

.footer-meta {
  margin-top: 0.9rem;
  color: #aaaaaa;
  font-size: 0.78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  overscroll-behavior: contain;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: grab;
}

.lightbox-stage.is-grabbing {
  cursor: grabbing;
}

.lightbox-image-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
  transform-origin: center center;
  will-change: transform, opacity;
  transition: transform 220ms ease, opacity 220ms ease;
}

.lightbox-image-next {
  opacity: 0;
}

.lightbox-stage.is-sliding-next .lightbox-image-current {
  animation: lightbox-slide-out-next 250ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lightbox-stage.is-sliding-next .lightbox-image-next {
  opacity: 1;
  animation: lightbox-slide-in-next 250ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lightbox-stage.is-sliding-prev .lightbox-image-current {
  animation: lightbox-slide-out-prev 250ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.lightbox-stage.is-sliding-prev .lightbox-image-next {
  opacity: 1;
  animation: lightbox-slide-in-prev 250ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lightbox-slide-out-next {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-16%) scale(0.98);
  }
}

@keyframes lightbox-slide-in-next {
  from {
    opacity: 0;
    transform: translateX(16%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes lightbox-slide-out-prev {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(16%) scale(0.98);
  }
}

@keyframes lightbox-slide-in-prev {
  from {
    opacity: 0;
    transform: translateX(-16%) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 8, 8, 0.68);
  color: #f8f8f8;
  width: 50px;
  height: 54px;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-nav-prev {
  left: max(0.25rem, 1.2vw);
}

.lightbox-nav-next {
  right: max(0.25rem, 1.2vw);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: max(0.65rem, 1.3vh);
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.3rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 10, 10, 0.58);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  color: #f0f0f0;
}

.lightbox-close {
  position: absolute;
  top: max(0.45rem, 1.1vh);
  right: max(0.45rem, 1.1vw);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(12, 12, 12, 0.74);
  color: #f0f0f0;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes motion-glideIn {
  0% {
    opacity: 0;
    animation-timing-function: step-end;
  }

  0.0001% {
    opacity: var(--comp-opacity, 1);
    transform: translate(
      var(--motion-translate-x, 0),
      var(--motion-translate-y, 26px)
    );
  }

  100% {
    opacity: var(--comp-opacity, 1);
    transform: translate(0, 0);
  }
}

[data-motion-enter="init"] {
  opacity: 0;
}

[data-motion-enter="active"],
[data-motion-enter="done"] {
  opacity: var(--comp-opacity, 1);
}

@media (prefers-reduced-motion: no-preference) {
  .home-page .home-hero-image {
    will-change: opacity, filter;
    animation: home-hero-reveal 1000ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
  }

  .home-page .home-display-title,
  .home-page .home-display-subtitle {
    opacity: 0;
    will-change: transform, opacity;
    animation: home-intro-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .home-page .home-display-title {
    animation-delay: 200ms;
  }

  .home-page .home-display-subtitle {
    animation-delay: 360ms;
  }

  [data-motion-enter] {
    animation: motion-glideIn var(--motion-duration, 420ms)
      var(--motion-delay, 1ms) cubic-bezier(0.645, 0.045, 0.355, 1) backwards 1
      paused;
    animation-composition: replace;
  }

  [data-motion-enter="active"] {
    animation-play-state: running;
  }

  [data-motion-enter="done"] {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-shell main,
  .page-shell .site-footer {
    transition: none !important;
    animation: none !important;
  }

  .page-shell.is-page-exit main,
  .page-shell.is-page-exit .site-footer {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .home-page .home-hero-image {
    opacity: 1 !important;
    filter: none !important;
    animation: none !important;
  }

  .home-page .home-display-title,
  .home-page .home-display-subtitle {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  [data-motion-enter] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .lightbox-image,
  .lightbox-stage,
  .lightbox-stage.is-sliding-next .lightbox-image-current,
  .lightbox-stage.is-sliding-next .lightbox-image-next,
  .lightbox-stage.is-sliding-prev .lightbox-image-current,
  .lightbox-stage.is-sliding-prev .lightbox-image-next {
    transition: none !important;
    animation: none !important;
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  html:not(.header-intro-complete) .site-nav li {
    opacity: 0;
    will-change: transform, opacity;
    animation: home-menu-slide-snap 580ms cubic-bezier(0.22, 0.89, 0.36, 1.02) both;
  }

  html:not(.header-intro-complete) .site-nav li:nth-child(1) {
    animation-delay: 120ms;
  }

  html:not(.header-intro-complete) .site-nav li:nth-child(2) {
    animation-delay: 240ms;
  }

  html:not(.header-intro-complete) .site-nav li:nth-child(3) {
    animation-delay: 360ms;
  }

  html:not(.header-intro-complete) .site-nav li:nth-child(4) {
    animation-delay: 480ms;
  }
}

@media (min-width: 901px) {
  .site-header {
    border-bottom: none;
    position: absolute;
    inset: 0 0 auto 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 30;
  }

  .header-row {
    min-height: 88px;
    align-items: center;
    padding-left: 0.7rem;
  }

  .logo {
    font-size: clamp(2.15rem, 3.2vw, 2.9rem);
    letter-spacing: 0.06em;
    color: #f8f8f8;
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.95),
      0 2px 6px rgba(0, 0, 0, 0.88),
      0 0 12px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(255, 255, 255, 0.14);
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.45);
    transition: color 500ms ease, text-shadow 500ms ease, opacity 500ms ease;
  }

  .site-nav {
    margin-left: clamp(2.2rem, 5vw, 5.5rem);
    margin-right: auto;
  }

  .site-nav a {
    color: #f3f3f3;
    text-shadow:
      0 0 1px rgba(0, 0, 0, 0.95),
      0 2px 6px rgba(0, 0, 0, 0.88),
      0 0 12px rgba(0, 0, 0, 0.52),
      0 0 18px rgba(255, 255, 255, 0.16);
    -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.45);
  }

  .site-nav a[aria-current="page"] {
    color: #f3f3f3;
  }

  .logo:hover,
  .site-nav a:hover {
    color: #8f8f8f;
    text-shadow:
      0 0 2px rgba(0, 0, 0, 0.98),
      0 2px 7px rgba(0, 0, 0, 0.9),
      0 0 18px rgba(255, 255, 255, 0.3),
      0 0 34px rgba(255, 255, 255, 0.17);
    opacity: 0.95;
  }

  .logo:focus-visible,
  .site-nav a:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
    color: #8f8f8f;
  }

  .lang-chip {
    height: 46px;
    min-width: 82px;
  }

  .lang-switcher {
    display: inline-flex;
  }

  body:not(.home-page) main {
    padding-top: 88px;
  }

  body.about-page main,
  body.music-page main,
  body.photos-page main,
  body.contact-page main {
    padding-top: calc(88px - 2cm);
  }

  body.about-page .page-title,
  body.music-page .page-title,
  body.photos-page .page-title,
  body.contact-page .page-title {
    text-align: center;
  }

  body.about-page .page-header {
    padding-bottom: max(0.25rem, calc(var(--space-md) - 5mm));
  }

  body.music-page main {
    padding-top: 0;
  }

  body.music-page .music-hero,
  body.music-page .music-hero-image,
  body.music-page .music-hero-content {
    min-height: min(50vh, 514px);
    height: min(50vh, 514px);
  }

  body.music-page .music-hero-content {
    padding-bottom: max(
      0.5rem,
      calc(clamp(1.1rem, 2.6vw, 2rem) + 2cm - 70mm)
    );
  }

  body.music-page .music-videos-section {
    margin-top: 0;
  }

  body.about-page .about-grid {
    align-items: center;
  }

  body.about-page .about-grid > .about-portrait {
    margin-top: -1cm;
  }

  body.about-page .about-textbox {
    max-width: 920px;
  }

  body.about-page .about-back-row,
  body.music-page .music-back-row,
  body.photos-page .photos-back-row {
    margin-top: 1.25rem;
  }

  body.about-page .site-footer,
  body.music-page .site-footer,
  body.photos-page .site-footer {
    margin-top: 1.25rem;
  }

  body.contact-page .contact-minimal {
    padding-top: clamp(2.2rem, 5vw, 3.9rem);
    padding-bottom: clamp(1.4rem, 3.2vw, 2.4rem);
  }

  body.contact-page .contact-minimal-intro {
    margin-top: 5mm;
  }

  body.contact-page .contact-minimal-form {
    margin-top: 1cm;
    width: min(100%, 620px);
  }

  body.contact-page .contact-row {
    margin-bottom: clamp(0.85rem, 1.45vw, 1.2rem);
  }

  body.contact-page .contact-line-field textarea {
    min-height: clamp(6rem, 14vh, 8.8rem);
  }

  body.contact-page .contact-back-wrap {
    margin-top: 1cm;
  }

  body.contact-page .contact-send-wrap {
    margin-top: 1cm;
  }

  .home-page .home-display-subtitle {
    margin-top: clamp(0.72rem, 1.35vw, 1.25rem);
  }

  .home-page .home-feature-links {
    margin-top: -4.3rem;
    padding-top: 1.7rem;
    padding-bottom: 2.3rem;
  }

  .home-page .site-footer {
    margin-top: 0;
    padding-bottom: 0.2rem;
  }
}

@media (max-width: 900px) {
  .site-header,
  .home-page .site-header {
    position: sticky;
    background: rgba(7, 7, 7, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }

  .logo,
  .home-page .logo {
    font-size: 1.52rem;
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 0.9rem;
    align-self: center;
  }

  .lang-switcher {
    display: inline-flex;
  }

  .lang-chip {
    height: 40px;
    min-width: 66px;
    padding: 0 0.62rem;
    border-radius: 0.62rem;
    font-size: 0.9rem;
  }

  .lang-chip-flag {
    font-size: 0.98rem;
  }

  .lang-chip-caret {
    font-size: 0.66rem;
  }

  .lang-menu {
    min-width: 140px;
    padding: 0.3rem;
  }

  .lang-option {
    padding: 0.42rem 0.52rem;
    gap: 0.48rem;
  }

  .lang-option-label {
    font-size: 0.78rem;
  }

  .site-nav,
  .home-page .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    margin-left: 0;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li {
    border-top: 1px solid #1d1d1d;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 1.1rem;
  }

  .about-grid,
  .music-highlight,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  body.about-page .page-header {
    padding-top: 1.2rem;
    padding-bottom: 0.45rem;
  }

  body.about-page .content-section:first-of-type {
    padding-top: 0.85rem;
  }

  body.about-page .about-grid {
    gap: 0.85rem;
  }

  body.about-page .about-grid > .about-portrait {
    width: min(100%, 228px);
    margin-inline: auto;
  }

  body.about-page .about-paragraphs p,
  body.about-page .about-textbox,
  body.about-page .about-textbox .muted,
  body.about-page .about-textbox .info-list li {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  body.about-page .about-textbox {
    padding: 0.95rem;
  }

  body.about-page .about-back-row {
    margin-top: 1rem;
  }

  body.about-page .site-footer {
    margin-top: 1rem;
  }

  .contact-minimal-title,
  .contact-minimal-intro {
    text-align: center;
  }

  .contact-row-two {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-minimal-intro {
    margin-top: 0.75rem;
  }

  .contact-minimal-form {
    margin-top: 0.8rem;
    width: min(100%, 500px);
  }

  .contact-minimal {
    padding-top: 1.05rem;
    padding-bottom: 1.35rem;
  }

  .contact-minimal-wrap {
    width: min(100% - 1.2rem, 560px);
  }

  .contact-row {
    margin-bottom: 0.85rem;
  }

  .contact-row-two {
    gap: 0.9rem;
  }

  .contact-line-field textarea {
    min-height: 6.2rem;
  }

  .contact-send-wrap {
    margin-top: 0.45rem;
  }

  .contact-back-wrap {
    margin-top: 1rem;
  }

  .video-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .photos-title {
    letter-spacing: 0.2em;
    font-size: clamp(2rem, 5.6vw, 3.4rem);
  }

  .photos-instagram-link {
    width: 30px;
    height: 30px;
  }

  .photos-instagram-link img {
    width: 20px;
    height: 20px;
  }

  .photos-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 560px);
    gap: 0.45rem 0.65rem;
  }

  .photos-category-link {
    font-size: clamp(0.72rem, 2.35vw, 0.88rem);
    letter-spacing: 0.1em;
    padding: 0.28rem 0.32rem;
  }

  .photos-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .photos-gallery-description {
    font-size: clamp(0.82rem, 2.8vw, 0.96rem);
  }

  body.photos-page .photos-page-header {
    padding-top: 1.15rem;
  }

  body.photos-page .photos-instagram-row {
    margin-top: 0.3rem;
  }

  body.photos-page .photos-categories {
    margin-top: 0.7rem;
  }

  body.photos-page .photos-gallery-shell {
    margin-top: 0.75rem;
    padding-top: 0.8rem;
  }

  body.photos-page .photos-back-row {
    margin-top: 1rem;
  }

  body.photos-page .site-footer {
    margin-top: 1rem;
  }

  .travel-locations-shell {
    margin-top: 0.75rem;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.42rem;
  }

  .travel-locations-strip {
    gap: 0.36rem;
    padding: 0.34rem;
  }

  .travel-location-link {
    font-size: clamp(0.68rem, 1.9vw, 0.8rem);
    letter-spacing: 0.08em;
    padding: 0.34rem 0.2rem;
  }

  body.gallery-page .travel-gallery-shell {
    margin-top: 0.75rem;
    padding-top: 0.8rem;
  }

  body.gallery-page .travel-page-back-row {
    margin-top: 1rem;
  }

  body.gallery-page .site-footer {
    margin-top: 1rem;
  }

  .lightbox-nav {
    width: 42px;
    height: 46px;
    font-size: 1.6rem;
  }

  .lightbox-counter {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  body.music-page .music-hero,
  body.music-page .music-hero-image,
  body.music-page .music-hero-content {
    min-height: min(56vh, 534px);
    height: min(56vh, 534px);
  }

  body.music-page .music-hero-content {
    justify-content: center;
    padding-top: 2.9rem;
    padding-bottom: 0.9rem;
  }

  .music-hero-links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: min(100%, 440px);
  }

  body.music-page .music-videos-section {
    padding-top: 0.9rem;
  }

  body.music-page .music-back-row {
    margin-top: 1rem;
  }

  body.music-page .site-footer {
    margin-top: 1rem;
  }

  .music-video-row-two {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    max-width: 266px;
  }

  .hero-image {
    height: min(52vh, 460px);
  }

  .home-hero-image {
    height: min(54vh, 500px);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, var(--max));
  }

  .home-page .home-intro {
    padding: 0.95rem 0 1.95rem;
  }

  .home-page .home-display-title {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
    line-height: 1;
    letter-spacing: 0.045em;
    white-space: nowrap;
  }

  .home-page .home-display-subtitle {
    margin-top: 0.7rem;
    font-size: clamp(0.98rem, 4.1vw, 1.25rem);
    letter-spacing: 0.11em;
  }

  .feature-label {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .site-footer {
    padding: 1rem 0 1.4rem;
  }

  .footer-contact {
    font-size: 0;
    line-height: 1.45;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
    text-align: center;
  }

  .footer-contact br {
    display: none;
  }

  .footer-contact a[href^="mailto:"] {
    display: block;
    order: 1;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .footer-contact a[href^="tel:"] {
    display: block;
    order: 3;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .footer-contact::before {
    content: "";
    display: none;
  }

  .footer-contact a[href^="tel:"] + a[href^="tel:"] {
    display: none;
  }

  .social-links {
    margin-top: 0.75rem;
    gap: 0.42rem;
  }

  .social-links img {
    width: 20px;
    height: 20px;
  }

  .footer-meta {
    margin-top: 0.72rem;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .home-page .home-feature-links {
    padding-bottom: 0.55rem;
  }

  .home-page .site-footer {
    margin-top: 0.55rem;
  }

  .music-hero-title {
    letter-spacing: 0.14em;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .music-hero-link {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .music-hero-copy {
    margin-top: 0.8rem;
    font-size: 0.9rem;
  }

  .music-video-title {
    font-size: clamp(0.86rem, 4vw, 1rem);
  }

  .page-header {
    padding-top: 2rem;
  }

  .contact-minimal {
    padding-top: 0.95rem;
    padding-bottom: 1.1rem;
  }

  .contact-minimal-wrap {
    width: min(100% - 0.9rem, 420px);
  }

  .contact-minimal-title {
    letter-spacing: 0.14em;
    font-size: clamp(1.62rem, 7.6vw, 2.05rem);
  }

  .contact-minimal-intro {
    margin-top: 0.55rem;
    font-size: clamp(0.88rem, 3.8vw, 0.98rem);
  }

  .contact-line-field span {
    font-size: clamp(0.82rem, 3.4vw, 0.92rem);
  }

  .contact-line-field textarea {
    min-height: 5.2rem;
  }

  .contact-minimal-form {
    margin-top: 0.65rem;
    width: min(100%, 380px);
  }

  .contact-line-field input,
  .contact-line-field textarea {
    padding-bottom: 0.22rem;
  }

  .contact-send-button {
    font-size: clamp(1.1rem, 5.2vw, 1.35rem);
  }

  .contact-back-wrap {
    margin-top: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }

  .photos-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 560px);
  }

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

  .photos-title {
    letter-spacing: 0.14em;
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .photos-title-divider {
    margin-top: 0.6rem;
  }

  .photos-gallery-shell {
    margin-top: 0.95rem;
    padding-top: 1rem;
  }

  .travel-locations-shell {
    margin-top: 0.68rem;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 0.34rem;
  }

  .travel-locations-strip {
    gap: 0.3rem;
    padding: 0.3rem;
  }

  .travel-location-link {
    font-size: clamp(0.62rem, 2.5vw, 0.72rem);
    letter-spacing: 0.07em;
    padding: 0.3rem 0.12rem;
  }

  .travel-locations-arrow {
    font-size: 1.22rem;
  }

  body.gallery-page .travel-gallery-shell {
    margin-top: 0.68rem;
    padding-top: 0.78rem;
  }

  body.gallery-page .travel-page-back-row {
    margin-top: 0.9rem;
  }

  .lightbox-stage {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .lightbox-nav {
    width: 38px;
    height: 42px;
    font-size: 1.38rem;
  }

  .lightbox-counter {
    bottom: 0.5rem;
  }

.gallery-card img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 900px) {
  .portfolio-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
  }

  .portfolio-hero-media {
    max-width: min(100%, 360px);
    margin: 0 auto;
  }

  .portfolio-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .portfolio-page-header {
    padding-top: 1.95rem;
  }

  .portfolio-title {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
    letter-spacing: 0.13em;
  }

  .portfolio-role {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .portfolio-name {
    font-size: clamp(1.42rem, 7.4vw, 1.9rem);
  }

  .portfolio-intro-text {
    font-size: 0.95rem;
  }

  .portfolio-media-title {
    font-size: clamp(0.84rem, 4vw, 0.98rem);
  }
}
