:root {
  --bg: #050505;
  --bg-2: #0a0a09;
  --panel: #11100e;
  --ink: #f8f4ea;
  --soft: #e6dfcf;
  --muted: #b9ad99;
  --dim: #7d725f;
  --gold: #caa35b;
  --gold-2: #e4c982;
  --olive: #343628;
  --wine: #3b2324;
  --line: rgba(202, 163, 91, 0.34);
  --line-soft: rgba(248, 244, 234, 0.09);
  --shadow: rgba(0, 0, 0, 0.62);
  --max: 1240px;
  --side: clamp(1.25rem, 4.6vw, 4.75rem);
  --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 {
  background: var(--bg);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(202, 163, 91, 0.035) 1px, transparent 1px) 50% 0 / min(8.333vw, 103px) 100%,
    radial-gradient(circle at 12% 8%, rgba(59, 35, 36, 0.34), transparent 22rem),
    radial-gradient(circle at 88% 16%, rgba(202, 163, 91, 0.16), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0a0a09 46%, #050505 100%);
  font-family: var(--sans);
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 7rem, 7rem 100%;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

body.nav-open {
  overflow: hidden;
}

body.home-page {
  height: 100svh;
  overflow: hidden;
}

body.home-page main {
  height: 100svh;
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--gold-2);
  color: #080705;
  font-weight: 800;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.15rem var(--side) 0;
}

.site-header.static {
  position: relative;
  padding-bottom: 1.15rem;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line-soft);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 5rem;
  padding: 0.55rem clamp(0.9rem, 2vw, 1.35rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  border: 1px solid rgba(248, 244, 234, 0.075);
  border-bottom-color: rgba(202, 163, 91, 0.22);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(14, 12, 10, 0.66)),
    rgba(5, 5, 5, 0.64);
  box-shadow: 0 1.2rem 3.8rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0.25rem;
  min-width: max-content;
}

.brand-name {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2vw, 2.05rem);
  line-height: 0.94;
}

.brand-desc {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.72rem, 1.35vw, 1.45rem);
  color: rgba(248, 244, 234, 0.76);
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.18rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: right 180ms ease;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  color: var(--gold-2);
}

.main-nav a[aria-current="page"]::after,
.main-nav a:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.45);
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.05rem, 4.05vw, 4.8rem);
}

h2 {
  font-size: clamp(2.55rem, 4.7vw, 5.15rem);
}

h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
}

.page-title {
  font-size: clamp(4.1rem, 9vw, 8.5rem);
}

.gold {
  color: var(--gold-2);
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.lead,
.page-intro,
.hero-copy p {
  max-width: 35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.58) 0%, rgba(5,5,5,0.45) 49.8%, rgba(5,5,5,0.69) 49.8%, rgba(5,5,5,0.82) 100%),
    radial-gradient(circle at 24% 22%, rgba(228, 201, 130, 0.2), transparent 18rem),
    radial-gradient(circle at 86% 20%, rgba(202, 163, 91, 0.18), transparent 26rem);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-glow,
.ambient-line {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.ambient-glow {
  width: clamp(18rem, 34vw, 35rem);
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.24;
  background: radial-gradient(circle, rgba(228, 201, 130, 0.32), rgba(202, 163, 91, 0.12) 38%, transparent 68%);
  animation: ambientGlow 18s ease-in-out infinite;
}

.glow-a {
  top: 0;
  left: 28%;
  opacity: 0.18;
}

.glow-b {
  right: 7%;
  bottom: 8%;
  width: clamp(16rem, 30vw, 31rem);
  opacity: 0.16;
  background: radial-gradient(circle, rgba(88, 92, 63, 0.36), rgba(202, 163, 91, 0.1) 42%, transparent 70%);
  animation-delay: -8s;
}

.ambient-line {
  top: 12%;
  width: 1px;
  height: clamp(18rem, 48vh, 33rem);
  transform-origin: 50% 50%;
  background: linear-gradient(180deg, transparent, rgba(228, 201, 130, 0.72), transparent);
  opacity: 0.22;
  animation: ambientLine 14s ease-in-out infinite;
}

.line-a {
  left: 52%;
}

.line-b {
  left: 66%;
  top: 5%;
  height: clamp(20rem, 56vh, 39rem);
  opacity: 0.16;
  animation-delay: -5s;
}

.line-c {
  left: 84%;
  top: 20%;
  height: clamp(14rem, 36vh, 26rem);
  opacity: 0.14;
  animation-delay: -10s;
}

@keyframes ambientGlow {
  0%,
  100% {
    transform: translate3d(-2%, -1%, 0) scale(0.92);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(7%, 4%, 0) scale(1.08);
    opacity: 0.31;
  }
}

@keyframes ambientLine {
  0%,
  100% {
    transform: translate3d(0, -4%, 0) scaleY(0.86);
    opacity: 0.12;
  }

  50% {
    transform: translate3d(1.4rem, 7%, 0) scaleY(1.13);
    opacity: 0.32;
  }
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.04) 0%, rgba(5,5,5,0.1) 58%, rgba(5,5,5,0.76) 100%),
    linear-gradient(90deg, transparent 0%, rgba(202, 163, 91, 0.34) 49.85%, transparent 50.05%);
  opacity: 0.76;
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.13) 62%, var(--bg) 100%),
    linear-gradient(90deg, transparent 0%, rgba(202, 163, 91, 0.32) 50%, transparent 50.12%);
  opacity: 0.72;
}

.hero-grid {
  width: 100%;
  max-width: calc(var(--max) + var(--side) * 2);
  margin: 0 auto;
  padding: clamp(7.1rem, 12vh, 9.35rem) var(--side) clamp(1.5rem, 4vh, 4.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(30rem, 0.78fr);
  gap: clamp(2.4rem, 5vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  position: relative;
  grid-column: 2;
  justify-self: end;
  z-index: 4;
  max-width: 36rem;
  padding-top: 0.7rem;
}

.hero .eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 4.2rem;
  height: 1px;
  margin-bottom: 1.65rem;
  background: var(--gold);
}

.hero-copy p:not(.eyebrow) {
  max-width: 30rem;
  margin: clamp(0.95rem, 2vh, 1.45rem) 0 0;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1.15rem, 2.8vh, 2rem);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  min-height: 3.35rem;
  min-width: 11.25rem;
  padding: 0.1rem 1.55rem 0;
  overflow: visible;
  border: 1px solid var(--line);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0)),
    rgba(12, 11, 9, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 1rem 2.5rem rgba(0,0,0,0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.button::before {
  content: none;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(228, 201, 130, 0.72);
  color: var(--gold-2);
}

.button.primary {
  color: #100c06;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--gold-2), var(--gold) 52%, #9b793a);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.16),
    0 1rem 2.5rem rgba(202, 163, 91, 0.18);
}

.button.primary:hover {
  color: #100c06;
}

.arrow {
  flex: 0 0 auto;
  margin-left: 0;
  transition: transform 180ms ease;
}

.button:hover .arrow {
  transform: translateX(0.18rem);
}

.portrait-frame {
  position: relative;
  align-self: stretch;
  min-height: clamp(33rem, 70vh, 52rem);
  overflow: hidden;
  background: #100d0a;
  box-shadow: 0 2.8rem 7rem var(--shadow);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  border: 1px solid rgba(202, 163, 91, 0.18);
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.44), transparent 28%, transparent 70%, rgba(5,5,5,0.48)),
    linear-gradient(180deg, transparent 0%, rgba(5,5,5,0.04) 55%, rgba(5,5,5,0.86) 100%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 48% 28%;
  filter: saturate(0.92) contrast(1.12) brightness(0.74);
  transform-origin: center;
  transition: transform 260ms ease;
}

.hero .portrait-frame {
  position: absolute;
  inset: 0;
  z-index: -3;
  min-height: 100%;
  opacity: 0.58;
  background: #050505;
  box-shadow: none;
}

.hero .portrait-frame::before {
  inset: 1.1rem;
  opacity: 0.24;
}

.hero .portrait-frame::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,0.38), rgba(5,5,5,0.16) 34%, rgba(5,5,5,0.42) 57%, rgba(5,5,5,0.82) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.1) 0%, transparent 45%, rgba(5,5,5,0.86) 100%);
}

.hero .portrait-frame img {
  object-position: 30% 23%;
  filter: saturate(0.84) contrast(1.14) brightness(0.62);
  transform: scale(1.08);
}

.scroll-note {
  position: absolute;
  left: max(var(--side), calc((100vw - var(--max)) / 2 + var(--side)));
  bottom: 2.5rem;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-note::before {
  content: "";
  width: 0.64rem;
  height: 1.65rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  box-shadow: 0 0 1rem rgba(202, 163, 91, 0.25);
}

.section {
  position: relative;
  padding: clamp(5.2rem, 9vw, 9.5rem) var(--side);
}

.section.tight {
  padding-top: clamp(3.8rem, 6vw, 6rem);
}

.section::before {
  content: "";
  position: absolute;
  left: var(--side);
  right: var(--side);
  top: 0;
  max-width: var(--max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0.6;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto clamp(3.2rem, 6vw, 5.6rem);
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 1px;
  margin: 1.8rem auto 0;
  background: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent),
    rgba(15, 14, 12, 0.58);
  border: 1px solid var(--line-soft);
  box-shadow: 0 2rem 5rem rgba(0,0,0,0.28);
}

.service-item {
  position: relative;
  min-height: 18rem;
  padding: clamp(1.7rem, 3vw, 3.2rem);
  border-left: 1px solid var(--line-soft);
}

.service-item:first-child {
  border-left: 0;
}

.service-item::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 4rem;
  height: 4rem;
  border-right: 1px solid rgba(202, 163, 91, 0.32);
  border-bottom: 1px solid rgba(202, 163, 91, 0.32);
  opacity: 0.65;
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2rem;
  color: var(--gold-2);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 35% 25%, rgba(228,201,130,0.18), transparent 64%);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.4rem, 7vw, 7rem);
  align-items: start;
}

.portfolio-teaser,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.55rem);
}

.project {
  position: relative;
  display: grid;
  gap: 0.85rem;
}

.project-visual,
.placeholder-visual {
  position: relative;
  min-height: clamp(15.5rem, 23vw, 22rem);
  overflow: hidden;
  border: 1px solid rgba(202, 163, 91, 0.22);
  background:
    linear-gradient(135deg, rgba(202, 163, 91, 0.18), transparent 38%),
    radial-gradient(circle at 72% 18%, rgba(228, 201, 130, 0.2), transparent 13rem),
    linear-gradient(145deg, #17130f, #0a0a09 56%, #211511);
  box-shadow: 0 1.5rem 3.5rem rgba(0,0,0,0.32);
}

.project-visual::before,
.project-visual::after,
.placeholder-visual::before,
.placeholder-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-visual::before,
.placeholder-visual::before {
  inset: 12%;
  border: 1px solid rgba(248, 244, 234, 0.09);
  background:
    linear-gradient(90deg, rgba(202, 163, 91, 0.36) 1px, transparent 1px) 0 0 / 28% 100%,
    linear-gradient(180deg, transparent 64%, rgba(202, 163, 91, 0.2));
}

.project-visual::after,
.placeholder-visual::after {
  width: 46%;
  height: 46%;
  right: 11%;
  top: 15%;
  border-top: 1px solid rgba(228, 201, 130, 0.56);
  border-left: 1px solid rgba(228, 201, 130, 0.24);
  transform: skewY(-10deg);
}

.project:nth-child(2n) .project-visual {
  background:
    radial-gradient(circle at 28% 22%, rgba(185, 173, 153, 0.16), transparent 11rem),
    linear-gradient(145deg, #0a0a09, var(--olive) 55%, #15100c);
}

.project:nth-child(3n) .project-visual {
  background:
    radial-gradient(circle at 78% 26%, rgba(228, 201, 130, 0.21), transparent 10rem),
    linear-gradient(145deg, #090807, var(--wine) 55%, #19100d);
}

.project h3 {
  color: var(--gold-2);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.project p {
  margin: -0.55rem 0 0;
  color: var(--muted);
}

.notice {
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(202, 163, 91, 0.08), rgba(255,255,255,0.02));
}

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.1rem, 4vw, 3.4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 30%, rgba(202, 163, 91, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.cta-band h2 {
  font-size: clamp(2.25rem, 4vw, 4.4rem);
}

.site-footer {
  padding: clamp(3rem, 6vw, 5rem) var(--side) 2rem;
  border-top: 1px solid var(--line-soft);
  background: #050505;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-grid ul {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  color: var(--dim);
  font-size: 0.82rem;
}

.page-hero {
  position: relative;
  min-height: clamp(32rem, 58svh, 44rem);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 30%, rgba(202, 163, 91, 0.18), transparent 24rem),
    linear-gradient(135deg, #050505, #0c0b0a 55%, #050505);
}

.page-hero-grid {
  max-width: calc(var(--max) + var(--side) * 2);
  width: 100%;
  margin: 0 auto;
  padding: 8rem var(--side) 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.page-hero .portrait-frame {
  min-height: clamp(22rem, 42vh, 34rem);
}

.intro-grid,
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 6rem);
}

.values-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  background: rgba(15, 14, 12, 0.46);
}

.value,
.process-step {
  min-height: 16rem;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border-left: 1px solid var(--line-soft);
}

.value:first-child,
.process-step:first-child {
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4vw, 4.6rem);
  line-height: 1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin: 3rem 0 2.2rem;
}

.filter-button {
  padding: 0.55rem 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  color: var(--gold-2);
  border-bottom-color: var(--gold);
}

.legal-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.legal-block {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(10, 10, 9, 0.88);
}

.legal-block h2 {
  color: var(--gold-2);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.privacy-list {
  display: grid;
  gap: 0.95rem;
}

.privacy-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(202, 163, 91, 0.27);
  background:
    linear-gradient(90deg, rgba(202, 163, 91, 0.09), rgba(255,255,255,0.015)),
    rgba(9, 9, 8, 0.72);
}

.privacy-item .line-icon {
  margin: 0;
}

.privacy-item h2 {
  color: var(--gold-2);
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.privacy-item p {
  margin: 0.55rem 0 0;
}

@media (max-width: 1180px) {
  .nav-shell {
    min-height: 4.65rem;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .main-nav {
    position: fixed;
    inset: 6.35rem var(--side) auto;
    z-index: 50;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 0.2rem;
    padding: 0.95rem;
    border: 1px solid rgba(202, 163, 91, 0.26);
    background:
      radial-gradient(circle at 88% 0%, rgba(202,163,91,0.16), transparent 16rem),
      rgba(5,5,5,0.96);
    box-shadow: 0 1.4rem 3.4rem rgba(0,0,0,0.46);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
    font-size: 1rem;
  }

  .main-nav a {
    padding: 0.78rem 0.85rem;
  }

  .main-nav[data-open="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .intro-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 100svh;
    align-items: end;
    padding-top: 8.4rem;
  }

  .hero-copy {
    grid-column: 1;
    justify-self: start;
    max-width: 46rem;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 35rem;
  }

  .page-hero .portrait-frame {
    position: relative;
    opacity: 0.82;
  }

  .services-grid,
  .portfolio-teaser,
  .project-grid,
  .values-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-item:nth-child(odd),
  .value:nth-child(odd),
  .process-step:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-height: 760px) and (min-width: 681px) {
  .home-page .site-header {
    padding-top: 0.8rem;
  }

  .home-page .nav-shell {
    min-height: 4.35rem;
  }

  .home-page .hero-grid {
    padding-top: 6.2rem;
    padding-bottom: 1.1rem;
  }

  .home-page h1 {
    font-size: clamp(2.65rem, 3.6vw, 4rem);
  }

  .home-page .hero-copy::before {
    margin-bottom: 1rem;
  }

  .home-page .hero-copy p:not(.eyebrow) {
    margin-top: 0.85rem;
    font-size: 0.98rem;
  }

  .home-page .button {
    min-height: 3rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: 1.05rem;
  }

  .nav-shell {
    min-height: 4.25rem;
    padding-inline: 0.85rem;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-desc {
    max-width: 12rem;
    font-size: 0.56rem;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 3.85rem);
  }

  .page-title {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
  }

  .hero-copy::before {
    margin-bottom: 1.5rem;
  }

  .hero-grid {
    padding-bottom: 5.4rem;
  }

  .home-page .hero-grid {
    padding-top: 7rem;
    padding-bottom: 1rem;
  }

  .home-page h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  .home-page .hero-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .home-page .hero-copy::before {
    margin-bottom: 1rem;
  }

  .hero-actions,
  .cta-row,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    min-width: 0;
    width: 100%;
    padding-inline: 0.9rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .services-grid,
  .portfolio-teaser,
  .project-grid,
  .values-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .value,
  .process-step {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .service-item:first-child,
  .value:first-child,
  .process-step:first-child {
    border-top: 0;
  }

  .privacy-item {
    grid-template-columns: 1fr;
  }

  .project-visual,
  .placeholder-visual {
    min-height: 14rem;
  }

  .scroll-note {
    bottom: 1.35rem;
  }
}

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