:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --paper: #f2efe8;
  --paper-2: #e5e0d5;
  --gold: #e4bc39;
  --gold-light: #f3d975;
  --red: #8e171a;
  --muted: #a7a49d;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(11, 11, 12, 0.18);
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.sr-only,
.skip-link {
  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:focus {
  z-index: 200;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  color: var(--ink);
  background: var(--gold);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line-dark);
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand img {
  width: 50px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.84rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  color: #d8d6d0;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.nav-cta {
  padding: 10px 17px;
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  color: white;
  background: transparent;
  border: 1px solid var(--line-dark);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--ink);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 188, 57, 0.17), rgba(228, 188, 57, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  min-height: 570px;
  padding-bottom: 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7.2vw, 7.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #c5c2bb;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.button-gold {
  color: var(--ink);
  background: var(--gold);
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-ghost {
  color: var(--paper);
  border-color: var(--line-dark);
  background: rgba(255,255,255,.025);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding: 0;
  margin: 32px 0 0;
  color: #a9a69f;
  font-size: 0.78rem;
  list-style: none;
}

.hero-proof li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
}

.hero-board {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(228, 188, 57, 0.5);
  background: #101011;
  box-shadow: 28px 28px 0 rgba(142, 23, 26, 0.58);
  transform: rotate(1.5deg);
}

.board-topline,
.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.board-logo {
  display: grid;
  min-height: 370px;
  place-items: center;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 50% 45%, rgba(228,188,57,.12), transparent 40%),
    #050506;
}

.board-logo img {
  width: 88%;
  max-height: 330px;
  object-fit: contain;
}

.board-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.board-tags span {
  padding: 11px 14px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #dedbd4;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-footer {
  justify-content: flex-start;
  gap: 10px;
}

.board-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
}

.hero-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--gold);
}

.hero-marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 14px 0;
  animation: marquee 32s linear infinite;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.audience {
  padding: 110px 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.05fr 0.7fr;
  gap: 60px;
}

.section-kicker {
  color: var(--red);
}

.section-kicker.gold {
  color: var(--gold);
}

.audience h2,
.section-heading h2,
.process-intro h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.audience-grid > div > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #4c4a47;
  font-size: 1.03rem;
}

.audience-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line-light);
}

.audience-list span {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  color: #7d7770;
  font-size: 0.72rem;
}

.audience-list strong {
  color: var(--ink);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services,
.projects,
.process,
.faq,
.contact {
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 76px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.dark-heading > p {
  color: #5a5751;
}

.service-list {
  border-top: 1px solid var(--line-dark);
}

.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 0.75fr;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding 220ms ease, background 220ms ease;
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-number {
  padding-top: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-row h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-row p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.service-row ul {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  color: #d1cec7;
  font-size: 0.86rem;
  list-style: none;
}

.service-row li::before {
  margin-right: 10px;
  color: var(--red);
  content: "—";
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 18px;
}

.project-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink-soft);
  transition: transform 200ms ease, background 200ms ease;
}

.project-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.22) 0%, rgba(18, 18, 20, 0.74) 47%, #18181a 88%);
  content: "";
  pointer-events: none;
}

.project-card > :not(.project-card-image) {
  position: relative;
  z-index: 2;
}

.project-card-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 520ms cubic-bezier(.2,.65,.2,1), opacity 220ms ease;
}

.project-card:hover {
  background: #222224;
  transform: translateY(-6px);
}

.project-card:hover .project-card-image {
  opacity: 0.82;
  transform: scale(1.035);
}

.project-featured {
  color: var(--ink);
  background: var(--gold);
}

.project-featured::after {
  background: linear-gradient(180deg, rgba(236, 190, 45, 0.18) 0%, rgba(236, 190, 45, 0.66) 48%, var(--gold) 90%);
}

.project-featured .project-card-image {
  opacity: 0.64;
}

.project-featured:hover {
  background: var(--gold-light);
}

.project-index,
.project-type {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-type {
  align-self: flex-start;
  padding: 7px 9px;
  margin-top: 82px;
  border: 1px solid currentColor;
}

.project-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
}

.project-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.project-title > span,
.project-title > a,
.project-card-link,
.project-post-links a {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.project-title > a,
.project-card-link,
.project-post-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}

.project-title-stack {
  display: block;
}

.project-title-stack h3 {
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  line-height: 0.94;
}

.project-post-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.project-card > p {
  margin: 16px 0 0;
  color: #bbb8b1;
  font-size: 0.86rem;
}

.project-featured > p {
  color: #39352d;
}

.projects-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
}

.projects-more p {
  margin: 0;
  color: #5b5852;
}

.projects-more a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.projects-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.gallery-open-button,
.gallery-close-button {
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.gallery-open-button:hover,
.gallery-close-button:hover {
  color: var(--ink);
  background: var(--gold);
}

.gallery-expanded {
  padding-top: 86px;
  margin-top: 42px;
  border-top: 1px solid var(--line-light);
  scroll-margin-top: 100px;
}

.gallery-expanded-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 62px;
}

.gallery-expanded-heading h3 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.gallery-expanded-heading p:last-child {
  max-width: 620px;
  margin: 0;
  color: #5b5852;
}

.gallery-groups > .gallery-item {
  display: none;
}

.gallery-group + .gallery-group {
  padding-top: 68px;
  margin-top: 68px;
  border-top: 1px solid var(--line-light);
}

.gallery-group-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.gallery-group-index,
.gallery-group-count {
  color: #716d65;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-group-heading h4 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.gallery-group-heading p {
  max-width: 700px;
  margin: 0;
  color: #6c6860;
  font-size: 0.9rem;
}

.gallery-group .gallery-grid {
  grid-auto-rows: 220px;
}

.gallery-group .gallery-item.gallery-featured,
.gallery-group .gallery-item.gallery-wide {
  grid-row: auto;
  grid-column: auto;
}

.portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid var(--line-light);
  border-radius: 100px;
  color: #46423c;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.gallery-count {
  flex: 0 0 auto;
  margin: 0;
  color: #68645d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: white;
  background: #1a1a1b;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  content: "";
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(.2,.65,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item.gallery-featured {
  grid-row: span 2;
  grid-column: span 2;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-shade {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 18px;
  padding: 58px 18px 17px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.gallery-shade small {
  grid-column: 1;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-shade strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.05;
}

.gallery-featured .gallery-shade {
  padding: 90px 25px 24px;
}

.gallery-featured .gallery-shade strong {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.gallery-shade i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: end;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover .gallery-shade i,
.gallery-item:focus-visible .gallery-shade i {
  opacity: 1;
  transform: none;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--paper);
  background: rgba(5, 5, 6, 0.96);
}

.lightbox::backdrop {
  background: rgba(5, 5, 6, 0.96);
}

.lightbox-shell {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  gap: 18px;
  padding: 68px 26px 24px;
}

.lightbox figure {
  display: grid;
  min-width: 0;
  height: 100%;
  place-items: center;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox figcaption {
  display: grid;
  width: min(100%, 1000px);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2px 20px;
  padding-top: 16px;
}

.lightbox figcaption small {
  grid-column: 1;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox figcaption strong {
  grid-column: 1;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.lightbox-position {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: end;
  color: #aaa69e;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 26px;
  padding: 8px 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close span {
  margin-left: 8px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  vertical-align: -2px;
}

.lightbox-nav {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.04);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lightbox-nav:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.section-red {
  color: #fff6ed;
  background: var(--red);
}

.about {
  padding: 130px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: start;
  gap: 100px;
}

.about .section-kicker {
  color: var(--gold-light);
}

.about h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.about-copy {
  padding-top: 48px;
}

.about-copy > p {
  margin: 0 0 24px;
  font-size: 1.02rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.28);
  border-left: 1px solid rgba(255,255,255,.28);
}

.about-values span {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.28);
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-intro {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: start;
  gap: 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 80px 0 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  list-style: none;
}

.process-steps li {
  min-height: 290px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.process-steps span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-steps h3 {
  margin: 85px 0 14px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-band {
  padding: 95px 0;
  color: var(--ink);
  background: var(--gold);
}

.quote-band-inner {
  display: grid;
  grid-template-columns: 0.45fr 1.2fr auto;
  align-items: center;
  gap: 50px;
}

.quote-band p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--red);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 680px;
  padding: 0 42px 24px 0;
  margin: 0;
  color: #55514b;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 100px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
}

.direct-links {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.direct-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.direct-links small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-links strong {
  grid-column: 1;
  font-size: 0.9rem;
}

.direct-links span {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(228, 188, 57, 0.42);
  background: #111112;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d6d3cc;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 0;
  color: var(--paper);
  background: #0b0b0c;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #77746e;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: -7px 0 0;
  color: #77746e;
  font-size: 0.72rem;
  text-align: center;
}

.footer {
  padding: 76px 0 26px;
  color: #aaa69e;
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 0.7fr 1fr;
  gap: 60px;
}

.footer-brand img {
  width: min(360px, 100%);
}

.footer-brand p {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer small {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer a {
  font-size: 0.82rem;
}

.footer a:hover {
  color: var(--paper);
}

.footer-contact a:last-child {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 65px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-whatsapp {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  display: none;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: #051e10;
  border-radius: 100px;
  background: #25d366;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  font-size: 0.84rem;
  font-weight: 850;
}

.mobile-whatsapp svg {
  width: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 180ms; }
.delay-3 { transition-delay: 270ms; }

@media (max-width: 980px) {
  :root {
    --shell: min(calc(100% - 36px), 780px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    width: min(86vw, 420px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 90px 34px 40px;
    background: #101011;
    box-shadow: -20px 0 60px rgba(0,0,0,.32);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms ease;
  }

  .site-nav.open {
    transform: none;
    visibility: visible;
  }

  .site-nav > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-board {
    width: min(600px, 92%);
    margin-inline: auto;
  }

  .audience-grid {
    grid-template-columns: 0.45fr 1.4fr;
  }

  .audience-list {
    grid-column: 2;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .project-featured {
    grid-column: 1 / -1;
  }

  .project-card {
    min-height: 400px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-copy {
    max-width: 700px;
    padding-top: 0;
  }

  .process-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .quote-band-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 24px;
  }

  .faq-grid {
    grid-template-columns: 0.6fr 1fr;
    gap: 50px;
  }

  .contact-copy {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

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

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

  .site-header {
    height: 68px;
  }

  .brand img {
    width: 46px;
    height: 34px;
  }

  .brand span {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero-grid {
    gap: 52px;
    padding-bottom: 92px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.7rem);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-board {
    width: calc(100% - 14px);
    padding: 14px;
    box-shadow: 14px 14px 0 rgba(142, 23, 26, 0.58);
  }

  .board-topline span:last-child {
    display: none;
  }

  .board-logo {
    min-height: 250px;
  }

  .board-footer {
    flex-wrap: wrap;
  }

  .audience,
  .services,
  .projects,
  .about,
  .process,
  .faq,
  .contact {
    padding: 86px 0;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .audience-list {
    grid-column: auto;
    margin-top: 18px;
  }

  .audience h2,
  .section-heading h2,
  .process-intro h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .service-row ul {
    grid-column: 2;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

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

  .project-featured {
    grid-column: auto;
  }

  .project-card {
    min-height: 370px;
  }

  .project-title h3 {
    font-size: 3.3rem;
  }

  .projects-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid {
    gap: 40px;
  }

  .about h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: auto;
  }

  .process-steps h3 {
    margin-top: 45px;
  }

  .quote-band {
    padding: 70px 0;
  }

  .quote-band h2 {
    font-size: 2.8rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding-bottom: 90px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-whatsapp {
    display: flex;
  }

  .reveal {
    transform: translateY(14px);
  }
}

@media (max-width: 980px) {
  .gallery-expanded-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .gallery-close-button {
    justify-self: start;
  }

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

  .gallery-item.gallery-featured,
  .gallery-item.gallery-wide {
    grid-column: span 2;
  }

  .lightbox-shell {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 640px) {
  .project-title-stack h3 {
    font-size: 2.65rem;
  }

  .projects-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .gallery-open-button {
    width: 100%;
  }

  .gallery-expanded {
    padding-top: 60px;
    margin-top: 34px;
  }

  .gallery-expanded-heading {
    margin-bottom: 46px;
  }

  .gallery-group + .gallery-group {
    padding-top: 48px;
    margin-top: 48px;
  }

  .gallery-group-heading {
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .gallery-group-count {
    grid-column: 2;
  }

  .portfolio-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-list {
    width: 100%;
    flex-wrap: nowrap;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
    gap: 8px;
  }

  .gallery-group .gallery-grid {
    grid-auto-rows: 180px;
  }

  .gallery-item.gallery-featured {
    grid-row: span 2;
  }

  .gallery-shade {
    padding: 42px 11px 11px;
  }

  .gallery-featured .gallery-shade {
    padding: 70px 16px 16px;
  }

  .gallery-shade strong {
    font-size: 1.05rem;
  }

  .gallery-featured .gallery-shade strong {
    font-size: 2.25rem;
  }

  .gallery-shade i {
    display: none;
  }

  .lightbox-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 2px;
    padding: 62px 4px 16px;
  }

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

  .lightbox figcaption {
    padding: 12px 8px 0;
  }

  .lightbox figcaption strong {
    font-size: 1.35rem;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
