@font-face {
  font-family: "EB Garamond";
  src: url("/assets/fonts/eb-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: Raleway;
  src: url("/assets/fonts/raleway-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #2f2e2e;
  --paper: #ffffff;
  --serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: Raleway, Arial, sans-serif;
  --header-height: 54px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 16px/1.7 var(--sans); }
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
section[id] { scroll-margin-top: var(--header-height); }

.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .65rem .9rem; background: #fff; transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.sr-only { 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; z-index: 30; top: 0; height: var(--header-height); display: grid; place-items: center; background: #fff; border-top: 1px solid #e8e8e8; }
.site-nav { height: 100%; display: flex; align-items: center; justify-content: center; gap: 0; }
.site-nav a { min-width: 132px; padding: .38rem .85rem; border: 2px solid transparent; color: #3d3d3d; font-size: 13px; line-height: 1.35; text-align: center; text-decoration: none; text-transform: uppercase; }
.site-nav a.is-active, .site-nav a:hover, .site-nav a:focus-visible { border-color: var(--ink); outline: 0; }
.site-nav:has(a:hover) a.is-active:not(:hover), .site-nav:has(a:focus-visible) a.is-active:not(:focus-visible) { border-color: transparent; }
.menu-button { display: none; }

.hero { position: relative; height: calc(100svh - var(--header-height)); min-height: 560px; overflow: hidden; color: #fff; background: #fff; }
.hero-media { position: absolute; inset: 0; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0; transition: opacity .75s ease; }
.hero-image.is-active { opacity: 1; }
.hero-copy { position: absolute; z-index: 2; inset: 0; display: grid; align-content: center; justify-items: center; padding-top: 1.25rem; text-align: center; pointer-events: none; }
.hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 2.65vw, 3.15rem); font-weight: 400; line-height: 1.1; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.hero-copy p { font-family: var(--serif); line-height: 1; text-transform: uppercase; }
.hero-role { margin: 1.5rem 0 0; font-size: clamp(.95rem, 1vw, 1.18rem); letter-spacing: .1em; }
.hero-locations { margin: 1rem 0 0; font-family: var(--sans) !important; font-size: clamp(.66rem, .68vw, .78rem); letter-spacing: .18em; }
.hero-locations span { display: inline-block; margin: 0 .55rem; }

.media-button, .portfolio-item { margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; cursor: zoom-in; }
.media-button:focus-visible, .portfolio-item:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }

.about { min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; background: #fff; overflow: hidden; }
.about-photo { grid-column: 2; grid-row: 1; width: min(750px, calc(100vw - 2rem)); min-height: 690px; margin-left: -85px; overflow: hidden; }
.about-photo picture { display: block; width: 100%; height: 100%; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-copy { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; padding: 4rem 2rem 4rem max(2rem, calc(50vw - 415px)); }
.about-copy h2 { margin: 0 0 2.2rem; font-family: var(--serif); font-size: clamp(2.5rem, 2.5vw, 3rem); font-weight: 400; line-height: 1; letter-spacing: .08em; }
.about-copy p { max-width: 36rem; margin: 0 0 1.5rem; font-size: 16px; }
.about-copy p:first-of-type { font-size: 18px; }
.about-reveal { transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1.15s cubic-bezier(.22, 1, .36, 1); }
.js .about-reveal { opacity: 0; }
.js .about-reveal-copy { transform: translate3d(0, 34px, 0); }
.js .about-reveal-photo { transform: translate3d(48px, 0, 0); }
.js .about-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.portfolio { width: 100%; padding: 0; background: #fff; }
.portfolio-grid { position: relative; width: 100%; aspect-ratio: 1905 / 4687.047; margin: 0; overflow: hidden; }
.portfolio-item { position: absolute; left: var(--left); top: var(--top); width: var(--width); height: var(--height); overflow: hidden; isolation: isolate; }
.portfolio-item picture { display: block; width: 100%; height: 100%; overflow: hidden; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center); transform: scale(1.001); transition: transform .7s cubic-bezier(.22, 1, .36, 1); will-change: transform; }

@media (hover: hover) and (pointer: fine) {
  .portfolio-item:hover img, .portfolio-item:focus-visible img { transform: scale(1.035); }
}

.quote-panel { position: relative; height: 114svh; min-height: 900px; display: flex; align-items: center; overflow: hidden; color: #fff; background-color: #1d1d1d; background-image: url("/assets/original/bc29df_1f4860f249484d35876142247a9c0784~mv2.jpg"); background-image: image-set(url("/assets/display/statement.webp") type("image/webp") 1x, url("/assets/original/bc29df_1f4860f249484d35876142247a9c0784~mv2.jpg") type("image/jpeg") 1x); background-position: center; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; }
.parallax-photo { display: none; }
.quote-panel blockquote { position: relative; z-index: 1; width: min(31rem, 42vw); margin: 0 0 0 max(2rem, calc(50vw - 450px)); padding: 4rem 0; font-family: var(--serif); font-size: clamp(2rem, 2.35vw, 2.8rem); font-weight: 400; line-height: 1.35; letter-spacing: .1em; text-align: left; }

.contact { position: relative; min-height: 780px; display: grid; place-items: center; overflow: hidden; background: #fff; }
.contact-photo { position: absolute; inset: 0; }
.contact-photo picture { display: block; width: 100%; height: 100%; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-card { position: absolute; z-index: 1; top: 22px; bottom: 22px; left: 24%; width: min(500px, calc(100% - 3rem)); margin: 0; padding: clamp(2.4rem, 4vw, 4.2rem); overflow: auto; background: #fff; }
.contact-card h2 { margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(3rem, 4vw, 3.75rem); font-weight: 400; line-height: 1; letter-spacing: .1em; }
.representation { margin: 0 0 .45rem; font-size: 15px; }
.representation a, .direct-contact a { text-underline-offset: .2em; }
.direct-contact { margin: 0 0 2.2rem; font-size: 18px; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; font-size: 13px; }
.contact-form input, .contact-form textarea { width: 100%; padding: .7rem .8rem; color: var(--ink); background: #fff; border: 1px solid #989898; border-radius: 0; }
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: center; min-width: 110px; padding: .7rem 1.2rem; color: #fff; background: var(--ink); border: 1px solid var(--ink); cursor: pointer; }
.contact-form button:hover, .contact-form button:focus-visible { color: var(--ink); background: #fff; }
.contact-privacy { margin: .15rem 0 0; color: #666; font-size: 11px; line-height: 1.55; text-align: center; }
.contact-privacy a { text-underline-offset: .2rem; }

.instagram-panel { position: relative; min-height: 78svh; display: grid; place-items: center; overflow: hidden; color: var(--ink); background-color: #fff; background-image: url("/assets/original/bc29df_319fc6f27cc94dffb1fedb96e84f7033~mv2.jpg"); background-image: image-set(url("/assets/display/instagram.webp") type("image/webp") 1x, url("/assets/original/bc29df_319fc6f27cc94dffb1fedb96e84f7033~mv2.jpg") type("image/jpeg") 1x); background-position: center; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; }
.instagram-panel > picture { display: none; }
.instagram-panel > div { position: relative; z-index: 1; text-align: center; }
.instagram-panel p { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 2.9rem); letter-spacing: .1em; }
.instagram-panel a { font-size: 13px; letter-spacing: .12em; text-underline-offset: .35rem; text-transform: uppercase; }

.social-feed { background: #fff; }
.feed-heading { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.5rem max(1.5rem, 4vw); border-bottom: 1px solid #e5e5e5; }
.feed-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 2.2vw, 2.4rem); font-weight: 400; letter-spacing: .08em; }
.feed-heading a { font-size: 12px; letter-spacing: .1em; text-underline-offset: .3rem; text-transform: uppercase; }
.social-feed iframe { display: block; width: 100%; height: min(1120px, 92svh); border: 0; background: #fff; }
.instagram-fallback { margin: 0; padding: 1.15rem; border-top: 1px solid #e5e5e5; font-size: 13px; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.instagram-fallback a { text-underline-offset: .3rem; }

.site-footer { min-height: 105px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2rem 3vw; background: #fff; border-top: 1px solid #e5e5e5; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer > a { justify-self: start; font-size: 1.5rem; text-decoration: none; }
.site-footer p { margin: 0; }
.site-footer div { justify-self: end; display: flex; gap: 1.5rem; }
.site-footer div a { text-underline-offset: .25rem; }

.lightbox { width: 100dvw; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: clamp(1rem, 3vw, 3.5rem); overflow: hidden; border: 0; background: #000; }
.lightbox::backdrop { background: #000; }
.lightbox[open] { display: grid; place-items: center; animation: lightbox-fade .22s ease-out both; }
.lightbox img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; animation: lightbox-image-in .4s cubic-bezier(.22, 1, .36, 1) both; }
.lightbox-close { position: fixed; z-index: 2; top: 1rem; right: 1rem; padding: .6rem; color: #fff; background: transparent; border: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }

.privacy-page { min-height: 100vh; background: #fff; }
.privacy-header { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0 max(1.5rem, 4vw); border-bottom: 1px solid #e5e5e5; }
.privacy-header a { font-size: 12px; letter-spacing: .1em; text-underline-offset: .3rem; text-transform: uppercase; }
.privacy-header .privacy-monogram { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .08em; text-decoration: none; }
.privacy-main { width: min(760px, calc(100% - 3rem)); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) 0; }
.privacy-main h1 { margin: 0 0 1.25rem; font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 5.8rem); font-weight: 400; line-height: .95; letter-spacing: .04em; }
.privacy-main .privacy-intro { margin: 0 0 4rem; color: #666; font-size: 14px; }
.privacy-main section { margin-top: 3rem; }
.privacy-main h2 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.15; letter-spacing: .03em; }
.privacy-main p, .privacy-main li { max-width: 68ch; }
.privacy-main ul { padding-left: 1.2rem; }
.privacy-main a { text-underline-offset: .24rem; }

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lightbox-image-in {
  from { opacity: 0; transform: scale(.985); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }
  .site-header { justify-items: end; padding: 0 1.2rem; }
  .menu-button { display: block; padding: .65rem 0; color: var(--ink); background: transparent; border: 0; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
  .site-nav { position: fixed; z-index: 29; inset: var(--header-height) 0 auto; height: auto; display: grid; gap: 0; padding: .7rem 1.2rem 1rem; background: #fff; border-top: 1px solid #e5e5e5; transform: translateY(-130%); transition: transform .25s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav a { min-width: 0; padding: .75rem 0; border: 0; text-align: left; }
  .site-nav a.is-active { text-decoration: underline; text-underline-offset: .35rem; }
  .hero { min-height: 500px; }
  .hero-media { inset: 0 -14%; width: 128%; }
  .hero-image { object-position: var(--mobile-focus, center); }
  .hero-copy h1 { max-width: 9ch; font-size: clamp(2.6rem, 12vw, 4.2rem); line-height: .9; white-space: normal; }
  .hero-role { margin-top: 1.35rem; font-size: .9rem; }
  .hero-locations { margin-top: .9rem; font-size: .66rem; }
  .about { grid-template-columns: 1fr; }
  .about-photo { grid-column: 1; grid-row: 1; width: 100%; min-height: 72vw; margin: 0; }
  .about-copy { grid-column: 1; grid-row: 2; padding: 4rem 1.5rem; }
  .portfolio { padding: 0; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; aspect-ratio: auto; overflow: visible; }
  .portfolio-item { position: relative; inset: auto !important; width: 100% !important; height: auto !important; }
  .portfolio-item picture { height: auto; }
  .portfolio-item img { width: 100%; height: auto; object-fit: contain; }
  .portfolio-item:last-child { grid-column: 1 / -1; }
  .quote-panel { height: 78svh; min-height: 580px; background-attachment: scroll; }
  .quote-panel blockquote { width: min(25rem, calc(100% - 3rem)); margin-left: 1.5rem; padding-right: 1.5rem; }
  .contact { min-height: 850px; }
  .contact-card { position: relative; inset: auto; margin: 0; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-panel { min-height: 68svh; background-attachment: scroll; }
  .feed-heading { min-height: 80px; align-items: flex-start; flex-direction: column; gap: .3rem; }
  .social-feed iframe { height: 840px; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; gap: .8rem; }
  .site-footer div { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .about-reveal { opacity: 1; transform: none; }
  .lightbox[open], .lightbox img { animation: none; }
}
