:root {
  --ink: #11100f;
  --paper: #f4f0e8;
  --cream: #e7dfd2;
  --rust: #a54f35;
  --sage: #7d8770;
  --line: rgba(17,16,15,.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.about-copy a,
.lead a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.about-copy a:hover,
.lead a:hover { opacity: 0.82; }
img { display: block; max-width: 100%; }
.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.site-header {
  min-height: 88px; padding: 0 4vw; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; border-bottom: 1px solid var(--line); position: relative; z-index: 10;
}
.brand {
  width: 46px; height: 46px; border: 1px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; font-family: "Playfair Display", serif; font-size: 17px;
}
nav { display: flex; gap: clamp(18px, 3vw, 48px); font-size: 13px; }
nav a, .social-row a, .external-links a { position: relative; }
nav a::after, .social-row a::after, .external-links a::after, .testimonials-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: currentColor; transition: right .25s ease;
}
nav a:hover::after, .social-row a:hover::after, .external-links a:hover::after, .testimonials-links a:hover::after { right: 0; }
.header-button { justify-self: end; font-size: 13px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }

.hero {
  min-height: calc(100vh - 88px); display: grid; grid-template-columns: 52% 48%;
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: 9vh 5vw 6vh 7vw; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .2em; font-size: 11px; font-weight: 600; margin: 0 0 24px; }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 600; margin: 0; line-height: .93; letter-spacing: -.045em; }
h1 { font-size: clamp(72px, 10vw, 156px); }
h1 em, h2 em { font-weight: 500; }
.intro { max-width: 580px; font-size: clamp(17px, 1.35vw, 22px); line-height: 1.55; margin: 42px 0 0; }
.intro a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.intro a:hover { opacity: 0.82; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px;
  padding: 0 24px; font-size: 13px; transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--rust); color: white; }
.button.text { padding: 0; min-height: auto; border-bottom: 1px solid currentColor; }
.button.dark { background: var(--ink); }
.portrait-wrap { background: var(--cream); min-height: 680px; padding: 4vw; display: flex; flex-direction: column; }
.portrait-frame { flex: 1; overflow: hidden; background: linear-gradient(145deg, #a89282, #4c3e36); position: relative; min-height: 180px; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.98); }
.portrait-fallback::after {
  content: "RH"; position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,.75); font: 500 clamp(90px, 12vw, 190px)/1 "Playfair Display", serif;
}
.portrait-caption { display: flex; justify-content: space-between; padding-top: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.section { position: relative; padding: 11vw 7vw; border-bottom: 1px solid var(--line); }
.section-number { position: absolute; top: 40px; left: 4vw; font-size: 11px; letter-spacing: .18em; }
.section-heading { display: grid; grid-template-columns: 28% 72%; align-items: start; }
.section-heading .eyebrow { padding-top: 10px; }
h2 { font-size: clamp(50px, 7vw, 106px); }


.about {
  width: 100%;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 72px);
}
.about-inner,
.about-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.about-hero-eyebrow {
  margin: 0 0 24px;
  text-align: center;
}
.about-hero-title {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 0.95;
  position: static;
  transform: none;
}
.about-hero-title .title-line {
  display: block;
}
.about-hero-title .title-line-italic {
  font-style: italic;
}
.about-hero-copy {
  margin-top: clamp(72px, 7vw, 130px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 17px;
  line-height: 1.8;
  position: static;
  transform: none;
}
.about-hero-copy::after {
  content: "";
  display: table;
  clear: both;
}
.about-hero-copy > p:has(+ p .about-inline-image-link) {
  margin-bottom: 0;
}
.about-inline-image-link {
  float: right;
  width: clamp(300px, 28vw, 420px);
  max-width: 42%;
  margin: 40px 0 40px 42px;
  text-decoration: none !important;
  color: inherit;
}
.about-inline-image {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.14);
  filter: saturate(.78) contrast(.98);
}
.about-hero-copy p {
  margin-top: 0;
  margin-bottom: 1.15em;
}
.about-hero-copy p:last-child {
  margin-bottom: 0;
}
.about-hero-copy a {
  color: var(--rust);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.about-hero-copy a:hover { opacity: 0.82; }


.lead { font: 500 clamp(24px, 2.35vw, 37px)/1.35 "Playfair Display", serif; margin: 0; }

.work { background: var(--ink); color: var(--paper); }
.work .section-number { color: rgba(244,240,232,.55); }
.work-list { margin: 8vw 0 0 28%; border-top: 1px solid rgba(244,240,232,.22); }
.work-item {
  display: grid; grid-template-columns: 80px 1fr 40px; gap: 20px; align-items: center;
  padding: 32px 0; border-bottom: 1px solid rgba(244,240,232,.22);
}
.work-index { font-size: 11px; opacity: .5; }
.work-item h3 { font: 500 clamp(26px, 2.4vw, 42px)/1.1 "Playfair Display", serif; margin: 0 0 9px; }
.work-item p { margin: 0; color: rgba(244,240,232,.62); max-width: 650px; }
.work-mark { font-size: 22px; transition: transform .2s; }
.work-item:hover .work-mark { transform: translate(4px,-4px); }
.external-links { margin: 48px 0 0 28%; display: flex; flex-wrap: wrap; gap: 36px; font-size: 13px; }



.testimonials {
  background: var(--cream);
  padding: clamp(72px, 9vw, 130px) clamp(24px, 5vw, 72px);
}
.testimonials-header {
  max-width: 1280px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  text-align: center;
}
.testimonials-header .eyebrow {
  margin-bottom: 18px;
}
.testimonials-header h2 {
  margin: 0;
  line-height: 0.95;
}
.testimonial-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}
.testimonial-track {
  display: flex;
  gap: clamp(24px, 3vw, 42px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
}
.testimonial-track::-webkit-scrollbar {
  display: none;
}
.testimonial-card {
  flex: 0 0 calc((100% - 84px) / 3);
  min-width: 0;
  min-height: 430px;
  scroll-snap-align: start;
  margin: 0;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 34px);
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-project {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.45;
}
.testimonial-rating {
  margin: 0 0 16px;
  color: #c8922a;
  font-size: 14px;
  letter-spacing: .08em;
}
.testimonial-rating span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  margin-left: 6px;
}
.testimonial-quote {
  margin: 0 0 28px;
  font: italic 500 clamp(17px, 1.2vw, 20px)/1.65 "Playfair Display", serif;
  flex: 1;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.testimonial-meta cite {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
}
.testimonial-date { opacity: .72; }
.testimonial-role { opacity: .72; }
.testimonial-source { opacity: .55; font-size: 11px; }
.testimonial-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 252, 245, 0.85);
  color: #111;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .2s, opacity .2s;
}
.testimonial-arrow:hover {
  background: #fff;
}
.testimonial-arrow:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
.testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 1100px) {
  .testimonial-card {
    flex-basis: calc((100% - 36px) / 2);
    min-height: 400px;
  }
}
@media (max-width: 720px) {
  .testimonial-carousel {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .testimonial-viewport {
    order: 1;
  }
  .testimonial-arrow-left,
  .testimonial-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .testimonial-arrow-left { left: 8px; }
  .testimonial-arrow-right { right: 8px; }
  .testimonial-card {
    flex-basis: 86%;
    min-height: auto;
    padding: 34px 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { scroll-behavior: auto; }
}


.photography { background: #d9d0c2; }
.photo-intro { display: grid; grid-template-columns: 1.15fr 1fr; gap: 6vw; align-items: start; }
.photo-copy { font-size: 17px; line-height: 1.75; }
.photo-copy p { margin: 0 0 1.1em; }
.photo-copy p:last-child { margin-bottom: 0; }
.photo-note {
  font: italic 500 clamp(18px, 1.4vw, 22px)/1.45 "Playfair Display", serif;
  margin-top: 1.4em !important;
}

.photo-carousel {
  margin-top: 7vw;
  width: 100%;
  max-width: 100%;
}
.photo-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.photo-viewport {
  position: relative;
  overflow: hidden;
  background: #1a1816;
  outline: none;
  touch-action: pan-y;
  min-height: min(70vh, 720px);
  max-height: 760px;
  height: min(70vh, 720px);
}
.photo-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--rust);
}
.photo-track {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
  will-change: transform;
}
.photo-slide {
  margin: 0;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  box-sizing: border-box;
}
.photo-open {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  max-width: 100%;
  max-height: 100%;
  display: grid;
  place-items: center;
}
.photo-open:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}
.photo-slide picture,
.photo-slide img {
  display: block;
  max-width: 100%;
  max-height: min(66vh, 680px);
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}
.photo-nav {
  appearance: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,.35);
  background: rgba(17,16,15,.55);
  color: #f4f0e8;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, transform .2s, border-color .2s;
  z-index: 2;
}
.photo-nav:hover { background: rgba(17,16,15,.78); transform: translateY(-1px); }
.photo-nav:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
.photo-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.photo-caption {
  margin: 0;
  font: italic 500 clamp(17px, 1.3vw, 21px)/1.4 "Playfair Display", serif;
}
.photo-counter {
  margin: 0;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
  white-space: nowrap;
}
.photo-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.photo-thumb {
  appearance: none;
  border: 1px solid transparent;
  background: #2a2622;
  padding: 0;
  flex: 0 0 88px;
  width: 88px;
  height: 64px;
  overflow: hidden;
  cursor: pointer;
  opacity: .62;
  transition: opacity .2s, border-color .2s, transform .2s;
}
.photo-thumb img,
.photo-thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}
.photo-thumb img {
  object-fit: cover;
  filter: saturate(.85);
}
.photo-thumb.is-active,
.photo-thumb[aria-selected="true"] {
  opacity: 1;
  border-color: var(--ink);
  transform: translateY(-1px);
}
.photo-thumb:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}
.photo-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.photo-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.photo-dot.is-active,
.photo-dot[aria-current="true"] {
  background: var(--ink);
}
.photo-dot:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.photo-lightbox[hidden] { display: none !important; }
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}
.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,.92);
}
.photo-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1400px);
  height: min(92vh, 980px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "close close close"
    "prev figure next"
    "meta meta meta";
  align-items: center;
  gap: 12px;
  padding: 18px;
}
.photo-lightbox-close {
  grid-area: close;
  justify-self: end;
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,.4);
  background: rgba(17,16,15,.55);
  color: #f4f0e8;
  font-size: 28px;
  cursor: pointer;
}
.photo-lightbox-close:focus-visible {
  outline: 2px solid #e7dfd2;
  outline-offset: 3px;
}
.photo-lightbox-figure {
  margin: 0;
  grid-area: figure;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  min-height: 0;
}
.photo-lightbox-figure img {
  max-width: 100%;
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
}
.photo-lightbox-prev { grid-area: prev; }
.photo-lightbox-next { grid-area: next; }
.photo-lightbox-meta {
  grid-area: meta;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #f4f0e8;
  font-size: 14px;
}
.photo-lightbox-meta p { margin: 0; }
body.lightbox-open { overflow: hidden; }

.photo-cta { display: flex; justify-content: space-between; align-items: center; margin-top: 38px; border-top: 1px solid var(--line); padding-top: 24px; }
.photo-cta p { margin: 0; font: italic 500 22px "Playfair Display", serif; }

@media (max-width: 900px) {
  .photo-stage { grid-template-columns: 1fr; gap: 0; }
  .photo-nav.photo-prev,
  .photo-nav.photo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .photo-nav.photo-prev { left: 10px; }
  .photo-nav.photo-next { right: 10px; }
  .photo-viewport {
    min-height: min(62vh, 560px);
    height: min(62vh, 560px);
  }
  .photo-slide { padding: 14px; }
  .photo-slide img { max-height: min(54vh, 520px); }
  .photo-thumbs { display: none; }
  .photo-dots { display: flex; }
}
@media (max-width: 600px) {
  .photo-viewport {
    min-height: min(58vh, 480px);
    height: min(58vh, 480px);
  }
  .photo-nav { width: 42px; height: 42px; font-size: 24px; }
  .photo-meta { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .photo-track { transition: none; }
}

.contact { background: var(--rust); color: white; min-height: 78vh; display: grid; place-items: center; text-align: center; }
.contact-inner h2 { font-size: clamp(58px, 9vw, 135px); }
.email-link { display: inline-block; margin-top: 52px; font-size: clamp(20px, 2vw, 31px); border-bottom: 1px solid rgba(255,255,255,.7); padding-bottom: 6px; }
.contact-inner .button.primary { margin-top: 28px; background: white; color: var(--rust); }
.social-row { margin-top: 62px; display: flex; justify-content: center; gap: 34px; font-size: 13px; }
footer { padding: 28px 4vw; display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 800px) {
  .about-hero-eyebrow,
  .about-hero-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .about-hero-copy {
    margin-top: clamp(56px, 10vw, 88px);
    max-width: 100%;
  }
  .about-inline-image-link {
    float: none;
    display: block;
    width: min(100%, 420px);
    max-width: 100%;
    margin: 40px auto;
  }
  .about-inline-image {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 72vh; padding: 12vh 7vw 8vh; }
  .portrait-wrap { min-height: 680px; }
  .section { padding: 120px 7vw 90px; }
  .section-heading, .photo-intro { grid-template-columns: 1fr; gap: 28px; }
  .work-list, .external-links { margin-left: 0; }
  .about-copy { overflow: visible; }
}
@media (max-width: 600px) {
  .header-button { font-size: 12px; }
  h1 { font-size: 20vw; }
  .hero-actions, .photo-cta, footer { align-items: flex-start; flex-direction: column; }
  .portrait-wrap { min-height: 540px; padding: 20px; }
  .work-item { grid-template-columns: 38px 1fr 20px; }
  .social-row { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
