/* ============================================================
   AFTERTONE AGENCY — style.css
   Tokens & layout from design handoff (v2). Do not soften values.
   ============================================================ */

:root {
  --cream: #F2EFE8;
  --ink: #111111;
  --bordo: #672936;
  --sand: #E7DFCC;
  --rose: #DFB4BC;
  --hair-l: rgba(17, 17, 17, 0.15);
  --hair-l2: rgba(17, 17, 17, 0.2);
  --hair-d: rgba(242, 239, 232, 0.12);
  --pad-x: clamp(20px, 4vw, 64px);
  --maxw: 1520px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--cream); color: var(--ink); }
body {
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }

a { color: var(--ink); text-decoration: none; transition: color .25s ease, border-color .25s ease, background .25s ease, letter-spacing .3s ease, transform .3s ease; }
a:hover { color: var(--bordo); }
::selection { background: var(--bordo); color: var(--cream); }
input, textarea { font-family: 'Manrope', sans-serif; }
input:focus, textarea:focus { outline: none; border-bottom-color: var(--bordo) !important; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ftUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes ftIn { from { opacity: 0; } to { opacity: 1; } }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
main { flex: 1; }
.page { animation: ftUp .7s ease both; }

.jost { font-family: 'Jost', sans-serif; }
.serif { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 239, 232, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair-l);
}
.site-header .bar { height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 18px; }
.at-icon { overflow: hidden; display: flex; align-items: center; justify-content: center; flex: none; }
.at-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(2); display: block; }
.at-icon--46 { width: 46px; height: 46px; }
.brand-stack { display: flex; flex-direction: column; gap: 6px; }
.brand-stack .wordmark { height: clamp(16px, 2vw, 24px); display: block; width: auto; }
.brand-agency { display: flex; align-items: center; gap: 10px; align-self: flex-end; }
.brand-agency .rule { width: 26px; height: 1px; background: var(--bordo); }
.brand-agency span[lang="en"] { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: 0.52em; text-transform: uppercase; color: var(--bordo); }
.header-right { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px); }

/* Language toggle */
.lang-toggle { position: relative; display: flex; border: 1px solid rgba(17,17,17,0.35); border-radius: 999px; overflow: hidden; padding: 3px; }
.lang-toggle .thumb {
  position: absolute; top: 3px; left: 3px; width: calc(50% - 3px); height: calc(100% - 6px);
  background: var(--bordo); border-radius: 999px;
  transition: transform .55s cubic-bezier(.8, -0.1, .2, 1.1);
}
.lang-toggle[data-lang="tr"] .thumb { transform: translateX(0); }
.lang-toggle[data-lang="en"] .thumb { transform: translateX(100%); }
.lang-toggle a {
  position: relative; width: 40px; text-align: center;
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; padding: 7px 0;
  color: rgba(17,17,17,0.55); transition: color .45s ease .1s;
}
.lang-toggle a.active { color: var(--cream); }

/* Menu button */
.menu-btn { display: flex; align-items: center; gap: 14px; padding: 10px 0; cursor: pointer; background: none; border: none; color: var(--ink); }
.menu-btn:hover { color: var(--bordo); }
.menu-btn .word { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; }
.menu-btn .lines { display: flex; flex-direction: column; gap: 7px; width: 30px; }
.menu-btn .lines span { display: block; height: 1.5px; background: currentColor; }
.menu-btn .lines span:last-child { width: 70%; align-self: flex-end; }

/* ---------- Fullscreen menu overlay ---------- */
.menu-overlay {
  position: fixed; inset: 0; z-index: 100; background: var(--ink); color: var(--cream);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s cubic-bezier(.76, 0, .24, 1);
  pointer-events: none; overflow: hidden; display: flex; flex-direction: column;
}
.menu-overlay.open { clip-path: inset(0 0 0% 0); pointer-events: auto; }
.menu-ghost {
  position: absolute; right: -10%; bottom: -16%; width: clamp(420px, 52vw, 900px); opacity: 0.06;
  pointer-events: none; transform: rotate(-14deg);
  transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
}
.menu-overlay.open .menu-ghost { transform: rotate(0deg); }
.menu-top { width: 100%; height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex: none; }
.menu-top .brand { color: var(--cream); }
.menu-close { display: flex; align-items: center; gap: 14px; color: var(--cream); background: none; border: none; cursor: pointer; padding: 0; }
.menu-close:hover { color: var(--bordo); }
.menu-close .word { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; }
.menu-close .x { position: relative; width: 26px; height: 26px; display: block; }
.menu-close .x span { position: absolute; left: 0; top: 12px; width: 26px; height: 1.5px; background: currentColor; }
.menu-close .x span:first-child { transform: rotate(45deg); }
.menu-close .x span:last-child { transform: rotate(-45deg); }
.menu-nav { flex: 1; width: 100%; padding-top: clamp(20px, 4vh, 48px); padding-bottom: clamp(20px, 4vh, 48px); display: flex; flex-direction: column; justify-content: center; position: relative; }
.menu-link {
  display: flex; align-items: baseline; gap: clamp(18px, 3vw, 40px);
  padding: clamp(10px, 2vh, 20px) 0; border-bottom: 1px solid var(--hair-d);
  color: var(--cream); opacity: 0; transform: translateY(44px);
}
.menu-overlay.open .menu-link {
  opacity: 1; transform: none;
  transition: opacity .6s ease var(--d, 0s), transform .7s cubic-bezier(.22, 1, .36, 1) var(--d, 0s), color .25s ease, letter-spacing .4s ease;
}
.menu-link:hover { color: var(--bordo); letter-spacing: 0.12em; }
.menu-link.active { color: var(--bordo); }
.menu-link .num { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.2em; color: var(--bordo); }
.menu-link .label { font-family: 'Jost', sans-serif; font-weight: 200; font-size: clamp(38px, 7.5vh, 76px); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.1; }
.menu-link .tag { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(16px, 2.4vh, 24px); color: rgba(242,239,232,0.4); margin-left: auto; }
.menu-foot {
  width: 100%; padding-bottom: 40px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; opacity: 0; transition: opacity .6s ease .5s;
}
.menu-overlay.open .menu-foot { opacity: 1; }
.menu-foot .mail { font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: 0.1em; color: rgba(242,239,232,0.75); }
.menu-foot .mail:hover { color: var(--cream); }
.menu-foot .socials { display: flex; gap: 26px; }
.menu-foot .socials a { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,239,232,0.6); }
.menu-foot .socials a:hover { color: var(--cream); }
.menu-foot .sig { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(242,239,232,0.3); }

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - 100px); background: #171310;
  overflow: clip; display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; background: radial-gradient(120% 90% at 72% 30%, #2A211D 0%, #1B1613 46%, #131009 100%); }
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-watermark { position: absolute; right: -8%; top: 50%; transform: translateY(-54%); width: clamp(420px, 54vw, 880px); opacity: 0.07; pointer-events: none; }
.hero-line { position: absolute; left: 0; right: 0; top: 31%; height: 1px; background: linear-gradient(to right, transparent, rgba(103,41,54,0.55) 40%, rgba(103,41,54,0.55) 60%, transparent); pointer-events: none; }
.hero-grain { position: absolute; inset: 0; opacity: 0.35; pointer-events: none; background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22160%22 height=%22160%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22/%3E%3CfeColorMatrix values=%220 0 0 0 0.95 0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0.05 0%22/%3E%3C/filter%3E%3Crect width=%22160%22 height=%22160%22 filter=%22url(%23n)%22/%3E%3C/svg%3E'); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,15,13,0.88) 0%, rgba(17,15,13,0.42) 34%, rgba(17,15,13,0.08) 58%, rgba(17,15,13,0.38) 100%); pointer-events: none; }
.hero-content {
  position: relative; width: 100%;
  padding-top: clamp(22px, 3.6vh, 40px); padding-bottom: clamp(26px, 4vh, 44px);
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 0;
  pointer-events: none; color: var(--cream);
}
.hero-top { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(242,239,232,0.28); padding-bottom: 16px; flex-wrap: wrap; }
.hero-top .overline { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(242,239,232,0.8); margin: 0; }
.hero-top .index { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,239,232,0.55); margin: 0; }
.hero-grid { flex: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 44px clamp(40px, 5vw, 90px); align-items: end; align-content: end; padding-bottom: clamp(28px, 5vh, 56px); }
.hero h1 { margin: 0; display: flex; flex-direction: column; text-shadow: 0 2px 30px rgba(17,15,13,0.45); }
.hero h1 .line-a { font-family: 'Jost', sans-serif; font-weight: 200; font-size: clamp(56px, 9.2vw, 164px); line-height: 1.0; letter-spacing: 0.05em; text-transform: uppercase; text-wrap: balance; }
.hero h1 .line-b { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: clamp(46px, 6vw, 108px); line-height: 1.08; color: var(--rose); padding-left: clamp(16px, 5vw, 96px); }
.hero-side { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; max-width: 44ch; justify-self: end; }
.hero-badge { position: absolute; top: clamp(26px, 5vh, 54px); right: 0; width: 108px; height: 108px; }

/* hero foot: scroll cue + est */
.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  border-top: 1px solid rgba(242,239,232,0.22); padding-top: 18px;
}
.scroll-cue { display: flex; align-items: center; gap: 14px; }
.scroll-cue .cue-line { width: 1px; height: 44px; background: rgba(242,239,232,0.2); position: relative; overflow: hidden; display: block; }
.scroll-cue .cue-line span { position: absolute; inset: 0; background: var(--rose); animation: scrollPulse 2.6s cubic-bezier(.76, 0, .24, 1) infinite; display: block; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.scroll-cue .word { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(242,239,232,0.6); }
.hero-foot .est { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(242,239,232,0.45); }
.hero-badge .ring { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.hero-badge svg { width: 100%; height: 100%; display: block; }
.hero-badge svg text { font-family: 'Jost', sans-serif; font-size: 8px; letter-spacing: 3px; fill: rgba(242,239,232,0.85); }
.hero-badge .center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-badge .center .at-icon { width: 34px; height: 34px; }
.hero-sub { font-size: 15.5px; line-height: 1.75; color: rgba(242,239,232,0.85); margin: 0; text-shadow: 0 1px 16px rgba(17,15,13,0.5); }
.hero-ctas { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; pointer-events: auto; }
.btn-hero {
  font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(242,239,232,0.65); padding: 16px 34px;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.btn-hero:hover { background: var(--bordo); border-color: var(--bordo); color: var(--cream); }
.link-rose { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--rose); padding-bottom: 6px; }
.link-rose:hover { color: var(--rose); }

/* ---------- Signature strip ---------- */
.strip { border-bottom: 1px solid var(--hair-l); }
.strip .inner { padding-top: 22px; padding-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.strip .chips { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.strip .chip { display: flex; align-items: center; gap: 22px; font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(17,17,17,0.65); }
.strip .chip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--bordo); }
.strip .sig { display: flex; align-items: center; gap: 14px; }
.strip .sig .rule { width: 32px; height: 1px; background: var(--bordo); display: block; }
.strip .sig .line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: rgba(17,17,17,0.6); }

/* ---------- Manifesto band ---------- */
.manifesto { background: var(--bordo); color: var(--cream); }
.manifesto .inner {
  padding-top: clamp(80px, 12vh, 150px); padding-bottom: clamp(80px, 12vh, 150px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 48px; align-items: center; position: relative;
}
.manifesto .stamp { display: flex; flex-direction: column; gap: 24px; }
.manifesto .stamp .at-icon { width: 52px; height: 52px; }
.manifesto .label { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(242,239,232,0.5); margin: 0; }
.manifesto .quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.42; margin: 0; grid-column: span 2; min-width: min(100%, 540px); text-wrap: pretty; }
@media (max-width: 720px) { .manifesto .quote { grid-column: auto; } }

/* ---------- Section headers ---------- */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.sec-head h2 { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(30px, 3.6vw, 52px); letter-spacing: 0.08em; text-transform: uppercase; margin: 0; }
.sec-head .sec-line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(17px, 1.6vw, 21px); color: rgba(17,17,17,0.55); margin: 0; }
.label-solo { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(17,17,17,0.55); margin: 0; }

/* ---------- Services index (home): typographic accordion ---------- */
.services-index { background: var(--sand); padding-top: clamp(80px, 11vh, 130px); padding-bottom: clamp(60px, 9vh, 100px); position: relative; }
.svc-list { display: flex; flex-direction: column; margin-top: clamp(36px, 6vh, 56px); border-top: 1px solid rgba(17,17,17,0.22); }
.svc { border-bottom: 1px solid rgba(17,17,17,0.22); }
.svc-head {
  width: 100%; display: grid; grid-template-columns: 56px 1fr auto 44px;
  gap: clamp(16px, 2.6vw, 40px); align-items: center; text-align: left;
  background: none; border: none; cursor: pointer; color: var(--ink);
  padding: clamp(26px, 4vh, 40px) 6px; font-family: inherit;
  transition: color .3s ease;
}
.svc-head .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.2em; color: var(--bordo); align-self: start; padding-top: clamp(6px, 1vh, 12px); }
.svc-head .name {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: clamp(28px, 4.6vw, 64px); letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.08; transition: letter-spacing .45s ease, color .3s ease;
}
.svc-head .line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(15px, 1.4vw, 19px); color: rgba(17,17,17,0.55); max-width: 30ch; text-align: right; }
.svc-head .plus { position: relative; width: 22px; height: 22px; justify-self: end; }
.svc-head .plus span { position: absolute; left: 0; top: 10px; width: 22px; height: 1.5px; background: currentColor; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.svc-head .plus span:last-child { transform: rotate(90deg); }
.svc:hover .svc-head { color: var(--bordo); }
.svc:hover .svc-head .name { letter-spacing: 0.09em; }
.svc.open .svc-head { color: var(--bordo); }
.svc.open .svc-head .plus span:last-child { transform: rotate(0deg); }
.svc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .65s cubic-bezier(.22, 1, .36, 1); }
.svc-body-inner { overflow: hidden; }
.svc.open .svc-body { grid-template-rows: 1fr; }
.svc-body-inner ul {
  list-style: none; margin: 0; padding: 4px 6px 10px calc(56px + clamp(16px, 2.6vw, 40px));
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 44px; align-content: start;
}
.svc-body-inner li {
  display: flex; align-items: baseline; gap: 12px; font-size: 14px; line-height: 1.6;
  color: rgba(17,17,17,0.72); padding: 11px 0; border-bottom: 1px solid rgba(17,17,17,0.09);
}
.svc-body-inner li .dash { width: 14px; height: 1px; background: var(--bordo); flex: none; transform: translateY(-4px); }
.svc-body-inner .link-more { margin: 22px 6px 34px calc(56px + clamp(16px, 2.6vw, 40px)); display: inline-block; }

/* floating image preview (desktop, pointer-fine) */
.svc-preview {
  position: fixed; z-index: 30; width: 230px; aspect-ratio: 4/5; pointer-events: none;
  opacity: 0; transform: scale(0.96) rotate(-1.5deg); transition: opacity .45s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 18px 18px 0 rgba(103, 41, 54, 0.12); display: none;
}
.svc-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-preview.on { opacity: 1; transform: scale(1) rotate(0deg); }
@media (hover: hover) and (pointer: fine) { .svc-preview { display: block; } }

@media (max-width: 860px) {
  .svc-head { grid-template-columns: 40px 1fr 34px; }
  .svc-head .line { display: none; }
  .svc-head .plus { width: 18px; height: 18px; }
  .svc-head .plus span { width: 18px; top: 8px; }
  .svc-body-inner ul { padding-left: 6px; grid-template-columns: 1fr; }
  .svc-body-inner .link-more { margin-left: 6px; }
}

/* ---------- Work preview / grid ---------- */
.work-preview { padding-top: clamp(40px, 6vh, 80px); padding-bottom: clamp(90px, 12vh, 150px); }
.work-preview .head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 52px; }
.link-more { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; border-bottom: 1px solid var(--bordo); padding-bottom: 5px; }
.work-preview .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 44px; }
.work-card { display: flex; flex-direction: column; gap: 16px; }
a.work-card:hover { transform: translateY(-6px); }
.work-card .frame { width: 100%; overflow: hidden; background: #DDD6C8; }
.work-card .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card .meta { display: flex; flex-direction: column; gap: 6px; }
.work-card .row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.work-card .title { font-family: 'Jost', sans-serif; font-size: 17px; letter-spacing: 0.12em; text-transform: uppercase; }
.work-card .idx { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.14em; color: rgba(17,17,17,0.4); }
.work-card .cat { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bordo); }

/* ---------- Studio teaser (home) ---------- */
.studio-teaser { border-top: 1px solid var(--hair-l); }
.studio-teaser .inner {
  padding-top: clamp(80px, 11vh, 140px); padding-bottom: clamp(80px, 11vh, 140px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 56px; align-items: center;
}
.studio-teaser .text { display: flex; flex-direction: column; gap: 28px; }
.studio-teaser .label-row { display: flex; align-items: baseline; gap: 20px; }
.studio-teaser .label-row .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; color: var(--bordo); }
.studio-teaser .label-row .label { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(17,17,17,0.55); margin: 0; }
.studio-teaser .quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(26px, 3vw, 40px); line-height: 1.45; margin: 0; text-wrap: pretty; }
.studio-teaser .teaser { font-size: 15px; line-height: 1.75; max-width: 44ch; color: rgba(17,17,17,0.7); margin: 0; }
.studio-teaser .img { width: 100%; aspect-ratio: 4/3; box-shadow: -24px 24px 0 rgba(103,41,54,0.08); background: #DDD6C8; overflow: hidden; }
.studio-teaser .img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA ---------- */
.cta-section { border-top: 1px solid var(--hair-l); position: relative; overflow: hidden; }
.cta-section .watermark { position: absolute; left: 50%; bottom: -8%; transform: translateX(-50%); width: 120%; max-width: none; opacity: 0.04; pointer-events: none; }
.cta-section .inner {
  padding-top: clamp(100px, 15vh, 190px); padding-bottom: clamp(100px, 15vh, 190px);
  display: flex; flex-direction: column; gap: 40px; align-items: center; text-align: center; position: relative;
}
.cta-section h2 { margin: 0; display: flex; flex-direction: column; }
.cta-section .line-a { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(34px, 4.6vw, 68px); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.15; }
.cta-section .line-b { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(30px, 4vw, 58px); color: var(--bordo); line-height: 1.25; }
.btn-dark {
  font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--ink); color: var(--cream); border: 1px solid var(--ink); padding: 20px 48px; display: inline-block;
}
.btn-dark:hover { background: var(--bordo); border-color: var(--bordo); color: var(--cream); }

/* ---------- Subpage hero ---------- */
.page-hero { padding-top: clamp(60px, 9vh, 110px); padding-bottom: 30px; }
.page-hero .eyebrow-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--hair-l2); padding-bottom: 18px; flex-wrap: wrap; }
.page-hero .eyebrow { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(17,17,17,0.6); margin: 0; }
.page-hero .index { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(17,17,17,0.4); margin: 0; }
.page-hero h1 { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(48px, 7vw, 110px); letter-spacing: 0.05em; text-transform: uppercase; margin: clamp(28px, 5vh, 56px) 0 0; }
.page-hero .intro { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.55; max-width: 44ch; color: rgba(17,17,17,0.75); margin: 20px 0 0; }

/* ---------- Work page ---------- */
.work-grid {
  padding-top: clamp(40px, 6vh, 70px); padding-bottom: 130px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 64px 48px;
}
.work-grid .work-card { gap: 18px; }
.work-grid .work-card .row { border-bottom: 1px solid var(--hair-l); padding-bottom: 16px; }
.work-grid .work-card .titles { display: flex; flex-direction: column; gap: 7px; }
.work-grid .work-card .title { font-size: 19px; }
.work-grid .work-card .idx { font-size: 12px; }

/* ---------- Services page ---------- */
.services-list { padding-top: clamp(40px, 6vh, 70px); padding-bottom: 130px; display: flex; flex-direction: column; }
.service-section {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 36px 72px; padding: clamp(52px, 8vh, 88px) 0; border-top: 1px solid rgba(17,17,17,0.18);
}
.service-section .head { display: flex; flex-direction: column; gap: 22px; }
.service-section .mark-row { display: flex; align-items: center; gap: 18px; }
.service-section .mark-row img { width: 44px; height: 44px; display: block; }
.service-section .mark-row .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.2em; color: var(--bordo); }
.service-section h2 { font-family: 'Jost', sans-serif; font-weight: 400; font-size: clamp(28px, 3.2vw, 44px); letter-spacing: 0.07em; text-transform: uppercase; margin: 0; }
.service-section .line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 21px; line-height: 1.5; color: rgba(17,17,17,0.7); margin: 0; max-width: 36ch; }
.service-section ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0 44px; align-content: start; }
.service-section li {
  display: flex; align-items: baseline; gap: 12px; font-size: 14px; line-height: 1.6;
  color: rgba(17,17,17,0.75); padding: 13px 0; border-bottom: 1px solid rgba(17,17,17,0.09);
}
.service-section li .dash { width: 14px; height: 1px; background: var(--bordo); flex: none; transform: translateY(-4px); }

/* ---------- Studio page ---------- */
.studio-hero { padding-top: clamp(60px, 9vh, 110px); padding-bottom: clamp(60px, 9vh, 100px); }
.studio-hero .lead-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 40px 72px; margin-top: 36px; align-items: start; }
.studio-hero .lead { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.5; margin: 0; text-wrap: pretty; }
.studio-hero .body { font-size: 15.5px; line-height: 1.85; max-width: 56ch; color: rgba(17,17,17,0.75); margin: 0; }

.principles { background: var(--ink); color: var(--cream); }
.principles .inner { padding-top: clamp(70px, 10vh, 120px); padding-bottom: clamp(70px, 10vh, 120px); display: flex; flex-direction: column; gap: 48px; }
.principles .label-row { display: flex; align-items: center; gap: 18px; }
.principles .label-row .at-icon { width: 44px; height: 44px; }
.principles .label-row p { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(242,239,232,0.5); margin: 0; }
.principles .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 48px 56px; }
.principle { display: flex; flex-direction: column; gap: 16px; }
.principle img { width: 36px; height: 36px; display: block; }
.principle .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.16em; color: rgba(242,239,232,0.4); }
.principle p { font-size: 15px; line-height: 1.75; color: rgba(242,239,232,0.85); margin: 0; }

.founders { padding-top: clamp(70px, 10vh, 120px); padding-bottom: 130px; display: flex; flex-direction: column; gap: 48px; }
.founders .label-row { display: flex; align-items: baseline; gap: 20px; }
.founders .label-row .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; color: var(--bordo); }
.founders .label-row p { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(17,17,17,0.55); margin: 0; }
.founders .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 56px; max-width: 940px; }
.founder { display: flex; flex-direction: column; gap: 20px; }
.founder .frame { width: 100%; aspect-ratio: 3/4; box-shadow: 16px 16px 0 rgba(103,41,54,0.08); background: #DDD6C8; overflow: hidden; }
.founder .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder .meta { display: flex; flex-direction: column; gap: 7px; border-left: 1px solid var(--bordo); padding-left: 16px; }
.founder .name { font-family: 'Jost', sans-serif; font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase; }
.founder .role { font-size: 13px; letter-spacing: 0.06em; color: rgba(17,17,17,0.55); }

/* ---------- Contact ---------- */
.contact-section {
  padding-top: clamp(50px, 7vh, 90px); padding-bottom: 130px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 0;
}
.contact-panel {
  background: var(--ink); color: var(--cream); padding: clamp(40px, 6vw, 72px);
  display: flex; flex-direction: column; gap: 32px; justify-content: space-between; min-height: 560px;
}
.contact-panel .top { display: flex; flex-direction: column; gap: 30px; }
.contact-panel .at-icon { width: 52px; height: 52px; }
.contact-panel h1 { margin: 0; display: flex; flex-direction: column; }
.contact-panel .line-a { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(32px, 3.6vw, 52px); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.15; }
.contact-panel .line-b { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(28px, 3vw, 42px); line-height: 1.3; color: rgba(242,239,232,0.85); }
.contact-panel .body { font-size: 15px; line-height: 1.75; max-width: 40ch; color: rgba(242,239,232,0.75); margin: 0; }
.contact-panel .bottom { display: flex; flex-direction: column; gap: 22px; }
.contact-panel .rule { width: 56px; height: 1px; background: var(--bordo); }
.contact-panel .mail { font-family: 'Jost', sans-serif; font-size: 17px; letter-spacing: 0.08em; color: var(--cream); border-bottom: 1px solid rgba(242,239,232,0.4); padding-bottom: 5px; align-self: flex-start; }
.contact-panel .mail:hover { color: var(--cream); border-color: var(--bordo); }
.contact-panel .socials { display: flex; gap: 26px; }
.contact-panel .socials a { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,239,232,0.7); }
.contact-panel .socials a:hover { color: var(--cream); }

.contact-form-panel { border: 1px solid rgba(17,17,17,0.18); border-left: none; padding: clamp(40px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 800px) { .contact-form-panel { border-left: 1px solid rgba(17,17,17,0.18); border-top: none; } }
.contact-form { display: flex; flex-direction: column; gap: 34px; }
.contact-form .two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px 32px; }
.contact-form label { display: flex; flex-direction: column; gap: 10px; }
.contact-form label > span { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(17,17,17,0.5); }
.contact-form input, .contact-form textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(17,17,17,0.35);
  padding: 10px 0; font-size: 16px; color: var(--ink); border-radius: 0;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--ink); color: var(--cream); border: 1px solid var(--ink); padding: 18px 44px;
  cursor: pointer; align-self: flex-start; transition: all .25s ease;
}
.contact-form button:hover { background: var(--bordo); border-color: var(--bordo); }
.contact-form button[disabled] { opacity: 0.55; cursor: wait; }
.form-thanks { display: none; flex-direction: column; gap: 20px; }
.form-thanks .rule { width: 56px; height: 1px; background: var(--bordo); }
.form-thanks p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 28px; line-height: 1.5; margin: 0; max-width: 30ch; }
.form-error { font-size: 13.5px; color: var(--bordo); margin: 0; display: none; }
.contact-form-panel.sent .contact-form { display: none; }
.contact-form-panel.sent .form-thanks { display: flex; animation: ftIn .6s ease both; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); overflow: hidden; }
.site-footer .inner { padding-top: clamp(70px, 9vh, 100px); padding-bottom: 36px; display: flex; flex-direction: column; gap: 64px; }
.site-footer .big-wordmark { width: 100%; display: block; opacity: 0.95; height: auto; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 48px; align-items: start; }
.site-footer .col { display: flex; flex-direction: column; gap: 14px; }
.site-footer .col-brand { gap: 18px; }
.site-footer .col-brand .at-icon { width: 60px; height: 60px; }
.site-footer .tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; line-height: 1.5; color: rgba(242,239,232,0.65); margin: 0; max-width: 26ch; }
.site-footer .col-title { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(242,239,232,0.4); }
.site-footer .col a { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(242,239,232,0.85); }
.site-footer .col a:hover { color: var(--cream); letter-spacing: 0.22em; }
.site-footer .col a.mail { font-family: 'Manrope', sans-serif; font-size: 14px; text-transform: none; letter-spacing: normal; }
.site-footer .col a.mail:hover { letter-spacing: normal; }
.site-footer .col .socials { display: flex; gap: 20px; }
.site-footer .col .socials a { font-size: 12.5px; }
.site-footer .note { font-size: 13.5px; line-height: 1.7; color: rgba(242,239,232,0.65); margin: 0; max-width: 26ch; }
.site-footer .bottom { border-top: 1px solid rgba(242,239,232,0.15); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer .bottom .copy { font-size: 12px; color: rgba(242,239,232,0.45); letter-spacing: 0.06em; }
.site-footer .bottom .line { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,239,232,0.35); }

/* ---------- Worlds page additions ---------- */
.worlds-note { font-size: 13.5px; letter-spacing: 0.02em; color: rgba(17,17,17,0.5); margin: 26px 0 0; max-width: 52ch; border-left: 1px solid var(--bordo); padding-left: 14px; }
.work-card .intent { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; line-height: 1.5; color: rgba(17,17,17,0.6); margin-top: 2px; }
.worlds-closing { padding-bottom: 130px; display: flex; flex-direction: column; gap: 28px; align-items: flex-start; max-width: 760px; }
.worlds-closing .rule { width: 56px; height: 1px; background: var(--bordo); }
.worlds-closing .quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.45; margin: 0; text-wrap: pretty; }

/* offsets — desktop only */
@media (min-width: 721px) {
  .work-preview .work-card.offset-mid { margin-top: 44px; }
  .work-grid .work-card.offset-alt:nth-child(even) { margin-top: 48px; }
}

/* ---------- Founding period band (studio) ---------- */
.founding { background: var(--sand); }
.founding .inner { padding-top: clamp(70px, 10vh, 120px); padding-bottom: clamp(70px, 10vh, 120px); display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.founding .label-row { display: flex; align-items: baseline; gap: 20px; }
.founding .label-row .num { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.22em; color: var(--bordo); }
.founding .label-row .label { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(17,17,17,0.55); margin: 0; }
.founding .lead { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(26px, 3.2vw, 44px); line-height: 1.4; margin: 0; text-wrap: pretty; }
.founding .body { font-size: 15px; line-height: 1.8; max-width: 62ch; color: rgba(17,17,17,0.72); margin: 0; }
.founding .btn-dark { margin-top: 8px; }

/* ---------- "İz" — traces & reveals ---------- */
/* Afterimage hover: image lingers, bordo tint slowly dissolves */
.work-card .frame { position: relative; }
.work-card .frame img { transition: transform 2s cubic-bezier(.16, 1, .3, 1), filter 1.6s ease; }
.work-card .frame::after {
  content: ''; position: absolute; inset: 0; background: var(--bordo);
  opacity: 0; mix-blend-mode: multiply; pointer-events: none;
  transition: opacity 1.4s ease;
}
.work-card:hover .frame img { transform: scale(1.045); }
.work-card:hover .frame::after { opacity: 0.18; transition-duration: .5s; }

/* Scroll reveal (JS adds .reveal, then .in) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform 1s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Manifesto: words surface one by one (CSS fallback; GSAP scrubs when active) */
.manifesto-words .mw { opacity: 0.12; filter: blur(1px); transition: opacity .8s ease calc(var(--i) * 90ms), filter .8s ease calc(var(--i) * 90ms); display: inline-block; }
.manifesto.in .mw { opacity: 1; filter: none; }
html.gsap .manifesto-words .mw { transition: none; filter: none; }
html.gsap .site-footer .big-wordmark { will-change: transform; }
html.gsap .hero-photo img { will-change: transform; }

/* Hero entrance sequence */
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.hero h1 .line-a { animation: heroRise 1s cubic-bezier(.22, 1, .36, 1) .15s both; }
.hero h1 .line-b { animation: heroRise 1s cubic-bezier(.22, 1, .36, 1) .35s both; }
.hero-sub { animation: heroRise 1s cubic-bezier(.22, 1, .36, 1) .55s both; }
.hero-ctas { animation: heroRise 1s cubic-bezier(.22, 1, .36, 1) .7s both; }
.hero-badge { animation: ftIn 1.4s ease .9s both; }
.hero-top { animation: ftIn 1s ease .1s both; }
.hero-photo img { animation: heroZoom 2.6s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* ---------- Mobile floating CTA ---------- */
.mob-cta {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40;
  background: rgba(17,17,17,0.96); color: var(--cream); text-align: center;
  font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 17px 20px; border: 1px solid rgba(242,239,232,0.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(72px); transition: opacity .5s ease, transform .6s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}
.mob-cta:hover { color: var(--cream); }
.mob-cta.show { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 720px) { .mob-cta { display: block; } body.menu-open .mob-cta { display: none; } }

/* ---------- Mobile polish ---------- */
@media (max-width: 720px) {
  .site-header .bar, .menu-top { height: 76px; }
  .at-icon--46 { width: 38px; height: 38px; }
  .brand { gap: 13px; }
  .brand-stack { gap: 4px; }
  .brand-stack .wordmark { height: 15px; }
  .brand-agency span[lang="en"] { font-size: 8.5px; letter-spacing: 0.44em; }
  .header-right { gap: 14px; }
  .lang-toggle a { width: 34px; padding: 6px 0; }
  .menu-btn .word { display: none; }

  .hero { min-height: calc(100svh - 76px); }
  .hero h1 .line-a { font-size: clamp(48px, 13.5vw, 68px); }
  .hero h1 .line-b { font-size: clamp(38px, 10vw, 54px); }
  .hero-badge { width: 78px; height: 78px; top: 18px; }
  .hero-badge .center .at-icon { width: 26px; height: 26px; }
  .hero-foot .est { display: none; }
  .scroll-cue .cue-line { height: 34px; }
  .hero-sub { font-size: 14.5px; }
  .btn-hero { padding: 15px 26px; font-size: 12px; }

  .strip .inner { gap: 14px; }
  .strip .chip { gap: 14px; letter-spacing: 0.22em; }
  .strip .chips { gap: 12px 18px; }

  .service-row { padding: 26px 6px; }
  .work-preview .grid { gap: 36px; }
  .work-grid { gap: 52px 48px; padding-bottom: 90px; }
  .worlds-closing { padding-bottom: 90px; }
  .founders { padding-bottom: 90px; }
  .services-list { padding-bottom: 90px; }
  .contact-section { padding-bottom: 90px; }
  .contact-panel { min-height: 0; gap: 40px; }

  .site-footer .inner { gap: 44px; }
  .menu-link .label { font-size: clamp(30px, 9vw, 44px); }
  .menu-link .tag { display: none; }
  .menu-foot { gap: 16px; padding-bottom: 30px; }

  /* leave room for floating CTA above footer bottom bar */
  .site-footer .bottom { padding-bottom: 64px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero-badge .ring { animation: none; }
  .page, .hero h1 .line-a, .hero h1 .line-b, .hero-sub, .hero-ctas, .hero-badge, .hero-top, .hero-photo img { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .manifesto-words .mw { opacity: 1; filter: none; }
  * { transition-duration: 0.01ms !important; }
}
