:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --paper: #eeeae1;
  --paper-dim: #a8a49c;
  --red: #d7281e;
  --line: rgba(238, 234, 225, 0.22);
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--paper);
  font-family: var(--mono);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--red); color: white; }

.skip-link {
  position: fixed;
  z-index: 1001;
  left: 12px;
  top: -60px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--black);
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(160px, 0.6fr);
  align-items: stretch;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.055em;
}
.brand-mark {
  position: relative;
  width: 39px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--red);
}
.brand-mark::before,
.brand-mark::after,
.brand-mark i::before,
.brand-mark i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 25px;
  background: var(--black);
  transform-origin: 50% 50%;
}
.brand-mark::before { transform: translate(-50%, -50%) rotate(0deg); }
.brand-mark::after { transform: translate(-50%, -50%) rotate(45deg); }
.brand-mark i::before { transform: translate(-50%, -50%) rotate(90deg); }
.brand-mark i::after { transform: translate(-50%, -50%) rotate(135deg); }
.desktop-nav { display: flex; }
.desktop-nav a {
  min-width: 145px;
  padding: 15px 26px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  font-family: var(--display);
  font-size: 20px;
  line-height: 0.9;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.desktop-nav a:last-child { border-right: 1px solid var(--line); }
.desktop-nav a:hover { background: var(--paper); color: var(--black); }
.desktop-nav b { color: var(--red); font: 500 10px var(--mono); margin-bottom: 6px; }
.header-actions { padding: 0 28px; display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.language-switch { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.language-switch button { padding: 5px 2px; border: 0; background: none; cursor: pointer; opacity: 0.45; }
.language-switch button.active { color: var(--red); opacity: 1; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 8px; border: 0; background: none; cursor: pointer; }
.menu-toggle i { height: 2px; display: block; margin: 6px 0; background: var(--paper); transition: transform 0.2s, opacity 0.2s; }
.menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--black); border-bottom: 1px solid var(--line); }
.mobile-nav a { display: flex; gap: 18px; padding: 22px 24px; border-top: 1px solid var(--line); font: 28px var(--display); }
.mobile-nav b { color: var(--red); font: 12px var(--mono); }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr auto;
  border-bottom: 1px solid var(--line);
}
.hero-copy { position: relative; z-index: 2; padding: clamp(40px, 5vw, 88px) 4vw 46px; }
.hero-kicker { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 5vh, 64px); }
.hero-kicker span { padding: 7px 11px; border: 1px solid var(--line); font-size: 10px; letter-spacing: 0.12em; }
.hero-kicker span:first-child { border-color: var(--red); color: var(--red); }
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(78px, 9.2vw, 164px);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: -0.025em;
}
.hero h1::first-line { color: var(--paper); }
.hero-lead { max-width: 590px; margin: 36px 0 0; color: var(--paper-dim); font-size: clamp(13px, 1.15vw, 16px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 62px;
  min-width: 240px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { border-color: var(--red); background: var(--red); color: white; }
.button-outline:hover { background: var(--paper); color: var(--black); }
.button i { font-size: 20px; font-style: normal; }
.hero-image { position: relative; min-height: 680px; overflow: hidden; border-left: 1px solid var(--line); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 18%, transparent 80%, rgba(0,0,0,.18)); pointer-events: none; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 47% 48%; filter: saturate(0.65) contrast(1.1); }
.hero-image-label { position: absolute; z-index: 2; right: 20px; bottom: 20px; display: flex; gap: 20px; padding: 10px 13px; background: var(--black); font-size: 9px; letter-spacing: .12em; }
.hero-image-label span:first-child { color: var(--red); }
.hero-footer { grid-column: 1 / -1; min-height: 70px; display: grid; grid-template-columns: 1fr auto; align-items: center; border-top: 1px solid var(--line); }
.hero-footer p { padding: 0 4vw; display: flex; align-items: center; flex-wrap: wrap; gap: 13px; font: clamp(18px, 2vw, 30px) var(--display); letter-spacing: .06em; }
.hero-footer p i { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.price-mini { align-self: stretch; min-width: 260px; display: flex; align-items: center; justify-content: center; gap: 10px; border-left: 1px solid var(--line); }
.price-mini span { font-size: 10px; }.price-mini strong { color: var(--red); font: 48px var(--display); }

.section { padding: clamp(90px, 9vw, 160px) 4vw; border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(160px, .35fr) 1fr; gap: 5vw; margin-bottom: clamp(60px, 8vw, 120px); }
.section-number { margin: 0; color: var(--red); font-size: 11px; letter-spacing: .13em; }
.section-heading > div { display: grid; grid-template-columns: 1fr minmax(260px, .55fr); gap: 5vw; align-items: end; }
.section-heading h2,
.process-content h2 {
  margin: 0;
  font: clamp(72px, 9vw, 148px)/.78 var(--display);
  letter-spacing: -.02em;
}
.section-heading > div > p { max-width: 540px; margin: 0; color: var(--paper-dim); font-size: 13px; line-height: 1.8; }

.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 12px; }
.portfolio-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--black-soft);
  cursor: zoom-in;
  text-align: left;
}
.portfolio-item-wide { grid-column: span 8; }
.portfolio-item-tall { grid-row: span 3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform .55s, filter .35s; }
.portfolio-item:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.portfolio-item::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.portfolio-item > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; display: flex; gap: 12px; font: 21px var(--display); letter-spacing: .05em; }
.portfolio-item > span b { color: var(--red); font: 9px var(--mono); }
.more-work { margin-top: 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.more-work summary { padding: 24px 6px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font: 23px var(--display); letter-spacing: .07em; list-style: none; }
.more-work summary::-webkit-details-marker { display: none; }
.more-work summary i { color: var(--red); font-style: normal; font-family: var(--mono); transition: transform .2s; }
.more-work[open] summary i { transform: rotate(45deg); }
.portfolio-grid-more { padding: 12px 0; }

.styles-section { background: var(--paper); color: var(--black); }
.styles-section .section-number { color: var(--red); }
.styles-section .section-heading > div > p { color: #5b5954; }
.styles-list { border-top: 2px solid var(--black); }
.style-row { display: grid; grid-template-columns: 70px 1fr minmax(260px, .65fr) 40px; gap: 24px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(10,10,10,.35); transition: padding .2s, color .2s; }
.style-row:hover { padding-left: 16px; color: var(--red); }
.style-row > span { color: var(--red); font-size: 10px; }
.style-row h3 { margin: 0; font: clamp(52px, 6vw, 96px)/.9 var(--display); letter-spacing: -.02em; }
.style-row p { max-width: 520px; margin: 0; color: #5b5954; font-size: 12px; line-height: 1.65; }
.style-row i { font-style: normal; font-size: 24px; }

.process-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw; }
.process-image { position: relative; min-height: 850px; overflow: hidden; border: 1px solid var(--line); }
.process-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.05); }
.process-image span { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; background: var(--black); font-size: 9px; }
.process-content { padding-top: 12px; }
.process-content h2 { margin: 55px 0 70px; }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--red); font-size: 10px; }
.process-list h3 { margin: 0 0 12px; font: 35px var(--display); letter-spacing: .04em; }
.process-list p { max-width: 620px; margin: 0; color: var(--paper-dim); font-size: 12px; line-height: 1.75; }

.price-section { position: relative; overflow: hidden; display: grid; grid-template-columns: .3fr 1fr .7fr; gap: 4vw; align-items: center; min-height: 430px; padding: 70px 4vw; background: var(--red); color: var(--black); }
.price-section .section-number { color: var(--black); }
.price-main { display: flex; align-items: flex-start; gap: 12px; }
.price-main span { margin-top: 15px; font-size: 12px; }
.price-main strong { white-space: nowrap; font: clamp(100px, 13vw, 220px)/.7 var(--display); letter-spacing: -.04em; }
.price-note { position: relative; z-index: 1; max-width: 530px; margin: 0; font-size: 12px; font-weight: 600; line-height: 1.75; }
.price-noise { position: absolute; right: -8vw; top: -70%; width: 45vw; aspect-ratio: 1; border: 1px solid rgba(10,10,10,.35); border-radius: 50%; }
.price-noise::before,.price-noise::after { content:""; position:absolute; border:1px solid rgba(10,10,10,.28); border-radius:50%; }
.price-noise::before { inset: 13%; }.price-noise::after { inset: 27%; }

.contact-section { padding: clamp(100px, 10vw, 180px) 4vw 90px; }
.contact-section h2 { margin: 80px 0 30px; font: clamp(90px, 14vw, 235px)/.72 var(--display); letter-spacing: -.035em; }
.contact-section h2 span { color: var(--red); }
.contact-lead { max-width: 680px; margin: 50px 0 70px auto; color: var(--paper-dim); font-size: 13px; line-height: 1.8; }
.contact-links { border-top: 1px solid var(--line); }
.contact-links a { display: grid; grid-template-columns: 80px 1fr 40px; align-items: center; padding: 25px 5px; border-bottom: 1px solid var(--line); transition: padding .2s, background .2s; }
.contact-links a:hover { padding-left: 20px; background: var(--red); }
.contact-links span { color: var(--red); font-size: 10px; }.contact-links a:hover span { color: var(--black); }
.contact-links b { font: clamp(42px, 5vw, 80px)/.9 var(--display); letter-spacing: .035em; }
.contact-links i { font-style: normal; font-size: 25px; }

.site-footer { min-height: 105px; padding: 0 4vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); font-size: 9px; letter-spacing: .1em; }
.site-footer .brand { padding: 0; font-size: 19px; }.site-footer .brand-mark { width: 30px; }
.site-footer p:last-child { justify-self: end; }

.lightbox { width: min(94vw, 1400px); max-height: 94vh; padding: 0; overflow: visible; border: 1px solid var(--line); background: var(--black); color: var(--paper); }
.lightbox::backdrop { background: rgba(0,0,0,.91); backdrop-filter: blur(10px); }
.lightbox figure { margin: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; height: min(90vh, 980px); }
.lightbox img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.lightbox figcaption { padding: 13px 18px; border-top: 1px solid var(--line); font: 20px var(--display); letter-spacing: .05em; }
.lightbox-close { position: absolute; z-index: 2; top: 10px; right: 10px; width: 46px; height: 46px; border: 1px solid var(--paper); background: var(--black); cursor: pointer; font-size: 28px; line-height: 1; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr .95fr; }
  .hero-copy { padding-left: 3vw; padding-right: 3vw; }
  .section-heading > div { grid-template-columns: 1fr; }
  .portfolio-grid { grid-auto-rows: 190px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 64px; }
  .site-header { height: 64px; }
  .brand { padding: 0 18px; font-size: 20px; }
  .brand-mark { width: 34px; }
  .header-actions { padding: 0 14px 0 0; gap: 10px; }
  .language-switch { font-size: 11px; }
  .mobile-nav { top: 64px; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { display: contents; }
  .hero-kicker { order: 1; margin: 0; padding: 22px 20px 18px; }
  .hero h1 { position: absolute; z-index: 3; top: 195px; left: 20px; right: 20px; font-size: clamp(78px, 23vw, 120px); text-shadow: 0 4px 24px rgba(0,0,0,.45); }
  .hero-lead { order: 3; margin: 0; padding: 25px 20px 0; }
  .hero-actions { order: 4; margin: 0; padding: 24px 20px 34px; display: grid; }
  .button { min-width: 0; width: 100%; }
  .hero-image { order: 2; min-height: 650px; border-left: 0; border-top: 1px solid var(--line); }
  .hero-image::after { background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 45%); }
  .hero-image img { object-position: 48% center; }
  .hero-image-label { display: none; }
  .hero-footer { order: 5; grid-column: auto; grid-template-columns: 1fr; }
  .hero-footer p { padding: 18px 20px; margin: 0; font-size: 23px; }
  .price-mini { min-height: 70px; border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 90px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 45px; margin-bottom: 65px; }
  .section-heading > div { gap: 30px; }
  .section-heading h2,.process-content h2 { font-size: clamp(74px, 22vw, 112px); }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .portfolio-item,.portfolio-item-wide,.portfolio-item-tall { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 5; }
  .portfolio-item-wide { aspect-ratio: 4 / 3; }
  .portfolio-grid-more { padding-top: 8px; }
  .style-row { grid-template-columns: 35px 1fr 22px; gap: 12px; padding: 23px 0; }
  .style-row h3 { font-size: 54px; }
  .style-row p { grid-column: 2 / -1; }
  .process-section { display: flex; flex-direction: column; gap: 70px; }
  .process-image { min-height: 620px; }
  .process-content h2 { margin: 45px 0 55px; }
  .process-list li { grid-template-columns: 42px 1fr; }
  .price-section { grid-template-columns: 1fr; gap: 40px; min-height: 520px; padding: 70px 20px; }
  .price-main strong { font-size: clamp(110px, 40vw, 180px); }
  .price-note { max-width: 480px; }
  .contact-section { padding: 100px 20px 65px; }
  .contact-section h2 { margin-top: 70px; font-size: clamp(90px, 25vw, 145px); }
  .contact-lead { margin: 45px 0 55px; }
  .contact-links a { grid-template-columns: 45px 1fr 24px; }
  .contact-links b { font-size: 47px; }
  .site-footer { padding: 28px 20px; grid-template-columns: 1fr; gap: 22px; }
  .site-footer p { margin: 0; }.site-footer p:last-child { justify-self: start; }
  .lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; border: 0; }
  .lightbox figure { height: 100vh; padding-top: 55px; }
}

@media (max-width: 430px) {
  .brand { gap: 9px; padding-left: 12px; font-size: 17px; }
  .brand-mark { width: 30px; }
  .hero h1 { font-size: 22vw; }
  .hero-image { min-height: 590px; }
  .hero-footer p { font-size: 20px; }
  .language-switch { gap: 5px; }
  .menu-toggle { width: 36px; }
}

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