:root {
  --page-bg: #050505;
  --surface: rgba(10, 10, 10, 0.74);
  --surface-strong: rgba(10, 10, 10, 0.9);
  --text: #f8f2ea;
  --muted: rgba(248, 242, 234, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #fbb042;
  --accent-soft: rgba(251, 176, 66, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --layout: min(1200px, calc(100vw - 2rem));
  --header-height: 86px;
  --backdrop: linear-gradient(180deg, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.45) 38%, rgba(6, 6, 6, 0.8));
}

@font-face {
  font-family: "Bird Script Pro";
  src: url("/assets/fonts/BirdScriptPro-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(254, 166, 33, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 22%),
    var(--page-bg);
  color: var(--text);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.landing-page {
  background: #fff;
  color: #fff;
}

body.legacy-home-page {
  background: #fff;
  color: #333;
}

body.landing-page::after {
  display: none;
}

body.legacy-home-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff var(--home-background) center -24px / 100% auto no-repeat;
  z-index: -2;
}

body.legacy-home-page::after {
  display: none;
}

body.has-page-background::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0.56) 30%, rgba(4, 4, 4, 0.88)),
    var(--page-background) center / cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.52);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--layout);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.nav-link {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.page-shell {
  min-height: calc(100vh - var(--header-height));
}

.page-main {
  width: var(--layout);
  margin: 0 auto;
  padding: 2.25rem 0 5rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.button {
  color: #1a1103;
  background: var(--accent);
  box-shadow: 0 18px 40px rgba(254, 166, 33, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.landing-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.landing-slides {
  position: absolute;
  inset: 0;
}

.landing-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.landing-slide.is-active {
  opacity: 1;
}

.landing-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02);
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.62) 70%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.48), rgba(4, 4, 4, 0.7));
}

.landing-content {
  position: absolute;
  top: 22%;
  left: 50%;
  width: min(880px, calc(100vw - 2.2rem));
  padding: 0 2rem;
  text-align: center;
  transform: translateX(-50%);
  z-index: 20;
}

.landing-page.loading-intro:not(.loaded) .landing-content {
  visibility: hidden;
  opacity: 0;
}

.landing-page.loaded .landing-content {
  visibility: visible;
  opacity: 1;
  transition: all 1.2s ease-in-out;
}

.landing-name {
  margin: 0 0 0.2rem;
  font-family: "Bird Script Pro", "Snell Roundhand", "Apple Chancery", "URW Chancery L", cursive;
  font-size: clamp(3.1rem, 6vw, 5.5rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

.landing-subtitle {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  font-weight: 300;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.03em;
}

.landing-prefix {
  font-weight: 300;
  color: #fff;
  white-space: nowrap;
}

.rotating-words {
  position: relative;
  display: inline-block;
  min-height: 1.15em;
  vertical-align: baseline;
  text-align: left;
  white-space: nowrap;
  line-height: inherit;
  overflow: hidden;
}

.rotating-words::before {
  content: attr(data-sizer);
  visibility: hidden;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.rotating-words > .rotating-item {
  display: none;
}

.rotating-stage {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-115%);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff !important;
  white-space: nowrap;
  will-change: transform, opacity;
}

.rotating-stage-measure {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: none;
}

.rotating-label {
  font-weight: 700;
  color: #fff !important;
}

.rotating-punctuation {
  font-weight: 300;
  color: #fff !important;
}

.landing-actions {
  margin-top: 1rem;
  display: block;
}

.landing-page .fade-slider,
.landing-page .fade-slider .fs-slide {
  position: fixed;
  inset: 0;
}

.landing-page .fade-slider {
  transform: scale(1);
  transition: all 2.2s ease-in-out;
  background: #111;
}

.landing-page .fade-slider:not(.loaded) {
  background: #fff;
}

.landing-page .fade-slider .fs-slide {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  overflow: hidden;
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.landing-page .fade-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  visibility: visible;
  transform: scale(1);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.landing-page .fade-slider .fs-slide.showing {
  opacity: 1;
  z-index: 2;
}

.landing-page .fade-slider.finito .fs-slide:last-child {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.landing-page .fade-slider .fs-slide.fade-in img {
  animation-name: fadeZoomIn;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.landing-page .fade-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  opacity: 0;
  transition: all 1.2s ease-in-out;
}

.landing-page .fade-slider.finito::after {
  opacity: 0.18;
}

.landing-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 12rem;
  padding: 1.2em 2.6em;
  border: 3px solid #fff;
  border-radius: 0;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff !important;
  background: transparent;
  box-shadow: none;
}

.landing-page .button:hover {
  color: #111 !important;
  background: #fff;
}

.landing-page .button:active {
  color: #111 !important;
  background: #fff;
}

.landing-page .button-secondary,
.landing-page .eyebrow,
.landing-page .landing-title {
  display: none;
}

.page-hero {
  position: relative;
  padding: 2.5rem 0 1.5rem;
}

.page-hero-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.64));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-subtitle {
  max-width: 66ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  margin-top: 2rem;
}

.section-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.56));
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.story-copy p,
.text-columns p {
  margin: 0 0 1rem;
  color: rgba(248, 242, 234, 0.9);
}

.story-copy p:last-child,
.text-columns p:last-child {
  margin-bottom: 0;
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
  min-height: 360px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, opacity 220ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.02), rgba(6, 6, 6, 0.9));
}

.portfolio-overlay h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.portfolio-overlay p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
}

.masonry-gallery a,
.thumb-wall img {
  break-inside: avoid;
}

.masonry-gallery a {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.masonry-gallery img {
  width: 100%;
  height: auto;
  transition: transform 300ms ease, filter 300ms ease;
}

.masonry-gallery a:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.thumb-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.thumb-wall img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.3rem;
}

.home-highlight {
  height: 100%;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
}

.home-highlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .page-main {
  width: min(1380px, calc(100vw - 1.2rem));
}

body.legacy-home-page.is-menu-toggled-on {
  overflow: hidden;
}

.legacy-home-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legacy-home-page .layout-medium {
  width: min(940px, 80vw);
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

.legacy-home-page .site-header {
  position: relative;
  top: 0.8rem;
  z-index: 30;
  width: min(940px, 80vw);
  margin: 0 auto;
  padding: 1.18rem 0 0.45rem;
  text-align: center;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.legacy-home-page .site-logo {
  margin-bottom: 1.02rem;
}

.legacy-home-page .site-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legacy-home-page .site-title a {
  color: #333;
}

.legacy-home-page .site-title img {
  max-height: 82px;
  width: auto;
  margin: 0 auto;
}

.legacy-home-page .site-navigation {
  display: block;
  text-align: center;
}

.legacy-home-page .nav-menu {
  display: block;
  text-align: center;
}

.legacy-home-page .nav-menu ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.legacy-home-page .nav-menu ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: default;
  font-size: 12px;
  font-weight: 300;
  line-height: 38px;
  letter-spacing: 0.1em;
}

.legacy-home-page .nav-menu ul li a {
  display: block;
  padding: 0 0.72em;
  color: #333;
}

.legacy-home-page .nav-menu ul li a:hover,
.legacy-home-page .nav-menu ul li a.is-active {
  color: #fbb042;
}

.legacy-home-page .menu-toggle {
  display: none;
  width: 20px;
  height: 26px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
}

.legacy-home-page .menu-toggle .lines {
  display: block;
  position: absolute;
  top: 40%;
  width: 100%;
  height: 3px;
  background: #333;
}

.legacy-home-page .menu-toggle .lines::before,
.legacy-home-page .menu-toggle .lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
}

.legacy-home-page .menu-toggle .lines::before {
  top: 7px;
}

.legacy-home-page .menu-toggle .lines::after {
  top: -7px;
}

.legacy-home-page .site-main {
  flex: 1;
  margin: 0;
}

.legacy-home-layout {
  position: relative;
  min-height: clamp(680px, 78vh, 980px);
}

.legacy-home-page .legacy-home-layout {
  min-height: clamp(780px, calc(100vh - 120px), 1080px);
}

.legacy-home-layout .intro {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 2rem;
}

.legacy-home-page .intro {
  padding-top: 1.45rem;
}

.legacy-home-layout .intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.legacy-home-page .intro h2 {
  color: #333;
  display: block;
  text-align: center;
  font-size: clamp(1.7rem, 2.9vw, 2.72rem);
  font-weight: 100;
  line-height: 1.06;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.legacy-home-page .accent-word {
  color: #fbb042;
  font-weight: 100;
}

.legacy-home-layout #imageFlow {
  position: absolute;
  width: 100vw;
  height: 88%;
  left: 50%;
  top: 16.5%;
  overflow: hidden;
  background: transparent;
  transform: translateX(-50%);
}

.legacy-home-layout #imageFlow .diapo {
  position: absolute;
  left: -4000px;
  cursor: pointer;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: auto;
}

.legacy-home-layout #imageFlow .link {
  border: dotted #fff 1px;
  margin-left: -1px;
  margin-bottom: -1px;
}

.legacy-home-layout #imageFlow .text {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 6%;
  text-align: center;
  z-index: 1000;
}

.legacy-home-layout #imageFlow .title {
  font-size: 0.9em;
  font-weight: bold;
}

.legacy-home-layout #imageFlow .legend {
  font-size: 0.8em;
}

.legacy-home-layout #imageFlow .scrollbar {
  position: absolute;
  left: 10%;
  bottom: 4%;
  width: 80%;
  height: 16px;
  z-index: 1000;
  display: none;
}

.legacy-home-layout #imageFlow .track {
  position: absolute;
  left: 1%;
  width: 98%;
  height: 10px;
  border-radius: 25px;
}

.legacy-home-layout #imageFlow .arrow-left,
.legacy-home-layout #imageFlow .arrow-right {
  position: absolute;
  display: none;
}

.legacy-home-layout #imageFlow .arrow-right {
  right: 0;
}

.legacy-home-layout #imageFlow .bar {
  position: absolute;
  height: 10px;
  left: 0;
  width: 100px;
  border-radius: 25px;
}

.legacy-home-page .rotate-words {
  position: relative;
  display: inline-block;
  min-width: 100px;
  min-height: 1em;
  text-align: left;
  vertical-align: baseline;
  transform: translateY(0.08em);
}

.legacy-home-page .rotate-words span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: #333;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.legacy-home-page .rotate-words span.active {
  opacity: 1;
}

.legacy-home-page .rotate-words span.rotate-in {
  animation: legacyRotateInWord 0.5s linear forwards;
}

.legacy-home-page .rotate-words span.rotate-out {
  animation: legacyRotateOutWord 0.5s linear forwards;
}

.legacy-home-page .rotate-words-measure {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: -0.02em;
}

@keyframes legacyRotateInWord {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes legacyRotateOutWord {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

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

.legacy-home-page .site-footer {
  position: relative;
  z-index: 20;
  width: 100%;
  border-top: none;
  background: transparent;
}

.legacy-home-page .site-info {
  padding: 1.2rem 0 1.6rem;
  text-align: center;
}

.legacy-home-page .site-info p {
  margin: 0;
  color: #333;
  font-size: 13px;
}

body.legacy-portfolio-page::before {
  background: #fff var(--home-background) center -6px / 100% auto no-repeat;
}

.legacy-portfolio-page .site-main {
  padding-bottom: 3.5rem;
}

.legacy-portfolio-page .layout-portfolio,
.legacy-portfolio-page .layout-shooting {
  width: min(1560px, calc(100vw - 1.2rem));
  margin: 0 auto;
}

.legacy-portfolio-page .layout-shooting {
  width: min(1480px, calc(100vw - 1.2rem));
}

.portfolio-legacy-note {
  margin: 2rem auto 2.4rem;
  text-align: center;
  color: rgba(52, 52, 52, 0.66);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.portfolio-masonry-live {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
  align-items: start;
}

.portfolio-masonry-live .masonry-item {
  min-width: 0;
}

.portfolio-masonry-live figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.portfolio-masonry-live img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.09);
  transform-origin: center center;
  transition: transform 280ms ease;
  will-change: transform;
}

.portfolio-masonry-live figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.72));
  opacity: 0;
  transition: opacity 220ms ease;
}

.portfolio-masonry-live figure:hover figcaption {
  opacity: 1;
}

.portfolio-masonry-live figure:hover img {
  transform: scale(1.09) translateX(18px);
}

.portfolio-card-copy {
  position: relative;
  z-index: 1;
}

.portfolio-card-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.2;
}

.portfolio-masonry-live figcaption a {
  position: absolute;
  inset: 0;
}

.shooting-hero {
  margin: 2rem auto 1.25rem;
  text-align: center;
}

.shooting-entry-title {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(1.85rem, 3.2vw, 2.95rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.shooting-entry-name {
  color: #fbb042;
}

.shooting-entry-separator,
.shooting-entry-suffix {
  color: #2b2b2b;
}

.shooting-gallery-shell {
  margin-top: 1.8rem;
}

.shooting-gallery-shell .pw-gallery {
  width: 100%;
}

.shooting-gallery-shell .pw-collage {
  margin: 0;
  padding: 24px 24px 0;
  font-size: 0;
  perspective: 1300px;
}

.shooting-gallery-shell .pw-collage-loading {
  min-height: 180px;
  background:
    radial-gradient(circle at center, rgba(251, 176, 66, 0.08), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.shooting-gallery-shell .pw-collage a {
  display: block;
  opacity: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.shooting-gallery-shell .pw-collage img {
  display: block;
}

.effect-4 {
  transform-style: preserve-3d;
  transform-origin: 0% 0%;
  transform: rotateX(-80deg);
  animation: flip ease-in-out forwards;
}

@keyframes flip {
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.effect-duration-1 { animation-duration: .4s; }
.effect-duration-2 { animation-duration: .5s; }
.effect-duration-3 { animation-duration: .6s; }
.effect-duration-4 { animation-duration: .7s; }
.effect-duration-5 { animation-duration: .8s; }
.effect-duration-6 { animation-duration: .9s; }
.effect-duration-7 { animation-duration: .95s; }
.effect-duration-8 { animation-duration: 1s; }
.effect-duration-9 { animation-duration: 1.05s; }
.effect-duration-10 { animation-duration: 1.1s; }

.shooting-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem auto 0;
}

.shooting-nav-link {
  min-height: 88px;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: #2d2d2d;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.04);
}

.shooting-nav-link.is-next {
  text-align: right;
}

.shooting-nav-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(66, 66, 66, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shooting-nav-title {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.metric {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.metric-value {
  margin-top: 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.contact-card {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 1.02rem;
}

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

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(254, 166, 33, 0.22);
  border-color: rgba(254, 166, 33, 0.6);
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.legacy-contact-page .layout-contact {
  width: min(calc(100vw - 2rem), 1240px);
  margin: 0 auto;
  padding: 0 0 3rem;
}

.legacy-contact-page .site-main {
  margin: 0;
}

.legacy-contact-page .contact-hero {
  margin: 2rem auto 1.5rem;
  text-align: center;
}

.legacy-contact-page .contact-title {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.legacy-contact-page .contact-subtitle {
  margin: 0 auto;
  max-width: none;
  color: #3f3f3f;
  font-size: clamp(0.74rem, 0.98vw, 0.92rem);
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legacy-contact-page .contact-wall-shell,
.legacy-about-page .contact-wall-shell,
.legacy-gallery-page .contact-wall-shell {
  margin: 0 auto 2rem;
}

.legacy-contact-page .contact-photo-wall,
.legacy-about-page .contact-photo-wall,
.legacy-gallery-page .contact-photo-wall {
  --contact-wall-columns: 12;
  width: min(1068px, 78vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(var(--contact-wall-columns), minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
}

.legacy-contact-page .contact-wall-loading,
.legacy-about-page .contact-wall-loading,
.legacy-gallery-page .contact-wall-loading {
  min-height: 184px;
  background:
    linear-gradient(90deg, rgba(251, 176, 66, 0.06), rgba(251, 176, 66, 0.14), rgba(251, 176, 66, 0.06)),
    #fff;
}

.legacy-contact-page .contact-wall-tile,
.legacy-about-page .contact-wall-tile,
.legacy-gallery-page .contact-wall-tile {
  position: relative;
  overflow: hidden;
  background: rgba(251, 176, 66, 0.08);
  aspect-ratio: 1.52 / 1;
}

.legacy-contact-page .contact-wall-face,
.legacy-about-page .contact-wall-face,
.legacy-gallery-page .contact-wall-face {
  position: absolute;
  inset: 0;
  z-index: 1;
  --contact-wall-image: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--contact-wall-image, none);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform var(--contact-wall-duration, 1780ms) cubic-bezier(0.22, 1, 0.36, 1),
    opacity var(--contact-wall-duration, 1780ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.legacy-contact-page .contact-wall-face-next,
.legacy-about-page .contact-wall-face-next,
.legacy-gallery-page .contact-wall-face-next {
  z-index: 2;
  opacity: 0;
}

.legacy-contact-page .contact-wall-tile.is-fade .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-fade .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-fade .contact-wall-face-next {
  transform: scale(1.07);
}

.legacy-contact-page .contact-wall-tile.is-fade.is-running .contact-wall-face-current,
.legacy-about-page .contact-wall-tile.is-fade.is-running .contact-wall-face-current,
.legacy-gallery-page .contact-wall-tile.is-fade.is-running .contact-wall-face-current {
  opacity: 0;
  transform: scale(0.96);
}

.legacy-contact-page .contact-wall-tile.is-fade.is-running .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-fade.is-running .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-fade.is-running .contact-wall-face-next {
  opacity: 1;
  transform: scale(1);
}

.legacy-contact-page .contact-wall-tile.is-slide-left .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-left .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-left .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(101%, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-current,
.legacy-about-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-current,
.legacy-gallery-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-left.is-running .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-right .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-right .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-right .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(-101%, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-current,
.legacy-about-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-current,
.legacy-gallery-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-right.is-running .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-up .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-up .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-up .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, 101%, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-current,
.legacy-about-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-current,
.legacy-gallery-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-up.is-running .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-down .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-down .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-down .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, -101%, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-current,
.legacy-about-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-current,
.legacy-gallery-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-next,
.legacy-about-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-next,
.legacy-gallery-page .contact-wall-tile.is-slide-down.is-running .contact-wall-face-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legacy-contact-page .contact-form-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.legacy-contact-page .contact-form-card {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legacy-contact-page .contact-required-note {
  margin: 0 0 0.95rem;
  color: #575757;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 300;
}

.legacy-contact-page .contact-required-note span {
  color: #fbb042;
}

.legacy-contact-page .contact-form {
  max-width: 980px;
  gap: 1.1rem;
}

.legacy-contact-page .field label {
  color: #3f3f3f;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.legacy-contact-page .field label span {
  color: #fbb042;
}

.legacy-contact-page .field input,
.legacy-contact-page .field textarea {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: #2b2b2b;
  box-shadow: none;
}

.legacy-contact-page .field textarea {
  min-height: 220px;
}

.legacy-contact-page .field input::placeholder,
.legacy-contact-page .field textarea::placeholder {
  color: #8a8a8a;
}

.legacy-contact-page .field input:focus,
.legacy-contact-page .field textarea:focus {
  outline: none;
  border-color: #fbb042;
  box-shadow: 0 0 0 3px rgba(251, 176, 66, 0.14);
}

.legacy-contact-page .contact-form-actions {
  padding-top: 0.35rem;
  text-align: left;
}

.legacy-contact-page .contact-form-actions .button {
  min-width: 160px;
}

.legacy-contact-page .contact-info-grid {
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.4rem;
  margin: 2.3rem auto 0;
  align-items: start;
}

.legacy-contact-page .contact-info-item {
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.legacy-contact-page .contact-info-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  color: #343434;
}

.legacy-contact-page .contact-info-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.legacy-contact-page .contact-info-item p,
.legacy-contact-page .contact-info-item a {
  margin: 0;
  color: #2f2f2f;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.45;
}

.legacy-contact-page .contact-info-item a:hover {
  color: #fbb042;
}

.legacy-contact-page .contact-photo-wall,
.legacy-contact-page .contact-wall-tile,
.legacy-contact-page .contact-wall-face,
.legacy-about-page .contact-photo-wall,
.legacy-about-page .contact-wall-tile,
.legacy-about-page .contact-wall-face,
.legacy-gallery-page .contact-photo-wall,
.legacy-gallery-page .contact-wall-tile,
.legacy-gallery-page .contact-wall-face {
  backface-visibility: hidden;
  background-position: center center;
  transform: translateZ(0);
}

.legacy-about-page .layout-about {
  width: min(calc(100vw - 2rem), 1240px);
  margin: 0 auto;
  padding: 0 0 4rem;
}

.legacy-about-page .site-main {
  margin: 0;
}

.legacy-about-page .contact-wall-shell {
  margin: 1.15rem auto 2.8rem;
}

.legacy-about-page .about-copy-shell {
  width: min(920px, 100%);
  margin: 0 auto;
}

.legacy-about-page .about-hero {
  margin: 0 auto 1.55rem;
  text-align: center;
}

.legacy-about-page .about-title {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legacy-about-page .about-copy {
  width: min(860px, 100%);
  margin: 0 auto;
  color: #404040;
}

.legacy-about-page .about-copy p {
  margin: 0 0 1.2rem;
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.92;
  font-weight: 300;
}

.legacy-about-page .about-copy h5 {
  margin: 1.8rem 0 0;
  color: #2b2b2b;
  font-family: "Bird Script Pro", "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 400;
  text-align: center;
}

.legacy-about-page .about-accent {
  color: #fbb042;
}

.legacy-about-page .about-portrait-shell {
  display: flex;
  justify-content: center;
  margin: 2.8rem auto 0;
}

.legacy-about-page .about-portrait-shell a {
  display: block;
  width: min(360px, 38vw);
}

.legacy-about-page .about-portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.legacy-gallery-page .layout-gallery {
  width: min(calc(100vw - 2rem), 1240px);
  margin: 0 auto;
  padding: 0 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legacy-gallery-page .site-main {
  margin: 0;
}

.legacy-gallery-page .gallery-hero {
  margin: 1.8rem auto 1.7rem;
  text-align: center;
}

.legacy-gallery-page .gallery-title {
  margin: 0;
  color: #2b2b2b;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legacy-gallery-page .gallery-shell {
  width: min(1120px, 100%);
  margin: 5.1rem auto 0;
}

.legacy-gallery-page .gallery-photo-shell {
  margin: 2.4rem auto 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.legacy-gallery-page .lumys-card {
  min-height: 0;
  max-height: 19rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.legacy-gallery-page #lumys-widget {
  min-height: 0;
  max-height: 19rem;
  overflow: hidden;
}

.legacy-gallery-page .lumys-fallback {
  margin: 0;
  color: #575757;
  font-size: 0.98rem;
  font-weight: 300;
  text-align: center;
}

.legacy-gallery-page .gallery-photo-shell .contact-photo-wall {
  width: min(calc(100vw - 2.4rem), 1520px);
  max-width: none;
  min-height: 230px;
}

.legacy-gallery-page #lumys-widget .footer {
  display: none !important;
}

.lumys-card {
  min-height: 620px;
}

#lumys-widget {
  min-height: 520px;
}

.site-footer {
  width: var(--layout);
  margin: 0 auto;
  padding: 0 0 2.2rem;
}

.footer-inner {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-button {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 35;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #35db72, #22a652);
  color: #fff;
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.35);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.92);
  z-index: 90;
}

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

.lightbox-frame {
  position: relative;
  width: min(1200px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 2.5rem);
  object-fit: contain;
  border-radius: 20px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.2rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  font-size: 1.5rem;
}

.lightbox-nav.prev {
  left: 1rem;
}

.lightbox-nav.next {
  right: 1rem;
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .portfolio-masonry-live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-contact-page .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .legacy-contact-page .contact-photo-wall,
  .legacy-about-page .contact-photo-wall,
  .legacy-gallery-page .contact-photo-wall {
    width: min(100%, 920px);
  }

  .portfolio-grid,
  .contact-grid,
  .metric-grid,
  .story-grid,
  .home-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thumb-wall {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 820px) {
  .legacy-portfolio-page .layout-portfolio,
  .legacy-portfolio-page .layout-shooting {
    width: min(calc(100vw - 1rem), 1400px);
  }

  .legacy-contact-page .layout-contact,
  .legacy-about-page .layout-about,
  .legacy-gallery-page .layout-gallery {
    width: min(calc(100vw - 1.25rem), 1240px);
  }

  .legacy-contact-page .contact-hero {
    margin-top: 1.55rem;
  }

  .legacy-contact-page .contact-subtitle {
    max-width: 720px;
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .legacy-contact-page .contact-photo-wall,
  .legacy-about-page .contact-photo-wall,
  .legacy-gallery-page .contact-photo-wall {
    width: min(100%, 760px);
  }

  .legacy-about-page .contact-wall-shell {
    margin-bottom: 2.3rem;
  }

  .legacy-about-page .about-copy-shell {
    width: min(760px, 100%);
  }

  .legacy-about-page .about-copy p {
    font-size: 1rem;
    line-height: 1.86;
  }

  .legacy-about-page .about-portrait-shell a {
    width: min(320px, 52vw);
  }

  .legacy-gallery-page .gallery-shell {
    width: min(980px, 100%);
    margin-top: 4.4rem;
  }

  .legacy-gallery-page .gallery-photo-shell {
    margin-top: 2.2rem;
  }

  .legacy-gallery-page .gallery-photo-shell .contact-photo-wall {
    width: min(calc(100vw - 2rem), 1120px);
  }

  .legacy-gallery-page .lumys-card {
    min-height: 0;
    max-height: 18rem;
  }

  .legacy-gallery-page #lumys-widget {
    min-height: 0;
    max-height: 18rem;
  }

  .shooting-gallery-shell .pw-collage {
    padding: 18px 12px 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: relative;
  }

  .nav-list {
    position: absolute;
    right: 0;
    top: calc(100% + 0.8rem);
    min-width: 240px;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .site-nav.is-open .nav-list {
    display: flex;
  }

  .page-main {
    padding-top: 1.5rem;
  }

  .legacy-home-layout {
    min-height: 620px;
  }

  .legacy-home-layout #imageFlow {
    top: 28%;
    height: 64%;
  }

  .legacy-home-page .site-header,
  .legacy-home-page .layout-medium {
    width: min(calc(100vw - 1.6rem), 1060px);
  }

  .legacy-home-page .menu-toggle {
    display: block;
  }

  .legacy-home-page .nav-menu {
    display: none;
    padding: 1rem 0 0;
  }

  .legacy-home-page.is-menu-toggled-on .nav-menu {
    display: block;
  }

  .legacy-home-page .nav-menu ul {
    display: block;
  }

  .legacy-home-page .nav-menu ul li {
    display: block;
    line-height: 1.2;
  }

  .legacy-home-page .nav-menu ul li a {
    padding: 0.45rem 0;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .legacy-home-page .legacy-home-layout {
    min-height: 660px;
  }

  .legacy-home-page #imageFlow {
    top: 32%;
    height: 62%;
  }

  .portfolio-grid,
  .contact-grid,
  .metric-grid,
  .story-grid,
  .home-intro,
  .form-row {
    grid-template-columns: 1fr;
  }

  .thumb-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portfolio-masonry-live,
  .shooting-nav {
    grid-template-columns: 1fr;
  }

  .legacy-contact-page .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1rem;
  }

  .legacy-contact-page .contact-hero {
    margin-top: 1.25rem;
  }

  .legacy-contact-page .contact-subtitle {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
  }

  .legacy-contact-page .contact-photo-wall,
  .legacy-about-page .contact-photo-wall,
  .legacy-gallery-page .contact-photo-wall {
    width: min(100%, 520px);
    gap: 3px;
  }

  .legacy-about-page .about-copy-shell {
    width: min(620px, 100%);
  }

  .legacy-about-page .about-title {
    font-size: clamp(1.45rem, 5vw, 1.8rem);
  }

  .legacy-about-page .about-copy p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .legacy-about-page .about-portrait-shell {
    margin-top: 2.25rem;
  }

  .legacy-about-page .about-portrait-shell a {
    width: min(280px, 70vw);
  }

  .legacy-gallery-page .gallery-hero {
    margin-top: 1.35rem;
  }

  .legacy-gallery-page .gallery-title {
    font-size: clamp(1.45rem, 5vw, 1.9rem);
  }

  .legacy-gallery-page .gallery-shell {
    width: min(100%, 720px);
    margin-top: 3.4rem;
  }

  .legacy-gallery-page .gallery-photo-shell {
    margin-top: 1.9rem;
  }

  .legacy-gallery-page .gallery-photo-shell .contact-photo-wall {
    width: min(calc(100vw - 1.5rem), 720px);
  }

  .legacy-gallery-page .lumys-card {
    min-height: 0;
    max-height: 16.8rem;
  }

  .legacy-gallery-page #lumys-widget {
    min-height: 0;
    max-height: 16.8rem;
  }

  .legacy-contact-page .contact-required-note {
    font-size: 0.95rem;
  }

  .portfolio-legacy-note {
    margin: 1.45rem auto 1.7rem;
    max-width: 18rem;
    line-height: 1.5;
  }

  .shooting-hero {
    margin-top: 1.3rem;
  }

  .shooting-gallery-shell .pw-collage {
    padding: 10px 0 0;
  }

  .brand img {
    height: 34px;
  }

  .landing-actions {
    width: 100%;
  }

  .landing-actions .button {
    width: auto;
  }

  .landing-content {
    top: 18%;
    width: min(100%, calc(100vw - 1rem));
    padding: 0 1rem;
  }

  .landing-name {
    font-size: clamp(3rem, 12vw, 4.3rem);
  }

  .landing-subtitle {
    gap: 0;
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    flex-wrap: wrap;
  }

  .legacy-home-layout {
    min-height: 520px;
  }

  .legacy-home-layout .intro h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .legacy-home-layout #imageFlow {
    top: 30%;
    height: 60%;
  }

  .legacy-home-page .site-header {
    padding-top: 1.35rem;
  }

  .legacy-home-page .site-title img {
    max-height: 72px;
  }

  .legacy-home-page .legacy-home-layout {
    min-height: 560px;
  }

  .legacy-home-page .intro {
    padding-top: 0.2rem;
  }

  .legacy-home-page .intro h2 {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .legacy-home-page #imageFlow {
    top: 34%;
    height: 58%;
  }

  .masonry-gallery {
    column-count: 1;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}
