:root {
  --ink: #050505;
  --paper: #f2f0eb;
  --line: rgba(242, 240, 235, 0.2);
  --muted: #a6a39d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 4vw;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.brand img { width: 72px; height: 42px; object-fit: contain; }
.brand--compact img { width: 72px; }
nav { display: flex; gap: 30px; font-size: 13px; }
nav a, .socials a, .work__copy a { position: relative; }
nav a::after, .socials a::after, .work__copy a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -5px;
  background: currentColor;
  transition: right .25s ease;
}
nav a:hover::after, .socials a:hover::after, .work__copy a:hover::after { right: 0; }

.hero {
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.07), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.35), #050505 92%),
    url("assets/art/hero-backdrop.webp") center 28% / cover;
}
.hero__eyebrow, .kicker, .section-heading > p {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 700;
}
.hero__signature { width: min(780px, 78vw); margin: 36px 0 24px; }
.hero > p { max-width: 520px; margin: 0 0 34px; color: #d0cdc6; line-height: 1.6; font-size: 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 27px;
  border: 1px solid rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}
.button:hover { background: var(--paper); color: var(--ink); }

.collection { padding: 130px 4vw 80px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.section-heading p { color: var(--muted); margin: 0 0 8px; }
.section-heading h1, .about h2, .contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.04em;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .95;
}
.work {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  min-height: 780px;
  border-bottom: 1px solid var(--line);
}
.work:nth-child(even) { grid-template-columns: minmax(280px, .85fr) minmax(0, 1.65fr); }
.work:nth-child(even) .work__image { order: 2; }
.work__image { position: relative; overflow: hidden; margin: 70px 0; }
.work__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.work:hover .work__image img { transform: scale(1.025); }
.work__image span { position: absolute; top: 18px; left: 18px; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(0,0,0,.75); font-size: 10px; letter-spacing: .12em; }
.work__copy { align-self: center; padding: 8vw 5vw; }
.work__copy h2 { margin: 10px 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4vw, 68px); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.work__copy > p:not(.work__size) { max-width: 440px; color: var(--muted); line-height: 1.75; font-size: 14px; }
.work__size { color: #fff; letter-spacing: .16em; font-size: 11px; }
.work__copy a { display: inline-block; margin-top: 25px; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }

.film {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 7vw;
  padding: 120px 4vw;
  border-bottom: 1px solid var(--line);
}
.film__heading h2 {
  margin: 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}
.film__heading > p:not(.kicker) { color: var(--muted); line-height: 1.75; font-size: 14px; }
.film__player { background: #0c0c0c; border: 1px solid var(--line); }
.film video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: contain; }

.about { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); color: var(--ink); }
.about__portrait { min-height: 820px; background: url("assets/art/luxury-texture-rolex.png") center / cover; }
.about__copy { align-self: center; padding: 10vw 8vw; }
.about__copy .kicker { color: #77736b; }
.about h2 { font-size: clamp(48px, 6vw, 90px); margin: 28px 0 42px; }
.about__copy > p:not(.kicker) { color: #504d47; line-height: 1.8; font-size: 15px; }
blockquote { margin: 42px 0 0; padding-left: 24px; border-left: 1px solid #b5b0a7; font-family: Georgia, serif; font-size: 20px; line-height: 1.5; }

.contact { padding: 140px 8vw; text-align: center; background: #111; }
.contact .kicker { color: var(--muted); }
.contact h2 { max-width: 900px; margin: 30px auto; }
.contact > p:not(.kicker) { color: var(--muted); }
.contact__actions { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 48px; }
.button--light { background: var(--paper); color: var(--ink); }
.button--light:hover { background: transparent; color: var(--paper); }
.contact__actions > a:not(.button) { font-size: 13px; border-bottom: 1px solid #777; padding-bottom: 5px; }
.contact address {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 42px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}
.contact address a { color: var(--paper); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 42px 4vw; border-top: 1px solid var(--line); font-size: 11px; color: #d1cec7; }
.footer__location { display: flex; gap: 24px; color: var(--muted); }
.socials { display: flex; justify-content: flex-end; gap: 24px; }

@media (max-width: 800px) {
  .site-header { padding: 20px; }
  .site-header .brand span { display: none; }
  nav { gap: 16px; font-size: 11px; }
  .hero { min-height: 82vh; }
  .hero__signature { width: 94vw; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .work, .work:nth-child(even) { display: flex; flex-direction: column; min-height: 0; padding: 46px 0; }
  .work:nth-child(even) .work__image { order: 0; }
  .work__image { margin: 0; aspect-ratio: 4 / 5; }
  .work__copy { padding: 42px 4px 12px; }
  .film { grid-template-columns: 1fr; padding: 90px 7vw; }
  .about { grid-template-columns: 1fr; }
  .about__portrait { min-height: 70vh; }
  .about__copy { padding: 90px 7vw; }
  .contact { padding: 100px 7vw; }
  .contact__actions { flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  footer .brand, .socials { justify-content: center; }
  .footer__location { justify-content: center; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
