/* ————— ECE EBRAR SÖZKESEN — das-studio style system ————— */
:root {
  --bg: #ffffff;
  --bg2: #f5f5f5;
  --ink: #0a0a0a;
  --muted: #6f6f6f;
  --line: #e6e6e6;
  --radius: 14px;
  --sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --pad: clamp(28px, 5.5vw, 96px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); }
::selection { background: var(--ink); color: #fff; }

.wrap { padding-left: var(--pad); padding-right: var(--pad); max-width: 1760px; margin: 0 auto; }
.hairline { border-top: 1px solid var(--line); }

/* labels */
.lbl { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.lbl b { color: var(--ink); font-weight: 600; }

/* giant headings */
.giant {
  font-weight: 700; letter-spacing: -.035em; line-height: .92;
  font-size: clamp(3rem, 10.5vw, 10rem); text-transform: uppercase;
}
.giant sup { font-size: .18em; font-weight: 600; letter-spacing: 0; vertical-align: super; }
.sec-title {
  font-weight: 700; letter-spacing: -.03em; line-height: .95;
  font-size: clamp(2.4rem, 6.6vw, 6rem); text-transform: uppercase;
}

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  border: 1px solid var(--ink); transition: all .2s; background: transparent;
}
.pill.solid { background: var(--ink); color: #fff; }
.pill.solid:hover { background: #333; }
.pill.ghost:hover { background: var(--ink); color: #fff; }
.arrow { display: inline-block; transition: transform .2s; }
a:hover .arrow { transform: translate(2px, -2px); }

/* ————— header ————— */
.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-weight: 700; letter-spacing: -.02em; font-size: 1.02rem; text-transform: uppercase; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.nav a:hover, .nav a.active { color: var(--ink); }
.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-toggle button { border: 0; background: none; padding: 5px 12px; font-size: .7rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); cursor: pointer; }
.lang-toggle button.on { background: var(--ink); color: #fff; }
.menu-btn { display: none; border: 0; background: none; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 940px) {
  .menu-btn { display: block; }
  .nav { position: fixed; inset: 62px 0 auto 0; background: var(--bg); flex-direction: column; gap: 0; display: none; border-bottom: 1px solid var(--line); padding: 10px 0 18px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; }
}

/* ————— hero ————— */
.hero { padding-top: clamp(56px, 8vw, 130px); }
.hero .giant { margin-bottom: clamp(40px, 5.5vw, 90px); }
.hero-name { display: flex; flex-direction: column; line-height: 1.0; margin-bottom: clamp(16px, 2vw, 26px); }
.hero-name .l1, .hero-name .l2 { display: block; }
.hero-disc {
  font-size: clamp(.78rem, 1.1vw, .95rem); letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: clamp(34px, 4.5vw, 70px);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(48px, 8vw, 140px); align-items: start; padding-bottom: clamp(44px, 6vw, 90px); }
.hero-grid .tag { font-size: clamp(1.05rem, 1.6vw, 1.4rem); color: var(--ink); max-width: 22em; margin-bottom: 34px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.meta-table { border-top: 1px solid var(--line); }
.meta-table .row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); }
.meta-table .row .v { font-weight: 700; font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

/* carousel */
.carousel-wrap { position: relative; padding-bottom: clamp(64px, 8vw, 130px); }
.carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel .cell { flex: 0 0 clamp(240px, 31vw, 460px); scroll-snap-align: start; }
.carousel .cell img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-70%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(10,10,10,.55); color: #fff; font-size: 1.1rem;
}
.car-btn:hover { background: var(--ink); }
.car-btn.prev { left: 10px; }
.car-btn.next { right: 10px; }

/* ————— sections ————— */
section.blk { padding-top: clamp(72px, 9vw, 160px); padding-bottom: clamp(72px, 9vw, 160px); }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: clamp(40px, 5vw, 80px); flex-wrap: wrap; }
.sec-head .sub { color: var(--muted); font-size: .95rem; max-width: 24em; padding-bottom: 10px; }

/* projects grid */
.proj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 40px); }
.proj-card { position: relative; }
.proj-card .imwrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.proj-card img { width: 100%; aspect-ratio: 5/4; object-fit: cover; transition: transform .5s ease; }
.proj-card:hover img { transform: scale(1.04); }
.proj-card .tag {
  position: absolute; right: 14px; bottom: 14px; background: rgba(10,10,10,.62);
  color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 999px;
}
.proj-card .meta { padding: 16px 2px 18px; border-bottom: 1px solid var(--line); }
.proj-card .meta .yr { font-size: .78rem; color: var(--muted); margin-bottom: 4px; }
.proj-card .meta .nm { font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.35rem); letter-spacing: -.01em; text-transform: uppercase; }
@media (max-width: 720px) { .proj-grid { grid-template-columns: 1fr; } }

/* services accordion */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { display: grid; grid-template-columns: 90px 1fr 40px; align-items: center; padding: clamp(22px, 2.8vw, 38px) 0; cursor: pointer; }
.acc-head .no { font-size: .82rem; color: var(--muted); font-weight: 600; }
.acc-head h3 { font-weight: 700; letter-spacing: -.02em; font-size: clamp(1.3rem, 3vw, 2.2rem); text-transform: uppercase; }
.acc-head .tog { font-size: 1.5rem; font-weight: 300; text-align: right; transition: transform .25s; }
.acc-item.open .tog { transform: rotate(45deg); }
.acc-body { display: none; grid-template-columns: 90px 240px 1fr; gap: 28px; padding: 0 0 clamp(28px, 3.5vw, 48px); }
.acc-item.open .acc-body { display: grid; }
.acc-body .kw { font-size: .88rem; color: var(--ink); line-height: 2; }
.acc-body .desc { color: var(--muted); max-width: 44em; }
.acc-body .price { font-weight: 700; font-size: 1.1rem; margin-top: 10px; }
@media (max-width: 720px) { .acc-body { grid-template-columns: 1fr; gap: 8px; padding-left: 0; } .acc-head { grid-template-columns: 44px 1fr 30px; } }

/* flow */
.flow-item { border-top: 1px solid var(--line); display: grid; grid-template-columns: 90px 1fr 1fr; gap: 32px; padding: clamp(34px, 4.4vw, 60px) 0; }
.flow-item .no { font-size: .82rem; color: var(--muted); font-weight: 600; }
.flow-item h3 { font-weight: 700; font-size: clamp(1.6rem, 4vw, 3rem); letter-spacing: -.02em; text-transform: uppercase; }
.flow-item p { color: var(--muted); max-width: 34em; align-self: center; }
@media (max-width: 720px) { .flow-item { grid-template-columns: 44px 1fr; } .flow-item p { grid-column: 2; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.stat { border-top: 1px solid var(--line); padding-top: 22px; }
.stat .num { font-weight: 700; font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.03em; }
.stat .cap { color: var(--muted); font-size: .88rem; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

/* statement */
.statement { font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.5rem, 3.4vw, 2.8rem); line-height: 1.18; max-width: 30em; }
.statement .dim { color: #b5b5b5; }

/* portrait + about row (home) */
.portrait-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 90px); align-items: center; }
.portrait { border-radius: var(--radius); overflow: hidden; background: var(--bg2); }
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4/5; }
.portrait-txt .lbl { display: block; margin-bottom: 20px; }
.home-about p { margin-bottom: 1.1em; font-size: clamp(.98rem, 1.15vw, 1.1rem); line-height: 1.7; }
.home-about p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .portrait-row { grid-template-columns: 1fr; gap: 28px; } .portrait img { aspect-ratio: 3/4; } }

/* pricing */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 40px); background: var(--bg2); display: flex; flex-direction: column; gap: 14px; }
.price-card.dark { background: var(--ink); color: #fff; }
.price-card.dark .lbl, .price-card.dark li { color: #cfcfcf; }
.price-card .amount { font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -.03em; }
.price-card .amount span { font-size: .35em; font-weight: 500; letter-spacing: 0; }
.price-card ul { list-style: none; flex: 1; }
.price-card li { padding: 9px 0; border-bottom: 1px solid rgba(127,127,127,.18); font-size: .92rem; color: var(--muted); }
.price-card .pill { justify-content: center; }
.price-card.dark .pill { border-color: #fff; color: #fff; }
.price-card.dark .pill:hover { background: #fff; color: var(--ink); }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item .q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1.02rem; gap: 16px; }
.faq-item .tog { font-size: 1.4rem; font-weight: 300; transition: transform .25s; }
.faq-item.open .tog { transform: rotate(45deg); }
.faq-item .a { display: none; color: var(--muted); max-width: 52em; padding-bottom: 22px; }
.faq-item.open .a { display: block; }

/* press / journal cards */
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 40px); }
.press-card { border-top: 1px solid var(--line); padding-top: 18px; }
.press-card .outlet { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.press-card h3 { font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: -.01em; margin: 10px 0; line-height: 1.25; }
.press-card p { color: var(--muted); font-size: .92rem; }
.press-card .go { display: inline-block; margin-top: 14px; font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.press-card:hover .go { text-decoration: underline; }
.press-list-pg .press-card { margin-bottom: 34px; }
@media (max-width: 720px) { .press-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { text-align: center; padding-top: clamp(70px, 10vw, 150px); padding-bottom: clamp(70px, 10vw, 150px); }
.cta-band .lbl { margin-bottom: 20px; display: block; }
.cta-band h2 { font-weight: 700; letter-spacing: -.03em; text-transform: uppercase; font-size: clamp(2rem, 6vw, 5.4rem); line-height: .96; margin-bottom: 36px; }

/* ————— footer ————— */
.site-footer { border-top: 1px solid var(--line); padding-top: clamp(44px, 6vw, 90px); }
.foot-word { font-weight: 700; letter-spacing: -.035em; line-height: .9; text-transform: uppercase; font-size: clamp(2.6rem, 9.6vw, 9rem); margin-bottom: clamp(40px, 5.5vw, 90px); }
.foot-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(48px, 8vw, 140px); padding-bottom: clamp(44px, 5vw, 70px); }
.foot-grid .sub-note { color: var(--muted); font-size: 1.05rem; max-width: 18em; margin-bottom: 22px; }
.mini-proj a { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mini-proj img { width: 44px; height: 44px; object-fit: cover; border-radius: 9px; }
.mini-proj .nm { flex: 1; font-weight: 600; font-size: .95rem; }
.mini-proj .vp { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.mini-proj a:hover .vp { color: var(--ink); }
.foot-nav { display: flex; justify-content: space-between; gap: 32px; padding: 34px 0 56px; flex-wrap: wrap; }
.foot-nav .col { display: flex; flex-direction: column; gap: 10px; }
.foot-nav a { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.foot-nav a:hover { color: var(--ink); }
.foot-nav .addr { color: var(--muted); font-size: .92rem; }
.foot-bottom { border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding: 18px 0 26px; flex-wrap: wrap; gap: 12px; }
.foot-bottom .copy { font-size: .78rem; color: var(--muted); }
.foot-bottom .socials { display: flex; gap: 18px; }
.foot-bottom .socials a { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.foot-bottom .socials a:hover { color: var(--ink); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr; } }

/* page hero (inner) */
.page-hero { padding-top: clamp(56px, 8vw, 120px); padding-bottom: clamp(28px, 4vw, 56px); }
.page-hero .sub { color: var(--muted); max-width: 28em; margin-top: 22px; }
.items-count { padding-top: 18px; padding-bottom: 18px; }

/* project tabs + design lead */
.proj-tabs { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 6px; padding-bottom: clamp(20px, 3vw, 40px); }
.proj-tabs button {
  padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); background: transparent;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all .18s;
}
.proj-tabs button:hover { border-color: var(--ink); color: var(--ink); }
.proj-tabs button.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.design-lead {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  background: var(--bg2); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px);
  margin-bottom: clamp(24px, 3vw, 44px);
}
.design-lead .lead-txt { max-width: 44em; color: var(--ink); font-size: 1.02rem; }

/* project detail — gallery grid, images shown at natural ratio (no forced fill) */
.pd-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2vw, 26px); }
.pd-gallery.single { grid-template-columns: 1fr; max-width: 900px; }
.pd-shot { background: var(--bg2); border-radius: var(--radius); overflow: hidden; }
.pd-shot img { width: 100%; height: auto; display: block; }
.pd-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 100px); padding-top: clamp(36px, 4.5vw, 70px); padding-bottom: clamp(36px, 4.5vw, 70px); align-items: start; }
.pd-grid .desc { white-space: pre-line; color: var(--ink); font-size: 1.05rem; line-height: 1.7; }
.pd-grid .orig-note { color: var(--muted); font-size: .8rem; font-style: italic; margin-top: 16px; }
.pd-grid .credit { margin-top: 22px; font-size: .82rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.pd-grid .credit a { font-weight: 600; color: var(--ink); }
.pd-grid .credit a:hover { color: var(--accent, #a3232b); }
.pd-nav { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 40px; }
@media (max-width: 880px) { .pd-grid { grid-template-columns: 1fr; gap: 24px; } .pd-gallery { grid-template-columns: 1fr; } }

/* community cards (home teaser) */
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.6vw, 40px); }
.comm-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s; }
.comm-card:hover { border-color: var(--ink); }
.comm-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.comm-card .pad { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 8px; }
.comm-card .years { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent, #a3232b); font-weight: 600; }
.comm-card h3 { font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.6rem); letter-spacing: -.01em; }
.comm-card p { color: var(--muted); font-size: .92rem; }
@media (max-width: 720px) { .comm-grid { grid-template-columns: 1fr; } }

/* community page */
.comm-section { padding-top: clamp(40px, 5vw, 80px); }
.comm-section + .comm-section { border-top: 1px solid var(--line); }
.comm-lead { margin-bottom: clamp(28px, 4vw, 56px); }
.comm-lead .years { color: var(--accent, #a3232b); display: block; margin-bottom: 10px; }
.comm-lead .sub { color: var(--muted); max-width: 44em; margin: 12px 0 22px; }
.comm-proj { padding: clamp(24px, 3vw, 44px) 0; border-top: 1px solid var(--line); }
.comm-proj-head { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 8px; }
.comm-proj-head h3 { font-weight: 700; letter-spacing: -.02em; font-size: clamp(1.3rem, 2.6vw, 2rem); text-transform: uppercase; }
.comm-proj-head .yr { color: var(--muted); font-size: .82rem; font-weight: 600; }
.comm-proj-note { color: var(--accent, #a3232b); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.comm-proj-desc { color: var(--muted); max-width: 46em; margin-bottom: 22px; }

#about-body p { margin-bottom: 1.15em; }
#about-body p:last-child { margin-bottom: 0; }

/* CV / experience */
.cv-list { border-top: 1px solid var(--line); }
.cv-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.cv-row .yr { font-weight: 700; font-size: .95rem; letter-spacing: .02em; }
.cv-row .role { font-weight: 500; }
.cv-row .loc { color: var(--muted); font-size: .85rem; text-align: right; }
@media (max-width: 640px) {
  .cv-row { grid-template-columns: 84px 1fr; }
  .cv-row .loc { grid-column: 2; text-align: left; font-size: .8rem; }
}

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 130px); padding-bottom: clamp(56px, 8vw, 120px); }
.info-rows .row { display: grid; grid-template-columns: 130px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.info-rows .row .v { font-weight: 600; }
.cform label { display: block; margin: 18px 0 6px; }
.cform input, .cform textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--line); padding: 10px 2px;
  font-family: var(--sans); font-size: 1rem; background: transparent; outline: none; resize: vertical;
}
.cform input:focus, .cform textarea:focus { border-bottom-color: var(--ink); }
.cform .pill { margin-top: 26px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 130px); padding-bottom: clamp(56px, 8vw, 120px); }
.info-rows .row { display: grid; grid-template-columns: 130px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.info-rows .row .v { font-weight: 600; }
.cform label { display: block; margin: 18px 0 6px; }
.cform input, .cform textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--line); padding: 10px 2px;
  font-family: var(--sans); font-size: 1rem; background: transparent; outline: none; resize: vertical;
}
.cform input:focus, .cform textarea:focus { border-bottom-color: var(--ink); }
.cform .pill { margin-top: 26px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }
