:root {
  --paper: #f5efe7;
  --paper-deep: #e9dccf;
  --surface: #fffaf4;
  --ink: #302622;
  --ink-soft: #665853;
  --rose: #9e625a;
  --line: #d8c7b8;
  --white: #fffdf9;
  --serif: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-x: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(6rem, 10vw, 10rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }
::selection { color: var(--white); background: var(--rose); }

.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 100; padding: .7rem 1rem; color: var(--white); background: var(--ink); transform: translateY(-160%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; display: flex; align-items: center; justify-content: space-between; min-height: 5.5rem; padding: 0 var(--page-x); color: var(--white); border-bottom: 1px solid rgb(255 255 255 / 25%); transition: color 260ms, background 260ms, min-height 260ms, border-color 260ms; }
.site-header.is-scrolled { min-height: 4.75rem; color: var(--ink); background: rgb(245 239 231 / 92%); border-color: rgb(48 38 34 / 12%); backdrop-filter: blur(18px); }
.site-header.menu-active { color: var(--ink); }
.brand { position: relative; z-index: 2; display: inline-flex; flex-direction: column; justify-content: center; min-height: 2.75rem; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 500; letter-spacing: .01em; }
.brand__role { margin-top: .3rem; font-size: .58rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.5vw, 2.8rem); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:not(.site-nav__cta) { position: relative; padding: .9rem 0; }
.site-nav a:not(.site-nav__cta)::after { position: absolute; inset: auto 0 .55rem; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav__cta { display: inline-flex; align-items: center; justify-content: center; min-height: 2.9rem; padding: 0 1.25rem; color: var(--ink); background: var(--white); transition: color 200ms, background 200ms; }
.site-header.is-scrolled .site-nav__cta { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; padding: .8rem .55rem; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: .34rem 0; background: currentColor; transition: transform 220ms; }

.hero { position: relative; display: grid; min-height: max(46rem, 100svh); overflow: hidden; color: var(--white); background: #756356; isolation: isolate; }
.hero__media, .hero__veil { position: absolute; inset: 0; }
.hero__media { z-index: -2; }
.hero__media img { height: 100%; object-fit: cover; object-position: 58% center; animation: hero-zoom 1.4s var(--ease) both; }
.hero__veil { z-index: -1; background: linear-gradient(90deg, rgb(32 25 21 / 70%) 0%, rgb(38 29 24 / 23%) 52%, rgb(35 28 24 / 7%) 100%), linear-gradient(0deg, rgb(26 19 16 / 38%), transparent 42%); }
.hero__content { align-self: end; width: min(49rem, 70vw); padding: 10rem var(--page-x) clamp(8.5rem, 13vh, 10.5rem); }
.eyebrow { margin: 0 0 1.2rem; font-size: .67rem; font-weight: 600; letter-spacing: .22em; line-height: 1.5; text-transform: uppercase; }
.hero h1, .section-heading h2, .manifesto h2, .process h2, .contact h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .88; }
.hero h1 { font-size: clamp(4rem, 8.2vw, 8.2rem); }
h1 em, h2 em { font-weight: 400; }
.hero__lead { max-width: 35rem; margin: 2.1rem 0 0; color: rgb(255 253 249 / 88%); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.45rem; padding: .25rem 1.65rem; font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; transition: color 220ms, background 220ms, transform 220ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: #eaded1; }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--rose); }
.text-link { display: inline-flex; align-items: center; gap: .7rem; min-height: 2.75rem; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link svg, .service svg { width: 1.35rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; transition: transform 220ms var(--ease); }
.text-link:hover svg, .service:hover svg { transform: translateX(.3rem); }
.hero__caption { position: absolute; right: var(--page-x); bottom: 2.4rem; display: flex; align-items: center; gap: 1rem; max-width: 18rem; color: rgb(255 253 249 / 76%); font-size: .66rem; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.hero__caption span:first-child { padding-right: 1rem; border-right: 1px solid rgb(255 255 255 / 45%); }
.hero__scroll { position: absolute; bottom: 1.6rem; left: var(--page-x); display: none; align-items: center; gap: .65rem; min-height: 2.75rem; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; }
.hero__scroll i { width: 2.5rem; height: 1px; background: currentColor; }

.section { padding: var(--section-y) var(--page-x); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem); align-items: end; gap: 4rem; max-width: 90rem; margin: 0 auto clamp(4rem, 7vw, 7rem); }
.section-heading h2 { font-size: clamp(3.7rem, 7vw, 7rem); }
.section-heading > p { margin: 0 0 .7rem; color: var(--ink-soft); font-size: clamp(1rem, 1.25vw, 1.15rem); }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(3.5rem, 7vw, 8rem) clamp(1.25rem, 3vw, 3.5rem); max-width: 90rem; margin: 0 auto; }
.story:nth-child(even) { transform: translateY(clamp(2rem, 8vw, 8rem)); }
.story figure { margin: 0; overflow: hidden; background: var(--paper-deep); }
.story figure img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform 700ms var(--ease), filter 300ms; }
.story--tall figure img { aspect-ratio: 4 / 5; }
.story:hover figure img { filter: saturate(.92) contrast(1.02); transform: scale(1.025); }
.story__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-top: 1.15rem; }
.story__meta h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.3rem); font-weight: 500; line-height: 1.1; }
.story__meta p { margin: 0; color: var(--ink-soft); font-size: .64rem; letter-spacing: .12em; text-align: right; text-transform: uppercase; }

.manifesto { display: grid; grid-template-columns: minmax(10rem, .5fr) minmax(0, 2fr); gap: clamp(2rem, 6vw, 8rem); margin-top: clamp(5rem, 11vw, 12rem); padding: var(--section-y) var(--page-x); color: var(--white); background: var(--ink); }
.manifesto__aside { display: flex; flex-direction: column; justify-content: space-between; }
.manifesto__index { margin: 8rem 0 0; color: rgb(255 253 249 / 50%); font-size: .7rem; letter-spacing: .14em; }
.manifesto h2 { max-width: 65rem; font-size: clamp(3.5rem, 6.5vw, 7.2rem); line-height: .98; }
.manifesto__copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 6rem); max-width: 52rem; margin: clamp(3rem, 6vw, 6rem) 0 0 auto; color: rgb(255 253 249 / 70%); }
.manifesto__copy p { margin: 0; }

.section-heading--compact { margin-bottom: clamp(3rem, 5vw, 5rem); }
.services-list { max-width: 90rem; margin: 0 auto; border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 4rem minmax(15rem, 1.1fr) minmax(15rem, 1fr) 2rem; align-items: center; gap: 1.5rem; min-height: 8.5rem; border-bottom: 1px solid var(--line); transition: padding 260ms var(--ease), background 260ms; }
.service:hover { padding-right: 1.25rem; padding-left: 1.25rem; background: rgb(255 250 244 / 62%); }
.service__number { color: var(--rose); font-size: .68rem; letter-spacing: .12em; }
.service__title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.service__description { color: var(--ink-soft); font-size: .9rem; }

.process { display: grid; grid-template-columns: minmax(18rem, .8fr) minmax(0, 1.2fr); gap: clamp(4rem, 9vw, 10rem); padding: var(--section-y) var(--page-x); background: var(--surface); }
.process h2 { font-size: clamp(3.7rem, 6vw, 6.8rem); line-height: .92; }
.process__steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process__steps li { display: grid; grid-template-columns: 3rem .7fr 1.3fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.process__steps span { color: var(--rose); font-size: .68rem; letter-spacing: .12em; }
.process__steps h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; line-height: 1.1; }
.process__steps p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.contact { padding: clamp(6rem, 12vw, 12rem) var(--page-x); text-align: center; background: radial-gradient(circle at 20% 20%, rgb(185 121 112 / 17%), transparent 28%), radial-gradient(circle at 80% 70%, rgb(178 142 115 / 18%), transparent 34%), var(--paper-deep); }
.contact__inner { max-width: 69rem; margin: 0 auto; }
.contact h2 { font-size: clamp(3.6rem, 7.2vw, 8rem); line-height: .92; }
.contact__inner > p:not(.eyebrow) { max-width: 38rem; margin: 2.1rem auto 2.4rem; color: var(--ink-soft); font-size: 1.05rem; }
.contact__email { display: block; width: fit-content; min-height: 2.75rem; margin: 1.3rem auto 0; color: var(--ink-soft); font-size: .78rem; letter-spacing: .06em; line-height: 2.75rem; border-bottom: 1px solid currentColor; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; padding: 3rem var(--page-x); color: rgb(255 253 249 / 68%); background: var(--ink); }
.brand--footer { color: var(--white); }
.site-footer p { margin: 0; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer p:last-child { text-align: right; }

.js .reveal { opacity: 1; transform: none; }
.js .reveal.is-visible { animation: reveal-in 700ms var(--ease) both; }
@keyframes reveal-in { from { opacity: .72; transform: translateY(1.25rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-zoom { from { opacity: .65; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 900px) {
  .site-header { min-height: 4.75rem; }
  .menu-toggle { position: relative; z-index: 2; display: block; }
  .site-nav { position: fixed; inset: 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: .8rem; padding: 7rem var(--page-x) 4rem; color: var(--ink); background: var(--paper); visibility: hidden; opacity: 0; transform: translateY(-.8rem); transition: opacity 220ms, transform 220ms var(--ease); }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a:not(.site-nav__cta) { font-family: var(--serif); font-size: clamp(2.5rem, 10vw, 4.5rem); font-weight: 400; letter-spacing: -.02em; line-height: 1; text-transform: none; }
  .site-nav__cta { margin-top: 2rem; color: var(--white); background: var(--ink); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.21rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.21rem) rotate(-45deg); }
  .hero__content { width: min(43rem, 86vw); }
  .section-heading, .manifesto, .process { grid-template-columns: 1fr; }
  .manifesto__aside { flex-direction: row; }
  .manifesto__index { margin: 0; }
  .process { gap: 4rem; }
  .service { grid-template-columns: 3rem minmax(0, 1fr) 2rem; }
  .service__description { display: none; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p:nth-child(2) { display: none; }
}

@media (max-width: 640px) {
  :root { --page-x: 1.25rem; --section-y: 5.5rem; }
  .brand__name { font-size: 1.35rem; }
  .hero { min-height: max(43rem, 100svh); }
  .hero__media img { object-position: 66% center; }
  .hero__veil { background: linear-gradient(0deg, rgb(30 22 18 / 84%) 0%, rgb(33 24 20 / 34%) 62%, rgb(33 24 20 / 15%) 100%); }
  .hero__content { width: 100%; padding: 9rem var(--page-x) 8.5rem; }
  .hero h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  .hero__lead { margin-top: 1.5rem; font-size: .94rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: .65rem; margin-top: 1.75rem; }
  .hero__caption { display: none; }
  .hero__scroll { display: flex; }
  .section-heading { grid-template-columns: 1fr; gap: 1.6rem; margin-bottom: 3rem; }
  .section-heading h2 { font-size: clamp(3.6rem, 18vw, 5rem); }
  .portfolio-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .story:nth-child(even) { transform: none; }
  .story figure img, .story--tall figure img { aspect-ratio: 4 / 5; }
  .story__meta { align-items: flex-start; }
  .story__meta p { max-width: 8rem; }
  .manifesto { margin-top: 0; gap: 3.5rem; }
  .manifesto h2, .process h2 { font-size: clamp(3.4rem, 16vw, 5rem); }
  .manifesto__copy { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 3rem; }
  .service { grid-template-columns: 2rem minmax(0, 1fr) 1.5rem; gap: .75rem; min-height: 7.5rem; }
  .service__title { font-size: 1.75rem; }
  .process__steps li { grid-template-columns: 2.2rem 1fr; gap: .75rem; }
  .process__steps p { grid-column: 2; }
  .contact h2 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 2rem; }
  .site-footer p:last-child { text-align: left; }
}

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