:root {
  --black: #050403;
  --black-soft: #0a0806;
  --charcoal: #14110d;
  --charcoal-2: #1b1610;
  --brown-black: #120d09;
  --bone: #e7ddcc;
  --bone-muted: #b7aa95;
  --gold: #b89555;
  --gold-bright: #d4b36d;
  --gold-dim: #6f5932;
  --ash: #6f675c;
  --blood: #5b0d0d;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Cinzel", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --header-height: 76px;
  --max-width: 1500px;
  --gutter: clamp(1.25rem, 4vw, 5rem);
  --border: rgba(184, 149, 85, 0.32);
  --shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);

  --texture-wide: url("../assets/images/decor/bg-ruin-texture-wide.png");
  --texture-raven-panel: url("../assets/images/decor/bg-raven-ruin-panel.png");
  --texture-arch-panel: url("../assets/images/decor/bg-gothic-arch-panel.png");
}

body {
  font-family: var(--font-body);
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.72), rgba(5, 4, 3, 0.96)),
    var(--texture-wide),
    radial-gradient(circle at 12% 18%, rgba(184, 149, 85, 0.08), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(91, 13, 13, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--black) 0%, #090705 45%, #050403 100%);
  background-size: cover, cover, auto, auto, auto;
  background-attachment: fixed, fixed, scroll, scroll, scroll;
  background-position: center, center top, center, center, center;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--gold-bright);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 3rem);
  padding: 0 var(--gutter);
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.28)),
    linear-gradient(90deg, rgba(184, 149, 85, 0.07), transparent 35%, rgba(184, 149, 85, 0.04));
  border-bottom: 1px solid rgba(184, 149, 85, 0.1);
  backdrop-filter: blur(16px);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    height 240ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(5, 4, 3, 0.94);
  border-bottom-color: rgba(184, 149, 85, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-bright);
  border: 1px solid rgba(184, 149, 85, 0.58);
  letter-spacing: -0.08em;
}

.brand-name {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 220ms ease;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.7rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(184, 149, 85, 0.1), transparent 50%),
    rgba(5, 4, 3, 0.3);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  color: var(--bone);
  border-color: rgba(212, 179, 109, 0.78);
  background:
    linear-gradient(135deg, rgba(184, 149, 85, 0.18), transparent 60%),
    rgba(5, 4, 3, 0.54);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  color: var(--gold);
}

.nav-toggle span {
  display: block;
  width: 1.75rem;
  height: 1px;
  margin: 0.36rem auto;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */

.hero {
  position: relative;
  height: clamp(42rem, 88svh, 54rem);
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(32rem, 42vw) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050403 0%, #050403 34%, rgba(5, 4, 3, 0.78) 52%, rgba(5, 4, 3, 0.12) 100%),
    radial-gradient(circle at 68% 36%, rgba(184, 149, 85, 0.22), transparent 30rem),
    var(--black);
  border-bottom: 1px solid rgba(184, 149, 85, 0.28);
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.6), rgba(5, 4, 3, 0.1) 58%, rgba(5, 4, 3, 0.5)),
    linear-gradient(120deg, rgba(184, 149, 85, 0.09), transparent 34%),
    var(--texture-wide),
    repeating-linear-gradient(93deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 14px);
  background-size: cover, auto, cover, auto;
  background-position: center, center, center, center;
  mix-blend-mode: overlay;
}

.hero__rail {
  position: absolute;
  left: clamp(0.7rem, 2.1vw, 2.35rem);
  top: 54%;
  z-index: 3;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  width: clamp(3.1rem, 4vw, 4.7rem);
  pointer-events: none;
}

.hero__rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-ui);
  font-size: clamp(0.48rem, 0.6vw, 0.64rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(184, 149, 85, 0.72);
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8);
}

.hero__rail-art {
  width: clamp(1.7rem, 2.4vw, 2.55rem);
  max-height: min(56svh, 34rem);
  object-fit: contain;
  opacity: 0.72;
  filter:
    drop-shadow(0 0 0.6rem rgba(184, 149, 85, 0.16))
    drop-shadow(0 0 1rem rgba(0, 0, 0, 0.9));
}

.hero__copy {
  position: relative;
  z-index: 4;
  align-self: start;
  max-width: 52rem;
  padding:
    calc(var(--header-height) + clamp(2.25rem, 4vw, 4.75rem))
    clamp(2rem, 6vw, 8rem)
    clamp(4rem, 7vw, 8rem);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-muted);
}

.hero h1 {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.45vw, 7.15rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.52);
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin: 0.18em 0 0.04em;
  font-size: 0.44em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--bone);
}

.ornament {
  width: min(21rem, 72%);
  height: 1px;
  margin: 1.75rem 0 1.3rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament::after {
  content: "✦";
  display: block;
  width: fit-content;
  margin: -0.65rem auto 0;
  padding: 0 0.7rem;
  color: var(--gold);
  background: var(--black);
  font-size: 0.8rem;
}

.hero__intro {
  max-width: 27rem;
  color: var(--bone-muted);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.75;
  letter-spacing: 0.015em;
}

.hero .button {
  margin-top: 2rem;
}

.hero__image {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.hero__image::before,
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__image::before {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.82) 0%, rgba(5, 4, 3, 0.32) 22%, transparent 52%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.62), transparent 25%, rgba(5, 4, 3, 0.52) 100%);
}

.hero__image::after {
  box-shadow: inset 0 0 8rem rgba(0, 0, 0, 0.78);
}

.hero__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(1.02) contrast(1.08) brightness(0.94);
  transform: scale(1.06);
  animation: slow-burn 18s ease-out forwards;
}

/* FEATURED WORK */

.featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, 22vw) minmax(0, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.64), rgba(5, 4, 3, 0.78)),
    var(--texture-wide),
    radial-gradient(circle at 92% 20%, rgba(184, 149, 85, 0.08), transparent 26rem);
  background-size: cover, cover, auto;
  background-position: center, center, center;
}

.featured::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter);
  pointer-events: none;
  border-left: 1px solid rgba(184, 149, 85, 0.14);
  border-right: 1px solid rgba(184, 149, 85, 0.14);
}

.featured__side {
  position: relative;
  z-index: 2;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.32), rgba(5, 4, 3, 0.82)),
    var(--texture-raven-panel),
    radial-gradient(circle at 40% 80%, rgba(184, 149, 85, 0.12), transparent 14rem);
  background-size: cover, cover, auto;
  background-position: center, center bottom, center;
  border: 1px solid rgba(184, 149, 85, 0.16);
  overflow: hidden;
}

.featured__side::before {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  opacity: 0.045;
  background:
    radial-gradient(circle, transparent 36%, var(--bone) 37% 38%, transparent 39%),
    linear-gradient(45deg, transparent 48%, var(--bone) 49% 51%, transparent 52%);
  transform: rotate(-18deg);
}

.featured__side p {
  position: relative;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.button--ghost {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.featured__main {
  position: relative;
  z-index: 2;
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-kicker span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 85, 0.62));
}

.section-kicker span:last-child {
  background: linear-gradient(90deg, rgba(184, 149, 85, 0.62), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  border: 1px solid rgba(184, 149, 85, 0.3);
  background: rgba(184, 149, 85, 0.18);
  box-shadow: var(--shadow);
}

.work-card {
  position: relative;
  min-width: 0;
  background: var(--black);
}

.work-card a {
  display: grid;
  height: 100%;
  color: inherit;
}

.work-card figure {
  position: relative;
  aspect-ratio: 4 / 2.55;
  overflow: hidden;
  background: var(--charcoal);
}

.work-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.66) 100%),
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.28) 100%);
  opacity: 0.82;
  transition: opacity 260ms ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.82);
  transform: scale(1.01);
  transition:
    transform 700ms ease,
    filter 380ms ease;
}

.work-card:hover img,
.work-card:focus-within img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.08) brightness(0.95);
}

.work-card:hover figure::after,
.work-card:focus-within figure::after {
  opacity: 0.58;
}

.work-card__copy {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.15rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.98), rgba(5, 4, 3, 1));
}

.work-card h2 {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
}

.work-card p {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* STATEMENT */

.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 10rem) var(--gutter);
  border-top: 1px solid rgba(184, 149, 85, 0.14);
  border-bottom: 1px solid rgba(184, 149, 85, 0.14);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.76)),
    var(--texture-wide),
    radial-gradient(circle at 18% 30%, rgba(184, 149, 85, 0.12), transparent 22rem),
    linear-gradient(135deg, #050403, #15100b);
  background-size: cover, cover, auto, auto;
  background-position: center, center, center, center;
}

.statement::after {
  content: "RM";
  position: absolute;
  right: clamp(-2rem, 6vw, 5rem);
  bottom: -4rem;
  font-family: var(--font-ui);
  font-size: clamp(12rem, 24vw, 26rem);
  color: rgba(184, 149, 85, 0.035);
  letter-spacing: -0.12em;
}

.statement__inner {
  position: relative;
  z-index: 1;
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

.statement h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  color: var(--gold);
}

.statement p:last-child {
  max-width: 48rem;
  margin: 1.5rem auto 0;
  color: var(--bone-muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.9;
}

/* INFO PANELS */

.info-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 7vw, 7rem);
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.95), rgba(5, 4, 3, 0.78) 42%, rgba(5, 4, 3, 0.94)),
    var(--texture-arch-panel),
    var(--black);
  background-size: cover, min(42rem, 45vw) auto, auto;
  background-position: center, right bottom, center;
  background-repeat: no-repeat;
}

.info-panel {
  min-height: 20rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(184, 149, 85, 0.2);
  border-bottom: 1px solid rgba(184, 149, 85, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.72), rgba(5, 4, 3, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(184, 149, 85, 0.07), transparent 16rem);
}

.info-panel:first-child {
  border-left: 1px solid rgba(184, 149, 85, 0.2);
}

.panel-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3.8rem;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  color: var(--gold);
  border: 1px solid rgba(184, 149, 85, 0.34);
  border-radius: 999px 999px 0.35rem 0.35rem;
  background:
    radial-gradient(circle at center, rgba(184, 149, 85, 0.12), transparent 64%),
    rgba(5, 4, 3, 0.24);
  box-shadow: inset 0 0 1.4rem rgba(184, 149, 85, 0.05);
}

.info-panel h2 {
  font-family: var(--font-ui);
  font-size: clamp(1.1rem, 1.4vw, 1.55rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-panel p {
  margin-top: 1rem;
  max-width: 28rem;
  color: var(--bone-muted);
  line-height: 1.75;
}

.info-panel a {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(184, 149, 85, 0.48);
  padding-bottom: 0.35rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.info-panel a:hover,
.info-panel a:focus-visible {
  color: var(--bone);
  border-color: var(--bone);
  transform: translateX(4px);
}

/* FOOTER */

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem var(--gutter);
  color: var(--ash);
  font-size: 0.85rem;
  background: #030302;
  border-top: 1px solid rgba(184, 149, 85, 0.18);
}

.site-footer a {
  color: var(--bone-muted);
}

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

/* MOTION */

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-burn {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.06);
  }
}

/* RESPONSIVE */

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

  .site-nav {
    gap: 2rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(28rem, 48vw) 1fr;
  }

  .hero__rail {
    display: none;
  }

  .hero__copy {
    padding-left: var(--gutter);
  }

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

  .featured__side {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll;
  }

  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 0.82rem;
  }

  .brand-name {
    font-size: 0.95rem;
    letter-spacing: 0.28em;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 1rem var(--gutter) 1.4rem;
    background: rgba(5, 4, 3, 0.97);
    border-bottom: 1px solid rgba(184, 149, 85, 0.22);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 240ms ease,
      opacity 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    padding: 1rem 0;
  }

  .hero {
    height: auto;
    min-height: auto;
    grid-template-columns: 1fr;
    background: var(--black);
  }

  .hero__copy {
    order: 2;
    max-width: none;
    padding: clamp(2rem, 7vw, 4rem) var(--gutter) clamp(4rem, 9vw, 6rem);
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.72), var(--black) 42%),
      radial-gradient(circle at 30% 0%, rgba(184, 149, 85, 0.16), transparent 20rem);
  }

  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 6.5rem);
  }

  .hero__image {
    order: 1;
    height: min(52svh, 30rem);
    min-height: 20rem;
  }

  .hero__image img {
    min-height: 0;
    object-position: center 24%;
  }

  .hero__image::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 3, 0.42), transparent 44%, rgba(5, 4, 3, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.45), transparent 72%);
  }

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

  .work-card figure {
    aspect-ratio: 16 / 9;
  }

  .info-panels {
    grid-template-columns: 1fr;
  }

  .info-panel {
    border-left: 1px solid rgba(184, 149, 85, 0.2);
  }
}

@media (max-width: 620px) {
  .brand {
    gap: 0.75rem;
  }

  .brand-name {
    max-width: 12rem;
    overflow: hidden;
    letter-spacing: 0.22em;
  }

  .hero__intro {
    max-width: none;
  }

  .button {
    width: 100%;
  }

  .featured {
    padding-top: 2rem;
  }

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

  .section-kicker {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .section-kicker span {
    width: 100%;
  }

  .statement {
    text-align: left;
  }

  .statement__inner {
    text-align: left;
  }

  .statement p:last-child {
    margin-left: 0;
  }

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