:root {
  --bg: #090909;
  --text: #f3f3f3;
  --muted: #b4b4b4;
  --line: rgba(255, 255, 255, 0.14);
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: #fff;
  color: #111;
}

.skip:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--pad);
  background: transparent;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--text);
}

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  z-index: 50;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: #fff;
  position: relative;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  padding: var(--pad);
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.15;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.28) 0%, rgba(9, 9, 9, 0.18) 38%, rgba(9, 9, 9, 0.78) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2rem) var(--pad) 4.5rem;
  max-width: 42rem;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.4rem, 10vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.hero-role {
  margin: 0.85rem 0 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #dedede;
}

.hero-lede {
  margin: 0 0 2.4rem;
  max-width: 26rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  color: #e8e8e8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 0.35rem;
  transition: border-color 0.3s, gap 0.35s var(--ease);
}

.hero-cta:hover {
  border-color: #fff;
  gap: 1rem;
}

.section {
  padding: clamp(4.5rem, 12vh, 8.5rem) var(--pad);
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section-title {
  margin: 0 0 2.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin: 0 0 2.4rem;
}

.filters button {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.filters button:hover,
.filters button.is-active {
  color: var(--text);
}

.filters button.is-active {
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

.gallery {
  column-count: 1;
  column-gap: 0.85rem;
}

.gallery figure {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  position: relative;
  overflow: hidden;
  background: #111;
}

.gallery figure.is-hidden {
  display: none;
}

.gallery button {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.9s var(--ease);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 1rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .gallery figure:hover img {
    transform: scale(1.03);
  }

  .gallery figure:hover figcaption {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 700px) {
  .gallery {
    column-count: 2;
  }
}

@media (min-width: 1100px) {
  .gallery {
    column-count: 3;
    column-gap: 1rem;
  }

  .gallery figure {
    margin-bottom: 1rem;
  }
}

.about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  overflow: hidden;
  background: #111;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 36rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 40rem;
}

.services-list li {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.services-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.services-list h3 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.services-list p {
  margin: 0;
  color: var(--muted);
}

.contact {
  min-height: 70svh;
  display: grid;
  align-content: center;
}

.contact .section-title {
  max-width: 14ch;
  margin-bottom: 1.2rem;
}

.contact-lead {
  margin: 0 0 2.4rem;
  color: var(--muted);
  max-width: 28rem;
}

.contact-email {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s;
}

.contact-email:hover {
  border-color: #fff;
}

.socials {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.2rem;
}

.socials a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.socials a:hover {
  color: var(--text);
}

.site-footer {
  padding: 0 var(--pad) 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(5, 5, 5, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-bar {
  display: flex;
  justify-content: flex-end;
  padding: 1.1rem var(--pad);
}

.lightbox-stage {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0 var(--pad) 1rem;
}

.lightbox-stage img {
  max-width: min(92vw, 1400px);
  max-height: calc(100svh - 8.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem var(--pad) 1.4rem;
}

.lightbox-meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.icon-btn {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

body.is-locked {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .gallery img {
    transform: none !important;
  }
}
