:root {
  --black: #0b0b0b;
  --charcoal: #131313;
  --paper: #f3efe6;
  --white: #f6f3ec;
  --muted: #a6a19a;
  --gold: #c79a47;
  --line: rgba(255,255,255,.14);
  --max: 1480px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.76), transparent);
}

.logo {
  font-size: .82rem;
  letter-spacing: .32em;
  font-weight: 700;
}

.logo span {
  display: block;
  font-size: .52rem;
  letter-spacing: .52em;
  color: var(--gold);
  margin-top: 3px;
}

.nav nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.5);
  padding: 9px 14px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 42%, rgba(0,0,0,.12) 72%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 0 5vw 11vh;
  max-width: 980px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 18px;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: .94;
  letter-spacing: -.045em;
  margin: 0;
}

h1 {
  font-size: clamp(4.8rem, 10vw, 10rem);
}

h1 em { color: var(--gold); }

.hero-intro {
  max-width: 650px;
  color: #d7d2c8;
  font-size: 1.05rem;
  margin: 26px 0 34px;
}

.button {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: 14px 19px;
  font-size: .72rem;
}

.hero-index {
  position: absolute;
  right: 4vw;
  bottom: 3vh;
  z-index: 2;
  font-size: .68rem;
  letter-spacing: .2em;
}

.intro {
  max-width: var(--max);
  margin: auto;
  padding: 130px 5vw;
  display: grid;
  grid-template-columns: 180px 1.1fr .7fr;
  gap: 55px;
  align-items: start;
}

.intro h2,
.services-title h2,
.contact h2 {
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.intro > p:last-child {
  color: var(--muted);
  margin-top: 46px;
}

.feature {
  max-width: var(--max);
  margin: auto;
  padding: 0 5vw 140px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 6vw;
  align-items: center;
}

.number {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  margin: 0 0 24px;
}

.feature h2,
.about h2,
.night h2 {
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.feature-copy > p:last-of-type {
  max-width: 470px;
  color: var(--muted);
  margin-top: 26px;
}

.feature-image img {
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 58%;
}

.work-grid {
  max-width: var(--max);
  margin: auto;
  padding: 0 5vw 140px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
}

.work-grid figure {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.work-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #080808;
}

.work-grid .large { grid-row: span 2; }
.work-grid .wide { grid-column: 1 / 3; }

.work-grid figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.work-grid figcaption span { color: var(--gold); }

.night {
  background: var(--charcoal);
  padding: 130px 5vw;
}

.night-heading {
  max-width: var(--max);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 70px 1.15fr .7fr;
  gap: 42px;
  align-items: end;
}

.night-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

.night-feature,
.night-pair {
  max-width: var(--max);
  margin: auto;
}

.night-feature img,
.night-pair img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #080808;
}

.night-pair {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.services {
  max-width: var(--max);
  margin: auto;
  padding: 140px 5vw;
}

.services-title {
  max-width: 1000px;
  margin-bottom: 70px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-list span { color: var(--gold); }

.service-list h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.service-list p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
}

.service-list strong {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about {
  max-width: var(--max);
  margin: auto;
  padding: 0 5vw 140px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 7vw;
  align-items: center;
}

.portrait img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 28%;
}

.about-role {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: var(--gold);
  margin: 18px 0 26px;
}

.about-copy > p:not(.number):not(.eyebrow):not(.about-role) {
  color: var(--muted);
  max-width: 620px;
}

.about-links {
  display: flex;
  gap: 28px;
  margin-top: 34px;
}

.about-links a {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  padding-bottom: 5px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact {
  background: var(--paper);
  color: #111;
  padding: 120px 5vw;
}

.contact .eyebrow { color: #8a631e; }

.contact h2 {
  max-width: 1100px;
}

.contact-row {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 1.05rem;
}

.contact-row a {
  border-bottom: 1px solid #111;
}

footer {
  padding: 28px 5vw;
  display: flex;
  justify-content: space-between;
  background: #050505;
  color: #bcb7ae;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

@media (max-width: 900px) {
  .nav nav { display: none; }

  .intro,
  .feature,
  .night-heading,
  .about {
    grid-template-columns: 1fr;
  }

  .intro > p:last-child {
    margin-top: 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid .large,
  .work-grid .wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .nav { padding: 18px; }
  .hero-copy { padding: 0 20px 10vh; }
  .hero-index { display: none; }

  .intro,
  .feature,
  .work-grid,
  .services,
  .about {
    padding-left: 20px;
    padding-right: 20px;
  }

  .night {
    padding: 90px 20px;
  }

  .night-pair {
    grid-template-columns: 1fr;
  }

  .service-list article {
    grid-template-columns: 42px 1fr;
  }

  .service-list strong { grid-column: 2; }

  .about-links,
  .contact-row,
  footer {
    flex-direction: column;
  }

  .contact {
    padding: 90px 20px;
  }

  footer {
    gap: 12px;
    padding: 28px 20px;
  }
}


.contact{
padding:0;background:#000;color:#fff;
}
.contact-hero{position:relative;min-height:90vh;display:flex;align-items:center;justify-content:center;overflow:hidden;}
.contact-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.contact-overlay{position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.78));}
.contact-content{position:relative;z-index:2;max-width:820px;padding:40px;text-align:center;}
.contact-content h2{font-size:clamp(3rem,7vw,6rem);margin:.2em 0;}
.contact-text{color:#ddd;font-size:1.1rem;max-width:650px;margin:0 auto 36px;}
.ig-button{
display:inline-block;
padding:18px 34px;
border:2px solid #c79a47;
border-radius:999px;
color:#fff;
background:rgba(199,154,71,.15);
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;
transition:.25s;
}
.ig-button:hover{background:#c79a47;color:#111;}
.ig-handle{margin:28px 0 6px;font-size:1.25rem;font-weight:700;}
.ig-note{color:#bbb;}


/* =========================================================
   IMMERSIVE INTERACTION LAYER
   ========================================================= */

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #070707;
  transition: opacity .8s ease, visibility .8s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--white);
}

.loader-j {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--gold);
  line-height: 1;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-line {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  animation: loaderSweep 1.5s ease-in-out infinite;
}

.loader-name {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .42em;
  color: #bdb7ad;
}

@keyframes loaderPulse {
  0%, 100% { opacity: .55; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes loaderSweep {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 2px;
  width: 0;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(199,154,71,.6);
  pointer-events: none;
}

.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: .025;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, #fff 0 1px, transparent 1px);
  background-size: 11px 13px, 17px 19px, 23px 29px;
  mix-blend-mode: soft-light;
}

.reveal-section {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity .95s cubic-bezier(.22,1,.36,1),
    transform .95s cubic-bezier(.22,1,.36,1);
}

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

.hero.reveal-section {
  opacity: 1;
  transform: none;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal .9s cubic-bezier(.22,1,.36,1) forwards;
}

.hero-copy .eyebrow { animation-delay: .15s; }
.hero-copy h1 { animation-delay: .28s; }
.hero-copy .hero-intro { animation-delay: .42s; }
.hero-copy .button { animation-delay: .56s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.parallax-image {
  will-change: transform;
  transform: scale(1.04);
}

.media-card,
.feature-image,
.night-feature,
.night-pair img,
.portrait {
  position: relative;
  overflow: hidden;
}

.media-card img,
.feature-image img,
.night-feature img,
.night-pair img,
.portrait img {
  transition:
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .5s ease;
}

.media-card::after,
.feature-image::after,
.night-feature::after,
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199,154,71,0);
  transition: border-color .45s ease, box-shadow .45s ease;
  pointer-events: none;
}

.media-card:hover img,
.feature-image:hover img,
.night-feature:hover img,
.portrait:hover img {
  transform: scale(1.018);
  filter: contrast(1.03) saturate(1.04);
}

.media-card:hover::after,
.feature-image:hover::after,
.night-feature:hover::after,
.portrait:hover::after {
  border-color: rgba(199,154,71,.45);
  box-shadow: inset 0 0 0 1px rgba(199,154,71,.08);
}

.nav {
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}

.nav.is-scrolled {
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav nav a {
  position: relative;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.nav nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.ig-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before,
.ig-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateX(-102%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}

.button:hover::before,
.ig-button:hover::before {
  transform: translateX(0);
}

.button:hover,
.ig-button:hover {
  color: #0b0b0b;
}

.contact-content {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease .15s, transform .9s ease .15s;
}

.contact.is-visible .contact-content {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .media-card:hover img,
  .feature-image:hover img,
  .night-feature:hover img,
  .portrait:hover img {
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-section,
  .contact-content,
  .hero-copy > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .parallax-image {
    transform: none !important;
  }
}
