/* ═══════════════════════════════════════════════════════════════
   BŪERO BIANCO — Gemeinsame Styles
   Alle Seiten laden diese Datei. Hier einmal ändern = überall geändert.
═══════════════════════════════════════════════════════════════ */

/* ── SCHRIFTEN ── */
@font-face {
  font-family: 'Inter Tight';
  src: url('fonts/inter-tight-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('fonts/jetbrains-mono-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS-VARIABLEN & FARBEN ── */
:root {
  --sand:     #cdcbc5;
  --graphite: #202829;
  --dust:     #eae9e5;
  --bone:     #f9f7f5;
}

html, body {
  background: var(--sand);
  font-family: 'Inter Tight', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* ── DARK MODE ── */
html.dark {
  --sand:     #202829;
  --graphite: #cdcbc5;
  --bone:     #3a4445;
}

/* Farbtransitionen deaktiviert – Dunkel/Hell-Wechsel ist instant */
* { transition-property: transform, opacity, grid-template-rows !important; }


/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */

@keyframes fadeBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.nav-time .colon {
  display: inline-block;
  animation: fadeBlink 1s ease-in-out infinite;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  display: grid;
  grid-template-columns: 628px 1fr 439px;
  align-items: baseline;
  padding: 35px 34px 0;
}

.nav-logo svg       { display: block; width: 123px; height: auto; }
.nav-logo .cls-1    { fill: var(--graphite); }
.mob-cls-1          { fill: var(--graphite); }

.nav-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  letter-spacing: 0.04em;
}

.nav-city {
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: 0.02em;
  margin-left: 16px;
}

.nav-percent {
  font-size: 20px;
  font-weight: 700;
  color: var(--dust);
  min-width: 36px;
  margin-left: 60px;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--dust); }
html.dark .nav-links a:hover { color: #f9f7f5; }

/* Dark-Mode Toggle */
.toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.toggle-track {
  width: 38px;
  height: 22px;
  background: transparent;
  border: 1px solid var(--graphite);
  border-radius: 11px;
  position: relative;
}
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: var(--graphite);
  border-radius: 50%;
  transition: transform 0.3s ease;
}
html.dark .toggle-thumb { transform: translateX(16px); }

/* Menü-Button Mobile */
.nav-menu-label {
  display: none;
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: 0.02em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Nav Breakpoint 1460px */
@media (max-width: 1460px) {
  nav { grid-template-columns: 1fr 1fr 1fr; }
  .nav-logo    { justify-self: start; }
  .nav-center  { justify-content: center; }
  .nav-right   { justify-self: end; }
  .nav-time, .nav-city { display: none; }
  .nav-percent { margin-left: 0; }
}

/* Nav Mobile */
@media (max-width: 768px) {
  nav {
    grid-template-columns: auto 1fr auto;
    padding: 24px 20px 0;
    align-items: center;
  }
  .nav-logo          { display: none; }
  .nav-mobile-logo   { display: block; }
  .nav-center        { justify-content: center; }
  .nav-percent       { margin-left: 0; text-align: center; }
  .nav-links         { display: none; }
  .nav-right         { gap: 16px; }
  .nav-menu-label    { display: block; }
}

@media (min-width: 769px) {
  .nav-mobile-logo { display: none; }
  .nav-menu-label  { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════════════════════════════ */

.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #202829;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.0, 0.0, 0.2, 1);
  pointer-events: none;
  will-change: transform;
}
.mob-overlay.open { transform: translateY(0); pointer-events: all; }

.mob-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-overlay-logo svg { height: 15px; width: auto; display: block; }
.mob-overlay-logo .cls-mob { fill: #cdcbc5; }

.mob-overlay-close {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mob-overlay-close-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #cdcbc5;
  -webkit-font-smoothing: antialiased;
}
.mob-overlay-close-icon svg { width: 20px; height: 20px; display: block; }
.mob-overlay-close-icon .cls-x { fill: #cdcbc5; }

.mob-overlay-wordmark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  color: #cdcbc5;
  margin-top: 72px;
  margin-bottom: 32px;
  -webkit-font-smoothing: antialiased;
}

.mob-overlay-nav { list-style: none; flex: 1; }
.mob-overlay-nav li { line-height: 1; margin-bottom: 8px; }
.mob-overlay-nav a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 50px;
  color: #eae9e5;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  display: block;
  transform: translateX(-24px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.0, 0.0, 0.2, 1), opacity 0.5s ease, color 0.2s ease;
}
.mob-overlay-nav a:hover { color: #f9f7f5; }
.mob-overlay.open .mob-overlay-nav a { transform: translateX(0); opacity: 1; }
.mob-overlay.open .mob-overlay-nav li:nth-child(1) a { transition-delay: 0.28s; }
.mob-overlay.open .mob-overlay-nav li:nth-child(2) a { transition-delay: 0.38s; }
.mob-overlay.open .mob-overlay-nav li:nth-child(3) a { transition-delay: 0.48s; }

.mob-overlay-divider {
  border: none;
  border-top: 1px solid #cdcbc5;
  margin: 24px 0;
  opacity: 0.4;
}

.mob-overlay-secondary { list-style: none; }
.mob-overlay-secondary a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #cdcbc5;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: color 0.2s ease;
  display: block;
}
.mob-overlay-secondary a:hover { color: #eae9e5; }

.mob-overlay-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 24px;
}
.mob-overlay-signet svg { width: 15px; height: auto; display: block; margin-bottom: 4px; }
.mob-overlay-signet .cls-sig { fill: #cdcbc5; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

footer {
  padding: 0 34px 48px;
  margin-top: 200px;
  background: var(--sand);
}

.footer-line {
  width: 100%;
  height: 1px;
  background: var(--graphite);
  margin-bottom: 85px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 628px 1fr 439px;
  align-items: end;
}

.footer-left { display: flex; flex-direction: column; }
.footer-logo { margin-bottom: 65px; }
.footer-logo svg { height: 15.2px; width: auto; display: block; }
.footer-logo .cls-1 { fill: var(--graphite); }

.footer-col { display: flex; flex-direction: column; }
.footer-col a,
.footer-col span {
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  text-decoration: none;
  line-height: 26px;
  display: block;
  width: fit-content;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--dust); }

.footer-right {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-legal { display: flex; flex-direction: row; gap: 32px; }
.footer-legal a {
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  text-decoration: none;
  line-height: 26px;
  display: table;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--dust); }

.footer-signet { margin-left: 32px; }
.footer-signet svg { width: 15px; height: auto; display: block; margin-bottom: 4px; }
.footer-signet .cls-1 { fill: var(--graphite); }

@media (min-width: 769px) and (max-width: 1460px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  footer          { padding: 0 20px 40px; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-left    { margin-bottom: 32px; }
  .footer-logo    { margin-bottom: 0; }
  .footer-col-name { display: none; }
  .footer-col     { margin-bottom: 32px; }
  .footer-legal   { flex-direction: column; gap: 0; }
  .footer-signet  { margin-left: 0; }
}


/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════════ */

.img-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 25px; height: 25px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}
.img-cursor.visible { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.img-cursor .cls-1 { fill: var(--dust); }

.img-clickable { cursor: none; display: block; }

@media (max-width: 768px) {
  .img-cursor { display: none; }
  .img-clickable { cursor: pointer; }
}


/* ═══════════════════════════════════════════════════════════════
   CAPTION (Bildbeschriftungen)
═══════════════════════════════════════════════════════════════ */

.image-caption { padding-top: 40px; }

.caption-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  text-decoration: none;
}

.caption-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 26px;
  transition: color 0.2s ease;
}

.caption-plus {
  width: 25px; height: 25px;
  flex-shrink: 0;
  transform: translate(0, 2px);
  transition: transform 0.25s ease;
}
.caption-plus .cls-1 { fill: var(--graphite); transition: fill 0.2s ease; }

.caption-header:hover .caption-label,
.caption-header.hovered .caption-label { color: var(--dust); }
.caption-header:hover .caption-plus,
.caption-header.hovered .caption-plus { transform: translate(4px, 2px); }
.caption-header:hover .caption-plus .cls-1,
.caption-header.hovered .caption-plus .cls-1 { fill: var(--dust); }

html.dark .caption-header:hover .caption-label,
html.dark .caption-header.hovered .caption-label { color: var(--bone); }
html.dark .caption-header:hover .caption-plus .cls-1,
html.dark .caption-header.hovered .caption-plus .cls-1 { fill: var(--bone); }

.caption-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--graphite);
}

@media (max-width: 768px) {
  .caption-plus { width: 16px; height: 16px; transform: translate(0, 1px); }
  .caption-header:hover .caption-plus { transform: translate(4px, 1px); }
}


/* ═══════════════════════════════════════════════════════════════
   ACCORDION
═══════════════════════════════════════════════════════════════ */

.accordion { max-width: 909px; }
.accordion-item { border-top: 1px solid var(--graphite); }
.accordion-item:last-child { border-bottom: 1px solid var(--graphite); }

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}

.accordion-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 26px;
  transition: color 0.2s ease;
}

.accordion-icon {
  width: 25px; height: 25px;
  flex-shrink: 0;
  transform: translateY(1px) rotate(0deg);
  transition: transform 0.35s ease;
}
.accordion-icon .cls-1 { fill: var(--graphite); transition: fill 0.2s ease; }

.accordion-header:hover .accordion-label { color: var(--dust); }
.accordion-header:hover .accordion-icon .cls-1 { fill: var(--dust); }
.accordion-item.open .accordion-icon { transform: translateY(1px) rotate(45deg); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s ease;
}
.accordion-item.open .accordion-body { grid-template-rows: 1fr; }
.accordion-body-inner { overflow: hidden; }

.accordion-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--graphite);
  padding-bottom: 60px;
  padding-top: 20px;
}

@media (max-width: 768px) { .accordion { max-width: 100%; } }


/* ═══════════════════════════════════════════════════════════════
   BILDLAYOUTS
═══════════════════════════════════════════════════════════════ */

/* Vollbild */
.section-full { margin-bottom: 200px; }
.img-full {
  width: 100%;
  aspect-ratio: 1920 / 1000;
  background: var(--dust);
  display: block;
  position: relative;
  overflow: hidden;
}
.img-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section-full .image-caption { padding: 40px 34px 0; }
.section-full .caption-header { max-width: 1852px; }
.section-full .caption-text   { max-width: 752px; }

@media (max-width: 768px) {
  .section-full { margin-bottom: 120px; }
  .img-full { aspect-ratio: 4 / 5; }
  .section-full .image-caption { padding: 40px 20px 0; }
  .section-full .caption-header { max-width: 100%; }
  .section-full .caption-text   { max-width: 100%; }
}

/* Zwei Bilder */
.section-two { padding: 0 34px; margin-bottom: 200px; }
.img-two-row { display: grid; grid-template-columns: 45fr 10fr 55fr; align-items: start; }

.img-two-left .img-placeholder,
.img-two-right .img-placeholder {
  display: block;
  width: 100%;
  background: var(--dust);
  position: relative;
  overflow: hidden;
}
.img-two-left .img-placeholder  { aspect-ratio: 752 / 800; }
.img-two-right .img-placeholder { aspect-ratio: 909 / 1200; }
.img-two-left .img-placeholder img,
.img-two-right .img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .section-two { padding: 0 20px; margin-bottom: 120px; }
  .img-two-row { grid-template-columns: 1fr; gap: 80px; }
  .img-two-row > div:nth-child(2) { display: none; }
}

/* Drei Bilder */
.section-three { padding: 0 34px; margin-bottom: 200px; }
.img-three-row { display: grid; grid-template-columns: 74fr 10fr 26fr; align-items: start; max-width: 1852px; }

.img-three-left .img-placeholder,
.img-three-right .img-placeholder {
  display: block;
  width: 100%;
  background: var(--dust);
  position: relative;
  overflow: hidden;
}
.img-three-left .img-placeholder  { aspect-ratio: 1223 / 1000; }
.img-three-right .img-placeholder { aspect-ratio: 438 / 600; }
.img-three-left .img-placeholder img,
.img-three-right .img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-three-left .caption-text { max-width: 752px; }

@media (max-width: 768px) {
  .section-three { padding: 0 20px; margin-bottom: 120px; }
  .img-three-row { grid-template-columns: 1fr; gap: 80px; max-width: 100%; }
  .img-three-row > div:nth-child(2) { display: none; }
  .img-three-left .caption-text { max-width: 100%; }
}

/* Vier Bilder (versetzt) */
.images-row-four { display: grid; grid-template-columns: 38fr 45fr 2fr 27fr; align-items: start; }
.img-four-left { width: 100%; aspect-ratio: 752 / 1000; display: block; object-fit: cover; }

@media (max-width: 768px) {
  .images-row-four { grid-template-columns: 1fr; }
  .images-row-four > div:first-child { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   TEXTELEMENTE
═══════════════════════════════════════════════════════════════ */

/* Mono-Label (JetBrains) */
.t-label,
.hero-label,
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 26px;
  margin-bottom: 40px;
}

/* 45px Text */
.t-45, .hero-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 48px;
  color: var(--graphite);
  max-width: 1223px;
}
@media (max-width: 768px) {
  .t-45, .hero-text { font-size: 32px; line-height: 36px; max-width: 100%; }
}

/* 120px Hero-Text */
.text-hero {
  font-family: 'Inter Tight', sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 110px;
  letter-spacing: 0;
  color: var(--graphite);
  max-width: 752px;
}
@media (max-width: 768px) { .text-hero { font-size: 60px; line-height: 56px; max-width: 100%; } }

/* 20px Text-Block (eingerückt) */
.text-block { padding-left: 628px; }
.headline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 26px;
  margin-bottom: 20px;
}
.text-body,
.t-20 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--graphite);
  max-width: 595px;
}

@media (min-width: 769px) and (max-width: 1460px) {
  .text-block { padding-left: clamp(0px, 43%, 628px); }
}
@media (max-width: 768px) {
  .text-block { padding-left: 0; }
  .text-body, .t-20 { max-width: 100%; }
}

/* Mono-Text */
.text-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  color: var(--graphite);
  max-width: 281px;
}
@media (max-width: 768px) { .text-mono { max-width: 100%; } }


/* ═══════════════════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════════════════ */

.divider { padding: 0 34px; margin-bottom: 80px; }
.divider-line {
  width: 100%;
  height: 1px;
  background: var(--graphite);
  margin-bottom: 30px;
}
.divider-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  color: var(--graphite);
}
@media (max-width: 768px) { .divider { padding: 0 20px; } }


/* ═══════════════════════════════════════════════════════════════
   LEGAL TEXT (Datenschutz / Impressum)
═══════════════════════════════════════════════════════════════ */

.page-grid {
  padding: 320px 34px 0;
  display: grid;
  grid-template-columns: 628px 1fr;
  gap: 0;
  align-items: start;
}
.page-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--graphite);
  line-height: 26px;
}
.legal-block { padding-left: 0; max-width: 909px; }
.legal-section { margin-bottom: 60px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-headline {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--graphite);
  margin-bottom: 20px;
}
.legal-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  color: var(--graphite);
}
.legal-text + .legal-text { margin-top: 26px; }

@media (max-width: 768px) {
  .page-grid { padding: 160px 20px 0; grid-template-columns: 1fr; gap: 40px; }
  .legal-block { max-width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   SEITEN-LAYOUTS
═══════════════════════════════════════════════════════════════ */

/* ── INDEX ── */
.hero { padding: 320px 34px 0; margin-bottom: 200px; }
.section-block { margin-bottom: 200px; }
.section-mt { padding: 0 34px; margin-bottom: 200px; }
.section { padding: 0 34px; margin-bottom: 200px; }

.image-full { width: 100%; aspect-ratio: 1920 / 1000; background: var(--dust); display: block; position: relative; overflow: hidden; }
.image-full .img-clickable { position: absolute; inset: 0; }
.img-placeholder-full { width: 100%; height: 100%; object-fit: cover; display: block; }

.images-row-two { display: grid; grid-template-columns: 45fr 10fr 55fr; align-items: start; }
.image-left-two .img-placeholder,
.image-right-two .img-placeholder { display: block; width: 100%; position: relative; overflow: hidden; }
.image-left-two .img-placeholder  { aspect-ratio: 752 / 800; }
.image-right-two .img-placeholder { aspect-ratio: 909 / 1200; }
.img-placeholder-left,
.img-placeholder-right { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .hero { padding: 160px 20px 0; margin-bottom: 120px; }
  .section-block { margin-bottom: 120px; }
  .section-mt { padding: 0 20px; margin-bottom: 120px; }
  .section { padding: 0 20px; margin-bottom: 120px; }
  .image-full { aspect-ratio: 4 / 5; }
  .images-row-two { grid-template-columns: 1fr; gap: 80px; }
  .images-row-two > div:nth-child(2) { display: none; }
}

/* ── ARBEITEN ── */
.section-full-arbeiten { margin-bottom: 200px; }
@media (max-width: 768px) { .section-full-arbeiten { margin-bottom: 120px; } }

/* ── GRAFIKSACHEN ── */
.gs-intro {
  padding: 320px 34px 0;
  display: grid;
  grid-template-columns: 314px 1fr;
  gap: 0;
  align-items: start;
}
.gs-text02 { padding-left: 281px; }
.gs-section { padding: 200px 34px 0; }
.gs-accordion {
  padding: 200px 34px 200px;
  padding-left: 662px;
  max-width: calc(662px + 909px);
}

@media (max-width: 1570px) { .gs-accordion { padding-left: 505px; max-width: calc(505px + 909px); } }
@media (max-width: 1413px) { .gs-accordion { padding-left: 348px; max-width: calc(348px + 909px); } }
@media (max-width: 1256px) { .gs-accordion { padding-left: 191px; max-width: calc(191px + 909px); } }
@media (max-width: 1099px) { .gs-accordion { padding-left: 34px; max-width: calc(34px + 909px); } }

@media (max-width: 768px) {
  .gs-intro { padding: 160px 20px 0; grid-template-columns: 1fr; gap: 40px; }
  .gs-text02 { padding-left: 0; }
  .gs-section { padding: 120px 20px 0; }
  .gs-accordion { padding: 120px 20px 80px; max-width: 100%; }
}

/* ── ABOUT ── */
.about-intro {
  padding: 320px 34px 0;
  display: grid;
  grid-template-columns: 314px 1fr;
  gap: 0;
  align-items: start;
}
.about-text02 { padding-left: 281px; }
.section-hero { padding: 0 34px; margin-top: 200px; }
.section-image { margin-top: 200px; padding: 0 34px; }

.contrast-image-block {
  width: 100%;
  background: var(--graphite);
  padding: 200px 34px 34px;
  margin-top: 200px;
}
.contrast-image-block .cib-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 400;
  color: var(--sand);
  line-height: 26px;
  margin-bottom: 40px;
}
.contrast-image-block .cib-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 48px;
  color: var(--sand);
  max-width: 1223px;
  margin-bottom: 200px;
}
.contrast-image-block .cib-img {
  width: 100%;
  aspect-ratio: 1852 / 750;
  object-fit: cover;
  display: block;
}

@media (max-width: 1258px) { .about-text02 { padding-left: 157px; } }
@media (max-width: 1134px) { .about-text02 { padding-left: 0; } }

@media (max-width: 768px) {
  .about-intro { padding: 160px 20px 0; grid-template-columns: 1fr; gap: 40px; }
  .about-text02 { padding-left: 0; }
  .section-hero { padding: 0 20px; margin-top: 120px; }
  .section-image { margin-top: 120px; padding: 0 20px; }
  .contrast-image-block { padding: 80px 20px 20px; margin-top: 120px; }
  .contrast-image-block .cib-text { font-size: 36px; line-height: 40px; max-width: 100%; margin-bottom: 40px; }
  .contrast-image-block .cib-img { aspect-ratio: 4 / 5; }
}
