@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Prata&display=swap');

:root {
  --graphite: #25282b;
  --ink: #17191b;
  --gold: #c8a15b;
  --warm-white: #f5f2eb;
  --beige: #e7e0d2;
  --paper: #fbfaf7;
  --line: rgba(37, 40, 43, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 100; padding: .75rem 1rem; background: var(--ink); color: #fff; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(175px, 245px) 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: .8rem clamp(1.2rem, 4vw, 4.5rem);
  background: rgba(251, 250, 247, .94);
  border-bottom: 0;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(23, 25, 27, .08); }
.brand img { width: 224px; height: 70px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; justify-content: center; gap: clamp(1rem, 2.2vw, 2.25rem); font-size: .9rem; font-weight: 600; }
.main-nav a { position: relative; padding: .55rem .1rem; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .2rem; height: 1px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-tools { display: flex; align-items: center; gap: .7rem; }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .8rem 1.2rem; border: 1px solid var(--ink); border-radius: 0; cursor: pointer; font-size: .85rem; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease; }
.header-cta { background: var(--ink); color: #fff; }
.button:hover, .header-cta:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0 11px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 7px 0; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: absolute; inset: 100% 0 auto; padding: 1rem clamp(1rem, 4vw, 4rem) 1.5rem; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(23,25,27,.1); }
.mobile-nav:not([hidden]) { display: grid; }
.mobile-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-family: "Prata", Georgia, serif; font-size: 1.35rem; }
.hero { min-height: calc(100vh - 84px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr); background: var(--warm-white); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(3.5rem, 7vw, 7.5rem) clamp(1.5rem, 5vw, 6rem); }
.eyebrow { margin: 0 0 2rem; display: flex; align-items: center; gap: .8rem; color: #68665f; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow span { color: var(--ink); font-weight: 600; }
.eyebrow::after { content: ""; width: 72px; height: 1px; background: var(--gold); }
h1 { max-width: 720px; margin: 0; font-family: "Prata", Georgia, serif; font-size: clamp(3rem, 5.7vw, 6.5rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 2rem 0 0; color: #5e5c56; font-size: clamp(1rem, 1.25vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: transparent; }
.button-cream { border-color: var(--warm-white); background: var(--warm-white); color: var(--ink); }
.button-gold { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.42); background: transparent; color: #fff; }
.trust-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: clamp(3rem, 6vw, 5rem) 0 0; padding: 0; list-style: none; }
.trust-list strong, .trust-list span { display: block; }
.trust-list strong { font-family: "Prata", Georgia, serif; font-size: 1.25rem; font-weight: 400; }
.trust-list span { margin-top: .2rem; color: #74716a; font-size: .74rem; }
.hero-visual { position: relative; min-height: 640px; margin: 0; overflow: hidden; background: var(--ink); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,25,27,.06), transparent 45%, rgba(23,25,27,.32)); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover img { transform: scale(1.025); }
.hero-visual figcaption { position: absolute; right: clamp(1.25rem, 4vw, 4rem); bottom: clamp(1.25rem, 4vw, 3.5rem); z-index: 2; padding-left: 1.2rem; color: #fff; border-left: 2px solid var(--gold); text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.hero-visual figcaption span, .hero-visual figcaption strong { display: block; }
.hero-visual figcaption span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .78; }
.hero-visual figcaption strong { margin-top: .2rem; font-family: "Prata", Georgia, serif; font-size: 1.25rem; font-weight: 400; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 4vw, 4.5rem); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.6rem); }
.section-heading .eyebrow { margin-bottom: 1rem; }
h2 { margin: 0; font-family: "Prata", Georgia, serif; font-size: clamp(2.5rem, 4.5vw, 5.1rem); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
h3 { margin: 0; font-family: "Prata", Georgia, serif; font-weight: 400; }
.text-link { display: inline-flex; align-items: center; gap: .8rem; padding: .6rem 0; border-bottom: 1px solid var(--ink); white-space: nowrap; font-size: .86rem; font-weight: 600; }
.text-link span { color: var(--gold); font-size: 1.1rem; }
.section-note { max-width: 440px; margin: 0; color: #6a6861; }

.categories { background: var(--paper); }
.category-grid { display: grid; grid-template-columns: 1.3fr .74fr .74fr; grid-template-rows: repeat(2, minmax(230px, 1fr)); gap: 10px; min-height: 660px; }
.category-card { position: relative; min-height: 230px; overflow: hidden; color: #fff; background: var(--ink); }
.category-card-large { grid-row: 1 / 3; }
.category-card img, .direction-card img, .project-card img, .material-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.category-card:hover img, .direction-card:hover img, .project-card:hover img { transform: scale(1.035); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(16,18,19,.78)); pointer-events: none; }
.category-copy { position: absolute; left: clamp(1rem, 2.4vw, 2.1rem); bottom: clamp(1rem, 2.4vw, 2rem); z-index: 2; }
.category-copy strong, .category-copy small { display: block; }
.category-copy strong { font-family: "Prata", Georgia, serif; font-size: clamp(1.5rem, 2.2vw, 2.7rem); font-weight: 400; }
.category-copy small { margin-top: .3rem; color: rgba(255,255,255,.73); font-size: .76rem; }
.round-arrow { position: absolute; right: 1.4rem; bottom: 1.4rem; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 1rem; transition: background .2s ease, color .2s ease; }
.category-card:hover .round-arrow { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.formats { display: grid; grid-template-columns: 1fr 1fr; }
.format-card { position: relative; min-height: 720px; overflow: hidden; }
.format-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.format-overlay { position: absolute; inset: 0; }
.format-card-dark .format-overlay { background: linear-gradient(90deg, rgba(19,19,17,.86), rgba(19,19,17,.35) 70%); }
.format-card-light .format-overlay { background: linear-gradient(90deg, rgba(248,246,240,.96), rgba(248,246,240,.78) 54%, rgba(248,246,240,.08)); }
.format-content { position: relative; z-index: 2; max-width: 620px; padding: clamp(4rem, 7vw, 7.2rem) clamp(1.4rem, 5vw, 5rem); }
.format-card-dark .format-content { color: #fff; }
.format-content .eyebrow { margin-bottom: 2rem; }
.eyebrow-light { color: rgba(255,255,255,.7); }
.eyebrow-light span { color: #fff; }
.format-content h2 { max-width: 520px; }
.format-content > p:not(.eyebrow) { max-width: 460px; margin: 1.5rem 0; color: inherit; opacity: .8; }
.check-list { display: grid; gap: .75rem; margin: 2rem 0 2.5rem; padding: 0; list-style: none; font-size: .9rem; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }

.directions { background: var(--warm-white); }
.direction-grid { display: grid; grid-template-columns: 1.15fr .82fr .82fr; grid-template-rows: repeat(2, minmax(230px, 1fr)); gap: 10px; min-height: 620px; }
.direction-card { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.direction-card-featured { grid-row: 1 / 3; }
.direction-card > div { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.4rem; z-index: 2; }
.direction-card h3 { font-size: clamp(1.4rem, 2.3vw, 2.6rem); }
.direction-card p { margin: .25rem 0 0; color: rgba(255,255,255,.72); font-size: .76rem; }

.portfolio { background: var(--paper); }
.portfolio-heading { align-items: flex-end; }
.portfolio-heading h2 { max-width: 780px; }
.filter-group { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .45rem; }
.filter-button { padding: .55rem .9rem; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: .78rem; }
.filter-button.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 290px; gap: 10px; }
.project-card { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; background: var(--ink); cursor: zoom-in; text-align: left; }
.project-card-featured { grid-column: span 2; grid-row: span 2; }
.project-card::after { content: ""; position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background-color: rgba(245,242,235,.9); background-image: url("assets/arrow-up.svg"); background-repeat: no-repeat; background-position: center; background-size: 14.256px 14.256px; color: var(--ink); opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.project-card:hover::after, .project-card:focus-visible::after { opacity: 1; transform: none; }
.project-card .project-meta { position: absolute; inset: auto 0 0; z-index: 2; padding: 4.8rem 1.25rem 1.2rem; color: #fff; background: linear-gradient(transparent, rgba(16,18,19,.88)); }
.project-meta small, .project-meta strong { display: block; }
.project-card .project-meta small {
  color: #ffffff8c !important;
  opacity: 1 !important;
  font-weight: 500;
}
.project-meta strong { font-family: "Prata", Georgia, serif; font-size: 1.25rem; font-weight: 400; line-height: 1.2; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.project-card[hidden] { display: none; }

.materials { background: var(--warm-white); }
.material-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); min-height: 380px; border: 1px solid var(--line); }
.material-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; padding: 2rem; border-right: 1px solid var(--line); background: #eee9df; }
.material-card:last-child { border-right: 0; }
.material-card-dark { background: var(--graphite); color: #fff; }
.material-number { position: absolute; top: 1.7rem; left: 2rem; color: var(--gold); font-size: .78rem; letter-spacing: .08em; }
.material-card h3 { font-size: clamp(1.6rem, 2.3vw, 2.55rem); }
.material-card p { margin: .8rem 0 0; color: inherit; opacity: .68; font-size: .84rem; }
.material-card-image { padding: 0; color: #fff; }
.material-card-image > div { position: absolute; inset: auto 2rem 2rem; z-index: 2; }
.material-card-image .material-number { position: static; display: block; margin-bottom: 5rem; }

.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { position: relative; min-height: 260px; padding: 1.7rem 1.4rem 1.8rem 0; border-right: 1px solid var(--line); }
.process-list li:not(:first-child) { padding-left: 1.4rem; }
.process-list li:last-child { border-right: 0; }
.process-list > li > span { color: var(--gold); font-family: "Prata", Georgia, serif; font-size: 1.1rem; }
.process-list div { position: absolute; left: inherit; right: 1.4rem; bottom: 1.6rem; }
.process-list li:not(:first-child) div { left: 1.4rem; }
.process-list h3 { font-size: 1.3rem; }
.process-list p { margin: .55rem 0 0; color: #706e67; font-size: .78rem; }

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(2.5rem, 7vw, 8rem); align-items: center; background: #e9e3d8; }
.about-image { min-height: 680px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.about-copy { padding-right: clamp(0rem, 4vw, 4rem); }
.about-copy .eyebrow { margin-bottom: 1.5rem; }
.about-lead { max-width: 640px; margin: 1.8rem 0 0; color: #5f5c55; font-size: 1.1rem; }
.about-points { display: grid; margin: 2.4rem 0; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.about-points span { color: var(--gold); font-size: .75rem; }
.about-points p { margin: 0; color: #66635d; font-size: .88rem; }
.about-points strong { color: var(--ink); }

.request { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(480px, 1fr); gap: clamp(3rem, 8vw, 9rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.2rem, 6vw, 7rem); color: #fff; background: var(--ink); overflow: hidden; }
.request::before { content: ""; position: absolute; width: 540px; height: 540px; right: -220px; top: -240px; border: 1px solid rgba(200,161,91,.35); border-radius: 50%; box-shadow: 0 0 0 70px rgba(200,161,91,.04), 0 0 0 140px rgba(200,161,91,.025); }
.request-copy, .brief-form { position: relative; z-index: 2; }
.request-copy .eyebrow { margin-bottom: 1.7rem; }
.request-copy p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.65); }
.map-link { display: inline-flex; gap: .8rem; margin-top: 2rem; padding-bottom: .45rem; border-bottom: 1px solid var(--gold); color: var(--warm-white); font-size: .87rem; }
.brief-form { display: grid; gap: 1.15rem; padding: clamp(1.5rem, 3vw, 2.8rem); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); backdrop-filter: blur(8px); }
.brief-form label { display: grid; gap: .45rem; }
.brief-form label > span { color: rgba(255,255,255,.72); font-size: .76rem; }
.brief-form input, .brief-form select, .brief-form textarea { width: 100%; padding: .9rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; color: #fff; background: transparent; outline: 0; }
.brief-form select { color-scheme: dark; }
.brief-form textarea { resize: vertical; }
.brief-form input::placeholder, .brief-form textarea::placeholder { color: rgba(255,255,255,.35); }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-bottom-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.brief-form > .button { justify-self: start; margin-top: .4rem; }
.form-hint { margin: -.4rem 0 0; color: rgba(255,255,255,.42); font-size: .72rem; }
.brief-result { display: grid; gap: 1rem; margin-top: .7rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.18); }
.result-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.copy-status { min-height: 1.3rem; margin: 0; color: var(--gold); font-size: .78rem; }

.site-footer { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 3rem; padding: 4rem 5vw 1.7rem; background: var(--paper); border-top: 1px solid var(--line); }
.footer-brand img { width: 196px; height: 80px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 280px; margin: .8rem 0 0; color: #77746d; font-size: .8rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; font-size: .8rem; }
.footer-column h2 { margin-bottom: .35rem; font-family: "Manrope", Arial, sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.footer-column p { margin: 0; color: #6c6963; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 2.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #85827c; font-size: .7rem; }

.project-dialog { width: min(1180px, calc(100vw - 2rem)); max-height: min(820px, calc(100vh - 2rem)); padding: 0; border: 0; color: var(--ink); background: var(--warm-white); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.project-dialog[open] { display: grid; grid-template-columns: 1.3fr .7fr; }
.project-dialog::backdrop { background: rgba(14,15,16,.78); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: .8rem; right: .8rem; z-index: 5; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(23,25,27,.42); cursor: pointer; font-size: 1.7rem; line-height: 1; }
.dialog-visual { min-height: 620px; background: var(--ink); }
.dialog-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.dialog-copy .eyebrow { margin-bottom: 1.5rem; }
.dialog-copy h2 { font-size: clamp(2.2rem, 3.5vw, 4rem); }
.dialog-copy > p:not(.eyebrow) { margin: 1.5rem 0 2rem; color: #6a6760; }
.dialog-copy .button { align-self: flex-start; }
.dialog-nav { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; margin-top: 3rem; }
.dialog-nav button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.dialog-nav span { color: #77746d; text-align: center; font-size: .75rem; }

.mobile-cta { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; }
  .hero-visual { min-height: 68vw; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px repeat(2, 260px); }
  .category-card-large { grid-column: 1 / -1; grid-row: auto; }
  .formats { grid-template-columns: 1fr; }
  .format-card { min-height: 660px; }
  .direction-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 440px repeat(2, 250px); }
  .direction-card-featured { grid-column: 1 / -1; grid-row: auto; }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .material-grid { grid-template-columns: 1fr 1fr; }
  .material-card:nth-child(2) { border-right: 0; }
  .material-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li { border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2n) { border-right: 0; }
  .about { grid-template-columns: 1fr; }
  .about-image, .about-image img { min-height: 56vw; }
  .about-copy { padding: 0 0 1rem; }
  .request { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .site-header { min-height: 70px; padding: .5rem 1rem; }
  .brand img { width: 160px; height: 50px; }
  .header-cta { min-height: 42px; padding: .6rem .8rem; font-size: .72rem; }
  .header-tools { gap: .4rem; }
  .menu-toggle { width: 42px; height: 42px; }
  .drawer-toggle {
    width: 42px !important;
    height: 42px !important;
  }
  .hero-copy { min-height: auto; padding: 4rem 1.15rem 3rem; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .trust-list { grid-template-columns: 1fr; gap: .8rem; margin-top: 2.6rem; }
  .trust-list li { padding-top: .8rem; border-top: 1px solid var(--line); }
  .hero-visual { min-height: 88vw; }
  .section { padding: 4.7rem 1rem; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .category-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 330px); min-height: 0; }
  .category-card-large { grid-column: auto; }
  .formats { display: block; }
  .format-card { min-height: 660px; }
  .format-card-light .format-overlay { background: linear-gradient(90deg, rgba(248,246,240,.97), rgba(248,246,240,.8)); }
  .format-content { padding: 4rem 1.2rem; }
  .direction-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 330px); min-height: 0; }
  .direction-card-featured { grid-column: auto; }
  .portfolio-heading { align-items: flex-start; }
  .filter-group { justify-content: flex-start; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 350px; }
  .project-card-featured { grid-column: auto; grid-row: auto; }
  .material-grid { grid-template-columns: 1fr; }
  .material-card { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line); }
  .material-card:last-child { border-bottom: 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:not(:first-child) { min-height: 190px; padding: 1.3rem 0; border-right: 0; }
  .process-list div { left: 0; right: 0; }
  .about { padding: 0 1rem 4.7rem; gap: 3rem; }
  .about-image, .about-image img { min-height: 115vw; }
  .request { grid-template-columns: 1fr; padding: 4.7rem 1rem 6.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .brief-form { padding: 1.2rem; }
  .brief-form > .button, .result-actions .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 3rem 1rem 5.8rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: .6rem; }
  .project-dialog[open] { display: block; overflow: auto; }
  .dialog-visual, .dialog-visual img { min-height: 55vh; height: 55vh; }
  .dialog-copy { padding: 2rem 1.2rem; }
  .dialog-close { position: fixed; }
  .mobile-cta { position: fixed; left: .8rem; right: .8rem; bottom: .8rem; z-index: 25; display: flex; align-items: center; justify-content: center; min-height: 50px; color: var(--ink); background: var(--gold); box-shadow: 0 12px 30px rgba(0,0,0,.25); font-size: .82rem; font-weight: 600; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

.lead-dialog {
  width: min(560px, calc(100vw - 2rem));
  max-width: 560px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--graphite);
}
.lead-dialog::backdrop { background: rgba(20, 22, 23, .58); backdrop-filter: blur(3px); }
.lead-dialog-card {
  position: relative;
  background: var(--paper);
  padding: 3rem;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.lead-dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--graphite);
  font-size: 1.7rem;
  line-height: 1;
}
.lead-dialog h2 { margin: 0 0 1rem; font-size: clamp(2rem, 6vw, 3rem); line-height: 1.05; }
.lead-dialog-text { margin: 0 0 2rem; color: rgba(37,40,43,.72); max-width: 44ch; }
.lead-form { display: grid; gap: 1.15rem; }
.lead-form label:not(.lead-honeypot) { display: grid; gap: .55rem; font-size: .78rem; font-weight: 600; }
.lead-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--graphite);
  padding: .9rem 1rem;
  font: inherit;
  outline: none;
}
.lead-form input:focus { border-color: var(--graphite); }
.lead-form .button { width: 100%; margin-top: .35rem; }
.lead-form .button:disabled { opacity: .6; cursor: wait; }
.lead-form-status { min-height: 1.5em; margin: 0; font-size: .84rem; }
.lead-form-status.is-success { color: #80e886; }
.lead-dialog .lead-form-status.is-success { color: #2ba332; }
.lead-form-status.is-error { color: #9a3f35; }
.lead-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
@media (max-width: 620px) {
  .lead-dialog { width: calc(100vw - 1rem); }
  .lead-dialog-card { padding: 2.5rem 1.25rem 1.5rem; }
  .lead-dialog-close { top: .7rem; right: .7rem; }
}

.brief-form .lead-form-status { margin-top: -.25rem; }
.brief-form .lead-form-status.is-success { color: #80e886; }
.brief-form .lead-form-status.is-error { color: #ffb4a9; }
.brief-form .button:disabled { opacity: .6; cursor: wait; }



.site-arrow { display: inline-block; flex: 0 0 auto; width: 14.256px; height: 14.256px; background-color: currentColor; vertical-align: middle; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.site-arrow-up { width: 14.256px; height: 14.256px; -webkit-mask-image: url("assets/arrow-up.svg"); mask-image: url("assets/arrow-up.svg"); }
.site-arrow-up2 { width: 14.256px; height: 14.256px; -webkit-mask-image: url("assets/arrow-up2.svg"); mask-image: url("assets/arrow-up2.svg"); }
.site-arrow-right { -webkit-mask-image: url("assets/arrow-right.svg"); mask-image: url("assets/arrow-right.svg"); }
.site-arrow-left { -webkit-mask-image: url("assets/arrow-left.svg"); mask-image: url("assets/arrow-left.svg"); }
.arrow-link, .dialog-detail-link, .region-item strong { display: inline-flex; align-items: center; gap: .45rem; }
.text-link > .site-arrow { color: var(--gold); }
.button > .site-arrow { margin-left: .4rem; }
.dialog-nav button, .album-nav button, .gallery-controls button { display: inline-flex; align-items: center; justify-content: center; }
.round-arrow .site-arrow { color: currentColor; }

.lead-consent {
  display: flex !important;
  align-items: flex-start;
  gap: .8rem !important;
  font-size: .88rem !important;
  font-weight: 400 !important;
  line-height: 1.45;
  cursor: pointer;
}
.lead-consent > input[type="checkbox"] {
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  margin: .05rem 0 0 !important;
  padding: 0 !important;
  flex: 0 0 24px;
  accent-color: var(--gold);
  cursor: pointer;
}
.lead-consent > span { color: rgba(37,40,43,.72); }
.lead-consent a, .lead-consent-link-text { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.brief-form .lead-consent > span { color: rgba(255,255,255,.72); }
.brief-form .lead-consent a, .brief-form .lead-consent-link-text { color: rgba(255,255,255,.92); }
@media (max-width: 600px) {
  .lead-consent { font-size: .82rem !important; }
}

.project-card .project-meta small {
  color: #ffffff99 !important;
  opacity: 1 !important;
  font-weight: 500;
  text-shadow: 0 1px 7px rgba(0,0,0,.75), 0 0 2px rgba(0,0,0,.55);
}

.project-card {
  transform: translateZ(0);
  transition: transform .48s cubic-bezier(.22,.61,.36,1), box-shadow .48s ease;
}
.project-card img {
  transform: scale(1.001) translateZ(0);
  will-change: transform;
  transition: transform .72s cubic-bezier(.22,.61,.36,1), filter .48s ease;
}
.project-card .project-meta {
  transition: transform .48s cubic-bezier(.22,.61,.36,1), background .48s ease;
}
.project-card::after {
  transform: translateY(8px) scale(.92);
  transition: opacity .38s ease, transform .48s cubic-bezier(.22,.61,.36,1), background-color .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(16,18,19,.12);
  }
  .project-card:hover img {
    transform: scale(1.045) translateZ(0);
    filter: brightness(.94);
  }
  .project-card:hover .project-meta {
    transform: translateY(-3px);
    background: linear-gradient(transparent 0%, rgba(16,18,19,.91) 100%);
  }
  .project-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.project-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-card .project-meta small {
  color: #ffffff99 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .project-card,
  .project-card img,
  .project-card .project-meta,
  .project-card::after {
    transition-duration: .01ms !important;
  }
}

.project-card .project-meta small {
  color: #c7c8c6 !important;
  opacity: 0.70 !important;
  font-weight: 500;
  text-shadow: none !important;
}

.project-card {
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.project-card img {
  transform: scale(1) translateZ(0) !important;
  filter: none !important;
  will-change: transform;
  transition: transform .65s cubic-bezier(.22,.61,.36,1) !important;
}
.project-card .project-meta {
  transform: none !important;
  transition: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .project-card:hover img {
    transform: scale(1.025) translateZ(0) !important;
    filter: none !important;
  }
  .project-card:hover .project-meta {
    transform: none !important;
  }
}

.project-card .project-meta small {
  color: #c7c8c6 !important;
  opacity: .70 !important;
  font-weight: 500;
  text-shadow: none !important;
}

.project-card {
  position: relative;
  overflow: hidden !important;
  contain: paint;
  isolation: isolate;
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
  transition: transform .7s cubic-bezier(.2,.7,.2,1) !important;
}
@media (hover: hover) and (pointer: fine) {
  .project-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .project-card:hover img {
    transform: scale(1.035) !important;
    filter: none !important;
  }
}
.project-card:focus:not(:focus-visible) {
  outline: none;
}
.project-card:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--gold) !important;
}
.project-card .project-meta small {
  color: #c7c8c6 !important;
  opacity: .70 !important;
  font-weight: 500;
  text-shadow: none !important;
}

.lead-consent > input[type="checkbox"] {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  flex: 0 0 24px !important;
  margin: .05rem 0 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(37, 40, 43, .52) !important;
  border-radius: 2px !important;
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px 16px !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, outline-color .2s ease !important;
}
.lead-consent > input[type="checkbox"]:hover {
  border-color: var(--gold) !important;
}
.lead-consent > input[type="checkbox"]:checked {
  border-color: var(--gold) !important;
  background-color: var(--gold) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.75 12.35l4.05 4.05L18.4 7.8' fill='none' stroke='%2325282b' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
.lead-consent > input[type="checkbox"]:focus {
  outline: none !important;
}
.lead-consent > input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(208, 156, 81, .28) !important;
  outline-offset: 2px !important;
}
.brief-form .lead-consent > input[type="checkbox"] {
  border-color: rgba(255, 255, 255, .52) !important;
  background-color: #fff !important;
}
.brief-form .lead-consent > input[type="checkbox"]:hover,
.brief-form .lead-consent > input[type="checkbox"]:checked {
  border-color: var(--gold) !important;
}
.brief-form .lead-consent > input[type="checkbox"]:checked {
  background-color: var(--gold) !important;
}

.lead-dialog-close {
  cursor: pointer;
}
