/* ==========================================================================
   TABLE OF CONTENTS

   01. Design Tokens
   02. Reset and Base Elements
   03. Accessibility Helpers
   04. Layout and Typography Utilities
   05. Shared Media
   06. Header and Index Menu
   07. Hero
   08. Editorial Statements
   09. Studio, Artelligence and Design
   10. Design Approach
   11. Services
   12. Full-width Visual
   13. Process
   14. Selected Works Index
   15. Project Stories and Galleries
   16. References
   17. Selected Reference
   18. Client Archive
   19. Contact Form
   20. Footer
   21. Motion and Utility Controls
   22. Legal Documents and Consent Interface
   23. Responsive Rules
   ==========================================================================  */
/* ==========================================================================
   01. Design Tokens
   ==========================================================================  */
:root {
  --ink: #1a1b18;
  --soft-ink: #4c4f49;
  --muted: #7b7f77;
  --muted-accessible: #6e726b;
  --line: #e3e5df;
  --wash: #f5f6f2;
  --paper: #fff;
  --max: 1680px;
  --edge: clamp(22px, 4vw, 78px);
  --header: 68px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
/* ==========================================================================
   02. Reset and Base Elements
   ==========================================================================  */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  overflow-x: hidden;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
/* ==========================================================================
   03. Accessibility Helpers
   ==========================================================================  */
.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;
}

body :focus-visible {
  outline: 2px solid #8ca3b7;
  outline-offset: 3px;
}
/* ==========================================================================
   04. Layout and Typography Utilities
   ==========================================================================  */
.shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--edge);
}
.eyebrow {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.copy {
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.85;
  color: var(--soft-ink);
  max-width: 720px;
}
.copy p {
  margin: 0 0 1.45em;
}
.copy p:last-child {
  margin-bottom: 0;
}
.copy-offset {
  margin-top: 42px;
}
.section {
  padding-block: clamp(100px, 11vw, 190px);
}
.wash {
  background: var(--wash);
}
.divider {
  border-top: 1px solid var(--line);
}
/* ==========================================================================
   05. Shared Media
   ==========================================================================  */
figure {
  margin: 0;
}
picture {
  display: block;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media {
  overflow: hidden;
  background: #ecece8;
  cursor: zoom-in;
}
.media picture,
.media img {
  width: 100%;
  height: 100%;
}
.media img {
  transition:
    transform 1.2s var(--ease),
    filter 1.2s var(--ease);
  filter: saturate(0.78) contrast(0.98);
}
.media:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}
/* ==========================================================================
   06. Header and Index Menu
   ==========================================================================  */
body.menu-open {
  overflow: hidden;
}
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 229, 223, 0.78);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-actions,
.menu-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
}
.language-switch a {
  position: relative;
  padding: 9px 0;
}
.language-switch a[aria-current="page"] {
  color: var(--ink);
}
.language-switch a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: 50px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.index-btn {
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.index-btn::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.index-btn:hover::after {
  transform: scaleX(0.6);
  transform-origin: right;
}
.menu-overlay {
  position: fixed;
  z-index: 1200;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #f5f6f2;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.45s var(--ease),
    visibility 0.45s;
}
.menu-overlay.open {
  visibility: visible;
  opacity: 1;
}
.menu-shell {
  height: 100%;
  display: grid;
  grid-template-rows: var(--header) 1fr auto;
}
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dde0d8;
}
.menu-close {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  padding-block: 32px;
}
.menu-list {
  grid-column: 2/8;
  display: grid;
  gap: 7px;
}
.menu-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: baseline;
  border-bottom: 1px solid #dde0d8;
  padding: 10px 0 12px;
}
.menu-list span {
  font-size: 9px;
  color: var(--muted);
}
.menu-list strong {
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.18;
  font-weight: 350;
  letter-spacing: -0.022em;
}
.menu-meta {
  grid-column: 9/12;
  align-self: end;
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}
.menu-foot {
  padding-block: 18px;
  border-top: 1px solid #dde0d8;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
/* ==========================================================================
   07. Hero
   ==========================================================================  */
.hero {
  min-height: 100svh;
  padding-top: var(--header);
  display: grid;
  grid-template-rows: minmax(360px, 52svh) minmax(320px, 48svh);
  background: #fff;
}
.hero-copy {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding-block: clamp(50px, 7vw, 110px);
  grid-template-rows: auto minmax(0, 1fr);
  align-items: center;
}
.hero-kicker {
  grid-column: 10/13;
  grid-row: 1;
  align-self: end;
  margin: 0 0 clamp(24px, 3vw, 48px);
  color: var(--muted-accessible);
}
.hero-title {
  margin: 0;
  line-height: 1.04;
  font-weight: 300;
  grid-column: 1/10;
  grid-row: 2;
  align-self: center;
  white-space: nowrap;
  font-size: clamp(34px, 2.5vw, 60px);
  letter-spacing: -0.052em;
}
.hero-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted-accessible);
  grid-column: 10/13;
  grid-row: 2;
  align-self: center;
}
.hero-window {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.hero-window picture,
.hero-window img {
  width: 100%;
  height: 100%;
}
.hero-window img {
  object-position: center 54%;
  filter: saturate(0.55) contrast(0.95);
  transform: scale(1.01);
}
.hero-caption {
  position: absolute;
  left: var(--edge);
  right: var(--edge);
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}
/* ==========================================================================
   08. Editorial Statements
   ==========================================================================  */
.statement {
  min-height: 54vh;
  display: grid;
  place-items: center;
  padding: 80px var(--edge);
  background: #fff;
}
.statement p {
  margin: 0;
  font-size: clamp(22px, 2.1vw, 38px);
  letter-spacing: -0.035em;
  font-weight: 300;
  color: #30322e;
}
/* ==========================================================================
   09. Studio, Artelligence and Design
   ==========================================================================  */
.editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.chapter {
  grid-column: 1/3;
  position: sticky;
  top: calc(var(--header) + 28px);
}
.chapter b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.chapter span {
  display: block;
  margin-top: 9px;
  font-size: 10px;
  color: var(--muted);
}
.studio-copy {
  grid-column: 4/9;
}
.studio-figure {
  grid-column: 10/13;
  height: clamp(480px, 56vw, 780px);
  margin: 0;
}
.studio-figure img {
  object-position: 54% center;
  filter: grayscale(1);
}
.art-portrait {
  grid-column: 2/6;
  height: clamp(500px, 64vw, 820px);
  position: relative;
}
.art-copy {
  grid-column: 7/12;
  padding-top: clamp(50px, 8vw, 130px);
}
.design-copy {
  grid-column: 2/7;
  padding-top: clamp(30px, 6vw, 100px);
}
.design-figure {
  grid-column: 8/13;
  height: clamp(480px, 58vw, 760px);
}
.design-figure img {
  object-fit: cover;
  object-position: center;
  background: #f4f4f2;
}
.art-portrait img {
  object-position: center;
  filter: saturate(0.86) contrast(0.98);
}
.art-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.art-caption strong {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.art-caption span {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
}
.founder-credit {
  margin: 34px 0 0;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* ==========================================================================
   10. Design Approach
   ==========================================================================  */
.approach-visual {
  height: clamp(420px, 56vw, 760px);
  margin-bottom: clamp(60px, 7vw, 110px);
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.approach-visual img {
  filter: grayscale(1);
  object-position: center 55%;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.approach-grid .eyebrow {
  grid-column: 1/3;
}
.approach-card {
  grid-column: span 3;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.approach-card:nth-of-type(1) {
  grid-column: 4/7;
}
.approach-card:nth-of-type(2) {
  grid-column: 7/10;
}
.approach-card:nth-of-type(3) {
  grid-column: 10/13;
}
.approach-card h3 {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.approach-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--soft-ink);
}
/* ==========================================================================
   11. Services
   ==========================================================================  */
.services-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 70px;
}
.services-head h2 {
  grid-column: 4/10;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service > h3 {
  margin: 0 0 36px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.service-item {
  padding-block: 16px;
  border-top: 1px solid var(--line);
}
.service-item h4 {
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 500;
}
.service-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
}
.plans {
  height: clamp(360px, 43vw, 620px);
  margin-top: 18px;
  background: #fff;
}
.plans img {
  object-fit: contain;
}
/* ==========================================================================
   12. Full-width Visual
   ==========================================================================  */
.full-visual {
  width: 100%;
  height: clamp(520px, 78svh, 940px);
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d8d8d4;
}
.full-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.full-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98);
  object-position: center 54%;
}
.full-visual figcaption {
  position: absolute;
  left: var(--edge);
  bottom: 20px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}
/* ==========================================================================
   13. Process
   ==========================================================================  */
.process-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(55px, 7vw, 105px);
}
.process-head h2 {
  grid-column: 4/10;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.process-board {
  display: grid;
  gap: clamp(54px, 6vw, 90px);
  max-width: 1180px;
  margin-left: auto;
}
.process-group {
  display: grid;
  grid-template-columns: minmax(170px, 2fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
}
.process-group-title {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 2px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}
.process-group-title::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink);
  flex: 0 0 auto;
}
.process-items {
  display: grid;
  gap: 20px;
}
.process-entry h3 {
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}
.process-entry p {
  margin: 0;
  font-size: 13px;
  line-height: 1.62;
  color: var(--soft-ink);
  max-width: 760px;
}
.process-entry p + p {
  margin-top: 14px;
}
.process-note {
  max-width: 760px;
  margin: clamp(55px, 7vw, 105px) 0 0 auto;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-accessible);
  font-style: italic;
}
/* ==========================================================================
   14. Selected Works Index
   ==========================================================================  */
.works-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.works-list {
  grid-column: 1/7;
  border-top: 1px solid var(--line);
}
.works-heading {
  margin-bottom: 35px;
}
.work-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.work-link small {
  font-size: 10px;
  color: var(--muted);
}
.work-link strong {
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 300;
  letter-spacing: -0.035em;
}
.work-link span {
  font-size: 10px;
  color: var(--muted);
  text-align: right;
}
.works-preview {
  grid-column: 8/13;
  height: clamp(430px, 54vw, 720px);
  position: sticky;
  top: calc(var(--header) + 28px);
  overflow: hidden;
  background: #ebece8;
}
.works-preview img {
  transition:
    opacity 0.35s var(--ease),
    transform 0.65s var(--ease);
  filter: saturate(0.65);
  object-position: center;
}
.works-preview.is-changing img {
  opacity: 0.2;
  transform: scale(1.015);
}
/* ==========================================================================
   15. Project Stories and Galleries
   ==========================================================================  */
.project {
  padding-block: clamp(110px, 12vw, 210px);
  background: #fff;
}
.project:nth-of-type(even) {
  background: var(--wash);
}
.project-head {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.project-count {
  grid-column: 1/3;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.project-title {
  grid-column: 3/8;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.05em;
}
.project-meta {
  grid-column: 9/13;
  display: grid;
  gap: 15px;
  font-size: 12px;
  line-height: 1.65;
  color: var(--soft-ink);
}
.project-meta div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.project-meta b {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.project-story {
  grid-column: 3/8;
  margin: 35px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.gallery-one {
  height: min(76svh, 940px);
}
.gallery-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.gallery-two .media {
  height: min(70svh, 830px);
  width: 100%;
  min-width: 0;
}
.gallery-fair {
  height: min(78svh, 930px);
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.gallery-four {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-four .media {
  height: min(57svh, 690px);
}
/* ==========================================================================
   16. References
   ==========================================================================  */
.reference-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 70px;
}
.reference-intro h2 {
  grid-column: 4/10;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.ref-group {
  border-top: 1px solid var(--line);
}
.ref-group summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 25px 0;
}
.ref-group summary::-webkit-details-marker {
  display: none;
}
.ref-group summary em {
  font-style: normal;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.ref-group ul {
  list-style: none;
  margin: 0;
  padding: 0 0 28px;
}
.ref-group li {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.ref-main strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.ref-main span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
}
.ref-detail p,
.ref-detail small {
  display: block;
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--soft-ink);
}
.ref-detail small {
  margin-top: 4px;
  color: var(--muted);
}
.ref-group summary span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.ref-group summary span::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.48;
}
/* ==========================================================================
   17. Selected Reference
   ==========================================================================  */
.selected-visual {
  height: min(86svh, 980px);
}
.selected-info {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  padding-block: clamp(70px, 8vw, 120px);
}
.selected-info h2 {
  grid-column: 2/6;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.045em;
}
.selected-entries {
  grid-column: 7/12;
}
.selected-entries article {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.selected-entries strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}
.selected-entries p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}
/* ==========================================================================
   18. Client Archive
   ==========================================================================  */
.client-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 80px;
}
.client-intro h2 {
  grid-column: 1/5;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.05em;
}
.client-intro .copy {
  grid-column: 6/12;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.client-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.45;
  color: var(--soft-ink);
}
.client-archive {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}
.client-archive summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.client-archive summary::-webkit-details-marker {
  display: none;
}
.client-archive summary span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-archive summary span::after {
  content: "+";
  font-size: 15px;
  line-height: 1;
  font-weight: 300;
}
.client-archive[open] summary span::after {
  content: "−";
}
.client-archive summary em {
  font-style: normal;
  font-size: 9px;
  color: var(--muted);
}
.client-grid-full {
  margin-top: 2px;
}
/* ==========================================================================
   19. Contact Form
   ==========================================================================  */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.contact-title {
  grid-column: 1/6;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.05em;
}
.contact-info {
  grid-column: 7/9;
  font-size: 12px;
  line-height: 1.8;
  color: var(--soft-ink);
}
.contact-form {
  grid-column: 9/13;
  display: grid;
  gap: 18px;
}
.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0 13px;
  color: var(--ink);
  font-size: 12px;
  outline: none;
}
.field:focus {
  border-color: var(--ink);
}
textarea.field {
  min-height: 100px;
  resize: vertical;
}
.submit {
  justify-self: start;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: none;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  padding: 10px 0 7px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}
.field-wrap {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.field-wrap .field {
  width: 100%;
}
.field-label {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.select-shell {
  position: relative;
  min-width: 0;
}
.select-shell::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  border-radius: 0;
  cursor: pointer;
}
.field-select:invalid {
  color: var(--muted);
}
.field-select option {
  color: var(--ink);
  background: #fff;
}
.conditional-wrap {
  margin-top: 4px;
}
.conditional-wrap[hidden] {
  display: none;
}
.field-error {
  min-height: 14px;
  color: #9f321f;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.field.is-invalid {
  border-bottom-color: #9f321f;
}
.form-status {
  min-height: 16px;
  margin: 2px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
}
.form-status.is-error {
  color: #9f321f;
}
.form-status.is-success {
  color: #315f42;
}
.submit[disabled] {
  opacity: 0.45;
  cursor: wait;
}
.privacy-confirmation {
  display: grid;
  gap: 6px;
}
.privacy-check {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}
.privacy-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.privacy-checkmark {
  width: 13px;
  height: 13px;
  margin-top: 1px;
  border: 1px solid #b9bdb5;
  background: #fff;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.privacy-check input:checked + .privacy-checkmark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 3px #fff;
}
.privacy-check input:focus-visible + .privacy-checkmark {
  outline: 2px solid #8ca3b7;
  outline-offset: 2px;
}
.privacy-check input.is-invalid + .privacy-checkmark {
  border-color: #9f321f;
}
.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
/* ==========================================================================
   20. Footer
   ==========================================================================  */
.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted-accessible);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-button {
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.footer-links a,
.footer-button {
  position: relative;
}
.footer-links a::after,
.footer-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-button:hover::after,
.footer-button:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
/* ==========================================================================
   21. Motion and Utility Controls
   ==========================================================================  */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.to-top {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s var(--ease);
  cursor: pointer;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lightbox {
  position: fixed;
  z-index: 1400;
  inset: 0;
  background: rgba(20, 21, 18, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 42px);
  color: #fff;
}
.lightbox.open {
  display: flex;
}
.lightbox-bar {
  position: absolute;
  z-index: 2;
  top: max(18px, env(safe-area-inset-top));
  right: clamp(18px, 3vw, 42px);
  left: clamp(18px, 3vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.lightbox-counter {
  min-height: 1em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.16em;
}
.lightbox-close {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: none;
  color: #fff;
  font: inherit;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}
.lightbox-close::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.55);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.lightbox-close:hover::after,
.lightbox-close:focus-visible::after {
  transform: scaleX(1);
}
.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  touch-action: pan-y pinch-zoom;
}
.lightbox-figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 12px;
  padding: 40px 0 4px;
}
.lightbox img {
  display: block;
  max-width: calc(100vw - 150px);
  max-height: calc(100dvh - 116px);
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.18s var(--ease);
  user-select: none;
  -webkit-user-select: none;
}
.lightbox img.is-loading {
  opacity: 0.36;
}
.lightbox-caption {
  max-width: min(720px, 74vw);
  min-height: 1.4em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}
.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  padding: 0;
  background: rgba(20, 21, 18, 0.42);
  color: #fff;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    border-color 0.25s var(--ease),
    background-color 0.25s var(--ease);
  cursor: pointer;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(20, 21, 18, 0.78);
}
.lightbox-nav[hidden] {
  display: none;
}
.lightbox-prev {
  left: clamp(8px, 1.5vw, 22px);
}
.lightbox-next {
  right: clamp(8px, 1.5vw, 22px);
}
/* ==========================================================================
   22. Legal Documents and Consent Interface
   ==========================================================================  */
body.legal-open,
body.consent-open,
body.lightbox-open {
  overflow: hidden;
}
.legal-modal,
.cookie-preferences {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 44px);
  background: rgba(24, 25, 22, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.legal-modal[hidden],
.cookie-preferences[hidden],
.cookie-banner[hidden] {
  display: none;
}
.legal-modal-panel {
  width: min(1040px, 100%);
  height: min(850px, 91dvh);
  display: grid;
  grid-template-rows: 54px 1fr;
  overflow: hidden;
  border: 1px solid rgba(227, 229, 223, 0.95);
  background: #fff;
  box-shadow: 0 26px 80px rgba(20, 21, 18, 0.16);
}
.legal-modal-head,
.cookie-preferences-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}
.legal-modal-head h2 {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal-modal-head button,
.cookie-preferences-head button {
  appearance: none;
  border: 0;
  background: none;
  padding: 10px 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.legal-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}
.cookie-banner {
  position: fixed;
  z-index: 1600;
  right: clamp(12px, 2vw, 28px);
  bottom: clamp(12px, 2vw, 28px);
  width: min(620px, calc(100vw - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 55px rgba(26, 27, 24, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cookie-banner-copy strong {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.cookie-banner-copy p {
  max-width: 410px;
  margin: 0 0 7px;
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.55;
}
.cookie-banner-copy a,
.cookie-preferences-note a {
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}
.cookie-actions,
.cookie-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cookie-actions {
  justify-content: flex-end;
}
.cookie-actions button,
.cookie-preferences-actions button {
  appearance: none;
  min-height: 34px;
  border: 1px solid #cfd2cb;
  background: #fff;
  padding: 8px 11px;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-actions button.is-primary,
.cookie-preferences-actions button.is-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.cookie-preferences {
  z-index: 1700;
}
.cookie-preferences-panel {
  width: min(650px, 100%);
  max-height: 90dvh;
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 26px 80px rgba(20, 21, 18, 0.16);
}
.cookie-preferences-head {
  min-height: 70px;
}
.cookie-preferences-head span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cookie-preferences-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 350;
  letter-spacing: -0.025em;
}
.cookie-preferences-intro,
.cookie-preferences-note {
  margin: 0;
  padding: 22px;
  color: var(--soft-ink);
  font-size: 11px;
  line-height: 1.65;
}
.cookie-preferences-note {
  padding-top: 16px;
  padding-bottom: 16px;
}
.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.consent-option strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}
.consent-option p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.consent-state {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.toggle {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 21px;
}
.toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.toggle span {
  position: absolute;
  inset: 0;
  border: 1px solid #b9bdb5;
  border-radius: 20px;
  background: #fff;
  transition: 0.25s ease;
}
.toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #8b8f87;
  transition: 0.25s ease;
}
.toggle input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
}
.toggle input:checked + span::after {
  transform: translateX(17px);
  background: #fff;
}
.toggle input:focus-visible + span {
  outline: 2px solid #8ca3b7;
  outline-offset: 2px;
}
.cookie-preferences-actions {
  justify-content: flex-end;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}
/* ==========================================================================
   23. Responsive Rules
   ==========================================================================  */
.approach-grid > .eyebrow,
.services-head > .eyebrow,
.process-head > .eyebrow,
.reference-intro > .eyebrow {
  grid-column: 1/4;
  max-width: 210px;
  line-height: 1.35;
}
@media (max-width: 980px) {
  .menu-list {
    grid-column: 1/8;
  }
  .menu-meta {
    grid-column: 9/13;
  }
  .hero {
    grid-template-rows: minmax(400px, 55svh) minmax(300px, 45svh);
  }
  .hero-title {
    grid-column: 1/10;
  }
  .hero-kicker {
    grid-column: 1/4;
  }
  .hero-text {
    grid-column: 10/13;
  }
  .chapter {
    position: static;
    grid-column: 1/4;
  }
  .studio-copy {
    grid-column: 4/10;
  }
  .studio-figure {
    grid-column: 10/13;
  }
  .art-portrait {
    grid-column: 1/6;
  }
  .art-copy {
    grid-column: 7/13;
  }
  .design-copy {
    grid-column: 1/7;
  }
  .design-figure {
    grid-column: 8/13;
  }
  .approach-card:nth-of-type(1) {
    grid-column: 1/5;
  }
  .approach-card:nth-of-type(2) {
    grid-column: 5/9;
  }
  .approach-card:nth-of-type(3) {
    grid-column: 9/13;
  }
  .approach-grid .eyebrow {
    grid-column: 1/13;
    margin-bottom: 18px;
  }
  .approach-grid > .eyebrow,
  .services-head > .eyebrow,
  .process-head > .eyebrow,
  .reference-intro > .eyebrow {
    grid-column: 1/4;
  }
  .works-list {
    grid-column: 1/8;
  }
  .works-preview {
    grid-column: 8/13;
  }
  .project-title {
    grid-column: 3/9;
  }
  .project-meta {
    grid-column: 9/13;
  }
  .client-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-info {
    grid-column: 7/10;
  }
  .contact-form {
    grid-column: 10/13;
  }
}
@media (max-width: 760px) {
  .gallery-two {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .approach-grid > .eyebrow,
  .services-head > .eyebrow,
  .process-head > .eyebrow,
  .reference-intro > .eyebrow {
    max-width: none;
  }
}
@media (max-width: 1100px) {
  .hero-title {
    grid-column: 1/10;
    font-size: clamp(31px, 4.15vw, 46px);
  }
  .hero-kicker,
  .hero-text {
    grid-column: 10/13;
  }
}
@media (max-width: 720px) {
  :root {
    --header: 60px;
    --edge: 20px;
  }
  .brand span {
    display: block;
    min-width: 0;
    color: var(--ink);
    font-size: clamp(7px, 2.05vw, 9px);
    letter-spacing: 0.075em;
    opacity: 1;
    visibility: visible;
  }
  .menu-grid {
    display: block;
    padding-block: 24px 18px;
  }
  .menu-shell {
    height: auto;
    min-height: 100dvh;
    grid-template-rows: var(--header) auto auto;
  }
  .menu-top {
    position: sticky;
    z-index: 1;
    top: 0;
    background: #f5f6f2;
  }
  .menu-list {
    display: grid;
    gap: 0;
  }
  .menu-list a {
    grid-template-columns: 34px 1fr;
    min-height: 42px;
    padding: 7px 0 8px;
  }
  .menu-list strong {
    font-size: 17px;
    line-height: 1.12;
  }
  .menu-meta {
    margin-top: 22px;
    font-size: 10px;
    line-height: 1.65;
  }
  .menu-foot {
    padding-top: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    line-height: 1.5;
  }
  .hero {
    grid-template-rows: auto 46svh;
    min-height: 100svh;
  }
  .hero-copy {
    padding-top: 70px;
    padding-bottom: 55px;
    display: block;
  }
  .hero-kicker {
    margin-bottom: 50px;
    margin: 0 0 34px;
  }
  .hero-title {
    max-width: 100%;
    white-space: normal;
    font-size: clamp(22px, 7vw, 31px);
    letter-spacing: -0.052em;
  }
  .hero-text {
    max-width: 420px;
    margin-top: 28px;
  }
  .hero-caption {
    display: none;
  }
  .statement {
    min-height: 38vh;
  }
  .editorial,
  .approach-grid,
  .services-head,
  .process-head,
  .works-layout,
  .project-head,
  .reference-intro,
  .selected-info,
  .client-intro,
  .contact-grid {
    display: block;
  }
  .chapter {
    margin-bottom: 55px;
  }
  .studio-copy,
  .art-copy,
  .design-copy {
    padding: 0;
  }
  .studio-figure,
  .art-portrait,
  .design-figure {
    height: 64svh;
    margin-top: 55px;
  }
  .approach-visual {
    height: 48svh;
    margin-bottom: clamp(48px, 10vw, 72px);
  }
  .approach-card {
    border-top: 1px solid var(--line);
    padding: 20px 0;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .services-head h2,
  .process-head h2,
  .reference-intro h2 {
    font-size: 36px;
  }
  .plans {
    height: 36svh;
  }
  .full-visual {
    height: 64svh;
  }
  .process-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-group-title {
    font-size: 12px;
  }
  .process-items {
    gap: 18px;
  }
  .works-list {
    margin-bottom: 40px;
  }
  .works-preview {
    position: static;
    height: 52svh;
  }
  .work-link {
    grid-template-columns: 32px 1fr;
  }
  .work-link span {
    display: none;
  }
  .project-count {
    margin-bottom: 18px;
  }
  .project-title {
    font-size: 40px;
    margin-bottom: 45px;
  }
  .project-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .project-story {
    margin-top: 32px;
  }
  .gallery-one,
  .gallery-fair {
    height: 55svh;
    width: 100%;
  }
  .gallery-two {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .gallery-two .media {
    height: 52svh;
  }
  .gallery-four {
    gap: 8px;
  }
  .gallery-four .media {
    height: 38svh;
  }
  .ref-group li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .selected-visual {
    height: 62svh;
  }
  .selected-info h2 {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .client-intro h2 {
    font-size: 38px;
    margin-bottom: 45px;
  }
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-title {
    font-size: 40px;
    margin-bottom: 55px;
  }
  .contact-info {
    margin-bottom: 50px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .to-top {
    right: 16px;
    bottom: 16px;
  }
  .lightbox {
    padding: 10px;
  }
  .lightbox-bar {
    top: max(12px, env(safe-area-inset-top));
    right: 16px;
    left: 16px;
  }
  .lightbox-figure {
    gap: 10px;
    padding: 44px 0 max(6px, env(safe-area-inset-bottom));
  }
  .lightbox img {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 112px);
  }
  .lightbox-caption {
    max-width: calc(100vw - 112px);
    font-size: 8px;
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    background: rgba(20, 21, 18, 0.58);
  }
  .lightbox-prev {
    left: 6px;
  }
  .lightbox-next {
    right: 6px;
  }
  .ref-group summary span {
    font-size: 13px;
  }
  .header-inner {
    gap: 12px;
  }
  .header-actions {
    gap: 10px;
  }
  .menu-controls {
    gap: 16px;
  }
  .language-switch {
    gap: 4px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .site-header .brand {
    flex: 1 1 auto;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 42px;
    height: 21px;
  }
  .index-btn {
    flex: 0 0 auto;
    gap: 8px;
  }
  .index-btn::after {
    width: 20px;
  }
  .art-caption {
    padding: 11px 12px;
  }
  .art-caption span {
    max-width: 70%;
    line-height: 1.45;
  }
  .footer-links {
    gap: 14px 18px;
  }
  .legal-modal {
    padding: 0;
  }
  .legal-modal-panel {
    width: 100%;
    height: 100dvh;
    border: 0;
  }
  .legal-modal-head {
    padding: 0 16px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 17px;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .cookie-actions button {
    flex: 1 1 auto;
  }
  .cookie-preferences {
    padding: 10px;
    align-items: end;
  }
  .cookie-preferences-panel {
    width: 100%;
    max-height: 92dvh;
  }
  .cookie-preferences-actions {
    justify-content: stretch;
  }
  .cookie-preferences-actions button {
    flex: 1 1 auto;
  }
}
@media (max-width: 380px) {
  .brand img {
    width: 38px;
    height: 19px;
  }
  .brand span {
    font-size: 7px;
    letter-spacing: 0.075em;
  }
  .header-actions {
    gap: 7px;
  }
  .site-header .language-switch {
    gap: 3px;
    font-size: 7px;
  }
  .index-btn {
    gap: 6px;
    font-size: 8px;
  }
  .index-btn::after {
    width: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .media img,
  .works-preview img {
    transition: none;
  }
  .toggle span,
  .toggle span::after,
  .footer-links a::after,
  .footer-button::after,
  .lightbox-close::after,
  .lightbox img,
  .lightbox-nav {
    transition: none;
  }
}
