:root {
  --ink: #191512;
  --ink-soft: #2b241f;
  --paper: #f3eee4;
  --paper-deep: #e8dfd0;
  --white: #fffdf8;
  --copper: #b66f3d;
  --copper-dark: #7b4124;
  --sage: #657260;
  --line: rgba(25, 21, 18, 0.18);
  --line-light: rgba(255, 253, 248, 0.2);
  --shadow: 0 24px 80px rgba(18, 13, 10, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

h1 em,
h2 em {
  color: var(--copper);
  font-weight: 400;
}

:focus-visible {
  outline: 3px solid #e4a36f;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(84px, 10vw, 144px);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 6px 18px;
  color: #f8e9d6;
  background: #7d4327;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(243, 238, 228, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  min-height: 92px;
}

.brand {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 132px;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: auto;
  filter: saturate(0.83) contrast(1.04);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.primary-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.header-call-label {
  color: #70675e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-call strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 25%, rgba(182, 111, 61, 0.13), transparent 32%),
    linear-gradient(135deg, #15110f, #241d19 70%, #1b1714);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: min(790px, calc(100vh - 126px));
  padding-block: clamp(72px, 8vw, 110px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  margin-bottom: 24px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: #e5a778;
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 30px;
  font-size: clamp(3.45rem, 6.5vw, 6.4rem);
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 58px;
  padding: 15px 20px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-width: 242px;
  color: var(--ink);
  background: #d28a55;
}

.button-primary:hover {
  background: #eda871;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.hero-footnote {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  max-width: 440px;
  margin-top: clamp(56px, 8vw, 100px);
  padding-top: 18px;
  color: rgba(255, 253, 248, 0.56);
  border-top: 1px solid var(--line-light);
  font-size: 0.79rem;
}

.hero-footnote span {
  color: #d89666;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-footnote p {
  margin-bottom: 0;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual::before {
  position: absolute;
  inset: 8% 0 1% 10%;
  border: 1px solid rgba(255, 253, 248, 0.17);
  content: "";
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: #312a25;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: filter 400ms ease, transform 700ms ease;
}

.hero-photo:hover img {
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.018);
}

.hero-gallery-open {
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.hero-gallery-open:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: -5px;
}

.hero-photo-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(18, 14, 11, 0.82);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-photo-caption i {
  margin-left: 5px;
  color: #e3a77a;
  font-style: normal;
}

.hero-photo-main .hero-photo-caption {
  right: auto;
  left: 12px;
}

.hero-photo-main {
  z-index: 1;
  top: 3%;
  left: 0;
  width: 67%;
  height: 72%;
}

.hero-photo-main img {
  object-position: 40% center;
}

.hero-photo-secondary {
  z-index: 2;
  top: 0;
  right: 0;
  width: 36%;
  height: 40%;
  border: 8px solid var(--ink-soft);
}

.hero-photo-secondary img {
  object-position: center;
}

.hero-photo-detail {
  z-index: 3;
  right: 4%;
  bottom: 0;
  width: 42%;
  height: 53%;
  border: 8px solid var(--ink-soft);
}

.hero-photo-detail img {
  object-position: 54% center;
}

.hero-mark {
  position: absolute;
  z-index: 4;
  bottom: 2%;
  left: 0;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--ink);
  background: var(--copper);
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  transform: rotate(-4deg);
}

.service-ticker {
  overflow: hidden;
  color: #201a16;
  background: #cb8350;
  border-block: 1px solid rgba(25, 21, 18, 0.5);
}

.ticker-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  min-width: max-content;
  min-height: 62px;
  padding-inline: 24px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  background: currentColor;
  transform: rotate(45deg);
}

.statement {
  background: var(--paper);
}

.statement-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
}

.section-index {
  color: #7f7369;
}

.statement h2 {
  max-width: 990px;
  margin-bottom: 36px;
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
}

.statement-grid > div > p {
  max-width: 630px;
  margin-left: auto;
  color: #5e554d;
  font-size: 1.05rem;
}

.services {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.43fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.section-heading .eyebrow,
.process-intro .eyebrow,
.about-copy .eyebrow,
.contact .eyebrow {
  color: var(--copper-dark);
}

.section-heading h2,
.process h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 5vw, 5.1rem);
}

.section-heading > p {
  margin-bottom: 4px;
  color: #675d54;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 250ms ease, background 250ms ease;
}

.service-card::before {
  position: absolute;
  right: -70px;
  bottom: -85px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(182, 111, 61, 0.28);
  border-radius: 50%;
  content: "";
  transition: transform 350ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink-soft);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-number {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-card svg {
  width: 50px;
  margin: 34px 0 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.service-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 400;
}

.service-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: #6b625a;
}

.service-card:hover p {
  color: rgba(255, 253, 248, 0.68);
}

.work {
  color: var(--white);
  background: #1a1613;
}

.section-heading-light .eyebrow {
  color: #d99768;
}

.section-heading-light > p {
  color: rgba(255, 253, 248, 0.62);
}

.transformations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(60px, 8vw, 110px);
}

.transformation {
  min-width: 0;
}

.transformation-heading {
  display: grid;
  grid-template-columns: 1fr minmax(150px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.transformation-heading span {
  color: #d79566;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.transformation-heading h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.7vw, 2.5rem);
  font-weight: 400;
}

.transformation-heading p {
  margin-bottom: 2px;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.85rem;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.project-image,
.project-tile {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #332b26;
  border: 0;
  cursor: zoom-in;
}

.project-image {
  aspect-ratio: 4 / 5;
}

.project-image img,
.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.02);
  transition: filter 300ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-image:hover img,
.project-image:focus-visible img,
.project-tile:hover img,
.project-tile:focus-visible img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.035);
}

.project-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  grid-auto-rows: 420px;
  gap: 2px;
}

.latest-work-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.latest-work-heading .eyebrow {
  margin-bottom: 0;
}

.latest-work-heading h3 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.latest-work-heading h3 em {
  color: #d89666;
  font-weight: 400;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-story {
  display: grid;
  grid-template-rows: 360px auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #241f1b;
  border: 1px solid rgba(255, 253, 248, 0.13);
  cursor: zoom-in;
  text-align: left;
  transition: border-color 220ms ease, transform 220ms ease;
}

.project-story:hover,
.project-story:focus-visible {
  border-color: rgba(216, 150, 102, 0.8);
  transform: translateY(-3px);
}

.project-story-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  overflow: hidden;
}

.project-story-images-single {
  grid-template-columns: 1fr;
}

.story-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #15120f;
}

.story-panel + .story-panel {
  border-left: 2px solid #171310;
}

.story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  transition: filter 300ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-panel-focus-bottom img {
  object-position: center 72%;
}

.project-story:hover .story-panel img,
.project-story:focus-visible .story-panel img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.025);
}

.story-panel small {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-story-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 24px;
  align-items: end;
  padding: 24px 26px 26px;
}

.project-story-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.project-story-copy small {
  grid-column: 1;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-story-copy i {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: #d89666;
  font-size: 0.63rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-tile-wide {
  grid-row: span 1;
}

.project-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 9, 0.82), transparent 50%);
  content: "";
}

.project-tile > span {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.project-tile strong {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.project-tile small {
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.design-help {
  background: var(--white);
  border-block: 1px solid var(--line);
}

/* Honeypot: hidden from people, visible to naive bots that fill every field. */
.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.simple-page {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.simple-page img {
  margin: 0 auto 32px;
}

.design-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.design-example {
  margin: 0;
}

.design-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.design-panel {
  position: relative;
  display: block;
  overflow: hidden;
}

.design-panel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.design-panel small {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 11px;
  background: rgba(25, 21, 18, 0.84);
  color: var(--white);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.design-example figcaption {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.design-example figcaption strong {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
}

.design-example figcaption span {
  color: #675d54;
  font-size: 0.95rem;
}

.design-disclosure {
  max-width: 760px;
  margin-top: clamp(36px, 5vw, 56px);
  margin-bottom: 0;
  padding-left: 18px;
  border-left: 2px solid var(--copper);
  color: #675d54;
  font-size: 0.92rem;
}

.design-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: clamp(28px, 3vw, 40px);
}

.process {
  background: var(--paper-deep);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(64px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 132px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 32px 0;
  color: #62584f;
}

.process-steps {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 28px;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-steps h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
}

.process-steps p {
  max-width: 520px;
  margin-bottom: 0;
  color: #62584f;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  position: absolute;
  z-index: 0;
  top: -20px;
  right: 32px;
  bottom: 28px;
  left: -20px;
  border: 1px solid rgba(123, 65, 36, 0.4);
  content: "";
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.02);
}

.about-photo span {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 32px;
  padding: 14px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 34px;
  color: #62584f;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.capability-list li {
  position: relative;
  padding: 15px 8px 15px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.capability-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--copper);
  content: "";
  transform: rotate(45deg);
}

.testimonial {
  color: var(--white);
  background: var(--sage);
}

.testimonial .section-index {
  color: rgba(255, 253, 248, 0.62);
}

.testimonial figure {
  margin: 0;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 5vw, 76px);
}

.quote-mark {
  height: 74px;
  color: #e7b389;
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.8;
}

.testimonial-list blockquote {
  max-width: 920px;
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.1vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.testimonial figcaption {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  color: var(--ink);
  background: #c8824f;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(80px, 10vw, 132px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #5e301c;
}

.contact .eyebrow,
.contact h2 em {
  color: #5e301c;
}

.contact-call {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 76px 30px 0;
  border-block: 1px solid rgba(25, 21, 18, 0.42);
  text-decoration: none;
}

.contact-call span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-call strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 500;
}

.contact-call i {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
  transform: translateY(-50%);
  transition: transform 200ms ease;
}

.contact-call:hover i {
  transform: translate(4px, calc(-50% - 4px));
}

.contact-email {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.contact-form-preview {
  padding: clamp(26px, 4vw, 44px);
  background: #fffaf2;
  box-shadow: 0 20px 55px rgba(67, 34, 17, 0.18);
}

.form-preview-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(25, 21, 18, 0.18);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-preview-heading strong {
  color: #97512e;
}

.contact-form-preview fieldset {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  border: 0;
}

.contact-form-preview label {
  display: grid;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form-preview input,
.contact-form-preview select,
.contact-form-preview textarea {
  width: 100%;
  padding: 13px 14px;
  color: #4d463f;
  background: #f4eee5;
  border: 1px solid rgba(25, 21, 18, 0.2);
  border-radius: 0;
  font: inherit;
  opacity: 1;
}

.contact-form-preview textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-preview button {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: #5e554d;
  border: 0;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: not-allowed;
}

.contact-form-preview > p {
  margin: 18px 0 0;
  color: #675a50;
  font-size: 0.74rem;
  line-height: 1.55;
}

.site-footer {
  padding: 72px 0 22px;
  color: var(--white);
  background: #171310;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(260px, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
}

.footer-brand {
  width: 145px;
}

.footer-brand img {
  width: 100%;
  filter: saturate(0.55) brightness(1.05);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact p,
.footer-contact span {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  margin-block: 3px;
  font-family: var(--serif);
  font-size: 1.85rem;
  text-decoration: none;
}

.footer-contact .footer-email {
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 22px 36px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 253, 248, 0.4);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255, 253, 248, 0.72);
}

.mobile-call {
  display: none;
}

.lightbox {
  width: min(1020px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: #171310;
  border: 0;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.68);
}

.lightbox::backdrop {
  background: rgba(12, 9, 7, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(640px, calc(100vh - 150px));
  background: #0f0d0b;
}

.lightbox-stage img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  background: #0f0d0b;
}

.lightbox-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 14px 20px;
}

.lightbox-meta p {
  min-height: 54px;
  padding: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.lightbox-meta > span {
  flex: none;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: rgba(20, 16, 13, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.35);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-nav span[aria-hidden] {
  font-size: 1.35rem;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(20, 16, 13, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.35);
  cursor: pointer;
}

.lightbox-close span[aria-hidden] {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
  }

  .primary-nav {
    gap: 24px;
  }

  .header-call-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 38px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 380px;
  }

  .project-tile-wide {
    grid-column: span 1;
  }

  .latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-story {
    grid-template-rows: 320px auto;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .design-examples {
    grid-template-columns: minmax(0, 1fr);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 66px;
  }

  .preview-bar {
    min-height: 30px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand {
    width: 108px;
  }

  .brand img {
    width: 104px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle-lines::before {
    transform: translateY(-7px);
  }

  .nav-toggle-lines::after {
    transform: translateY(6px);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    transform: translateY(1px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    transform: translateY(0) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 22px;
    visibility: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-block: 66px 74px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hero-footnote {
    margin-top: 50px;
  }

  .hero-visual {
    min-height: 570px;
    margin-top: 10px;
  }

  .ticker-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
  }

  .ticker-track span {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 36px;
    padding: 7px 9px;
    border: 1px solid rgba(25, 21, 18, 0.32);
    text-align: center;
    white-space: normal;
  }

  .ticker-track span:last-of-type {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 210px);
  }

  .ticker-track i {
    display: none;
  }

  .statement-grid,
  .testimonial-grid,
  .section-heading,
  .process-grid,
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .latest-work-heading {
    display: grid;
    align-items: start;
  }

  .statement-grid,
  .testimonial-grid {
    gap: 22px;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .testimonial-list figure + figure {
    padding-top: 42px;
    border-top: 1px solid rgba(255, 253, 248, 0.25);
  }

  .section-heading {
    gap: 26px;
  }

  .transformations {
    grid-template-columns: 1fr;
    gap: 74px;
  }

  .project-grid {
    grid-auto-rows: 340px;
  }

  .process-grid,
  .about-grid {
    gap: 68px;
  }

  .process-intro {
    position: static;
  }

  .about-photo {
    max-width: 560px;
  }

  .contact-inner {
    gap: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 66px;
    color: var(--ink);
    background: #d28a55;
    border-top: 1px solid rgba(25, 21, 18, 0.35);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-call svg {
    width: 20px;
    fill: currentColor;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .section-pad {
    padding-block: 78px;
  }

  .preview-bar span:nth-child(2),
  .preview-bar span:nth-child(3) {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 3.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button-primary {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-photo-main {
    width: 76%;
    height: 63%;
  }

  .hero-photo-secondary {
    width: 38%;
    height: 32%;
    border-width: 5px;
  }

  .hero-photo-detail {
    right: 2%;
    width: 48%;
    height: 52%;
    border-width: 5px;
  }

  .hero-mark {
    width: 62px;
    height: 62px;
    font-size: 1.35rem;
  }

  .ticker-track {
    grid-template-columns: 1fr;
  }

  .ticker-track span:last-of-type {
    grid-column: auto;
    width: 100%;
  }

  .statement h2,
  .section-heading h2,
  .process h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .latest-grid {
    grid-template-columns: 1fr;
  }

  .project-story {
    grid-template-rows: 310px auto;
  }

  .project-story-copy {
    grid-template-columns: 1fr;
  }

  .project-story-copy i {
    grid-row: auto;
    grid-column: 1;
    margin-top: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-photo span {
    right: 0;
  }

  .lightbox {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .lightbox-stage {
    min-height: calc(100vh - 150px);
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-meta {
    gap: 14px;
    padding-inline: 14px;
  }

  .service-card {
    min-height: 330px;
  }

  .service-card svg {
    margin-block: 28px 38px;
  }

  .transformation-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .before-after {
    gap: 1px;
  }

  .project-grid {
    grid-auto-rows: 390px;
  }

  .process-steps li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .testimonial-list blockquote {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .contact-call {
    padding-right: 62px;
  }

  .contact-call strong {
    font-size: 1.9rem;
  }

  .contact-call i {
    width: 46px;
    height: 46px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
