: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; }
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 {
  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 { 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; }
.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; }
.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-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin: 9vw 0 0 28%; max-width: 900px; }
.lead { font: 500 clamp(24px, 2.35vw, 37px)/1.35 "Playfair Display", serif; margin: 0; }
.about-copy { font-size: 17px; line-height: 1.8; }
.about-copy p:first-child { margin-top: 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; }

.photography { background: #d9d0c2; }
.photo-intro { display: grid; grid-template-columns: 2fr 1fr; gap: 7vw; align-items: end; }
.photo-intro > p { font-size: 17px; line-height: 1.75; margin: 0 0 8px; }
.gallery-visual {
  display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-template-rows: 260px 300px;
  gap: 14px; margin-top: 7vw;
}
.visual-card { position: relative; overflow: hidden; min-height: 200px; }
.visual-card::before { content: ""; position: absolute; inset: -10%; transition: transform .7s ease; }
.visual-card:hover::before { transform: scale(1.08) rotate(.5deg); }
.visual-card span { position: absolute; left: 18px; bottom: 16px; color: white; font: italic 500 20px "Playfair Display", serif; z-index: 2; }
.visual-one { grid-row: 1 / span 2; }
.visual-one::before { background: radial-gradient(circle at 65% 30%, #f2c8a2 0 8%, transparent 9%), linear-gradient(145deg,#30484d,#847b65 45%,#d79b71); }
.visual-two::before { background: linear-gradient(120deg,#311f21,#925d51 45%,#d2a682); }
.visual-three { grid-row: 1 / span 2; }
.visual-three::before { background: radial-gradient(circle at 35% 28%,#d7d7c5 0 12%,transparent 13%), linear-gradient(155deg,#5b7164,#213b3a 53%,#bb7654); }
.visual-four::before { background: linear-gradient(135deg,#d9b38f,#6b4e46 55%,#28383c); }
.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; }

.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; }
.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: 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; }
  .about-grid, .work-list, .external-links { margin-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-visual { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2,280px); }
  .visual-one, .visual-three { grid-row: auto; }
}
@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; }
  .gallery-visual { grid-template-columns: 1fr; grid-template-rows: repeat(4,260px); }
  .social-row { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
