:root {
  --bg: #080808;
  --bg-soft: #11100f;
  --surface: #151311;
  --text: #f2eee6;
  --muted: #a9a39a;
  --line: rgba(255,255,255,.14);
  --accent: #ff5c35;
  --accent-two: #8c7cff;
  --warm: #dfbd7d;
  --max: 1440px;
  --pad: clamp(22px, 4vw, 68px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.grain {
  position: fixed;
  inset: -100%;
  z-index: 1000;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain 1.2s steps(2) infinite;
}
@keyframes grain { 0%{transform:translate(0,0)}25%{transform:translate(2%,-1%)}50%{transform:translate(-1%,2%)}75%{transform:translate(1%,1%)}100%{transform:translate(0,0)} }

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,53,.10), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

.section-pad { padding-left: var(--pad); padding-right: var(--pad); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 16px var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, min-height .3s ease;
}
.site-header.scrolled {
  min-height: 72px;
  background: rgba(8,8,8,.84);
  backdrop-filter: blur(20px);
  border-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; }
.brand-symbol {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: inset 0 0 18px rgba(140,124,255,.12);
}
.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  inset: 9px 5px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
}
.brand-symbol::after {
  inset: 16px;
  border: 0;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent), 0 0 30px rgba(140,124,255,.5);
}
.brand-symbol i {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 1px;
  height: 48px;
  background: linear-gradient(transparent, rgba(255,255,255,.72), transparent);
  transform: translateX(-50%);
}
.brand-name { font-size: 11px; line-height: .92; letter-spacing: .17em; font-weight: 800; }
.desktop-nav { display: flex; gap: 36px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.desktop-nav a { color: var(--muted); transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  display: inline-flex;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #666;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.lang-toggle span.active { color: var(--text); }
.mini-cta { padding: 11px 16px; border: 1px solid var(--line); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; transition: .25s ease; }
.mini-cta:hover { background: var(--text); color: var(--bg); }
.menu-toggle { display: none; width: 38px; height: 38px; border: 0; background: transparent; position: relative; cursor: pointer; }
.menu-toggle span { position: absolute; left: 8px; right: 8px; height: 1px; background: currentColor; transition: .25s ease; }
.menu-toggle span:first-child { top: 15px; }
.menu-toggle span:last-child { top: 23px; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr);
  grid-template-rows: 1fr auto;
  gap: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8,8,8,1) 0%, rgba(8,8,8,.92) 45%, rgba(8,8,8,.20) 100%),
    radial-gradient(circle at 72% 45%, rgba(140,124,255,.12), transparent 28%),
    radial-gradient(circle at 76% 62%, rgba(255,92,53,.18), transparent 34%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent 5%, #000 55%, transparent 100%);
  pointer-events: none;
}
.hero-copy { align-self: center; max-width: 900px; padding-top: 20px; }
.eyebrow, .section-index { margin: 0 0 24px; font-size: 11px; letter-spacing: .2em; font-weight: 800; color: var(--warm); }
.hero h1 { margin: 0; font-size: clamp(52px, 7.2vw, 126px); line-height: .83; letter-spacing: -.065em; font-weight: 800; }
.hero h1 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; color: var(--accent); }
.hero-text { max-width: 720px; margin: 36px 0 0; font-size: clamp(16px, 1.3vw, 21px); color: #c7c1b8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button { min-height: 52px; padding: 0 20px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; gap: 34px; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; cursor: pointer; transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--text); color: #0a0a0a; border-color: var(--text); }
.button-primary:hover { background: var(--accent); color: white; border-color: var(--accent); }
.button-ghost { background: transparent; color: var(--text); }
.button-ghost:hover { background: rgba(255,255,255,.06); }
.play-icon { font-size: 9px; }
.hero-visual { position: relative; min-height: 560px; align-self: stretch; }
.portal { position: absolute; width: min(46vw, 650px); aspect-ratio: 1; right: -6%; top: 48%; transform: translateY(-50%); }
.portal-ring { position: absolute; inset: 10%; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: inset 0 0 60px rgba(140,124,255,.12), 0 0 80px rgba(255,92,53,.12); }
.ring-one { animation: spin 24s linear infinite; border-style: dashed; }
.ring-one::before, .ring-one::after { content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 32px var(--accent); }
.ring-one::before { top: 9%; left: 18%; }
.ring-one::after { bottom: 12%; right: 13%; background: var(--accent-two); box-shadow: 0 0 32px var(--accent-two); }
.ring-two { inset: 21%; animation: spinReverse 17s linear infinite; border-color: rgba(223,189,125,.25); }
.ring-two::before { content: ""; position: absolute; inset: 8%; border-radius: 50%; border: 12px solid transparent; border-top-color: rgba(255,92,53,.35); border-right-color: rgba(140,124,255,.28); filter: blur(4px); }
.portal-core { position: absolute; inset: 32%; border-radius: 50%; background: radial-gradient(circle at 38% 38%, #fff 0 2%, #f3be86 5%, #ff5c35 19%, #2a0a08 48%, #030303 74%); box-shadow: 0 0 75px rgba(255,92,53,.48), 0 0 180px rgba(140,124,255,.22); animation: pulse 4s ease-in-out infinite; }
.portal-flare { position: absolute; left: 5%; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), rgba(255,92,53,.7), #fff, rgba(140,124,255,.6), transparent); box-shadow: 0 0 20px rgba(255,92,53,.7); transform: rotate(-8deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }
@keyframes pulse { 50% { transform: scale(1.08); filter: saturate(1.25); } }
.floating-card { position: absolute; display: flex; flex-direction: column; padding: 13px 15px; min-width: 104px; border: 1px solid rgba(255,255,255,.18); background: rgba(11,11,11,.58); backdrop-filter: blur(12px); box-shadow: 0 18px 60px rgba(0,0,0,.24); }
.floating-card span { color: var(--accent); font-family: Georgia, serif; font-style: italic; font-size: 12px; }
.floating-card strong { margin-top: 20px; font-size: 10px; letter-spacing: .16em; }
.card-one { left: 11%; top: 23%; transform: rotate(-4deg); }
.card-two { right: 3%; top: 27%; transform: rotate(3deg); }
.card-three { left: 25%; bottom: 16%; transform: rotate(2deg); }
.vertical-note { position: absolute; right: 0; bottom: 10%; writing-mode: vertical-rl; transform: rotate(180deg); font-size: 9px; letter-spacing: .2em; color: #777; }
.hero-footer { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: end; border-top: 1px solid var(--line); padding-top: 18px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #7f7a73; }
.hero-footer a { display: inline-flex; gap: 14px; color: var(--text); }

.manifesto { position: relative; z-index: 1; padding-top: 130px; padding-bottom: 150px; border-top: 1px solid var(--line); background: var(--bg); }
.manifesto-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 9vw; align-items: start; }
.manifesto h2 { max-width: 1000px; margin: 0; font-size: clamp(44px, 6vw, 100px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.manifesto-copy { padding-top: 12px; font-size: 17px; color: var(--muted); }
.manifesto-copy p { margin: 0 0 24px; }

.work { position: relative; z-index: 1; padding-top: 120px; padding-bottom: 150px; background: #ece8df; color: #121212; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-head h2 { margin: 0; font-size: clamp(44px, 5.5vw, 92px); line-height: .95; letter-spacing: -.05em; font-weight: 600; }
.section-head > p { max-width: 450px; margin: 0 0 5px; color: #57534e; }
.work .section-index { color: #7c4b31; }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px 24px; align-items: start; }
.project-card { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.project-large { grid-row: span 2; }
.project-wide { grid-column: 1 / -1; }
.project-media { position: relative; min-height: 340px; overflow: hidden; background: #1a1715; isolation: isolate; }
.project-large .project-media { min-height: 748px; }
.project-wide .project-media { min-height: 500px; }
.project-media::before { content: ""; position: absolute; inset: 0; z-index: -2; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .6s ease; }
.project-media::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.75)); }
.project-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-media::before, .project-card:hover .project-media img { transform: scale(1.035); }
.media-ghost::before { background: radial-gradient(circle at 40% 32%, rgba(255,92,53,.85), transparent 15%), linear-gradient(135deg, #121212 10%, #37203e 45%, #ff5c35 130%); }
.media-history::before { background: radial-gradient(circle at 70% 25%, #f8d58c, transparent 12%), linear-gradient(155deg, #44362d 0%, #9d6840 52%, #211713 100%); }
.media-brand::before { background: linear-gradient(135deg, #9e89ff 0%, #352b83 38%, #10101d 100%); }
.media-concept::before { background: radial-gradient(circle at 77% 50%, rgba(255,255,255,.85), transparent 2%), radial-gradient(circle at 77% 50%, rgba(140,124,255,.7), transparent 16%), linear-gradient(90deg, #0c0c0c, #271b28 55%, #753b2d 100%); }
.media-title { position: absolute; left: 7%; bottom: 6%; z-index: 2; color: white; font-weight: 900; font-size: clamp(54px, 7vw, 110px); line-height: .78; letter-spacing: -.08em; mix-blend-mode: screen; }
.media-title.small { max-width: 88%; font-size: clamp(30px, 3.2vw, 54px); line-height: .82; }
.media-title.horizontal { left: 5%; bottom: 12%; font-size: clamp(52px, 6.8vw, 102px); }
.project-number { position: absolute; top: 20px; left: 22px; z-index: 3; color: #fff; font-size: 11px; letter-spacing: .16em; }
.project-open { position: absolute; top: 18px; right: 18px; z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(0,0,0,.15); color: white; cursor: pointer; transition: .25s ease; }
.project-card:hover .project-open { background: white; color: black; transform: rotate(45deg); }
.project-meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 15px; }
.project-meta h3 { margin: 0; font-size: 21px; letter-spacing: -.02em; }
.project-meta p { margin: 4px 0 0; color: #6c665f; font-size: 13px; }
.project-meta > span { padding-top: 5px; font-size: 9px; letter-spacing: .14em; color: #7b746d; text-align: right; }

.services { position: relative; z-index: 1; padding-top: 130px; padding-bottom: 140px; background: var(--bg); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px minmax(260px, .9fr) minmax(280px, 1.1fr) 40px; gap: 25px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.service-row:hover { padding-left: 12px; padding-right: 12px; background: rgba(255,255,255,.035); }
.service-no { font-family: Georgia, serif; font-style: italic; color: var(--accent); }
.service-row h3 { margin: 0; font-size: clamp(24px, 3vw, 43px); font-weight: 500; letter-spacing: -.035em; }
.service-row p { margin: 0; color: var(--muted); }
.service-arrow { justify-self: end; font-size: 24px; color: #777; }

.process { position: relative; z-index: 1; padding-top: 130px; padding-bottom: 150px; background: #16120f; }
.process-intro { display: grid; grid-template-columns: 1fr 2.2fr 1fr; gap: 50px; align-items: end; margin-bottom: 80px; }
.process-intro .section-index { align-self: start; }
.process-intro h2 { margin: 0; font-size: clamp(46px, 6.2vw, 104px); line-height: .88; letter-spacing: -.06em; font-weight: 600; }
.process-intro > p:last-child { margin: 0 0 8px; color: var(--muted); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { min-height: 310px; padding: 28px 28px 28px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 28px; }
.step:last-child { border-right: 0; }
.step span { display: block; margin-bottom: 90px; color: var(--accent); font-family: Georgia, serif; font-style: italic; }
.step h3 { margin: 0 0 16px; font-size: 24px; font-weight: 500; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.about { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 150px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: center; background: #ece8df; color: #121212; }
.about-visual { position: relative; }
.portrait-placeholder { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: linear-gradient(155deg, #292220, #9d5d40 58%, #e3c18b); }
.portrait-placeholder::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 52% 38%, rgba(255,255,255,.2), transparent 23%), linear-gradient(0deg, rgba(0,0,0,.3), transparent 55%); }
.portrait-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder span { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: clamp(100px, 14vw, 230px); line-height: 1; font-weight: 900; letter-spacing: -.12em; color: rgba(255,255,255,.12); }
.about-visual > p { margin: 14px 0 0; font-size: 9px; letter-spacing: .17em; color: #625d57; }
.about-copy .section-index { color: #7c4b31; }
.about-copy h2 { margin: 0 0 18px; font-size: clamp(54px, 7.4vw, 124px); line-height: .9; letter-spacing: -.06em; }
.about-lead { font-family: Georgia, serif; font-style: italic; font-size: clamp(22px, 2.2vw, 34px); color: #7c4b31; }
.about-copy > p:not(.section-index):not(.about-lead) { max-width: 720px; font-size: 17px; color: #4e4944; }
.text-link { display: inline-flex; align-items: center; gap: 30px; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }

.contact { position: relative; z-index: 1; padding-top: 140px; padding-bottom: 150px; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; background: var(--accent); color: #fff; }
.contact .section-index { color: rgba(255,255,255,.68); }
.contact h2 { max-width: 850px; margin: 0; font-size: clamp(50px, 6vw, 100px); line-height: .9; letter-spacing: -.06em; }
.contact-copy > p:not(.section-index) { max-width: 650px; margin-top: 30px; font-size: 17px; color: rgba(255,255,255,.82); }
.contact-email { display: inline-flex; gap: 30px; margin-top: 42px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.65); font-size: clamp(18px, 2vw, 28px); }
.contact-form { align-self: start; display: grid; gap: 22px; padding: 38px; background: rgba(10,10,10,.94); color: var(--text); }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: #aaa39a; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: var(--text); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.23); border-radius: 0; outline: 0; padding: 10px 0 12px; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form select { color-scheme: dark; }
.contact-form textarea { resize: vertical; }
.form-submit { justify-content: space-between; width: 100%; margin-top: 10px; }
.form-note { margin: -8px 0 0; font-size: 11px; color: #777; }

.site-footer { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 30px; background: var(--bg); }
.footer-brand { display: flex; flex-direction: column; font-size: clamp(72px, 14.5vw, 250px); line-height: .72; letter-spacing: -.09em; font-weight: 900; overflow: hidden; }
.footer-brand strong { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 34px; margin: 70px 0 50px; }
.footer-links a { font-size: 11px; letter-spacing: .13em; border-bottom: 1px solid #444; padding-bottom: 5px; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #6f6b65; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { text-align: center; }
.footer-bottom a { justify-self: end; color: var(--text); }

.media-modal, .project-modal { width: min(680px, calc(100% - 32px)); padding: 0; border: 1px solid rgba(255,255,255,.18); background: #111; color: var(--text); box-shadow: 0 40px 120px rgba(0,0,0,.65); }
.media-modal::backdrop, .project-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.modal-content { padding: clamp(32px, 6vw, 72px); }
.modal-content h2 { margin: 0 0 20px; font-size: clamp(38px, 6vw, 68px); line-height: .94; letter-spacing: -.05em; }
.modal-content > p:not(.eyebrow) { color: var(--muted); }
.modal-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent; font-size: 23px; cursor: pointer; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.modal-tags span { padding: 7px 10px; border: 1px solid var(--line); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: block; }
  .site-header.menu-active { background: #0a0a0a; }
  .site-header.menu-active .desktop-nav { display: flex; position: fixed; inset: 72px 0 0; padding: 55px var(--pad); background: rgba(8,8,8,.98); flex-direction: column; align-items: flex-start; gap: 16px; }
  .site-header.menu-active .desktop-nav a { font-size: clamp(34px, 8vw, 64px); color: var(--text); letter-spacing: -.04em; text-transform: none; }
  .site-header.menu-active .menu-toggle span:first-child { top: 19px; transform: rotate(45deg); }
  .site-header.menu-active .menu-toggle span:last-child { top: 19px; transform: rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 125px; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual { position: absolute; inset: 80px -18% auto 30%; min-height: 620px; opacity: .68; }
  .portal { width: 630px; right: 0; }
  .hero-footer { align-self: end; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-copy { max-width: 650px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-large, .project-wide { grid-column: auto; grid-row: auto; }
  .project-large .project-media, .project-media, .project-wide .project-media { min-height: min(72vw, 700px); }
  .service-row { grid-template-columns: 54px 1fr 40px; }
  .service-row p { grid-column: 2 / 3; }
  .service-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .process-intro { grid-template-columns: 1fr; gap: 25px; }
  .process-intro > p:last-child { max-width: 520px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about, .contact { grid-template-columns: 1fr; }
  .about-visual { max-width: 700px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .site-header { min-height: 70px; }
  .site-header.scrolled { min-height: 64px; }
  .brand-symbol { width: 34px; height: 34px; }
  .brand-name { font-size: 9px; }
  .mini-cta { display: none; }
  .header-actions { gap: 8px; }
  .hero { min-height: 850px; padding-top: 115px; padding-bottom: 25px; }
  .hero h1 { font-size: clamp(52px, 16vw, 82px); }
  .hero-text { max-width: 92%; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .button { justify-content: space-between; }
  .hero-visual { inset: 280px -92% auto 2%; min-height: 540px; opacity: .62; }
  .portal { width: 560px; }
  .floating-card { display: none; }
  .vertical-note { display: none; }
  .hero-footer p { max-width: 170px; }
  .manifesto, .work, .services, .process, .about, .contact { padding-top: 90px; padding-bottom: 100px; }
  .section-head { align-items: start; flex-direction: column; }
  .project-media, .project-large .project-media, .project-wide .project-media { min-height: 116vw; max-height: 620px; }
  .project-wide .project-media { min-height: 100vw; }
  .project-meta { flex-direction: column; }
  .project-meta > span { text-align: left; }
  .media-title, .media-title.small, .media-title.horizontal { font-size: 14vw; left: 6%; bottom: 7%; }
  .service-row { grid-template-columns: 38px 1fr 24px; gap: 12px; padding: 25px 0; }
  .service-row h3 { font-size: 25px; }
  .process-steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step span { margin-bottom: 45px; }
  .about { gap: 55px; }
  .contact-form { padding: 28px 22px; }
  .footer-brand { font-size: 20vw; }
  .footer-links { flex-direction: column; align-items: flex-start; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p:nth-child(2) { text-align: left; }
  .footer-bottom a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}


/* Dinamik proje klasörleri */
.project-card:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 8px;
}
.empty-projects {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-content: center;
  gap: 12px;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
}
.empty-projects p { margin: 0; font-size: 18px; }
.empty-projects code { font-size: 12px; color: var(--warm); }
