:root {
  --bg: #050505;
  --bg-soft: #0d0d0b;
  --ink: #f4efe5;
  --muted: #bdb5a9;
  --soft: #8d867b;
  --line: rgba(244, 239, 229, 0.14);
  --line-strong: rgba(244, 239, 229, 0.24);
  --surface: rgba(244, 239, 229, 0.055);
  --surface-strong: rgba(244, 239, 229, 0.09);
  --champagne: #d5bc86;
  --mint: #9bd8c0;
  --sage: #6f8b76;
  --smoke: #191918;
  --shadow: 0 42px 120px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  --radius-lg: 26px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #050505;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(900px 520px at 78% 6%, rgba(155, 216, 192, 0.12), transparent 72%),
    radial-gradient(760px 520px at 14% 18%, rgba(213, 188, 134, 0.1), transparent 72%),
    linear-gradient(180deg, #050505 0%, #080806 44%, #050505 100%);
  background-color: #050505;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 239, 229, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 229, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(244, 239, 229, 0.055) 42%, transparent 55%),
    radial-gradient(420px 180px at 50% 0%, rgba(244, 239, 229, 0.055), transparent 70%);
  opacity: 0.48;
}

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

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

img,
svg {
  max-width: 100%;
}

::selection {
  background: rgba(213, 188, 134, 0.38);
  color: var(--ink);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 20%), rgba(213, 188, 134, 0.07), transparent 18rem),
    radial-gradient(circle at var(--x, 50%) var(--y, 20%), rgba(155, 216, 192, 0.055), transparent 28rem);
  opacity: 0.82;
}

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

.ambient-line,
.ambient-disc {
  position: absolute;
  display: block;
  transform: translate3d(0, var(--float-y, 0px), 0) rotate(var(--float-r, 0deg));
  will-change: transform;
}

.ambient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 229, 0.32), transparent);
  box-shadow: 0 0 24px rgba(213, 188, 134, 0.16);
  opacity: 0.5;
}

.ambient-line--one {
  width: 420px;
  right: 6vw;
  top: 24vh;
}

.ambient-line--two {
  width: 300px;
  left: 8vw;
  top: 68vh;
}

.ambient-disc {
  width: 220px;
  height: 220px;
  right: 10vw;
  top: 78vh;
  border: 1px solid rgba(244, 239, 229, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, rgba(155, 216, 192, 0.08), transparent 56%);
  opacity: 0.44;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem;
}

.nav-shell {
  width: min(var(--max), calc(100vw - 2rem));
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 0.62rem 0.68rem;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 6, 0.92);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(244, 239, 229, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.74rem;
  font-size: 0.92rem;
  font-weight: 760;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 720;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(244, 239, 229, 0.07);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(244, 239, 229, 0.09);
}

.nav-links .nav-cta {
  padding-inline: 1rem;
  color: #080806;
  background: var(--ink);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #080806;
  background: var(--mint);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(244, 239, 229, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease;
}

.section {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8.8rem) 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 4rem;
  padding-bottom: 5.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.045);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(155, 216, 192, 0.5);
  animation: live-pulse 2.4s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 216, 192, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(155, 216, 192, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(155, 216, 192, 0);
  }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  opacity: 0.85;
}

.hero__copy h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(4rem, 9.2vw, 10.6rem);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 820;
  text-wrap: balance;
}

.hero__copy p {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.88rem 1.22rem;
  font-size: 0.88rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 18px 54px rgba(244, 239, 229, 0.12);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--mint);
  box-shadow: 0 24px 70px rgba(155, 216, 192, 0.14);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(244, 239, 229, 0.035);
  color: var(--ink);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(213, 188, 134, 0.48);
  background: rgba(244, 239, 229, 0.07);
}

.hero-art {
  position: relative;
  min-height: 620px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 10% 0 5% 10%;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(244, 239, 229, 0.11), transparent 25%),
    radial-gradient(circle at 66% 72%, rgba(155, 216, 192, 0.12), transparent 34%);
  box-shadow: inset 0 1px 0 rgba(244, 239, 229, 0.08), 0 36px 120px rgba(0, 0, 0, 0.42);
}

.hero-art__panel,
.hero-art__frame,
.hero-art__note {
  position: absolute;
  border: 1px solid rgba(244, 239, 229, 0.16);
  background:
    linear-gradient(145deg, rgba(244, 239, 229, 0.105), rgba(244, 239, 229, 0.035)),
    rgba(8, 8, 6, 0.88);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(244, 239, 229, 0.09);
  transform: translate3d(0, var(--float-y, 0px), 0) rotate(var(--float-r, 0deg));
  will-change: transform;
}

.hero-art__panel--main {
  z-index: 2;
  top: 14%;
  left: 0;
  width: min(82%, 430px);
  min-height: 300px;
  display: grid;
  align-content: end;
  border-radius: 28px;
  padding: 1.4rem;
}

.hero-art__panel--main span {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 56%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--champagne), var(--mint), transparent);
}

.hero-art__panel--main strong {
  max-width: 280px;
  font-size: 2.1rem;
  line-height: 1;
}

.hero-art__panel--main p {
  max-width: 310px;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-art__frame {
  right: 0;
  bottom: 10%;
  width: min(74%, 360px);
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.8rem;
  border-radius: 30px;
  padding: 0.9rem;
}

.hero-art__frame div {
  border-radius: 18px;
  background: rgba(244, 239, 229, 0.1);
}

.hero-art__frame div:first-child {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(213, 188, 134, 0.5), rgba(244, 239, 229, 0.08));
}

.hero-art__frame div:nth-child(2) {
  background: linear-gradient(150deg, rgba(155, 216, 192, 0.45), rgba(244, 239, 229, 0.08));
}

.hero-art__note {
  z-index: 2;
  right: 2%;
  top: 24%;
  display: grid;
  gap: 0.1rem;
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.hero-art__note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-art__note strong {
  font-size: 1.18rem;
  line-height: 1;
}

.statement {
  display: grid;
  grid-template-columns: 0.22fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement__number,
.section-index {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 860;
}

.statement__copy h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2.6rem, 5.8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 820;
  text-wrap: balance;
}

.statement__copy p {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 4.6rem);
}

.section-heading h2,
.about-copy h2,
.contact-panel h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 810;
  text-wrap: balance;
}

.section-heading p,
.contact-panel p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.project-list {
  display: grid;
  gap: 1rem;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: center;
  min-height: 330px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: clamp(1rem, 2vw, 1.4rem) 0;
  transition: transform 220ms ease, border-color 220ms ease;
}

.project-row:last-child {
  border-bottom: 1px solid var(--line);
}

.project-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(213, 188, 134, 0.08), transparent 18rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.project-row:hover {
  border-color: var(--line-strong);
}

.project-row:hover::after {
  opacity: 1;
}

.project-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.13);
  border-radius: 24px;
  background: var(--smoke);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(244, 239, 229, 0.08);
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease, filter 380ms ease;
}

.project-row:hover .project-media img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

.project-copy {
  max-width: 680px;
}

.project-type {
  margin: 0;
  color: var(--accent, var(--champagne));
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4.5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 800;
}

.project-copy p:not(.project-type) {
  max-width: 560px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.66;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 1.2rem;
}

.tag-row span {
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  color: #ddd5c7;
  background: rgba(244, 239, 229, 0.045);
  font-size: 0.75rem;
  font-weight: 760;
}

.tag-row .tag-live {
  border-color: rgba(155, 216, 192, 0.4);
  color: var(--mint);
  background: rgba(155, 216, 192, 0.08);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 44px;
  margin-top: 0.9rem;
  color: var(--champagne);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  color: var(--mint);
}

.work-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3.4rem);
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(213, 188, 134, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 240px at 14% 20%, rgba(213, 188, 134, 0.1), transparent 70%),
    rgba(244, 239, 229, 0.04);
}

.work-cta p {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 780;
  text-wrap: balance;
}

.service-section,
.faq-section {
  border-top: 1px solid var(--line);
}

.service-editorial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.045), rgba(244, 239, 229, 0.012));
}

.service-item span,
.process-step span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 860;
}

.service-item h3 {
  margin: auto 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.service-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 0.16fr 0.36fr 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.4rem, 3.5vw, 2.4rem) 0;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.6rem);
  line-height: 1.02;
}

.process-step p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.about-collage {
  position: relative;
  min-height: 560px;
}

.about-collage img {
  position: absolute;
  width: 74%;
  height: auto;
  border: 1px solid rgba(244, 239, 229, 0.18);
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.about-collage img:nth-child(1) {
  top: 2%;
  left: 0;
  transform: rotate(-3.5deg);
}

.about-collage img:nth-child(2) {
  top: 30%;
  right: 0;
  transform: rotate(2.2deg);
  z-index: 1;
}

.about-collage img:nth-child(3) {
  top: 60%;
  left: 4%;
  transform: rotate(-1.6deg);
}

.about-copy p {
  max-width: 690px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint);
}

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

.faq-list p {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border: 1px solid rgba(244, 239, 229, 0.15);
  border-radius: 32px;
  padding: clamp(1.1rem, 4vw, 2.6rem);
  background:
    radial-gradient(620px 320px at 12% 16%, rgba(213, 188, 134, 0.1), transparent 70%),
    radial-gradient(560px 320px at 88% 88%, rgba(155, 216, 192, 0.08), transparent 72%),
    rgba(244, 239, 229, 0.045);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(244, 239, 229, 0.08);
}

.contact-panel--simple {
  grid-template-columns: 1fr;
}

.contact-panel--simple > div {
  max-width: 720px;
}

.contact-panel .hero__actions {
  margin-top: 1.8rem;
}

.contact-mail {
  display: flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  margin-top: 1.35rem;
  color: var(--champagne);
  font-size: 1rem;
  font-weight: 840;
  transition: color 180ms ease;
}

.contact-mail:hover,
.contact-mail:focus-visible {
  color: var(--ink);
}

.contact-mail--wa {
  margin-top: 0.5rem;
  color: var(--mint);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.42rem;
}

.form-row--full,
.form-note,
.form-submit {
  grid-column: 1 / -1;
}

label {
  color: #e7dfd0;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 229, 0.15);
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.66);
  color: var(--ink);
  padding: 0.94rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(213, 188, 134, 0.58);
  box-shadow: 0 0 0 4px rgba(213, 188, 134, 0.1);
  background: rgba(5, 5, 5, 0.88);
}

.form-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.form-submit {
  width: fit-content;
  min-width: 170px;
}

.page-hero {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0.45rem 0 0;
  font-size: clamp(3rem, 7vw, 7.6rem);
  line-height: 0.9;
  font-weight: 820;
  text-wrap: balance;
}

.page-hero p {
  max-width: 680px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.eyebrow {
  display: block;
  color: var(--accent, var(--mint));
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 760;
  transition: color 180ms ease;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--ink);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.4rem;
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.case-meta div {
  display: grid;
  gap: 0.2rem;
}

.case-meta dt {
  color: var(--soft);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 740;
}

.case-shot {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.15);
  border-radius: var(--radius-lg);
  background: var(--smoke);
  box-shadow: var(--shadow);
}

.case-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.case-body {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
}

.case-body h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.case-body div p {
  max-width: 660px;
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.case-body div p:last-child {
  margin-bottom: 0;
}

.case-body ul {
  max-width: 660px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.case-body li + li {
  margin-top: 0.45rem;
}

.case-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: clamp(1.6rem, 3.5vw, 2.4rem);
}

.case-cta p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 780;
  text-wrap: balance;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  margin-top: 1.4rem;
  color: var(--champagne);
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.section-link:hover,
.section-link:focus-visible {
  color: var(--mint);
}

.site-footer {
  width: min(var(--max), calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 2.2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 430px;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 760;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

.site-footer--slim {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  padding: 1.8rem 0 2.4rem;
}

.site-footer--slim .footer-links {
  justify-content: flex-start;
}

.site-footer--slim .copyright {
  margin: 0;
  color: var(--soft);
}

:focus-visible {
  outline: 3px solid rgba(213, 188, 134, 0.64);
  outline-offset: 4px;
}

.reveal {
  transition: opacity 560ms ease, transform 560ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

@media (max-width: 1050px) {
  .hero,
  .about-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

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

  .project-row {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .ambient-field {
    display: none;
  }

  .site-header {
    padding: 0.7rem;
  }

  .nav-shell {
    width: min(var(--max), calc(100vw - 1.4rem));
    border-radius: 24px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-open .menu-toggle__line:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-open .menu-toggle__line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0.7rem;
    right: 0.7rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem;
    border: 1px solid rgba(244, 239, 229, 0.16);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.97);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

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

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 1rem;
  }

  .section {
    width: min(100% - 1.1rem, var(--max));
    padding: 5rem 0;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
    padding-top: 4rem;
  }

  .hero__copy h1 {
    font-size: clamp(3.9rem, 17vw, 6rem);
  }

  .hero__actions,
  .button,
  .form-submit {
    width: 100%;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-art__panel--main {
    width: 86%;
    min-height: 255px;
  }

  .hero-art__frame {
    width: 76%;
    min-height: 250px;
  }

  .statement,
  .project-row,
  .process-step,
  .contact-form,
  .case-body,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .project-row {
    min-height: auto;
  }

  .project-media {
    aspect-ratio: 16 / 9;
  }

  .service-editorial {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 230px;
  }

  .about-collage {
    min-height: 440px;
  }

  .contact-panel {
    border-radius: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-art__note {
    right: 0;
    top: 18%;
  }

  .hero-art__panel--main strong {
    font-size: 1.65rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-panel h2 {
    font-size: 2.55rem;
  }
}

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

  .spotlight,
  .ambient-field {
    display: none;
  }
}

/* ---------- Refinement pass: full-bleed bands, motion, new sections ---------- */

.band {
  position: relative;
}

.band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.035), rgba(244, 239, 229, 0.008) 60%, transparent);
  border-top: 1px solid var(--line);
}

.band--glow::before {
  background:
    radial-gradient(900px 420px at 82% 0%, rgba(155, 216, 192, 0.07), transparent 70%),
    radial-gradient(760px 380px at 12% 30%, rgba(213, 188, 134, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(244, 239, 229, 0.03), transparent 65%);
}

.hero {
  position: relative;
}

.streak-field {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: -1;
}

.streak {
  position: absolute;
  width: 190px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(213, 188, 134, 0.85), transparent);
  box-shadow: 0 0 12px rgba(213, 188, 134, 0.35);
  opacity: 0;
  transform: rotate(-24deg);
}

.streak--one {
  top: 6%;
  right: 4%;
  animation: streak-fly 11s linear infinite;
}

.streak--two {
  top: 38%;
  right: -4%;
  width: 140px;
  background: linear-gradient(90deg, transparent, rgba(155, 216, 192, 0.75), transparent);
  box-shadow: 0 0 12px rgba(155, 216, 192, 0.3);
  animation: streak-fly 14s linear infinite;
  animation-delay: 5s;
}

.streak--three {
  top: 70%;
  right: 24%;
  width: 110px;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 229, 0.5), transparent);
  box-shadow: none;
  animation: streak-fly 17s linear infinite;
  animation-delay: 9s;
}

@keyframes streak-fly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-24deg);
  }
  4% {
    opacity: 0.8;
  }
  11% {
    opacity: 0;
    transform: translate3d(-420px, 187px, 0) rotate(-24deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-420px, 187px, 0) rotate(-24deg);
  }
}

.page-hero {
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -10%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(720px 340px at 72% 12%, rgba(155, 216, 192, 0.07), transparent 70%),
    radial-gradient(620px 320px at 14% 40%, rgba(213, 188, 134, 0.06), transparent 70%);
}

.grad-text {
  background: linear-gradient(100deg, var(--champagne) 10%, var(--mint) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button--primary {
  position: relative;
  overflow: hidden;
}

.button--primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 500ms ease;
  pointer-events: none;
}

.button--primary:hover::after,
.button--primary:focus-visible::after {
  left: 130%;
}

.project-link span,
.section-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.project-link:hover span,
.project-link:focus-visible span,
.section-link:hover span,
.section-link:focus-visible span {
  transform: translateX(4px);
}

.project-media {
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.project-row:hover .project-media {
  border-color: rgba(244, 239, 229, 0.28);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(244, 239, 229, 0.1);
}

.service-item {
  transition: background 220ms ease, box-shadow 220ms ease;
}

.service-item:hover {
  background: linear-gradient(180deg, rgba(244, 239, 229, 0.08), rgba(244, 239, 229, 0.02));
  box-shadow: inset 0 1px 0 rgba(244, 239, 229, 0.1);
}

.service-editorial .service-item:nth-child(2) { transition-delay: 0ms; }
.js .service-editorial .reveal:nth-child(1) { transition-delay: 0ms; }
.js .service-editorial .reveal:nth-child(2) { transition-delay: 70ms; }
.js .service-editorial .reveal:nth-child(3) { transition-delay: 140ms; }
.js .service-editorial .reveal:nth-child(4) { transition-delay: 210ms; }

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

.js .why-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.js .why-grid .reveal:nth-child(2) { transition-delay: 70ms; }
.js .why-grid .reveal:nth-child(3) { transition-delay: 140ms; }
.js .why-grid .reveal:nth-child(4) { transition-delay: 210ms; }

.why-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: linear-gradient(160deg, rgba(244, 239, 229, 0.055), rgba(244, 239, 229, 0.014));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 188, 134, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
}

.why-card span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 860;
}

.why-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-list details {
  transition: background 200ms ease;
}

.faq-list details:hover {
  background: linear-gradient(90deg, rgba(244, 239, 229, 0.03), transparent);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  color: var(--soft);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 180ms ease;
}

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

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  margin: 2.4rem 0 0;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legal-body p {
  margin: 0.9rem 0 0;
}

.legal-body ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

.legal-body li + li {
  margin-top: 0.4rem;
}

.legal-note {
  margin-top: 2.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  font-size: 0.9rem;
}

@media (max-width: 1050px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
  }

  .streak-field {
    display: none;
  }
}
