:root {
  --ivory: #f7f4e5;
  --paper: #fbfaf4;
  --brown: #4f3c3a;
  --brown-deep: #302523;
  --olive: #517549;
  --sage: #b6beaf;
  --sand: #cebaa2;
  --line: rgba(79, 60, 58, 0.2);
  --text: #332d2a;
  --muted: #6b625c;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Arial, sans-serif;
  --container: min(88rem, calc(100vw - 2rem));
  --section: clamp(5rem, 9vw, 9rem);
  --header: 5.25rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 0.06em; text-underline-offset: 0.22em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible { outline: 3px solid var(--olive); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--brown-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(48rem, calc(100vw - 2rem)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--brown-deep); color: var(--ivory); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section--dark .eyebrow { color: var(--sage); }
h1, h2, h3 { margin: 0; color: var(--brown-deep); font-family: var(--serif); font-weight: 400; line-height: 1.08; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ivory); }
h1 { font-size: clamp(3.2rem, 8vw, 7.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.6rem, 2.6vw, 2.5rem); }
.lead { max-width: 45rem; margin: 1.5rem 0 0; font-size: clamp(1.12rem, 1.8vw, 1.4rem); color: var(--muted); }
.section--dark .lead { color: rgba(247, 244, 229, 0.78); }
.measure { max-width: 42rem; }
.display-line { display: block; }
.rule { width: 4rem; height: 1px; margin: 1.5rem 0; border: 0; background: currentColor; opacity: 0.45; }

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--brown);
  background: var(--brown);
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { background: var(--olive); border-color: var(--olive); }
.button--outline { background: transparent; color: var(--brown-deep); }
.button--outline:hover { color: var(--ivory); }
.section--dark .button { background: var(--ivory); border-color: var(--ivory); color: var(--brown-deep); }
.section--dark .button--outline { background: transparent; color: var(--ivory); }
.text-link { display: inline-block; margin-top: 1.25rem; color: var(--olive); font-weight: 650; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header);
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.site-header.is-solid,
body:not([data-page='home']) .site-header { background: rgba(247, 244, 229, 0.97); border-color: var(--line); color: var(--brown-deep); }
.header-inner { width: var(--container); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { width: 3.15rem; height: 3.15rem; object-fit: contain; }
.brand span { font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.04em; }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); margin: 0; padding: 0; list-style: none; }
.nav-list a { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.nav-list a:hover, .nav-list a[aria-current='page'] { color: var(--olive); }
body[data-page='home'] .site-header:not(.is-solid) .nav-list a[aria-current='page'] { color: inherit; text-decoration: underline; }
.menu-toggle { display: none; width: 3rem; height: 3rem; padding: 0; border: 0; background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 1.6rem; height: 1px; margin: 0.35rem auto; background: currentColor; content: ''; transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(0.43rem) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-0.43rem) rotate(-45deg); }

.hero { position: relative; min-height: max(43rem, 100svh); display: grid; align-items: end; overflow: hidden; color: var(--ivory); background: var(--brown-deep); }
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 58%; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,21,19,.12), rgba(26,21,19,.62)); content: ''; }
.hero__content { position: relative; z-index: 1; width: var(--container); margin: 0 auto; padding: calc(var(--header) + 5rem) 0 clamp(4rem, 8vw, 7rem); }
.hero h1 { max-width: 68rem; color: var(--ivory); }
.hero .lead { max-width: 38rem; color: rgba(247,244,229,.88); }
.hero .button { background: var(--ivory); border-color: var(--ivory); color: var(--brown-deep); }
.hero .button--outline { background: transparent; color: var(--ivory); }
.hero .eyebrow { color: var(--ivory); }

.page-hero { padding: calc(var(--header) + 6rem) 0 clamp(4.5rem, 9vw, 8rem); background: var(--ivory); }
.page-hero h1 { max-width: 72rem; }
.page-hero--image { position: relative; min-height: min(48rem, 88svh); display: grid; align-items: end; overflow: hidden; background: var(--brown-deep); color: var(--ivory); }
.page-hero--image::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,22,20,.15), rgba(30,22,20,.68)); content: ''; }
.page-hero--image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero--image .container { position: relative; z-index: 1; padding-block: calc(var(--header) + 5rem) 5rem; }
.page-hero--image h1 { color: var(--ivory); }
.page-hero--image .lead { color: rgba(247,244,229,.86); }

.promise-grid, .split, .boutique-grid, .project-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.large-quote { max-width: 52rem; font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 4.8rem); line-height: 1.12; letter-spacing: -0.035em; }
.large-quote em { color: var(--olive); font-style: normal; }
.image-frame { overflow: hidden; background: var(--sage); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--portrait { aspect-ratio: 4 / 5; }
.image-frame--landscape { aspect-ratio: 4 / 3; }

.comparison-wrap { margin-top: clamp(2.5rem, 5vw, 4.5rem); }
.comparison {
  --position: 50%;
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d6d2c7;
  cursor: ew-resize;
  touch-action: pan-y;
}
.comparison img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; user-select: none; pointer-events: none; }
.comparison__before { position: absolute; z-index: 2; inset: 0; width: 100%; overflow: hidden; border-right: 0; clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.comparison__before::after { position: absolute; top: 0; bottom: 0; left: var(--position); width: 1px; background: rgba(255,255,255,.9); content: ''; }
.comparison__before img { width: 100%; max-width: none; }
.comparison__range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.comparison__handle { position: absolute; z-index: 4; top: 50%; left: var(--position); width: 3.5rem; height: 3.5rem; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; background: rgba(48,37,35,.82); transform: translate(-50%,-50%); pointer-events: none; }
.comparison__handle::before, .comparison__handle::after { position: absolute; top: 50%; width: .55rem; height: .55rem; border-top: 1px solid var(--ivory); border-left: 1px solid var(--ivory); content: ''; }
.comparison__handle::before { left: .8rem; transform: translateY(-50%) rotate(-45deg); }
.comparison__handle::after { right: .8rem; transform: translateY(-50%) rotate(135deg); }
.comparison__label { position: absolute; z-index: 3; top: 1rem; padding: .45rem .65rem; background: rgba(48,37,35,.84); color: white; font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.comparison__label--before { left: 1rem; }
.comparison__label--after { right: 1rem; }
.comparison + .comparison-caption { display: flex; justify-content: space-between; gap: 2rem; margin-top: 1rem; color: var(--muted); font-size: .88rem; }

.services-editorial { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 4rem; border-top: 1px solid var(--line); }
.service-item { padding: 2rem clamp(1rem, 3vw, 2.5rem) 2.5rem 0; border-bottom: 1px solid var(--line); }
.service-item + .service-item { padding-left: clamp(1rem, 3vw, 2.5rem); border-left: 1px solid var(--line); }
.service-number { display: block; margin-bottom: 3rem; color: var(--olive); font-family: var(--serif); font-size: 1rem; }
.service-item h3 { margin-bottom: 1rem; }
.service-item p { margin: 0; color: var(--muted); }

.projects-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 3vw, 2.5rem); margin-top: 4rem; }
.project-card { min-width: 0; }
.project-card[hidden] { display: none; }
.project-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage); }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card a { text-decoration: none; }
.project-card a:hover img { transform: scale(1.015); }
.project-card__meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.section--dark .project-card__meta { color: rgba(247,244,229,.72); }
.project-card h3 { margin-top: .35rem; font-size: clamp(1.8rem, 3vw, 3rem); }
.projects-grid + .button { margin-top: 4rem; }
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.filter-button { padding: .55rem .85rem; border: 1px solid var(--line); background: transparent; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.filter-button:hover, .filter-button[aria-pressed='true'] { border-color: var(--olive); background: var(--olive); color: white; }

.transform-list { display: grid; gap: clamp(5rem, 10vw, 9rem); margin-top: 4rem; }
.transform-item__header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; }
.transform-item__header p { max-width: 32rem; margin: 0; color: var(--muted); }

.about-photo { position: relative; }
.about-photo::after { position: absolute; z-index: -1; right: -1rem; bottom: -1rem; width: 70%; height: 70%; background: var(--sage); content: ''; }
.portrait-pair { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(.65rem, 1.5vw, 1.25rem); align-items: end; }
.portrait-pair figure { margin: 0; }
.portrait-pair figure:first-child { transform: translateY(-2rem); }
.split--reverse > :first-child { order: 2; }
.split--reverse > :last-child { order: 1; }
.fact-line { display: grid; grid-template-columns: 10rem 1fr; gap: 2rem; padding-block: 1rem; border-top: 1px solid var(--line); }
.fact-line dt { color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fact-line dd { margin: 0; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .8rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.75rem, 2vw, 1.5rem); }
.gallery figure { grid-column: span 4; margin: 0; overflow: hidden; background: var(--sage); }
.gallery figure:nth-child(2) { grid-column: span 5; }
.gallery figure:nth-child(3) { grid-column: span 3; }
.gallery img { width: 100%; height: clamp(18rem, 35vw, 34rem); object-fit: cover; }
.editorial-gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(.75rem, 2vw, 1.5rem); align-items: stretch; }
.editorial-gallery figure, .shop-gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--sage); }
.editorial-gallery img { width: 100%; height: clamp(30rem, 55vw, 46rem); object-fit: cover; }
.editorial-gallery__large img { object-position: 50% 48%; }
.editorial-gallery figcaption, .shop-gallery figcaption { position: absolute; right: .75rem; bottom: .75rem; left: .75rem; padding: .65rem .8rem; background: rgba(48,37,35,.82); color: white; font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.shop-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(13rem, 19vw); gap: clamp(.75rem, 2vw, 1.5rem); }
.shop-gallery figure { grid-column: span 4; grid-row: span 2; }
.shop-gallery .shop-gallery__feature { grid-column: span 6; grid-row: span 3; }
.shop-gallery figure:nth-child(2), .shop-gallery figure:nth-child(4) { grid-column: span 6; }
.shop-gallery img { width: 100%; height: 100%; object-fit: cover; }

.price-list { margin-top: 4rem; border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: minmax(14rem, .8fr) minmax(0, 1.4fr) minmax(10rem, .45fr); gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.price-row h3 { font-size: 1.8rem; }
.price-row p { margin: 0; color: var(--muted); }
.price { text-align: right; color: var(--olive); font-weight: 700; }
.validation-note { display: inline-block; padding: .25rem .5rem; background: #eadbc9; color: #543a2d; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.25rem; padding: .75rem .85rem; border: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--text); }
.field textarea { min-height: 10rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); outline: 2px solid rgba(81,117,73,.25); outline-offset: 0; }
.form-status { min-height: 1.5rem; margin-top: 1rem; color: var(--olive); font-weight: 650; }

.project-hero { padding-top: calc(var(--header) + 4rem); background: var(--ivory); }
.project-hero__meta { padding-block: 3rem 2rem; }
.project-hero__image { width: var(--container); height: clamp(28rem, 65vw, 52rem); margin-inline: auto; object-fit: cover; background: var(--sage); }
.project-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-fact { padding: 1.5rem; }
.project-fact + .project-fact { border-left: 1px solid var(--line); }
.project-fact span { display: block; margin-bottom: .35rem; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.palette { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.swatch { width: min(12rem, 42vw); }
.swatch__color { aspect-ratio: 3 / 2; border: 1px solid var(--line); }
.swatch strong, .swatch small { display: block; margin-top: .45rem; }
.swatch small { margin-top: 0; color: var(--muted); }

.legal h2 { margin-top: 3rem; font-size: 2rem; }
.legal h3 { margin-top: 2rem; font-size: 1.4rem; }
.legal p, .legal li { color: var(--muted); }

.site-footer { padding: 4rem 0 2rem; background: var(--brown-deep); color: var(--ivory); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(2, .8fr); gap: 3rem; }
.footer-brand img { width: 5rem; }
.footer-title { margin: 0 0 1rem; color: var(--sage); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .45rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--sage); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,244,229,.2); color: rgba(247,244,229,.65); font-size: .8rem; }

[data-reveal] { opacity: 0; transform: translateY(1.25rem); transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 64rem) {
  :root { --header: 4.5rem; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header) 0 0; display: grid; align-content: start; padding: 2rem 1rem; background: var(--ivory); color: var(--brown-deep); transform: translateX(100%); visibility: hidden; transition: transform 220ms ease, visibility 220ms; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { display: grid; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 1.1rem 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .promise-grid, .split, .boutique-grid, .project-intro { grid-template-columns: 1fr; }
  .split--reverse > :first-child, .split--reverse > :last-child { order: initial; }
  .services-editorial { grid-template-columns: 1fr; }
  .service-item, .service-item + .service-item { padding: 2rem 0; border-left: 0; }
  .service-number { margin-bottom: 1.5rem; }
  .price-row { grid-template-columns: 1fr; gap: .75rem; }
  .price { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 44rem) {
  :root { --container: min(calc(100% - 1.25rem), 88rem); }
  .brand span { display: none; }
  .hero { min-height: 44rem; }
  .hero__media { object-position: 58% 50%; }
  .hero h1 { font-size: clamp(2.65rem, 12.5vw, 3.1rem); overflow-wrap: anywhere; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .comparison { aspect-ratio: 4 / 5; }
  .comparison__label { top: .6rem; max-width: calc(50% - 1rem); font-size: .6rem; }
  .comparison__label--before { left: .6rem; }
  .comparison__label--after { right: .6rem; text-align: right; }
  .comparison + .comparison-caption { display: block; }
  .projects-grid { grid-template-columns: 1fr; }
  .transform-item__header { display: block; }
  .transform-item__header p { margin-top: 1rem; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure, .gallery figure:nth-child(2), .gallery figure:nth-child(3) { grid-column: 1; }
  .gallery img { height: 25rem; }
  .portrait-pair { grid-template-columns: 1fr 1fr; }
  .portrait-pair figure:first-child { transform: translateY(-1rem); }
  .editorial-gallery { grid-template-columns: 1fr; }
  .editorial-gallery img { height: 34rem; }
  .shop-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 22rem; }
  .shop-gallery figure, .shop-gallery .shop-gallery__feature, .shop-gallery figure:nth-child(2), .shop-gallery figure:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .shop-gallery .shop-gallery__feature { grid-column: 1 / -1; grid-row: span 2; }
  .project-facts { grid-template-columns: 1fr; }
  .project-fact + .project-fact { border-top: 1px solid var(--line); border-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
}

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

@media print {
  .site-header, .site-footer, .button-row, .filters { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero { padding-block: 2rem; }
}
