:root {
  --black: #080809;
  --black-soft: #111114;
  --charcoal: #1a1b1f;
  --graphite: #26272c;
  --dark-grey: #34353b;
  --silver: #b8b8bd;
  --silver-soft: #d8d8dd;
  --white: #f7f7f8;
  --gold: #c5a466;
  --gold-deep: #8e6b38;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.09);
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-lg: 0 32px 52px rgba(0, 0, 0, 0.44);
  --shadow-md: 0 18px 30px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Jost", "Segoe UI", sans-serif;
  color: var(--silver-soft);
  line-height: 1.6;
  background:
    radial-gradient(circle at 82% -10%, rgba(197, 164, 102, 0.13), transparent 42%),
    radial-gradient(circle at 8% 22%, rgba(216, 216, 221, 0.08), transparent 45%),
    linear-gradient(145deg, var(--black) 0%, var(--black-soft) 42%, var(--charcoal) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 500px;
  height: 500px;
  right: -200px;
  top: 14%;
  border-radius: 50%;
  border: 1px solid rgba(197, 164, 102, 0.14);
  box-shadow: inset 0 0 110px rgba(197, 164, 102, 0.1);
  animation: drift 22s ease-in-out infinite;
}

body::after {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -120px;
  border-radius: 50%;
  border: 1px solid rgba(216, 216, 221, 0.13);
  box-shadow: inset 0 0 80px rgba(216, 216, 221, 0.06);
  animation: drift 18s ease-in-out infinite reverse;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -20px, 0);
  }
}

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

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

p,
h1,
h2,
h3,
dl,
dt,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.container {
  width: min(1240px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.72rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 24;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(8, 8, 9, 0.68), rgba(8, 8, 9, 0.5)),
    linear-gradient(130deg, rgba(197, 164, 102, 0.045), transparent 52%);
  backdrop-filter: blur(8px);
}

.header-shell {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 160px;
}

.brand img {
  width: 100%;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  padding: 0.15rem 0.12rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver);
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  border-color: var(--gold);
}

.site-nav .nav-button {
  border: 1px solid rgba(197, 164, 102, 0.7);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(197, 164, 102, 0.32), rgba(142, 107, 56, 0.08));
}

.site-nav .nav-button:hover,
.site-nav .nav-button:focus-visible {
  background: linear-gradient(135deg, rgba(197, 164, 102, 0.44), rgba(142, 107, 56, 0.18));
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 56px;
  margin-left: auto;
  border: 1px solid rgba(197, 164, 102, 0.6);
  background: rgba(8, 8, 9, 0.96);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 26px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

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

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 3rem;
  background: url("media/arch-hero.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(8, 8, 9, 0.69) 12%, rgba(8, 8, 9, 0.41) 52%, rgba(8, 8, 9, 0.75) 100%),
    repeating-linear-gradient(
      120deg,
      rgba(216, 216, 221, 0.04) 0,
      rgba(216, 216, 221, 0.04) 1px,
      transparent 1px,
      transparent 46px
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
  margin-top: 0;
}

.hero-copy {
  max-width: 72ch;
  margin-left: auto;
  text-align: right;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  max-width: 10ch;
  margin-left: auto;
  color: var(--white);
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-copy > p {
  margin-top: 1rem;
  max-width: 58ch;
  margin-left: auto;
  color: var(--silver);
  font-size: 1.03rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.btn {
  min-height: 46px;
  border-radius: 999px;
  padding: 0.74rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 190ms ease, box-shadow 190ms ease, background-color 190ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #0a0a0a;
  background: linear-gradient(130deg, #d7bc86, #c5a466);
  box-shadow: 0 10px 20px rgba(197, 164, 102, 0.3);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(216, 216, 221, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: clamp(2.9rem, 7vw, 5.6rem) 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(18, 18, 21, 0.92), rgba(10, 10, 11, 0.98)),
    radial-gradient(circle at 22% 22%, rgba(197, 164, 102, 0.08), transparent 44%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  max-width: 74ch;
}

.section-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.1vw, 3.6rem);
  max-width: 18ch;
}

.services-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(130deg, rgba(197, 164, 102, 0.04), transparent 40%);
  box-shadow: var(--shadow-md);
}

.service-label {
  display: inline-flex;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-card h3 {
  margin-top: 0.58rem;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.service-card p {
  margin-top: 0.62rem;
  color: var(--silver);
  font-size: 0.95rem;
}

.work-grid {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.work-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(216, 216, 221, 0.22);
  background: var(--black-soft);
  display: grid;
  grid-template-rows: 250px auto;
  min-height: 0;
}

.work-launch {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  background: #0a0a0b;
}

.work-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
  filter: grayscale(14%) contrast(1.08);
}

.work-card:hover .work-launch img,
.work-launch:focus-visible img {
  transform: scale(1.07);
}

.work-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.78));
  pointer-events: none;
}

.work-launch-label {
  position: absolute;
  right: 0.72rem;
  bottom: 0.72rem;
  border: 1px solid rgba(197, 164, 102, 0.8);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 8, 9, 0.72);
}

.work-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.34rem;
  padding: 0.88rem 0.92rem 0.98rem;
  border-top: 1px solid rgba(216, 216, 221, 0.2);
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.86), rgba(10, 10, 11, 0.97));
}

.work-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.work-meta h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.work-desc {
  font-size: 0.84rem;
  color: rgba(247, 247, 248, 0.9);
  line-height: 1.45;
}

.work-detail {
  margin-top: 0.22rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(216, 216, 221, 0.88);
  line-height: 1.45;
}

.section-media {
  background:
    radial-gradient(circle at 9% 12%, rgba(216, 216, 221, 0.08), transparent 46%),
    radial-gradient(circle at 90% 88%, rgba(197, 164, 102, 0.1), transparent 52%),
    linear-gradient(160deg, rgba(8, 8, 9, 0.9), rgba(13, 13, 16, 0.96));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.media-showcase {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 1rem;
}

.media-feature {
  border: 1px solid rgba(216, 216, 221, 0.24);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  background: #09090a;
  box-shadow: var(--shadow-md);
}

.media-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 560ms ease;
  filter: saturate(0.92) contrast(1.07);
}

.media-feature:hover img,
.media-feature:focus-visible img {
  transform: scale(1.04);
}

.media-feature-copy {
  position: absolute;
  left: 1.12rem;
  right: 1.12rem;
  bottom: 1.12rem;
  display: grid;
  gap: 0.26rem;
  z-index: 2;
}

.media-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(190deg, rgba(8, 8, 9, 0.12), rgba(8, 8, 9, 0.88)),
    linear-gradient(130deg, rgba(197, 164, 102, 0.1), transparent 44%);
  z-index: 1;
  pointer-events: none;
}

.media-feature-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--gold);
}

.media-feature-title {
  color: var(--white);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  line-height: 0.94;
}

.media-feature-meta {
  color: rgba(247, 247, 248, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.media-stack {
  display: grid;
  gap: 0.78rem;
}

.media-tile {
  border: 1px solid rgba(216, 216, 221, 0.2);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(150deg, rgba(15, 15, 18, 0.95), rgba(10, 10, 12, 0.98));
  color: var(--white);
  text-align: left;
}

.media-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms ease;
}

.media-tile span {
  display: block;
  padding: 0.58rem 0.68rem 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--silver-soft);
}

.media-tile:hover img,
.media-tile:focus-visible img {
  transform: scale(1.08);
}

.process-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.step {
  display: inline-flex;
  min-width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #d7bc86, #c5a466);
  color: #0b0b0b;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.process-card h3 {
  margin-top: 0.68rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.process-card p {
  margin-top: 0.5rem;
  color: var(--silver);
  font-size: 0.93rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.1rem;
}

.about-copy,
.about-panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1.1rem;
}

.about-copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.about-copy p:not(.eyebrow) {
  margin-top: 0.82rem;
  color: var(--silver);
}

.about-panel h3 {
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.about-panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1.08rem;
  display: grid;
  gap: 0.45rem;
}

.about-panel li {
  color: var(--silver-soft);
}

.about-media-trigger {
  margin-top: 1rem;
  width: 100%;
  border: 1px solid rgba(216, 216, 221, 0.28);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(165deg, rgba(14, 14, 17, 0.96), rgba(9, 9, 11, 0.98));
  cursor: pointer;
  position: relative;
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.38);
}

.about-media-trigger img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 460ms ease, filter 420ms ease;
}

.about-media-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(190deg, rgba(8, 8, 9, 0.04), rgba(8, 8, 9, 0.6)),
    linear-gradient(130deg, rgba(197, 164, 102, 0.08), transparent 45%);
  pointer-events: none;
}

.about-media-trigger:hover,
.about-media-trigger:focus-visible {
  border-color: rgba(197, 164, 102, 0.82);
}

.about-media-trigger:hover img,
.about-media-trigger:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.1);
}

.contact-shell {
  max-width: 840px;
  margin-inline: auto;
}

.contact-info {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow-md);
  padding: 1.16rem;
}

.contact-info h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.3vw, 3rem);
  max-width: 13ch;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.86rem;
}

.contact-list li {
  border-top: 1px solid var(--line-soft);
  padding-top: 0.72rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 0.86rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
}

.contact-list a,
.contact-list p {
  color: var(--silver-soft);
  line-height: 1.5;
}

.contact-list a:hover {
  color: var(--white);
}

body.gallery-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
}

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

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(4px);
}

.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  max-height: min(90vh, 960px);
  overflow: auto;
  border: 1px solid rgba(216, 216, 221, 0.22);
  border-radius: 18px;
  padding: 0.95rem;
  background:
    radial-gradient(circle at 80% 4%, rgba(197, 164, 102, 0.16), transparent 36%),
    linear-gradient(165deg, rgba(12, 12, 15, 0.98), rgba(8, 8, 10, 0.99));
  box-shadow: 0 32px 54px rgba(0, 0, 0, 0.6);
}

.gallery-close {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid rgba(216, 216, 221, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--silver-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.gallery-header {
  margin-top: 0.58rem;
}

.gallery-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-header h2 {
  margin-top: 0.2rem;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.gallery-counter {
  margin-top: 0.3rem;
  color: var(--silver);
  font-size: 0.82rem;
}

.gallery-stage {
  margin-top: 0.78rem;
  border: 1px solid rgba(216, 216, 221, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: #060607;
  min-height: 260px;
}

.gallery-stage img,
.gallery-stage iframe {
  width: 100%;
  display: block;
}

.gallery-stage img {
  max-height: min(60vh, 700px);
  object-fit: contain;
  margin-inline: auto;
}

.gallery-stage iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

.gallery-controls {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.5rem;
}

.gallery-nav {
  border: 1px solid rgba(216, 216, 221, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 0.74rem;
  cursor: pointer;
}

.gallery-nav:hover,
.gallery-close:hover {
  border-color: rgba(197, 164, 102, 0.8);
  color: var(--white);
}

.gallery-thumbs {
  margin-top: 0.76rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.48rem;
}

.gallery-thumb {
  border: 1px solid rgba(216, 216, 221, 0.2);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-thumb.video::after {
  content: "Video";
  position: absolute;
  right: 0.36rem;
  bottom: 0.36rem;
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.16rem 0.34rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 164, 102, 0.8);
  color: var(--white);
  background: rgba(8, 8, 9, 0.72);
}

.gallery-thumb.is-active {
  border-color: rgba(197, 164, 102, 0.9);
  box-shadow: 0 0 0 2px rgba(197, 164, 102, 0.2);
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #080809;
}

.footer-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(216, 216, 221, 0.88);
}

.footer-shell a {
  color: var(--white);
}

.footer-shell a:hover,
.footer-shell a:focus-visible {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1160px) {
  .services-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-showcase {
    grid-template-columns: 1fr;
  }

  .media-feature img {
    min-height: 320px;
  }

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

  .gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(320px, 94vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: rgba(8, 8, 9, 0.97);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.64rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    border-color: rgba(197, 164, 102, 0.5);
    background: rgba(197, 164, 102, 0.08);
  }

  .header-shell {
    position: relative;
    min-height: 62px;
  }

  .brand {
    max-width: 182px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(1240px, calc(100% - 1.25rem));
  }

  .header-shell {
    min-height: 58px;
  }

  .brand {
    max-width: 154px;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11.5vw, 3.6rem);
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

  .section-head h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.7rem);
  }

  .services-grid,
  .work-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-rows: 220px auto;
  }

  .gallery-panel {
    padding: 0.72rem;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .btn {
    width: 100%;
  }
}

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

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