:root {
  --ink: #171410;
  --ink-soft: #26211b;
  --ivory: #f3efe7;
  --paper: #fbfaf6;
  --sand: #b69a79;
  --line: rgba(23, 20, 16, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
::selection { background: #927557; color: #fff; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  transition: opacity .8s ease, visibility .8s ease;
}
.page-loader span {
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: 74px;
  font-style: italic;
  animation: pulse 1.2s ease-in-out infinite alternate;
}
body.loaded .page-loader { opacity: 0; visibility: hidden; }
@keyframes pulse { from { opacity: .28; } to { opacity: 1; } }

.masthead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 34px clamp(24px, 5vw, 82px);
  color: white;
}
.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); padding-top: 19px; }
.nav-right { justify-content: flex-end; }
.nav a {
  position: relative;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .31em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .35s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { right: .31em; }
.nav-cta { color: #e8d0b2; }

.wordmark {
  display: flex;
  min-width: 180px;
  flex-direction: column;
  align-items: center;
  line-height: .8;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
}
.wordmark strong, .footer-mark strong {
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: 51px;
  font-weight: 400;
  font-style: italic;
}
.wordmark em, .footer-mark em {
  margin: -22px 0 0 35px;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 30px;
  font-weight: 400;
}
.wordmark small { margin-top: 11px; font-size: 7px; letter-spacing: .32em; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #0e0c0a;
  color: white;
}
.slides, .slide { position: absolute; inset: 0; }
.slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.045);
  transition: opacity 1.1s ease, visibility 1.1s ease, transform 7s ease;
}
.slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.slide img { height: 100%; object-fit: cover; object-position: center; }
.slide:first-child img { object-position: center 47%; }
.portrait-slide img { object-position: center 64%; }
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.5), transparent 25%, transparent 65%, rgba(0,0,0,.6)),
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 24%, transparent 76%, rgba(0,0,0,.18));
  pointer-events: none;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 70px;
  height: 70px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}
.slider-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: white;
  opacity: .75;
  transition: width .25s ease;
}
.slider-arrow:hover::before { width: 56px; }
.slider-arrow span { position: absolute; top: 26px; font-size: 16px; }
.slider-arrow.prev { left: clamp(8px, 2vw, 32px); }
.slider-arrow.next { right: clamp(8px, 2vw, 32px); }
.slider-arrow.prev::before { left: 14px; }
.slider-arrow.next::before { right: 14px; }
.slider-arrow.prev span { left: 8px; }
.slider-arrow.next span { right: 8px; }

.hero-caption {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 58px;
  width: min(620px, 76vw);
  transform: translateX(-50%);
  text-align: center;
}
.hero-caption p {
  margin: 0 0 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .46em;
  text-transform: uppercase;
}
.hero-caption h1 {
  margin: 0;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 62px);
  font-weight: 400;
  font-style: italic;
}
.slide-counter {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  letter-spacing: .2em;
}
.slide-counter i { width: 34px; height: 1px; background: rgba(255,255,255,.55); }
.hero-scroll {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  bottom: 35px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 8px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-scroll i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-style: normal; }

.section { padding: clamp(90px, 11vw, 165px) clamp(24px, 8vw, 122px); }
.kicker {
  margin: 0 0 25px;
  color: #9b7c5c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
}
.statement {
  position: relative;
  display: grid;
  grid-template-columns: .65fr 2.35fr;
  min-height: 82vh;
  align-items: center;
  background: var(--paper);
}
.statement-number { align-self: start; color: #a7a096; font-size: 10px; letter-spacing: .2em; }
.statement-copy { max-width: 980px; }
.statement h2, .gallery-heading h2, .story h2, .services h2, .contact h2 {
  margin: 0;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.statement h2 { font-size: clamp(48px, 7.2vw, 108px); line-height: .92; }
.statement h2 em, .gallery-heading h2 em, .story h2 em, .services h2 em, .contact h2 em { font-weight: 400; font-style: italic; }
.statement .lead {
  max-width: 590px;
  margin: 42px 0 34px auto;
  color: #706961;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.8;
}
.editorial-link {
  display: flex;
  width: fit-content;
  margin-left: auto;
  gap: 30px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.gallery { background: var(--ivory); }
.gallery-heading { display: grid; grid-template-columns: .7fr 1.3fr .75fr; align-items: end; gap: 60px; }
.gallery-heading .kicker { align-self: start; }
.gallery-heading h2 { font-size: clamp(54px, 6.5vw, 96px); line-height: .92; }
.gallery-heading > p:last-child { margin: 0; color: #756e66; font-family: Georgia, serif; font-size: 15px; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; padding: 0 16px 16px; }
.gallery-item {
  position: relative;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #252018;
  cursor: zoom-in;
  text-align: left;
}
.gallery-item img { height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.1,1), filter .7s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.68), transparent 50%); }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.07); }
.gallery-wide { grid-column: span 8; }
.gallery-tall { grid-column: span 4; }
.gallery-tall img { object-position: center 62%; }
.gallery-landscape { grid-column: span 12; min-height: 76vh; }
.gallery-half { grid-column: span 6; min-height: 620px; }
.gallery-meta {
  position: absolute;
  inset: auto 35px 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  color: white;
}
.gallery-meta small { grid-column: 1 / 3; margin-bottom: 9px; font-size: 8px; font-weight: 700; letter-spacing: .3em; }
.gallery-meta strong { font-family: Didot, "Bodoni MT", Georgia, serif; font-size: clamp(31px, 4vw, 58px); font-weight: 400; font-style: italic; }
.gallery-meta i { align-self: end; padding-bottom: 8px; font-size: 8px; font-style: normal; letter-spacing: .2em; }

.story { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: center; background: var(--paper); }
.story-visual { position: relative; min-height: 780px; }
.story-visual img { height: 100%; min-height: 780px; object-fit: cover; }
.story-visual span { position: absolute; left: 22px; bottom: 22px; color: white; font-size: 8px; line-height: 1.6; letter-spacing: .2em; }
.story h2 { font-size: clamp(54px, 6vw, 88px); line-height: .98; }
.story-copy > p:not(.kicker) { margin: 30px 0 0; color: #6e675f; font-family: Georgia, serif; font-size: 16px; line-height: 1.9; }
.story blockquote { margin: 46px 0 0; padding: 25px 0 0; border-top: 1px solid var(--line); font-family: Didot, "Bodoni MT", Georgia, serif; font-size: 24px; font-style: italic; line-height: 1.5; }

.services { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; background: #d9cbb9; }
.services-title { position: sticky; top: 90px; align-self: start; }
.services h2 { font-size: clamp(54px, 6.2vw, 92px); line-height: .95; }
.services-list article {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 22px;
  padding: 31px 0;
  border-top: 1px solid rgba(23,20,16,.3);
}
.services-list article:last-child { border-bottom: 1px solid rgba(23,20,16,.3); }
.services-list article > span { padding-top: 9px; font-size: 9px; letter-spacing: .2em; }
.services-list h3 { margin: 0 0 9px; font-family: Didot, "Bodoni MT", Georgia, serif; font-size: clamp(26px, 2.7vw, 40px); font-weight: 400; }
.services-list p { margin: 0; color: #655b50; font-family: Georgia, serif; line-height: 1.6; }
.services-list i { padding-top: 9px; font-style: normal; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 11vw; background: var(--ink); color: white; }
.contact .kicker { color: #d0ad83; }
.contact h2 { font-size: clamp(64px, 8vw, 118px); line-height: .82; }
.contact-intro > p:not(.kicker) { max-width: 440px; margin: 40px 0; color: #ada69d; font-family: Georgia, serif; line-height: 1.8; }
.contact-place { color: #d0ad83; font-size: 9px; letter-spacing: .28em; }
.contact form { align-self: center; padding: clamp(30px, 4vw, 58px); border: 1px solid rgba(255,255,255,.18); }
.contact label { display: block; margin-bottom: 28px; }
.contact label > span { display: block; margin-bottom: 9px; color: #d0ad83; font-size: 8px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; }
.contact input, .contact select, .contact textarea { width: 100%; padding: 10px 0 13px; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: 0; background: transparent; color: white; }
.contact input:focus, .contact select:focus, .contact textarea:focus { border-color: #d0ad83; }
.contact input::placeholder, .contact textarea::placeholder { color: #6e6962; }
.contact select { color-scheme: dark; }
.contact textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.contact form button { display: flex; width: 100%; min-height: 56px; align-items: center; justify-content: space-between; padding: 0 22px; border: 1px solid #d0ad83; background: transparent; color: white; cursor: pointer; font-size: 9px; font-weight: 700; letter-spacing: .22em; transition: background .3s ease, color .3s ease; }
.contact form button:hover { background: #d0ad83; color: var(--ink); }
.contact form > small { display: block; margin-top: 13px; color: #6f6961; font-size: 9px; text-align: center; }

footer { display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: clamp(25px, 5vw, 80px); padding: 40px clamp(24px, 5vw, 80px); background: #0e0c0a; color: #888077; font-size: 8px; letter-spacing: .2em; }
.footer-mark { display: flex; width: fit-content; align-items: flex-end; color: white; line-height: .8; }
.footer-mark strong { font-size: 37px; }
.footer-mark em { margin: 0 0 1px -3px; font-size: 22px; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; padding: 0; border: 0; background: rgba(7,6,5,.96); color: white; }
.lightbox::backdrop { background: rgba(0,0,0,.92); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox img { width: auto; max-width: 90vw; max-height: 84vh; object-fit: contain; }
.lightbox p { position: fixed; left: 5vw; bottom: 3vh; margin: 0; font-size: 9px; letter-spacing: .25em; text-transform: uppercase; }
.lightbox-close { position: fixed; top: 22px; right: 28px; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 28px; font-weight: 200; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .masthead { grid-template-columns: 1fr auto; align-items: center; padding-top: 20px; }
  .nav { display: none; }
  .wordmark { justify-self: start; min-width: 120px; align-items: flex-start; }
  .wordmark strong { font-size: 41px; }
  .wordmark em { margin: -18px 0 0 28px; font-size: 25px; }
  .wordmark small { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 41; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(0,0,0,.12); }
  .menu-toggle span { position: absolute; left: 14px; width: 18px; height: 1px; background: white; transition: transform .3s ease, top .3s ease; }
  .menu-toggle span:first-child { top: 19px; }
  .menu-toggle span:last-child { top: 27px; }
  body.menu-open .menu-toggle span:first-child { top: 23px; transform: rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { top: 23px; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 25; display: grid; place-items: center; background: var(--ink); color: white; opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease; }
  body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu-inner { display: flex; flex-direction: column; align-items: center; }
  .mobile-menu-inner p { margin: 0 0 35px; color: #a98b69; font-size: 9px; letter-spacing: .3em; }
  .mobile-menu-inner a { margin: 7px 0; font-family: Didot, "Bodoni MT", Georgia, serif; font-size: clamp(34px, 8vw, 56px); font-style: italic; }
  .mobile-menu-inner small { margin-top: 38px; color: #8c857d; font-size: 8px; letter-spacing: .25em; }
  .statement { grid-template-columns: 1fr; }
  .statement-number { margin-bottom: 30px; }
  .gallery-heading { grid-template-columns: 1fr; align-items: start; }
  .gallery-heading > p:last-child { max-width: 430px; }
  .story { grid-template-columns: 1fr; }
  .story-visual, .story-visual img { min-height: 68vw; }
  .services { grid-template-columns: 1fr; }
  .services-title { position: static; }
  .contact { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > *:nth-child(even) { justify-self: end; }
}

@media (max-width: 680px) {
  .hero { min-height: 690px; }
  .slide:first-child img { object-position: 58% center; }
  .slide:nth-child(2) img { object-position: 53% center; }
  .portrait-slide img { object-position: 50% 72%; }
  .slider-arrow { width: 48px; }
  .slider-arrow::before { width: 28px; }
  .slider-arrow:hover::before { width: 34px; }
  .slider-arrow.prev::before { left: 9px; }
  .slider-arrow.next::before { right: 9px; }
  .slider-arrow.prev span { left: 3px; }
  .slider-arrow.next span { right: 3px; }
  .hero-caption { bottom: 82px; }
  .slide-counter { right: 20px; bottom: 26px; }
  .hero-scroll { left: 20px; bottom: 19px; }
  .section { padding-left: 22px; padding-right: 22px; }
  .statement { min-height: auto; }
  .statement h2 { font-size: 15.5vw; }
  .statement .lead, .editorial-link { margin-left: 0; }
  .gallery-grid { display: block; padding: 0 10px 10px; }
  .gallery-item { width: 100%; min-height: 66vh; margin-bottom: 10px; }
  .gallery-landscape, .gallery-half { min-height: 55vh; }
  .gallery-meta { inset: auto 20px 20px; }
  .gallery-meta i { display: none; }
  .story-visual, .story-visual img { min-height: 72vh; }
  .services-list article { grid-template-columns: 32px 1fr; }
  .services-list article > i { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer > *:nth-child(even) { justify-self: start; }
}

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