@font-face {
  font-family: "TT Neoris Trial";
  src: url("assets/fonts/TTNeorisTrial-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TT Neoris Trial";
  src: url("assets/fonts/TTNeorisTrial-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "TT Neoris Trial";
  src: url("assets/fonts/TTNeorisTrial-DemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "TT Neoris Trial";
  src: url("assets/fonts/TTNeorisTrial-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Departure Mono";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2409-1@1.0/DepartureMono-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --surface: #f4f4f1;
  --surface-alt: #eeeeea;
  --surface-elevated: #ffffff;
  --ink: #262323;
  --ink-soft: #4e4b49;
  --ink-muted: #77736e;
  --ink-fade: #26232380;
  --border: rgba(38, 35, 35, .13);
  --border-soft: rgba(38, 35, 35, .08);
  --grid: rgba(38, 35, 35, .075);
  --blue: #506fd0;
  --hero-ink: #f8f8f4;
  --font-sans: "TT Neoris Trial", "Neoris", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "Departure Mono", "DepartureMono", "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  scroll-behavior: smooth;
  font-synthesis: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.5;
}

body.modal-open { overflow: hidden; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
.hidden { display: none !important; }
.content-width { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 9px 12px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .18s ease;
}.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}.header-inner {
  width: 100%;
  max-width: 1560px;
  min-height: 88px;
  margin: 0 auto;
  padding: 24px 34px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}.site-header.scrolled {
  background: rgba(244, 244, 241, .9);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px rgba(38, 35, 35, .05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}.brand-logo {
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease;
}.site-header.scrolled .brand-logo { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 14px; }.nav-shell {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 13px;
  background: rgba(18, 29, 34, .27);
  box-shadow: 0 3px 9px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}.site-header.scrolled .nav-shell {
  border-color: var(--border-soft);
  background: rgba(38, 35, 35, .035);
  box-shadow: none;
}.nav-shell a {
  padding: 5px 9px;
  border-radius: 7px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -.015em;
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}.nav-shell a:hover { background: rgba(255, 255, 255, .13); color: #fff; }
.site-header.scrolled .nav-shell a { color: var(--ink-soft); }
.site-header.scrolled .nav-shell a:hover { background: rgba(38, 35, 35, .07); color: var(--ink); }
.nav-divider { width: 1px; height: 16px; background: rgba(255, 255, 255, .26); }
.site-header.scrolled .nav-divider { background: var(--border); }
.header-actions { display: flex; align-items: center; gap: 9px; }

/* Buttons use a subtle top highlight and a lower edge so both themes feel raised. */
.button {
  position: relative;
  min-height: 43px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }.button-light {
  border-color: rgba(32, 32, 32, .1);
  background: #f5f5f2;
  color: #171717;
  box-shadow: 0 2px 3px rgba(0, 0, 0, .06), inset 0 0 .357px 1.5px rgba(255, 255, 255, .35), inset 0 2px 0 #fff;
}.button-light:hover {
  background: #fafaf7;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .08), inset 0 0 .357px 1.5px rgba(255, 255, 255, .4), inset 0 2px 0 #fff;
}.button-header {
  border-color: #383838;
  background: linear-gradient(rgba(32, 32, 32, .1) 0%, rgba(32, 32, 32, .1) 100%),
              linear-gradient(#4f4f4f 0%, rgba(32, 32, 32, .85) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(64, 64, 64, .12),
              inset 0 2px 0 rgba(255, 255, 255, .24),
              inset 0 -.5px 2px rgba(0, 0, 0, .25),
              0 2px 8px rgba(0, 0, 0, .03);
}.button-header:hover {
  background: linear-gradient(rgba(32, 32, 32, .04) 0%, rgba(32, 32, 32, .04) 100%),
              linear-gradient(#5a5a5a 0%, rgba(32, 32, 32, .88) 100%);
  box-shadow: 0 0 0 1px rgba(64, 64, 64, .18),
              inset 0 2px 0 rgba(255, 255, 255, .28),
              inset 0 -.5px 2px rgba(0, 0, 0, .25),
              0 4px 12px rgba(0, 0, 0, .06);
}.button-glass {
  border-color: rgba(255, 255, 255, .32);
  background: linear-gradient(180deg, rgba(47, 101, 173, .82), rgba(30, 76, 146, .82));
  color: #fff;
  box-shadow: 0 2px 0 rgba(8, 35, 82, .6), 0 7px 15px rgba(8, 35, 82, .2), inset 0 1px 0 rgba(255, 255, 255, .3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}.button-glass:hover { background: linear-gradient(180deg, rgba(62, 119, 194, .9), rgba(35, 86, 161, .9)); }
.button-dark-outline { border-color: rgba(38, 35, 35, .24); background: rgba(255, 255, 255, .4); color: var(--ink); box-shadow: 0 2px 0 rgba(38, 35, 35, .13), 0 4px 10px rgba(38, 35, 35, .08), inset 0 1px 0 #fff; }
.button-dark-outline:hover { background: var(--ink); color: #fff; box-shadow: 0 2px 0 #111, 0 8px 14px rgba(38, 35, 35, .2), inset 0 1px 0 rgba(255, 255, 255, .28); }.mobile-menu-button { display: none; width: 43px; height: 43px; padding: 10px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 11px; background: rgba(18, 29, 34, .26); box-shadow: 0 2px 0 rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .18); }
.mobile-menu-button span { display: block; height: 1px; margin: 4px 0; background: #fff; transition: background .2s ease; }
.site-header.scrolled .mobile-menu-button { border-color: var(--border); background: rgba(38, 35, 35, .04); box-shadow: 0 2px 0 rgba(38, 35, 35, .1), inset 0 1px 0 #fff; }
.site-header.scrolled .mobile-menu-button span { background: var(--ink); }
.mobile-dropdown { position: absolute; top: calc(100% - 7px); left: 16px; right: 16px; padding: 10px; border: 1px solid var(--border); border-radius: 14px; background: rgba(244, 244, 241, .97); box-shadow: 0 12px 26px rgba(38, 35, 35, .16); backdrop-filter: blur(18px); }
.mobile-dropdown a { display: block; padding: 11px 12px; border-radius: 8px; color: var(--ink); font-size: 15px; text-decoration: none; }
.mobile-dropdown a:hover { background: var(--surface-alt); }

/* Hero */
.hero-section { position: relative; min-height: max(760px, 100svh); overflow: hidden; background: #091321; color: var(--hero-ink); }
.hero-art, .hero-art img, .hero-art-overlay { position: absolute; inset: 0; }
.hero-art { overflow: hidden; }
.hero-art img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; image-rendering: pixelated; }
.hero-art-overlay { background: linear-gradient(90deg, rgba(8, 22, 39, .29) 0%, rgba(8, 22, 39, .07) 54%, rgba(8, 22, 39, .16) 100%), linear-gradient(0deg, rgba(6, 16, 28, .46), transparent 28%); pointer-events: none; }
.pixel-light, .pixel-scan { display: none; }.hero-inner { position: relative; z-index: 2; width: min(1560px, 100%); min-height: max(760px, 100svh); margin: 0 auto; padding: 130px 34px 300px; display: flex; align-items: center; justify-content: flex-start; gap: 80px; }
.hero-copy { max-width: 920px; }
.hero-copy h1 { max-width: 920px; margin: 0 0 clamp(34px, 3.4vw, 50px); font-size: clamp(54px, 7vw, 104px); font-weight: 400; letter-spacing: -.012em; line-height: 1.08; }
.text-soft-light { color: rgba(247, 247, 242, .52); }
.text-soft { color: var(--ink-fade); }
.text-soft-on-dark { color: rgba(255, 255, 255, .52); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-scroll-cue { position: absolute; z-index: 3; bottom: 27px; left: 34px; display: inline-flex; align-items: center; gap: 11px; color: rgba(247, 247, 242, .67); font-family: var(--font-mono); font-size: 9px; letter-spacing: .17em; text-decoration: none; }
.scroll-line { width: 42px; height: 1px; background: rgba(247, 247, 242, .5); transform-origin: left; animation: scroll-line 1.7s steps(5, end) infinite; }

/* Shared editorial sections */
.section-surface, .section-alt, .site-footer { background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 42px 42px; }
.section-surface { background-color: var(--surface); }.section-alt { background-color: var(--surface-alt); }
.collection-section { padding: 132px 0 140px; border-top: 1px solid var(--border-soft); }
.section-heading-row { margin-bottom: 46px; display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; }
.eyebrow { margin: 0 0 17px; color: var(--ink-fade); font-family: var(--font-mono); font-size: 11px; font-weight: 400; letter-spacing: .11em; line-height: 1.35; }
.section-heading-row h2, .small-case-inner h2 { max-width: 680px; margin: 0 0 15px; font-size: clamp(37px, 4vw, 56px); font-weight: 400; letter-spacing: -.012em; line-height: 1.08; }
.section-copy { max-width: 540px; margin: 0; color: var(--ink-muted); font-size: 17px; letter-spacing: -.02em; line-height: 1.45; }

/* Folder-style video cards */
.rail-wrap { position: relative; margin: 0 -2px; }
.rail { display: flex; gap: 22px; overflow-x: auto; overflow-y: hidden; margin-top: -52px; padding: 70px 4px 28px; scrollbar-width: none; cursor: grab; }
.rail::-webkit-scrollbar { display: none; }.rail.rail-dragging { cursor: grabbing; }
.rail .media-card { flex: 0 0 calc((100% - 66px) / 4); }
.media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 22px; }.media-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-card { --card-lift: -58px; position: relative; min-width: 0; padding-top: 14px; display: block; border: 0; border-radius: 16px; background: transparent; color: var(--ink); outline: none; cursor: pointer; isolation: isolate; }
.media-card::before { content: ""; position: absolute; z-index: 1; top: 0; left: 18px; width: 84px; height: 15px; border: 1px solid #e3e3db; border-bottom: 0; border-radius: 8px 8px 0 0; background: #ededE6; }
.media-card-frame { position: relative; z-index: 2; min-width: 0; padding: 12px; border: 1px solid #e4e4dc; border-radius: 16px; background: rgba(255, 255, 255, .5); box-shadow: 0 1px 2px rgba(40, 40, 30, .05); }
.media-card-inner { position: relative; z-index: 1; min-width: 0; padding: 14px 14px 16px; display: flex; flex-direction: column; border: 1px solid #eaeae2; border-radius: 12px; background: #fbfbf8; box-shadow: 0 8px 22px rgba(40, 40, 30, .07); transition: transform .32s cubic-bezier(.2, .75, .2, 1), box-shadow .32s ease; }
.media-card-blur { position: absolute; left: -1px; right: -1px; bottom: -1px; z-index: 3; height: 112px; border: 1px solid #e4e4dc; border-radius: 15px; background: linear-gradient(180deg, rgba(244, 244, 240, .5), rgba(244, 244, 240, .94)); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); pointer-events: none; }
.media-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }.media-card:hover, .media-card:focus-visible { z-index: 5; }.media-card:hover .media-card-inner, .media-card:focus-visible .media-card-inner { transform: translateY(var(--card-lift)); box-shadow: 0 20px 36px rgba(40, 40, 30, .14); }
.media-card-inner > * { position: relative; z-index: 1; }
.media-meta { order: -1; min-height: 85px; padding: 0 1px 14px; display: flex; flex-direction: column; border-bottom: 1px solid rgba(38, 35, 35, .11); }
.media-meta span { display: block; margin: 0 0 8px; color: var(--ink-fade); font-family: var(--font-mono); font-size: 10px; letter-spacing: .09em; line-height: 1.1; }.media-meta h3 { margin: 0; font-size: 18px; font-weight: 400; letter-spacing: -.015em; line-height: 1.13; }.rail-title { min-height: 41px; }
.media-card-caption { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #a6a69c; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .01em; }
.media-thumb { position: relative; z-index: 2; margin-top: 14px; overflow: hidden; aspect-ratio: 9 / 14; border: 1px solid rgba(38, 35, 35, .13); border-radius: 8px; background: #171717; box-shadow: none; }.media-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.media-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 43%); pointer-events: none; }
.media-play, 
.media-card:hover .media-play, .media-card:focus-visible .media-play { opacity: 1; }.media-badge { position: absolute; z-index: 3; top: 9px; right: 9px; padding: 4px 6px; border: 1px solid rgba(255, 255, 255, .28); border-radius: 5px; background: rgba(38, 35, 35, .62); color: #fff; font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; }.rail-nav { position: absolute; top: calc(50% - 23px); z-index: 4; width: 38px; height: 38px; display: none; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 50%; background: #fff; color: var(--ink); font-size: 17px; box-shadow: 0 5px 12px rgba(38, 35, 35, .15); transition: opacity .15s ease, transform .15s ease; }
.rail-nav:hover { transform: scale(1.06); }.rail-nav[disabled] { opacity: 0; pointer-events: none; }.rail-prev { left: -18px; }.rail-next { right: -18px; }

/* Compact 3D work */
.small-case-section { padding: 114px 0 126px; border-top: 1px solid var(--border-soft); }.small-case-inner { display: flex; align-items: center; justify-content: space-between; gap: 80px; }.small-case-inner > *:first-child { flex: 1 1 460px; max-width: 610px; }.small-case-inner h2 { margin-bottom: 17px; }
.small-case-meta { flex: 0 1 430px; min-width: 300px; display: flex; flex-direction: column; gap: 11px; color: var(--ink-fade); font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; }.small-case-meta a { width: fit-content; margin-top: 6px; color: var(--ink); font-family: var(--font-sans); font-size: 15px; letter-spacing: -.02em; text-decoration: none; }.small-case-meta a:hover { text-decoration: underline; }
.small-case-thumb { position: relative; width: 100%; aspect-ratio: 16 / 9; margin-bottom: 4px; overflow: hidden; border: 1px solid rgba(38, 35, 35, .13); border-radius: 15px; background: #171717; box-shadow: 0 7px 14px rgba(38, 35, 35, .12), inset 0 1px 0 rgba(255, 255, 255, .35); cursor: pointer; padding: 0; transition: transform .25s ease, box-shadow .25s ease; }
.small-case-thumb:hover { transform: translateY(-6px); box-shadow: 0 16px 25px rgba(38, 35, 35, .22); }.small-case-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }.small-case-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 45%); pointer-events: none; }.small-case-thumb .media-play { opacity: 1; }

/* Contact and footer */
.contact-section { position: relative; min-height: 560px; padding: 150px 0 160px; overflow: hidden; background-color: var(--blue); background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px); background-size: 42px 42px; color: #fff; }
.contact-art, .contact-art img, .contact-art-overlay { position: absolute; inset: 0; }
.contact-art { overflow: hidden; }
.contact-art img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; image-rendering: pixelated; }
.contact-art-overlay { background: linear-gradient(90deg, rgba(8, 22, 39, .82) 0%, rgba(8, 22, 39, .72) 42%, rgba(8, 22, 39, .3) 76%, rgba(8, 22, 39, .4) 100%), linear-gradient(0deg, rgba(6, 16, 28, .45), transparent 32%); pointer-events: none; }
.contact-inner { position: relative; z-index: 1; }.contact-section .eyebrow { color: rgba(255, 255, 255, .66); }.contact-section h2 { max-width: 650px; margin: 0 0 20px; font-size: clamp(44px, 5vw, 68px); font-weight: 400; letter-spacing: -.012em; line-height: 1.08; }.contact-section p:not(.eyebrow) { max-width: 520px; margin: 0 0 29px; color: rgba(255, 255, 255, .8); font-size: 17px; letter-spacing: -.02em; }.contact-section .button-light { background: linear-gradient(180deg, #fff 0%, #f1f1ed 100%); }
.site-footer { padding: 25px 0; color: var(--ink-muted); font-family: var(--font-mono); font-size: 10px; }.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }.footer-inner > span:first-child { color: var(--ink); font-family: var(--font-sans); font-size: 17px; font-weight: 450; letter-spacing: -.015em; }.footer-inner a { text-decoration: none; }.footer-inner a:hover { color: var(--ink); }

/* Video modal */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; padding: 24px; display: grid; place-items: center; background: rgba(8, 12, 15, .73); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }.modal-container { position: relative; width: min(850px, 100%); max-height: calc(100svh - 48px); overflow: hidden; border: 1px solid rgba(255, 255, 255, .22); border-radius: 15px; background: #000; box-shadow: 0 24px 70px rgba(0, 0, 0, .35); }.modal-close-btn { position: absolute; top: 12px; right: 12px; z-index: 5; width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; background: rgba(8, 12, 15, .55); color: #fff; font-size: 20px; font-weight: 300; line-height: 1; transition: background .15s ease, transform .15s ease; }.modal-close-btn:hover { background: rgba(8, 12, 15, .8); transform: scale(1.05); }.modal-body { background: #000; }.modal-player, .modal-iframe { width: 100%; min-height: 420px; max-height: calc(100svh - 48px); display: block; border: 0; background: #000; }.modal-player { height: auto; }.modal-iframe { height: min(80svh, 780px); }.modal-container.modal-vertical { width: min(430px, 100%, calc((100svh - 60px) * 9 / 16)); }.modal-vertical .modal-iframe { width: 100%; height: auto; aspect-ratio: 9 / 16; min-height: 0; max-height: none; }

@keyframes scroll-line { 0%, 100% { transform: scaleX(.6); opacity: .45; } 50% { transform: scaleX(1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; } }
@media (min-width: 860px) { .rail-nav { display: flex; } }

@media (max-width: 1100px) {
  .header-inner, .hero-inner { padding-inline: 24px; }.hero-inner { gap: 42px; }.rail .media-card { flex-basis: calc((100% - 44px) / 3); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }.mobile-menu-button { display: block; }.header-inner { min-height: 76px; padding-top: 18px; padding-bottom: 17px; }.hero-section, .hero-inner { min-height: 760px; }.hero-inner { padding-top: 145px; flex-direction: column; justify-content: flex-start; gap: 0; }.hero-copy { padding-top: 30px; }.hero-art img { object-position: 58% center; }.hero-art-overlay { background: linear-gradient(180deg, rgba(6, 16, 28, .5) 0%, rgba(6, 16, 28, .52) 34%, rgba(6, 16, 28, .3) 52%, rgba(6, 16, 28, .1) 68%, rgba(6, 16, 28, .42) 100%); }.section-heading-row { align-items: flex-start; }.small-case-inner { align-items: flex-start; flex-direction: column; gap: 46px; }.small-case-inner > *:first-child { flex: 0 0 auto; max-width: 680px; }.small-case-meta { width: min(100%, 560px); max-width: none; }.rail .media-card { flex-basis: calc((100% - 22px) / 2); }
}

@media (max-width: 620px) {
  .content-width { width: min(100% - 32px, 520px); }.header-inner { padding-inline: 16px; }.brand-logo { font-size: 21px; }.header-actions { gap: 7px; }.button-header { min-height: 40px; padding-inline: 12px; font-size: 14px; }.mobile-dropdown { left: 16px; right: 16px; }.hero-inner { padding: 126px 16px 72px; }.hero-copy { padding-top: 25px; }.hero-copy h1 { font-size: 52px; line-height: 1.08; }.hero-actions { gap: 8px; }.hero-actions .button { min-height: 41px; padding-inline: 12px; font-size: 14px; }.hero-scroll-cue { bottom: 18px; left: 16px; }.collection-section { padding: 94px 0 100px; }.section-heading-row { display: block; margin-bottom: 32px; }.section-heading-row h2, .small-case-inner h2 { font-size: 37px; }.section-copy { font-size: 15px; }.section-heading-row .button { margin-top: 24px; }.eyebrow { font-size: 10px; }.rail-wrap { margin-inline: -4px; }.rail { gap: 13px; margin-top: -42px; padding-top: 58px; padding-inline: 4px; padding-bottom: 28px; }.rail .media-card { flex-basis: calc((100% - 13px) / 2); }.media-grid, .media-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px 13px; }.media-card { --card-lift: -42px; border-radius: 13px; }.media-card::before { top: 0; left: 18px; width: 70px; height: 16px; }.media-card-frame { padding: 9px; border-radius: 13px; }.media-card-inner { padding: 13px 11px 12px; border-radius: 10px; }.media-card-blur { height: 84px; border-radius: 13px; }.media-meta { min-height: 70px; padding-bottom: 10px; }.media-meta span { font-size: 8px; margin-bottom: 6px; }.media-meta h3 { font-size: 14px; }.rail-title { min-height: 34px; }.media-thumb { margin-top: 11px; border-radius: 9px; }.media-card-caption { margin-top: 10px; font-size: 8px; }.media-play { width: 35px; height: 35px; font-size: 10px; }.media-badge { top: 7px; right: 7px; font-size: 8px; }.small-case-section { padding: 78px 0 90px; }.small-case-inner { gap: 34px; }.small-case-meta { min-width: 0; font-size: 9px; }.contact-section { min-height: 390px; padding: 94px 0 110px; }.contact-section h2 { font-size: 46px; }.contact-section p:not(.eyebrow) { font-size: 15px; }.site-footer { padding: 20px 0; }.footer-inner { align-items: flex-start; flex-direction: column; gap: 8px; }.modal-backdrop { padding: 12px; }.modal-container { max-height: calc(100svh - 24px); }.modal-player { min-height: 240px; max-height: calc(100svh - 24px); }.modal-iframe { height: 68svh; min-height: 340px; }.modal-close-btn { top: 8px; right: 8px; }
}

@media (max-width: 420px) {
  .button-header { padding-inline: 10px; font-size: 13px; }.hero-copy h1 { font-size: 44px; }.hero-actions .button { padding-inline: 10px; }.media-meta h3 { font-size: 12px; }
}

/* Mobil: dokunma hedefleri en az 44px (Apple HIG) + güvenli alan payı */
@media (max-width: 900px) {
  .button, .button-header, .hero-actions .button, .mobile-menu-button { min-height: 44px; }
  .mobile-menu-button { min-width: 44px; }
  .hero-scroll-cue { padding: 15px 0; }
  .skip-link { min-height: 44px; display: inline-flex; align-items: center; }
  .brand-logo { padding: 11px 0; }
  .footer-inner a, .small-case-meta a { display: inline-block; padding: 11px 0; }
  .modal-close-btn { top: 10px; right: 10px; width: 44px; height: 44px; font-size: 23px; }
  .modal-backdrop { padding: 14px; }
  .site-footer { padding-bottom: max(25px, env(safe-area-inset-bottom)); }
}

/* ==========================================================================
   Mobil düzen — hero ortalı, header sadeleşmiş
   ========================================================================== */
@media (max-width: 900px) {
  /* İletişim'e hamburger menüden ulaşılıyor, header'daki buton fazlalık */
  .header-actions .button-header { display: none; }

  /* Hero metni ve butonları ortala */
  .hero-inner { align-items: center; }
  .hero-copy { width: 100%; text-align: center; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-actions { justify-content: center; }
}

/* ==========================================================================
   Kaydırma ipucu — şeridin kaydırılabildiği anlaşılsın
   ========================================================================== */
/* Kenar solması: yalnızca o yönde kaydırılacak içerik varken görünür (JS sınıfı) */
.rail-wrap::before, .rail-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 4; width: 46px;
  opacity: 0; transition: opacity .22s ease; pointer-events: none;
}
.rail-wrap::before { left: 0; background: linear-gradient(90deg, var(--rail-fade, var(--surface)), transparent); }
.rail-wrap::after { right: 0; background: linear-gradient(270deg, var(--rail-fade, var(--surface)), transparent); }
.rail-wrap.can-left::before, .rail-wrap.can-right::after { opacity: 1; }
.section-alt .rail-wrap { --rail-fade: var(--surface-alt); }

/* "KAYDIR" ipucu — ok tuşları 860px altında gizli olduğu için orada şart */
.rail-hint {
  position: relative; z-index: 5; padding-left: 4px;
  display: none; align-items: center; gap: 9px; margin-top: 10px;
  color: var(--ink-fade); font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em;
}
.rail-hint i { display: block; width: 28px; height: 1px; background: currentColor;
  transform-origin: left; animation: rail-hint 1.8s ease-in-out infinite; }
@keyframes rail-hint { 0%, 100% { transform: scaleX(.45); opacity: .45; } 50% { transform: scaleX(1); opacity: 1; } }
@media (max-width: 859px) { .rail-wrap.is-scrollable .rail-hint { display: flex; } }

/* Ok tuşlarının kaybolduğu 860px altında grid'ler de kaydırmalı şeride dönüşür —
   böylece "860 altı = kaydır, üstü = grid/ok" olarak tek bir sistem oluyor. */
@media (max-width: 859px) {
  .rail-wrap .media-grid, .rail-wrap .media-grid-three {
    display: flex; gap: 18px; overflow-x: auto; overflow-y: hidden;
    padding-inline: 4px; scroll-padding-inline: 4px; scrollbar-width: none; scroll-snap-type: x proximity;
  }
  .rail-wrap .media-grid::-webkit-scrollbar { display: none; }
  /* Yarım kalan sonraki kart "devamı var"ı anlatır */
  .rail-wrap .media-grid > .media-card { flex: 0 0 42%; scroll-snap-align: start; }
  .rail { scroll-snap-type: x proximity; scroll-padding-inline: 4px; }
  .rail > .media-card { scroll-snap-align: start; }
}
@media (max-width: 620px) {
  .rail-wrap .media-grid, .rail-wrap .media-grid-three { gap: 13px; }
  .rail-wrap .media-grid > .media-card { flex: 0 0 74%; }
}
