:root {
  --ink: #151716;
  --ink-2: #232624;
  --paper: #f2f0e9;
  --paper-2: #e7e4da;
  --white: #fff;
  --steel: #8c918c;
  --accent: #d04a32;
  --line: rgba(21, 23, 22, 0.18);
  --max: 1380px;
  --pad: clamp(22px, 4vw, 68px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 1000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 10px var(--pad);
  border-bottom: 1px solid transparent;
  background: rgba(242, 240, 233, 0.94);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; letter-spacing: -0.02em; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand strong { font-weight: 780; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); font-size: 14px; font-weight: 650; }
.main-nav > a { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav > a:hover::after, .main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 18px; color: var(--white); background: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: calc(100svh - 78px);
  color: var(--white);
  background: var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) var(--pad) clamp(48px, 6vw, 90px);
}
.eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.96;
}
h1 { max-width: 780px; margin-bottom: 34px; font-size: clamp(58px, 7vw, 116px); }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.hero-lead { max-width: 680px; margin-bottom: 38px; color: #c8cbc8; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--accent); }
.button-primary:hover, .button-primary:focus-visible { background: #e45a40; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 800; }
.text-link span { color: var(--accent); font-size: 20px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: auto;
  padding-top: clamp(54px, 8vw, 110px);
}
.hero-proof div { display: flex; align-items: flex-end; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.hero-proof strong { color: var(--white); font-size: 28px; line-height: 1; }
.hero-proof span { color: #929792; font-size: 11px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.hero-media { position: relative; min-height: 600px; margin: 0; overflow: hidden; }
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 23, 22, 0.48), transparent 42%), linear-gradient(0deg, rgba(21, 23, 22, 0.25), transparent 50%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  padding: 9px 12px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.section { padding: clamp(90px, 10vw, 160px) var(--pad); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .5fr) minmax(380px, 1.15fr) minmax(260px, .75fr);
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto clamp(58px, 7vw, 100px);
}
.section-heading .eyebrow { align-self: start; margin: 8px 0 0; }
.section-heading h2 { margin: 0; font-size: clamp(46px, 5.7vw, 88px); }
.section-heading > p:last-child { margin: 0; color: #5e625f; font-size: 17px; line-height: 1.7; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 270px; padding: clamp(28px, 3vw, 46px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color 200ms ease, background 200ms ease; }
.service-card:hover { color: var(--white); background: var(--ink); }
.service-card > span { display: block; margin-bottom: 52px; color: var(--accent); font-size: 12px; font-weight: 800; }
.service-card h3 { margin-bottom: 14px; font-size: 23px; letter-spacing: -0.025em; }
.service-card p { max-width: 340px; margin: 0; color: #676c68; font-size: 14px; line-height: 1.7; }
.service-card:hover p { color: #b9bdb9; }

.projects { color: var(--white); background: var(--ink-2); }
.section-heading-light > p:last-child { color: #a8ada9; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 330px; gap: 12px; max-width: var(--max); margin: auto; }
.project { position: relative; margin: 0; overflow: hidden; background: #303330; }
.project-wide { grid-column: span 2; }
.project-tall { grid-row: span 2; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.06); transition: transform 700ms cubic-bezier(.2,.65,.2,1), filter 400ms ease; }
.project:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.project::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(10, 12, 11, .88)); }
.project figcaption { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.project figcaption span { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project figcaption strong { max-width: 190px; font-size: 16px; text-align: right; }
.instagram-link {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  max-width: var(--max);
  margin: 34px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.instagram-link span:first-child { color: #9ca09c; font-size: 13px; }
.instagram-link strong { font-size: clamp(20px, 2vw, 30px); }
.instagram-link span:last-child { color: var(--accent); font-size: 24px; }

.process { background: var(--paper-2); }
.process .section-heading { grid-template-columns: .55fr 1.9fr; align-items: start; }
.process-list { max-width: var(--max); margin: auto; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: .35fr 1fr; gap: 30px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--accent); font-size: 12px; font-weight: 800; }
.process-list li > div { display: grid; grid-template-columns: minmax(240px,.65fr) 1fr; gap: 30px; }
.process-list h3 { margin: 0; font-size: clamp(24px, 2.4vw, 36px); letter-spacing: -.035em; }
.process-list p { max-width: 520px; margin: 0; color: #5e625f; line-height: 1.7; }

.about { display: grid; grid-template-columns: minmax(360px,.9fr) minmax(480px,1.1fr); min-height: 720px; background: var(--paper); }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 9vw, 150px) var(--pad); }
.about-copy h2 { max-width: 760px; margin-bottom: 38px; font-size: clamp(48px, 5.6vw, 84px); }
.about-copy > p:not(.eyebrow) { max-width: 720px; margin-bottom: 18px; color: #535754; font-size: 17px; line-height: 1.8; }
.about-copy .text-link { margin-top: 24px; }

.contact { color: var(--white); background: var(--ink); }
.contact-inner { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(520px, 1.15fr); gap: clamp(50px, 8vw, 120px); max-width: var(--max); margin: auto; }
.contact h2 { margin-bottom: 34px; font-size: clamp(70px, 10vw, 156px); }
.contact p:not(.eyebrow) { max-width: 610px; margin-bottom: 42px; color: #aeb2ae; font-size: 18px; line-height: 1.7; }
.contact-email { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.35); font-size: 15px; font-weight: 800; }
.contact-email span { color: var(--accent); font-size: 20px; }
.budget-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; padding: clamp(28px, 4vw, 52px); color: var(--ink); background: var(--paper); }
.field { display: flex; flex-direction: column; gap: 9px; }
.field-full { grid-column: 1 / -1; }
.field > label, .file-drop + label { font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.field > label span { color: #7a7e7b; font-weight: 500; }
.field input:not([type="file"]), .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeb2ad;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:not([type="file"]) { min-height: 46px; }
.field textarea { min-height: 150px; padding: 12px 0; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 1px 0 var(--accent); }
.file-drop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  min-height: 88px;
  padding: 20px;
  border: 1px dashed #949995;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}
.file-drop:hover, .file-drop:focus-within { border-color: var(--accent); background: #ebe8df; }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.file-drop strong { font-size: 14px; }
.file-drop small { color: #6a6f6b; font-size: 11px; font-weight: 500; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; color: #545955; font-size: 12px; line-height: 1.5; cursor: pointer; }
.form-consent input { accent-color: var(--accent); }
.form-consent a { color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.form-submit { display: flex; align-items: center; gap: 22px; }
.form-submit .button { border: 0; cursor: pointer; }
.form-submit .button:disabled { cursor: wait; opacity: .65; transform: none; }
.form-status { margin: 0 !important; color: #555a56 !important; font-size: 13px !important; line-height: 1.45 !important; }
.form-status.is-success { color: #27623f !important; }
.form-status.is-error { color: #a43120 !important; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; padding: clamp(58px, 7vw, 100px) var(--pad) 30px; color: var(--paper); background: #0e100f; }
.footer-brand { display: grid; grid-template-columns: 104px minmax(200px,360px); align-items: center; gap: 28px; }
.footer-brand img { width: 104px; height: 104px; object-fit: contain; filter: invert(1) grayscale(1); opacity: .82; }
.footer-brand p { margin: 0; color: #8f948f; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(120px,1fr)); align-content: center; gap: 16px 40px; font-size: 14px; font-weight: 700; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 30px; color: #737873; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-bottom a:hover { color: var(--paper); }
.footer-cookie-settings { padding: 0; color: inherit; border: 0; background: none; font: inherit; cursor: pointer; }
.footer-cookie-settings:hover { color: var(--paper); }

.cookie-notice {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(280px,1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(14,16,15,.97);
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice strong { display: block; margin-bottom: 5px; font-size: 15px; }
.cookie-notice p { margin: 0; color: #b1b5b1; font-size: 13px; line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: 12px; }
.cookie-actions a { color: #c4c8c4; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions button { min-height: 42px; padding: 0 18px; color: var(--white); border: 0; background: var(--accent); font-size: 12px; font-weight: 800; cursor: pointer; }
.cookie-actions .cookie-reject { color: #d3d6d3; border: 1px solid rgba(255,255,255,.28); background: transparent; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .main-nav { gap: 18px; }
  .hero { grid-template-columns: 1fr 42%; }
  .hero-proof { margin-top: 50px; }
  .section-heading { grid-template-columns: .4fr 1.2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-tall { grid-row: auto; }
  .about { grid-template-columns: 42% 58%; }
  .contact-inner { grid-template-columns: 1fr; max-width: 860px; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .site-header { min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .menu-toggle { z-index: 2; display: grid; gap: 7px; width: 42px; height: 42px; padding: 12px 7px; }
  .menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 68px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 12px; padding: 15px; text-align: center; }
  .hero { display: flex; flex-direction: column-reverse; min-height: auto; }
  .hero-media { min-height: 48svh; }
  .hero-copy { padding-top: 56px; }
  h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .hero-proof { gap: 8px; margin-top: 48px; padding-top: 0; }
  .hero-proof div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .hero-proof strong { font-size: 24px; }
  .section { padding-top: 82px; padding-bottom: 82px; }
  .section-heading, .process .section-heading { display: block; margin-bottom: 48px; }
  .section-heading .eyebrow { margin-bottom: 24px; }
  .section-heading h2 { margin-bottom: 28px; font-size: clamp(44px, 13vw, 62px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .project-grid { display: block; }
  .project { min-height: 360px; margin-bottom: 12px; }
  .project-wide, .project-tall { min-height: 440px; }
  .instagram-link { grid-template-columns: 1fr auto; }
  .instagram-link span:first-child { grid-column: 1 / -1; }
  .process-list li, .process-list li > div { grid-template-columns: 1fr; gap: 12px; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .about { display: flex; flex-direction: column; }
  .about-image { min-height: 460px; }
  .about-copy { padding-top: 82px; padding-bottom: 82px; }
  .about-copy h2 { font-size: clamp(44px, 13vw, 62px); }
  .contact h2 { font-size: clamp(68px, 20vw, 100px); }
  .contact-inner { grid-template-columns: 1fr; }
  .budget-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .field-full { grid-column: auto; }
  .file-drop { align-items: flex-start; flex-direction: column; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-template-columns: 82px 1fr; }
  .footer-brand img { width: 82px; height: 82px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie-notice { right: 10px; bottom: 10px; left: 10px; grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .cookie-actions { align-items: stretch; flex-direction: column; }
  .cookie-actions a { padding: 4px 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.legal-header { position: relative; }
.legal-page { max-width: 900px; margin: 0 auto; padding: clamp(70px, 9vw, 130px) var(--pad); }
.legal-page h1 { max-width: none; margin-bottom: 28px; color: var(--ink); font-size: clamp(58px, 8vw, 100px); }
.legal-intro { max-width: 720px; margin-bottom: 70px; color: #5e625f; font-size: 20px; line-height: 1.7; }
.legal-page section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { margin-bottom: 16px; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.035em; line-height: 1.05; }
.legal-page section p { margin: 0; color: #555a56; line-height: 1.8; }
.legal-page section a { color: var(--ink); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-table-wrap { overflow-x: auto; }
.legal-page table { width: 100%; border-collapse: collapse; font-size: 14px; }
.legal-page th, .legal-page td { padding: 16px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-page th { background: var(--paper-2); }
.legal-updated { margin-top: 48px; color: #757a76; font-size: 12px; }
.legal-footer { display: flex; justify-content: space-between; gap: 30px; padding: 28px var(--pad); color: #8e938f; background: var(--ink); font-size: 12px; }
.legal-footer p { margin: 0; }
.legal-footer a:hover { color: var(--white); }
