/* KAŞ Hukuk & Danışmanlık — Lüks & Editoryal Tasarım Sistemi */
:root {
  --primary: #1F3D2E;
  --primary-light: #2c5440;
  --primary-dark: #14281e;
  --indigo-rain: rgb(13, 62, 77);
  --bg-dark: #161f16;
  --bg-forest: #1b241b;
  --bg-paper: #f7f4ec;
  --bg-paper-subtle: #eee9dc;
  --text-dark: #1F3D2E;
  --text-muted: #3a5446;
  --text-light: #f6f3eb;
  --text-light-muted: #a6b09f;
  --gold: #c3a975;
  --gold-light: #e0ca97;
  --gold-dark: #917743;
  --border-gold: rgba(195, 169, 117, 0.45);
  --border-dark: rgba(31, 61, 46, 0.16);
  --font-rounded: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--text-light);
  background: var(--bg-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 6px;
}

.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 10;
}

.underlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #1b291d 0%, #121c13 100%);
  z-index: 1;
}

/* Yan Açılır Paneller (Ekibimiz & İletişim) */
.reveal {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  border: 0;
  background: none;
  text-align: left;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  color: var(--text-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  cursor: pointer;
  pointer-events: none;
  z-index: 5;
}

.reveal.left {
  left: 0;
  width: 28%;
}

.reveal.left-top {
  top: 0;
  bottom: 50%;
  height: 50%;
  border-bottom: 1px solid rgba(195, 169, 117, 0.18);
  justify-content: center;
}

.reveal.left-bottom {
  top: 50%;
  bottom: 0;
  height: 50%;
  justify-content: center;
}

.reveal.right {
  right: 0;
  text-align: right;
  align-items: flex-end;
}

.reveal span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
}

.reveal strong {
  font-family: var(--font-rounded);
  font-size: clamp(26px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.reveal .team-label {
  font-size: clamp(22px, 2.4vw, 44px);
  font-weight: 700;
}

.reveal i {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-style: normal;
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 8px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.reveal:hover i {
  color: #fff;
  border-color: var(--gold-light);
}

#paper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  z-index: 2;
}

#backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 2;
}

#film {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  visibility: hidden;
  z-index: 2;
}

/* Header */
header {
  position: absolute;
  inset: 38px 5vw auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary);
  pointer-events: none;
  z-index: 10;
}

header a, header button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.2s, transform 0.2s;
}

.brand:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.brand-logo {
  height: 84px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
  display: block;
}

.header-note {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #1F2530;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  -webkit-text-stroke: 0.25px #1F2530;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.contact-link {
  font-family: var(--font-sans);
  background: none;
  border: 0;
  border-bottom: 1.5px solid var(--primary);
  padding: 6px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--primary);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Hero Bölümü */
.hero {
  position: absolute;
  left: 10vw;
  top: 18%;
  color: #152238;
  pointer-events: none;
  transition: opacity 0.4s ease;
  max-width: min(440px, 32vw);
  z-index: 5;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #152238;
  text-transform: uppercase;
  opacity: 0.95;
}

h1 {
  font-family: var(--font-rounded);
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: #152238;
  -webkit-text-stroke: 0.2px #152238;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}

h1 em {
  font-family: var(--font-rounded);
  font-weight: 500;
  font-style: normal;
  font-size: 0.84em;
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: #152238;
  display: block;
  margin-top: 8px;
  opacity: 0.95;
}

.rule {
  width: 100%;
  height: 2px;
  background: #152238;
  margin-top: 18px;
  margin-bottom: 12px;
  border-radius: 1px;
  opacity: 0.85;
}

.author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: #152238;
  text-transform: uppercase;
  display: block;
  opacity: 0.95;
}

/* Hakkımızda Bölümü */
.about-section {
  position: absolute;
  right: 6.5vw;
  bottom: 14.5vh;
  width: min(42vw, 540px);
  max-width: calc(100vw - 32px);
  color: #152238;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.about-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #152238;
  text-transform: uppercase;
  display: block;
  opacity: 0.95;
}

.about-title {
  font-family: var(--font-rounded);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
  color: #152238;
  -webkit-text-stroke: 0.2px #152238;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}

.about-rule {
  width: 56px;
  height: 2px;
  background: #152238;
  margin: 14px 0 16px;
  border-radius: 1px;
  opacity: 0.85;
}

.about-text {
  font-family: var(--font-rounded);
  font-size: clamp(13px, 1.1vw, 15.5px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #152238;
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}

/* 62. Karede Beliren Sol Üst Metin Kutusu */
.statement-section {
  position: absolute;
  left: 10vw;
  top: 18%;
  width: min(34vw, 480px);
  max-width: calc(100vw - 32px);
  color: #152238;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.statement-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #152238;
  text-transform: uppercase;
  display: block;
  opacity: 0.95;
}

.statement-title {
  font-family: var(--font-rounded);
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 10px 0 0;
  color: #152238;
  -webkit-text-stroke: 0.2px #152238;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}

.statement-title em {
  font-family: var(--font-rounded);
  font-weight: 500;
  font-style: normal;
  font-size: 0.88em;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #152238;
  display: block;
  margin-top: 6px;
  opacity: 0.95;
}

.statement-rule {
  width: 100%;
  height: 2px;
  background: #152238;
  margin-top: 18px;
  margin-bottom: 14px;
  border-radius: 1px;
  opacity: 0.85;
}

.statement-text {
  font-family: var(--font-rounded);
  font-size: clamp(13px, 1.1vw, 15.5px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #152238;
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}

/* Kenar İpuçları (Edge Hints) */
.edge-hint {
  position: absolute;
  top: 54%;
  border: 0;
  background: none;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary);
  transition: opacity 0.25s, color 0.2s;
  writing-mode: vertical-rl;
  padding: 16px;
  z-index: 8;
}

.hint-left-top {
  top: 32%;
  left: 14px;
  transform: rotate(180deg);
}

.hint-left-bottom {
  top: 68%;
  left: 14px;
  transform: rotate(180deg);
}

.hint-right {
  right: 14px;
}

.edge-hint span {
  margin-top: 12px;
  color: var(--primary);
}

.hint-left-bottom span {
  margin-top: 0;
  margin-bottom: 12px;
}

.edge-hint:hover {
  color: var(--gold-dark);
}

/* Footer & Kaydırma İpuçları */
footer {
  position: absolute;
  bottom: 32px;
  left: 5vw;
  right: 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--primary);
  pointer-events: none;
  font-size: 12px;
  z-index: 10;
}

.footer-name {
  font-family: var(--font-rounded);
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #1F2530;
  -webkit-text-stroke: 0.25px #1F2530;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.scroll-text {
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.scroll-line {
  height: 36px;
  width: 2.5px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #1F2530, var(--gold));
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.counter {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.counter b {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary);
}

.progress-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(31, 61, 46, 0.15);
  z-index: 20;
}

#progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), #2a5840);
  transition: width 0.08s ease-out;
}

.scroll-space {
  height: 330vh;
  pointer-events: none;
}

/* Katlama (Fold) Efekti Sırasındaki Geçişler */
body.folding .reveal {
  pointer-events: auto;
}

body.folding .hero,
body.folding .about-section,
body.folding .statement-section,
body.folding .edge-hint {
  opacity: 0 !important;
  pointer-events: none;
}

body.folding header,
body.folding footer {
  opacity: 0.25;
}

/* Dialog / Modal (Lüks Editoryal Kağıt Görünümü) */
dialog {
  width: min(880px, calc(100% - 40px));
  max-height: 86dvh;
  border: 1px solid var(--border-gold);
  background: var(--bg-paper);
  color: var(--primary);
  padding: 70px;
  border-radius: 2px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

dialog::backdrop {
  background: rgba(14, 20, 14, 0.75);
  backdrop-filter: blur(12px);
}

.close {
  position: absolute;
  right: 30px;
  top: 26px;
  border: 0;
  background: none;
  font-size: 20px;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.close:hover {
  color: var(--gold-dark);
  transform: scale(1.1);
}

.modal-kicker {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--primary);
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-rounded);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 24px 0 36px;
  color: var(--primary);
}

.empty-note {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

.modal-bottom {
  font-family: var(--font-sans);
  border-top: 1px solid var(--border-dark);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--primary);
  opacity: 0.85;
}

/* Avukatlarımız Kart Listesi & Fotoğraflar */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.person-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.person-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.person-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(145deg, #18261e 0%, #0e1712 100%);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.person-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.person-card:hover .person-photo {
  transform: scale(1.03);
}

.person-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person-name {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--primary);
}

.person-role {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.person-bio {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

@media (min-width: 680px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* 9. Eleman (İdare Hukuku) tam ortada yer alsın */
  .practice-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

.practice-card {
  position: relative;
  min-height: 280px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #14281e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Ön Yüz: Tam Kaplayan Fotoğraf + Altta Başlık */
.practice-card-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.practice-card-front .practice-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.practice-front-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 24, 18, 0.95) 0%, rgba(14, 24, 18, 0.5) 45%, rgba(14, 24, 18, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  transition: background 0.3s ease;
}

.practice-front-title {
  font-family: var(--font-rounded);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f7f4ec;
  margin: 0 0 6px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.practice-front-hint {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

/* Arka Yüz: Hover olunca beliren metin kartı */
.practice-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1b2f24 0%, #122118 100%);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  overflow-y: auto;
}

.practice-back-title {
  font-family: var(--font-rounded);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gold-light);
  margin: 0 0 10px;
}

.practice-back-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 14px;
  border-radius: 1px;
}

.practice-back-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.65;
  color: #e3ded2;
  margin: 0;
}

/* Hover Etkileşimi */
.practice-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.practice-card:hover .practice-card-front {
  opacity: 0;
  transform: scale(1.05);
}

.practice-card:hover .practice-card-front .practice-card-img {
  transform: scale(1.08);
}

.practice-card:hover .practice-card-back {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-map-wrapper {
  margin: 12px 0 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  background: #0d1624;
}

.contact-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #1c2b3d 0%, #101a26 100%);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #f7f4ec;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s, box-shadow 0.25s, color 0.25s;
}

.contact-map-btn svg {
  color: var(--gold);
  transition: transform 0.25s ease;
}

.contact-map-btn:hover {
  background: linear-gradient(135deg, #243952 0%, #162537 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.contact-map-btn:hover svg {
  transform: translate(2px, -2px);
  color: var(--gold-light);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-item {
  display: block;
  font-family: var(--font-rounded);
  font-weight: 600;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s, transform 0.2s;
}

.contact-item.address-item {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

a.contact-item:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

/* Responsive / Mobil Düzenlemeleri */
@media (max-width: 700px) {
  header {
    top: 24px;
    left: 6vw;
    right: 6vw;
  }
  .brand-logo {
    height: 62px;
  }
  .header-note {
    display: none;
  }
  .hero {
    left: 8%;
    top: auto;
    bottom: 24%;
    max-width: 86%;
    text-shadow: 0 1px 18px rgba(255,255,255,0.7);
  }
  .about-section {
    right: 5vw;
    left: 5vw;
    bottom: 18%;
    width: auto;
    max-width: none;
  }
  .about-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .statement-section {
    left: 8%;
    right: 8%;
    top: auto;
    bottom: 24%;
    width: auto;
    max-width: 86%;
  }
  .statement-title {
    font-size: 34px;
  }
  .statement-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .statement-rule {
    display: none;
  }
  h1 {
    font-size: 46px;
    margin: 14px 0;
  }
  .eyebrow {
    font-size: 9.5px;
  }
  .rule {
    display: none;
  }
  .edge-hint {
    writing-mode: horizontal-tb;
    transform: none;
    top: auto;
    bottom: 100px;
    font-size: 10px;
    background: rgba(247, 244, 236, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 10px 18px;
    color: var(--primary);
  }
  .hint-left-top {
    left: 4vw;
    bottom: 145px;
  }
  .hint-left-bottom {
    left: 4vw;
    bottom: 95px;
  }
  .hint-right {
    right: 4vw;
    bottom: 120px;
  }
  .footer-name {
    display: none;
  }
  .scroll-cue {
    font-size: 9.5px;
    white-space: nowrap;
  }
  .counter {
    margin-left: auto;
  }
  .reveal {
    width: 44%;
    padding: 6vw;
  }
  .reveal strong {
    font-size: 26px;
  }
  .person-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }
  .person-photo-wrap {
    max-width: 220px;
    margin: 0 auto;
  }
  .person-name {
    font-size: 22px;
  }
  dialog {
    padding: 42px 22px;
  }
  .scroll-space {
    height: 260vh;
  }
  #backdrop, #film {
    object-position: 37% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
  .scroll-line {
    height: 16px;
  }
}
