:root {
  --bg: #241915;
  --surface: #34251f;
  --paper: #f0e8dc;
  --ink: #211713;
  --silver: #d7c8bb;
  --silver-bright: #fff8ed;
  --muted: #b9a89c;
  --line: #59463e;
  --accent: #d7c5ae;
  --accent-strong: #b4555d;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--silver-bright);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }

.header {
  height: 86px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 25, 21, .94);
  backdrop-filter: blur(10px);
}

.logo {
  font: 600 25px Unbounded, sans-serif;
  letter-spacing: -2px;
}

.logo span { color: var(--accent-strong); }

.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--silver-bright);
  font: 700 14px Manrope, Arial, sans-serif;
  cursor: pointer;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

nav a,
.header__cta { transition: .2s opacity; }

nav a:hover,
.header__cta:hover { opacity: .55; }

.header__cta {
  font-size: 14px;
  border-bottom: 1px solid var(--accent);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  position: relative;
  align-items: stretch;
}

.hero__copy {
  padding: 9vh 4vw 6vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section__number {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

@media (min-width: 801px) {
  .eyebrow,
  .section__number { font-size: 13px; }
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font: 500 clamp(48px, 7.7vw, 122px)/.88 Unbounded, sans-serif;
  letter-spacing: -.075em;
  margin: 28px 0 38px;
}

h1 em {
  font-style: normal;
  color: var(--accent-strong);
}

.hero__lead {
  max-width: 600px;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--silver);
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
}

.button--primary {
  background: var(--silver-bright);
  color: var(--ink);
  font-size: 16px;
}

.text-link {
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero__visual {
  margin: 0;
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  background: var(--surface);
}

.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(36, 25, 21, .72) 22%, transparent 52%),
    linear-gradient(0deg, rgba(36, 25, 21, .45), transparent 38%);
  pointer-events: none;
}

.hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 22px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-bright);
}

.hero__orbit {
  position: absolute;
  right: -48px;
  top: 25px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(192, 200, 212, .45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: .16em;
  transform: rotate(25deg);
  z-index: 3;
}

.marquee {
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  font: 500 clamp(24px, 3vw, 48px) Unbounded, sans-serif;
  white-space: nowrap;
  padding: 18px 0;
  transform: rotate(-1deg);
  width: 102%;
  margin-left: -1%;
}

.marquee div { animation: marquee 20s linear infinite; }

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

.section {
  padding: 110px 5vw;
  border-bottom: 1px solid var(--line);
}

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

.section--paper .section__number { color: #686868; }

.section h2 {
  font: 500 clamp(38px, 5.3vw, 80px)/1.02 Unbounded, sans-serif;
  letter-spacing: -.055em;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 8vw;
  margin-top: 40px;
}

.about__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  padding-top: 10px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.facts article {
  padding: 28px 22px 0 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.facts strong {
  font: 500 clamp(38px, 5vw, 72px) Unbounded, sans-serif;
  color: var(--accent-strong);
}

.facts span {
  max-width: 180px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.services h2 { margin: 38px 0 20px; }

.section__lead {
  max-width: 640px;
  margin: 0 0 48px;
  color: var(--silver);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  gap: 20px;
  align-items: start;
  padding: 28px 10px;
  border-bottom: 1px solid var(--line);
  transition: .25s;
}

.service-list article:hover {
  background: var(--surface);
  padding-left: 22px;
}

.service-list > article > span {
  color: var(--muted);
  font-size: 14px;
  padding-top: 6px;
}

.service-list article > div p {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 0;
  line-height: 1.6;
}

.service-deliverables {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.55;
}

.service-deliverables li { margin-bottom: 4px; }

.service-list h3 {
  font: 500 clamp(20px, 2vw, 30px) Unbounded, sans-serif;
  margin: 0;
}

.service-list a {
  font-size: 28px;
  text-align: right;
  align-self: center;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.edge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--surface);
}

.edge__copy {
  padding: 90px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edge__label {
  font: 500 clamp(48px, 8vw, 100px)/.8 Unbounded, sans-serif;
  letter-spacing: -.09em;
  margin: 35px 0;
}

.edge__label span { color: var(--accent-strong); }

.edge__copy h2 {
  font-size: clamp(30px, 3vw, 48px);
  margin-bottom: 25px;
}

.edge__copy p,
.edge__copy li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--silver);
}

.edge__copy ul {
  padding-left: 20px;
  margin: 16px 0 35px;
}

.edge__copy .button { align-self: flex-start; }

.edge__note {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  font-style: italic;
}

.edge__visual {
  min-height: 760px;
}

.edge__visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center 40%;
}

.portfolio__intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
  margin: 38px 0 64px;
}

.portfolio__intro h2 { margin: 0; }

.portfolio__intro > p {
  max-width: 520px;
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.work-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.work-card--wide figure { aspect-ratio: auto; min-height: 420px; }

.work-card--wide .work-card__content { min-height: 0; }

.work-card {
  position: relative;
  min-width: 0;
  background: #fff;
  border: 1px solid #ccc;
  overflow: hidden;
  transition: .3s transform, .3s border-color;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-strong);
}

.work-card figure {
  position: relative;
  height: auto;
  aspect-ratio: 4/5;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.work-card figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.case-img--horeca { object-position: center 32%; }

.case-img--retail { object-position: center 45%; }

.case-img--service { object-position: center 42%; }

.case-img--event { object-position: center 22%; }

.work-card__content {
  position: relative;
  min-height: 300px;
  padding: 28px 26px 30px;
}

.work-card__number {
  position: absolute;
  right: 22px;
  top: 22px;
  color: var(--accent-strong);
  font: 500 12px Unbounded, sans-serif;
}

.work-card__type {
  padding-right: 45px;
  color: #666;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 24px 0 16px;
  font: 500 clamp(28px, 3vw, 44px) Unbounded, sans-serif;
  letter-spacing: -.045em;
}

.work-card__role {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.work-card__text {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.process-list strong {
  font: 500 32px Unbounded, sans-serif;
  color: var(--accent-strong);
}

.process-list h3 {
  font: 500 22px Unbounded, sans-serif;
  margin: 0 0 10px;
}

.process-list p {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8vw;
  align-items: start;
  margin-top: 40px;
}

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

.audience__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.audience__item h3 {
  font: 500 20px Unbounded, sans-serif;
  margin: 0 0 8px;
}

.audience__item p {
  margin: 0;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.6;
}

.faq-list {
  margin: 48px 0 0;
  border-top: 1px solid #ccc;
}

.faq-list > div {
  padding: 28px 0;
  border-bottom: 1px solid #ccc;
}

.faq-list dt {
  font: 600 18px Manrope, sans-serif;
  margin-bottom: 10px;
}

.faq-list dd {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.quote {
  text-align: center;
  padding-top: 145px;
  padding-bottom: 145px;
}

.quote blockquote {
  max-width: 1100px;
  margin: 0 auto 35px;
  font: 400 clamp(32px, 5vw, 72px)/1.18 Unbounded, sans-serif;
  letter-spacing: -.05em;
}

.quote p { color: var(--accent-strong); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: var(--surface);
  color: var(--silver-bright);
}

.contact > div > p:last-of-type {
  max-width: 500px;
  line-height: 1.6;
  color: var(--silver);
}

.contact__placeholders {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--silver);
}

.contact__placeholders p { margin: 0 0 8px; }

.contact input,
.contact textarea,
.contact select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(238, 240, 243, .35);
  color: var(--silver-bright);
  padding: 10px 0;
  font: 18px Manrope, Arial, sans-serif;
  outline: none;
  resize: vertical;
}

.contact select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%),
    linear-gradient(135deg, var(--silver) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.contact form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.contact .consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.5;
}

.contact .consent input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact button { align-self: flex-start; }

.form-status { min-height: 20px; font-size: 14px; }

.thanks {
  background: var(--accent);
  color: var(--ink);
  display: grid;
  grid-template-columns: .35fr 1fr;
  gap: 5vw;
}

.thanks[hidden] { display: none; }

.thanks .section__number { color: #555; }

.thanks > div { max-width: 920px; }

.thanks p { max-width: 650px; line-height: 1.65; }

.thanks .button {
  margin-top: 18px;
  background: var(--ink);
  color: #fff;
}

footer {
  padding: 55px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

footer p {
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.footer__meta { align-items: flex-end; }

.studio-credit {
  max-width: 250px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: right;
}

.studio-credit b {
  color: var(--accent-strong);
  font-weight: 700;
}

.reveal {
  opacity: 1;
  visibility: visible;
  animation: reveal .75s ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus { top: 16px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

nav a,
.header__cta,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none !important; }
  .reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
  }
  .work-card:hover { transform: none; }
}

@media (max-width: 1000px) {
  .header nav { gap: 18px; }
  .header nav a { font-size: 14px; }
  .work-card--wide {
    grid-column: auto;
    display: block;
  }
  .work-card--wide figure {
    aspect-ratio: 4/5;
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .header { height: 70px; }
  html { scroll-padding-top: 70px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 20;
    padding: 18px 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(36, 25, 21, .95);
    border-bottom: 1px solid var(--line);
  }
  .nav-open .header nav { display: flex; }
  .header nav a { min-height: 48px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__copy {
    min-height: auto;
    padding: 48px 24px 32px;
    order: 1;
  }
  .hero__visual {
    order: 0;
    min-height: min(52vh, 420px);
  }
  .hero__visual img {
    object-position: center center;
  }
  .hero__visual:after {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(36, 25, 21, .35) 35%, transparent 70%);
  }
  .hero__orbit { display: none; }
  .section { padding: 80px 24px; }
  .about__grid,
  .edge,
  .contact,
  .portfolio__intro,
  .audience__grid,
  .thanks { grid-template-columns: 1fr; }
  .edge { display: flex; flex-direction: column-reverse; }
  .edge__visual { min-height: 50vh; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts article { min-height: 165px; }
  .service-list article {
    grid-template-columns: 40px 1fr 34px;
  }

  .service-deliverables { display: none; }
  .marquee { width: 100%; margin-left: 0; transform: none; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card--wide { display: block; }
  .work-card__content { min-height: 0; }
  .footer__meta { align-items: flex-start; }
  .studio-credit { text-align: left; }
  footer { grid-template-columns: 1fr; gap: 30px; }
  footer p { text-align: left; }
  .hero h1 { font-size: clamp(40px, 11vw, 56px); margin-bottom: 24px; }
  .hero__lead { font-size: 16px; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .hero__orbit { display: none; }
}

.legal-page a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page a:hover { opacity: .75; }

.legal-page {
  max-width: 720px;
  margin: 0 auto;
}

.legal-page h1 {
  font: 500 clamp(28px, 4vw, 40px) Unbounded, sans-serif;
  margin-bottom: 24px;
}

.legal-page h2 {
  font: 600 18px Manrope, sans-serif;
  margin: 28px 0 12px;
}

.legal-page p {
  line-height: 1.65;
  color: var(--silver);
}

.legal-page__note {
  padding: 14px 18px;
  border-left: 3px solid var(--accent-strong);
  background: var(--surface);
  margin-bottom: 24px;
}
