:root {
  --bg: #100b0d;
  --bg-2: #160f12;
  --surface: #1c1316;
  --surface-2: #25191d;
  --paper: #efe5df;
  --text: #f8f3ef;
  --muted: #b9adb1;
  --line: rgba(255,255,255,.12);
  --accent: #a85b3b;
  --accent-bright: #c77951;
  --rose: #e2ba8f;
  --ink: #171013;
  --shadow: 0 28px 90px rgba(0,0,0,.35);
  --container: 1180px;
  --header: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--accent); color: #fff; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-kicker,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-kicker::before,
.hero-eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .8; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent-bright); box-shadow: 0 14px 35px rgba(152,39,66,.25); }
.button:disabled { opacity: .55; cursor: wait; transform: none; }
.under-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 11px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.under-link:hover { color: var(--rose); border-color: var(--rose); gap: 16px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.skip-link {
  position: fixed; left: 14px; top: -70px; z-index: 999;
  background: #fff; color: #111; padding: 11px 14px; border-radius: 8px;
}
.skip-link:focus { top: 14px; }

/* Header */
.site-header {
  height: var(--header);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(16,11,13,.74);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(16,11,13,.94); box-shadow: 0 12px 35px rgba(0,0,0,.18); }
.header-inner {
  width: min(calc(100% - 40px), var(--container));
  height: 100%; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 225px; height: 58px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  position: relative; padding: 27px 0 23px;
  color: #d8ced1; font-size: 12px; font-weight: 800;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 17px;
  height: 1px; background: #fff; transition: right .22s ease;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav .nav-contact {
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px;
  padding: 11px 18px !important; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.main-nav .nav-contact::after { display: none; }
.main-nav .nav-contact:hover, .main-nav .nav-contact.active { background: #fff; color: var(--ink); border-color: #fff; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 50%; color: #fff; background: transparent; align-items: center; justify-content: center; flex-direction: column;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: ""; display: block; width: 18px; height: 1px; background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle::before { transform: translateY(-5px); }
.menu-toggle::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(1px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(0) rotate(-45deg); }

/* Home */
.home-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.home-hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  left: -300px; top: 16%; background: radial-gradient(circle, rgba(152,39,66,.33), transparent 68%); pointer-events: none;
}
.home-hero-copy {
  min-width: 0;
  padding-top: calc(var(--header) + 66px);
  padding-right: clamp(34px, 4vw, 70px);
  padding-bottom: 72px;
  padding-left: max(34px, calc((100vw - var(--container))/2));
  display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
.home-hero-copy h1 {
  margin: 34px 0 34px;
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 620px;
  font-size: clamp(74px, 6.6vw, 116px);
  line-height: .82; letter-spacing: -.058em; font-weight: 400;
}
.home-hero-copy h1 span, .home-hero-copy h1 em { display: block; }
.home-hero-copy h1 em { color: var(--rose); font-weight: 400; transform: translateX(14px); }
.home-hero-copy > p { width: 100%; max-width: 520px; margin: 0 0 30px; color: #e4dbde; font-size: clamp(18px,1.55vw,23px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 26px; }
.home-hero-visual { position: relative; overflow: hidden; background: #24171b; min-width: 0; }
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 53%; filter: saturate(.9) contrast(1.04) brightness(.9); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(90deg,var(--bg) 0,rgba(16,11,13,.24) 20%,transparent 45%), linear-gradient(0deg,rgba(16,11,13,.48),transparent 52%); pointer-events: none; }
.image-note { position: absolute; z-index: 2; right: 24px; bottom: 28px; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.7); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; gap: 10px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.ticker { border-block: 1px solid var(--line); background: #151012; overflow: hidden; }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track span { padding: 18px 23px; color: #d8cfd1; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ticker-track i { color: var(--accent-bright); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.home-disciplines, .home-feature, .home-gallery { padding: 112px 0; }
.home-disciplines { background: linear-gradient(180deg,var(--bg),#150e11); }
.section-heading { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(250px,.65fr); gap: 60px; align-items: end; margin-bottom: 54px; }
.section-heading h2, .feature-copy h2, .final-cta h2, .manifesto h2, .page-hero h1, .inner-hero-copy h1, .contact-copy h2 {
  margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.05em;
}
.section-heading h2 { margin-top: 18px; font-size: clamp(50px,7vw,88px); line-height: .93; }
.section-heading h2 em, .feature-copy h2 em, .final-cta h2 em, .manifesto h2 em, .page-hero h1 em, .inner-hero-copy h1 em { color: var(--rose); font-weight: 400; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.discipline-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; padding: 1px; background: var(--line); }
.discipline-card { min-height: 330px; padding: 30px; background: var(--bg); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; transition: background .25s ease, transform .25s ease; }
.discipline-card::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -150px; top: -150px; background: radial-gradient(circle,rgba(152,39,66,.34),transparent 68%); transition: transform .35s ease; }
.discipline-card:hover { background: #1c1316; transform: translateY(-4px); }
.discipline-card:hover::before { transform: scale(1.35); }
.card-no { color: #8f8286; font-family: Georgia,serif; font-size: 18px; }
.discipline-card small, .project-entry small, .project-image small { color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.discipline-card h3 { margin: 12px 0 14px; font-family: Georgia,serif; font-size: clamp(42px,4.3vw,60px); font-weight: 400; letter-spacing: -.04em; }
.discipline-card p { margin: 0; max-width: 300px; color: var(--muted); line-height: 1.65; }
.discipline-card b { position: absolute; right: 25px; bottom: 22px; color: var(--rose); font-size: 23px; font-weight: 400; transition: transform .2s ease; }
.discipline-card:hover b { transform: translate(5px,-5px); }

.home-feature { background: var(--paper); color: var(--ink); }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.feature-copy .section-kicker { color: #8d2941; }
.feature-copy h2 { margin: 22px 0 28px; font-size: clamp(52px,6.4vw,86px); line-height: .96; }
.feature-copy h2 em { color: #8d2941; }
.feature-copy p { margin: 0 0 28px; max-width: 620px; color: #5f5457; font-size: 18px; line-height: 1.8; }
.feature-copy .under-link { color: var(--ink); border-color: rgba(23,16,19,.45); }
.feature-copy .under-link:hover { color: #8d2941; border-color: #8d2941; }
.feature-photo { position: relative; min-height: 650px; overflow: hidden; box-shadow: var(--shadow); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transition: transform .55s ease; }
.feature-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(11,7,8,.75),transparent 44%); }
.feature-photo span { position: absolute; z-index: 2; left: 28px; bottom: 26px; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.feature-photo:hover img { transform: scale(1.025); }

.home-gallery { background: #0d090a; }
.gallery-preview-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; min-height: 520px; gap: 14px; }
.gallery-preview-grid a { position: relative; overflow: hidden; background: var(--surface); }
.gallery-preview-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.gallery-preview-grid a:first-child img { object-position: center 44%; }
.gallery-preview-grid a:nth-child(2) img { object-position: center 30%; }
.gallery-preview-grid a:nth-child(3) img { object-position: center 42%; }
.gallery-preview-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,4,5,.76),transparent 48%); }
.gallery-preview-grid a:hover img { transform: scale(1.03); filter: brightness(.78); }
.gallery-preview-grid span { position: absolute; z-index: 2; left: 22px; bottom: 20px; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.final-cta { padding: 112px 0; text-align: center; background: radial-gradient(circle at 50% 40%,rgba(152,39,66,.18),transparent 42%),var(--bg-2); }
.final-cta .container { display: flex; flex-direction: column; align-items: center; }
.final-cta h2 { max-width: 1000px; margin: 24px 0 22px; font-size: clamp(54px,8vw,104px); line-height: .94; }
.final-cta p { max-width: 650px; margin: 0 0 28px; color: var(--muted); font-size: 18px; line-height: 1.7; }

/* Inner page heroes */
.page-hero { padding: calc(var(--header) + 112px) 0 92px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 620px; height: 620px; right: -280px; top: -290px; border-radius: 50%; background: radial-gradient(circle,rgba(152,39,66,.25),transparent 68%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 28px; font-size: clamp(72px,10vw,132px); line-height: .84; }
.page-hero > .container > p { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px,2vw,23px); line-height: 1.7; }

.inner-hero { min-height: 100svh; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--bg); overflow: hidden; }
.inner-hero-copy {
  padding-top: calc(var(--header) + 74px);
  padding-right: clamp(34px, 4vw, 70px);
  padding-bottom: 68px;
  padding-left: max(34px, calc((100vw - var(--container))/2));
  display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2;
}
.inner-hero-copy::before { content: ""; position: absolute; width: 560px; height: 560px; left: -330px; top: 16%; border-radius: 50%; background: radial-gradient(circle,rgba(152,39,66,.34),transparent 68%); }
.inner-hero-copy > * { position: relative; z-index: 1; }
.inner-hero-copy h1 { max-width: 690px; margin: 30px 0 28px; font-size: clamp(58px,6vw,96px); line-height: .9; }
.inner-hero-copy > p { max-width: 610px; margin: 0; color: #d7cdd0; font-size: clamp(18px,1.55vw,22px); line-height: 1.65; }
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 23px; }
.tag-row span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #ded4d7; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.inner-hero-image { position: relative; overflow: hidden; min-width: 0; }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: saturate(.9) contrast(1.03); }
.photo-caption { position: absolute; z-index: 2; right: 30px; bottom: 28px; text-align: right; display: grid; gap: 6px; }
.photo-caption span { color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.photo-caption strong { font-family: Georgia,serif; font-size: 25px; font-weight: 400; }

.manifesto { padding: 124px 0; background: #160f12; border-bottom: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: .34fr 1.66fr; gap: 72px; align-items: start; }
.manifesto-grid > .section-kicker { margin-top: 11px; }
.manifesto h2 { max-width: 990px; font-size: clamp(46px,6vw,84px); line-height: 1.02; }
.manifesto p { max-width: 840px; margin: 36px 0 0; color: var(--muted); font-size: 19px; line-height: 1.85; }
.story-section { padding: 112px 0; }
.story-layout { display: grid; grid-template-columns: .42fr 1.58fr; gap: 82px; align-items: start; }
.story-index { position: sticky; top: 110px; display: grid; border-top: 1px solid var(--line); }
.story-index span { padding: 17px 0; border-bottom: 1px solid var(--line); color: #8f8387; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-item { position: relative; padding: 0 0 54px 82px; margin-bottom: 54px; border-bottom: 1px solid var(--line); }
.story-item:last-child { margin-bottom: 0; }
.story-no { position: absolute; left: 0; top: 5px; color: var(--rose); font-family: Georgia,serif; font-size: 21px; }
.story-item h2 { margin: 0 0 24px; font-family: Georgia,serif; font-size: clamp(42px,5vw,66px); line-height: 1; letter-spacing: -.04em; font-weight: 400; }
.story-item p { margin: 0 0 17px; color: #c5babe; font-size: 17px; line-height: 1.82; }
.story-item strong { color: #fff; }
.three-pillars { padding: 112px 0; background: var(--paper); color: var(--ink); }
.dark-heading .section-kicker { color: #8d2941; }
.dark-heading h2 em { color: #8d2941; }
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(23,16,19,.18); }
.pillar-grid article { min-height: 290px; padding: 30px; border-right: 1px solid rgba(23,16,19,.18); display: flex; flex-direction: column; }
.pillar-grid article:last-child { border-right: 0; }
.pillar-grid article > span { color: #8d2941; font-family: Georgia,serif; }
.pillar-grid h3 { margin: auto 0 14px; font-family: Georgia,serif; font-size: 48px; font-weight: 400; letter-spacing: -.04em; }
.pillar-grid p { margin: 0; max-width: 300px; color: #5f5457; line-height: 1.65; }

/* Projects */
.project-section { padding: 100px 0 112px; }
.project-list { border-top: 1px solid var(--line); }
.project-entry { display: grid; grid-template-columns: 60px 1.1fr 1.2fr 36px; gap: 28px; align-items: center; padding: 30px 18px; border-bottom: 1px solid var(--line); transition: background .22s ease, padding .22s ease; }
.project-entry:hover { background: rgba(255,255,255,.035); padding-inline: 28px; }
.project-no { color: #867a7e; font-family: Georgia,serif; font-size: 17px; }
.project-entry h2 { margin: 9px 0 0; font-family: Georgia,serif; font-size: clamp(38px,4.2vw,60px); line-height: .95; font-weight: 400; letter-spacing: -.04em; }
.project-entry p { margin: 0; color: var(--muted); line-height: 1.7; }
.project-entry b { color: var(--rose); font-size: 22px; font-weight: 400; }
.project-visuals { display: grid; grid-template-columns: 1.1fr .9fr .72fr; gap: 14px; margin-top: 68px; }
.project-image { min-height: 500px; position: relative; overflow: hidden; background: var(--surface); }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.project-image:first-child img { object-position: center 28%; }
.project-image:nth-child(2) img { object-position: center 44%; }
.project-image.oku-card img { object-fit: cover; object-position: center; }
.project-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(8,5,6,.86),transparent 50%); }
.project-image > span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 23px; display: grid; gap: 9px; }
.project-image strong { font-family: Georgia,serif; font-size: 28px; line-height: 1.1; font-weight: 400; }
.project-image:hover img { transform: scale(1.03); filter: brightness(.8); }

/* Gallery */
.gallery-section { padding: 82px 0 112px; }
.gallery-tools { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #d9d0d2; padding: 10px 16px; font-size: 11px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-button:hover, .filter-button.active { background: #fff; color: var(--ink); border-color: #fff; }
.masonry-gallery { columns: 3; column-gap: 14px; }
.gallery-item { break-inside: avoid; margin: 0 0 14px; position: relative; overflow: hidden; background: var(--surface); cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform .5s ease, filter .35s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(6,4,5,.82),transparent 42%); opacity: .86; pointer-events: none; }
.gallery-item figcaption { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; display: flex; align-items: end; justify-content: space-between; gap: 15px; }
.gallery-item figcaption strong { font-family: Georgia,serif; font-size: 23px; font-weight: 400; }
.gallery-item figcaption span { color: #d8cdd0; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gallery-item:hover img { transform: scale(1.025); filter: brightness(.78); }
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 64px 24px; background: rgba(7,4,5,.94); opacity: 0; visibility: hidden; transition: opacity .22s ease, visibility .22s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px,92vw); max-height: 80vh; object-fit: contain; box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 22px; right: 24px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: transparent; color: #fff; font-size: 29px; line-height: 1; }
.lightbox-meta { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: #d8cfd1; font-size: 12px; }

/* Contact */
.contact-section { padding: 94px 0 118px; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
.contact-copy { position: sticky; top: 110px; }
.contact-copy h2 { margin: 22px 0 24px; font-size: clamp(50px,6vw,78px); line-height: .98; }
.contact-copy > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.contact-links { margin-top: 40px; border-top: 1px solid var(--line); }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); transition: color .2s ease, padding .2s ease; }
.contact-links a:hover { color: var(--rose); padding-left: 6px; }
.contact-links span { color: #8e8286; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-links strong { text-align: right; font-size: 13px; }
.contact-form { padding: 34px; border: 1px solid var(--line); background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: grid; gap: 9px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .form-field > span { color: #d7cdd0; font-size: 11px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(255,255,255,.17); border-radius: 0; background: #140e10; color: #fff; padding: 14px 15px; outline: none; transition: border-color .2s ease, background .2s ease; }
.form-field textarea { min-height: 175px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--rose); background: #191114; }
.form-field select option { background: #160f12; }
.form-note { color: #877b7f; font-size: 11px; line-height: 1.6; margin: 20px 0; }
.form-status { min-height: 22px; margin-top: 14px; font-size: 12px; }
.form-status.success { color: #8fd2a3; }
.form-status.error { color: #f08b9b; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer { padding: 76px 0 26px; background: #0b0708; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .75fr; gap: 70px; }
.footer-brand img { width: 225px; height: 58px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 450px; margin: 23px 0 0; color: #8f8387; line-height: 1.75; }
.footer-column { display: grid; align-content: start; gap: 13px; }
.footer-column h3 { margin: 0 0 8px; color: #776b6f; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.footer-column a { color: #d5cbce; font-size: 13px; }
.footer-column a:hover { color: var(--rose); }
.footer-bottom { margin-top: 56px; padding-top: 23px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: #756a6e; font-size: 10px; }

/* Admin */
.admin-page { min-height: 100vh; padding: 34px 20px 70px; background: radial-gradient(circle at top left,rgba(152,39,66,.18),transparent 28%),var(--bg); }
.admin-shell { width: min(100%,980px); margin: auto; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 30px; }
.admin-top img { width: 220px; }
.admin-top .text-link { color: #ddd3d6; }
.admin-panel { max-width: 560px; margin: 80px auto 0; padding: 34px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.admin-panel h1, .admin-dashboard h1 { font-family: Georgia,serif; font-size: 50px; font-weight: 400; margin: 12px 0 14px; }
.admin-panel p { color: var(--muted); line-height: 1.7; }
.admin-panel form { display: grid; gap: 18px; margin-top: 25px; }
.admin-dashboard { margin-top: 60px; }
.admin-summary { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.admin-summary span { padding: 10px 14px; border: 1px solid var(--line); color: #d8cfd1; font-size: 11px; }
.small-button { border: 1px solid var(--line); background: transparent; color: #fff; padding: 10px 14px; }
.message-list { display: grid; gap: 14px; }
.message-card { padding: 22px; border: 1px solid var(--line); background: var(--surface); }
.message-card.unread { border-left: 3px solid var(--accent-bright); }
.message-head { display: flex; justify-content: space-between; gap: 20px; }
.message-head h3 { margin: 0; font-size: 18px; }
.message-head time { color: #807478; font-size: 10px; }
.message-meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--rose); font-size: 11px; margin: 10px 0; }
.message-card p { color: #c9bec1; line-height: 1.7; white-space: pre-wrap; }
.message-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.message-actions button { border: 1px solid var(--line); background: transparent; color: #fff; padding: 8px 11px; font-size: 11px; }
.message-actions button.danger { color: #f08b9b; }
.empty-state { padding: 40px; border: 1px solid var(--line); text-align: center; color: var(--muted); }

/* 404 */
.not-found { min-height: 100vh; display: grid; place-items: center; padding: 40px; text-align: center; }
.not-found strong { display: block; font-family: Georgia,serif; font-size: clamp(120px,22vw,300px); font-weight: 400; line-height: .8; color: var(--rose); }
.not-found h1 { margin: 26px 0 12px; font-family: Georgia,serif; font-size: 48px; font-weight: 400; }
.not-found p { color: var(--muted); }

@media (max-width: 1050px) {
  .brand img, .footer-brand img { width: 205px; }
  .main-nav { gap: 19px; }
  .home-hero { grid-template-columns: .96fr 1.04fr; }
  .home-hero-copy { padding-left: 40px; padding-right: 28px; }
  .discipline-grid { grid-template-columns: 1fr 1fr; }
  .discipline-card:last-child { grid-column: 1 / -1; }
  .feature-grid { gap: 50px; }
  .project-entry { grid-template-columns: 50px 1fr 1.15fr 30px; gap: 20px; }
  .project-visuals { grid-template-columns: 1fr 1fr; }
  .project-image:last-child { grid-column: 1 / -1; min-height: 400px; }
}

@media (max-width: 860px) {
  :root { --header: 68px; }
  .container { width: min(calc(100% - 30px),var(--container)); }
  .header-inner { width: calc(100% - 30px); }
  .brand img { width: 192px; height: 52px; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: var(--header) 0 0; padding: 22px 22px 42px;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(16,11,13,.99); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: Georgia,serif; font-size: 32px; font-weight: 400; }
  .main-nav a::after { display: none; }
  .main-nav .nav-contact { border: 0; border-radius: 0; }

  .home-hero { min-height: auto; display: flex; flex-direction: column; padding-top: var(--header); }
  .home-hero-visual { order: 1; height: 62svh; min-height: 500px; }
  .home-hero-copy { order: 2; padding: 50px 24px 70px; }
  .home-hero-copy h1 { font-size: clamp(72px,18vw,112px); }
  .home-hero-visual img { object-position: center 53%; }
  .image-shade { background: linear-gradient(0deg,var(--bg) 0,rgba(16,11,13,.22) 38%,transparent 65%); }
  .image-note, .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p { max-width: 560px; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card:last-child { grid-column: auto; }
  .discipline-card { min-height: 255px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-photo { min-height: 600px; }
  .gallery-preview-grid { grid-template-columns: 1.2fr .8fr; grid-template-rows: 390px 270px; min-height: auto; }
  .gallery-preview-grid a:first-child { grid-row: 1 / 3; }

  .inner-hero { min-height: auto; display: flex; flex-direction: column; padding-top: var(--header); }
  .inner-hero-image { order: 1; height: 65svh; min-height: 520px; }
  .inner-hero-copy { order: 2; padding: 56px 24px 70px; }
  .inner-hero-image .image-shade { background: linear-gradient(0deg,var(--bg) 0,rgba(16,11,13,.18) 38%,transparent 65%); }
  .manifesto { padding: 88px 0; }
  .manifesto-grid, .story-layout, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 28px; }
  .story-index { position: static; grid-template-columns: repeat(5,max-content); gap: 22px; overflow-x: auto; border-top: 0; padding-bottom: 15px; }
  .story-index span { border: 0; white-space: nowrap; padding: 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(23,16,19,.18); }
  .pillar-grid article:last-child { border-bottom: 0; }
  .project-entry { grid-template-columns: 44px 1fr 28px; }
  .project-entry p { grid-column: 2 / 4; }
  .project-visuals { grid-template-columns: 1fr; }
  .project-image:last-child { grid-column: auto; }
  .masonry-gallery { columns: 2; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 24px); }
  .header-inner { width: calc(100% - 24px); }
  .brand img { width: 174px; }
  .home-hero-visual { height: 56svh; min-height: 430px; }
  .home-hero-copy { padding: 42px 18px 60px; }
  .hero-eyebrow, .section-kicker { font-size: 9px; letter-spacing: .16em; }
  .home-hero-copy h1 { margin: 26px 0 28px; font-size: clamp(66px,22vw,92px); }
  .home-hero-copy > p { font-size: 17px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .ticker-track span { padding: 16px 18px; }
  .home-disciplines, .home-feature, .home-gallery { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: 50px; }
  .discipline-card { min-height: 225px; padding: 23px; }
  .discipline-card h3 { font-size: 42px; }
  .feature-copy h2 { font-size: 48px; }
  .feature-copy p { font-size: 16px; }
  .feature-photo { min-height: 500px; }
  .gallery-preview-grid { grid-template-columns: 1fr; grid-template-rows: 380px 290px 290px; }
  .gallery-preview-grid a:first-child { grid-row: auto; }
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 52px; }
  .final-cta .button { width: 100%; }

  .page-hero { padding: calc(var(--header) + 68px) 0 62px; }
  .page-hero h1 { font-size: 68px; }
  .page-hero > .container > p { font-size: 17px; }
  .inner-hero-image { height: 59svh; min-height: 440px; }
  .inner-hero-copy { padding: 46px 18px 62px; }
  .inner-hero-copy h1 { font-size: clamp(56px,18vw,82px); }
  .inner-hero-copy > p { font-size: 17px; }
  .photo-caption { right: 18px; bottom: 18px; }
  .manifesto { padding: 72px 0; }
  .manifesto h2 { font-size: 43px; }
  .manifesto p { font-size: 16px; }
  .story-section { padding: 74px 0; }
  .story-layout { gap: 42px; }
  .story-item { padding-left: 0; padding-bottom: 42px; margin-bottom: 42px; }
  .story-no { position: static; display: block; margin-bottom: 14px; }
  .story-item h2 { font-size: 41px; }
  .story-item p { font-size: 16px; }
  .three-pillars { padding: 76px 0; }
  .pillar-grid h3 { font-size: 42px; }

  .project-section { padding: 66px 0 80px; }
  .project-entry { padding: 24px 10px; grid-template-columns: 36px 1fr 24px; gap: 13px; }
  .project-entry:hover { padding-inline: 10px; }
  .project-entry h2 { font-size: 38px; }
  .project-entry p { font-size: 14px; }
  .project-visuals { margin-top: 46px; }
  .project-image { min-height: 400px; }
  .project-image:last-child { min-height: 330px; }

  .gallery-section { padding: 56px 0 82px; }
  .gallery-tools { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .filter-button { white-space: nowrap; }
  .masonry-gallery { columns: 1; }
  .gallery-item figcaption strong { font-size: 22px; }
  .lightbox { padding: 72px 12px; }

  .contact-section { padding: 66px 0 84px; }
  .contact-grid { gap: 52px; }
  .contact-copy h2 { font-size: 48px; }
  .contact-form { padding: 22px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-links a { align-items: flex-start; flex-direction: column; }
  .contact-links strong { text-align: left; }
  .contact-form .button { width: 100%; }

  .site-footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .admin-page { padding: 20px 12px 60px; }
  .admin-panel { padding: 22px 17px; margin-top: 45px; }
  .admin-top img { width: 180px; }
  .message-head { flex-direction: column; }
}

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

/* Small compatibility and admin refinements */
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 10px 0 7px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; font-weight: 800; }
.text-link:hover { color: var(--rose); border-color: var(--rose); }
.admin-badge { display: inline-flex; align-items: center; width: max-content; padding: 8px 11px; border: 1px solid var(--line); color: #d7cdd0; font-size: 10px; }
.message-head small { display: block; margin-top: 8px; color: #8f8387; line-height: 1.55; }
.message-head small a { color: var(--rose); }
.eyebrow { color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }


/* V11 — özgün düzen, dengeli alan şeridi ve yenilenmiş iletişim */
.brand img,
.footer-brand img { width: 190px; height: 48px; }

/* Ana sayfa ikiye bölünmüş yapıyı korur, ancak fotoğrafı çerçeveleyerek özgünleştirir. */
@media (min-width: 861px) {
  .home-hero {
    grid-template-columns: minmax(0,.96fr) minmax(560px,1.04fr);
    padding: 0 24px 24px 0;
    background:
      linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px) 0 0 / 86px 86px,
      var(--bg);
  }
  .home-hero-copy { padding-top: calc(var(--header) + 72px); padding-right: clamp(38px,4vw,70px); padding-bottom: 76px; }
  .home-hero-copy::after {
    content: ""; position: absolute; left: max(28px,calc((100vw - var(--container))/2));
    top: 24%; bottom: 24%; width: 1px; background: linear-gradient(transparent,var(--accent),transparent);
    opacity: .42; transform: translateX(-24px);
  }
  .home-hero-visual {
    margin-top: calc(var(--header) + 22px);
    min-height: calc(100svh - var(--header) - 46px);
    border-radius: 0 0 0 74px;
    box-shadow: -24px 28px 75px rgba(0,0,0,.27);
  }
  .home-hero-visual::before {
    content: ""; position: absolute; z-index: 3; inset: 15px; border: 1px solid rgba(255,255,255,.16);
    border-radius: 0 0 0 60px; pointer-events: none;
  }
  .scroll-cue { left: 44%; }
  .inner-hero { padding: 0 24px 24px 0; grid-template-columns: .96fr 1.04fr; }
  .inner-hero-image {
    margin-top: calc(var(--header) + 22px); border-radius: 0 0 0 70px;
    box-shadow: -24px 28px 75px rgba(0,0,0,.24);
  }
  .inner-hero-image::before {
    content: ""; position: absolute; z-index: 3; inset: 15px; border: 1px solid rgba(255,255,255,.16);
    border-radius: 0 0 0 57px; pointer-events: none;
  }
}

/* Hareketli ve kırpılan ticker yerine eşit oranlı, yatay kaydırılabilir alan şeridi. */
.focus-strip { border-block: 1px solid var(--line); background: #151012; overflow: hidden; }
.focus-strip-inner {
  width: min(100%,1440px); margin-inline: auto; display: grid; grid-template-columns: repeat(5,minmax(0,1fr));
}
.focus-strip span {
  min-height: 62px; padding: 0 24px; display: flex; align-items: center; gap: 13px;
  border-right: 1px solid var(--line); color: #e2d8db; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}
.focus-strip span:last-child { border-right: 0; }
.focus-strip b { color: var(--rose); font-family: Georgia,serif; font-size: 13px; font-weight: 400; letter-spacing: 0; }
.focus-strip span::after { content: ""; width: 4px; height: 4px; margin-left: auto; border-radius: 50%; background: var(--accent-bright); opacity: .75; }

/* Hakkımda girişini daha doğal ve daha kişisel gösterir. */
.about-hero .inner-hero-copy h1 { max-width: 760px; }
.about-hero .inner-hero-copy > p { max-width: 650px; }
.about-hero .hero-eyebrow { color: #c99ca7; }

/* İletişim: büyük başlık olmadan form doğrudan görünür. */
.contact-main { min-height: 100svh; }
.contact-direct { padding: calc(var(--header) + 62px) 0 112px; background: radial-gradient(circle at 76% 12%,rgba(152,39,66,.18),transparent 27%),var(--bg); }
.contact-direct-grid { display: grid; grid-template-columns: minmax(0,1.34fr) minmax(300px,.66fr); gap: 54px; align-items: start; }
.contact-direct .contact-form { padding: 42px; background: linear-gradient(145deg,rgba(255,255,255,.046),rgba(255,255,255,.012)); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.contact-side { padding: 12px 0 0; position: sticky; top: calc(var(--header) + 38px); }
.contact-side-label { display: inline-flex; padding: 8px 11px; border: 1px solid var(--line); color: var(--rose); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.contact-side > p { margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.contact-side .contact-links { margin-top: 32px; }
.form-field input, .form-field select, .form-field textarea { min-height: 54px; padding: 16px; }
.form-field textarea { min-height: 225px; }
.form-submit-row { margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.form-submit-row .form-note { margin: 0; max-width: 330px; }
.contact-direct .form-status { text-align: right; }

@media (max-width: 1050px) {
  .brand img, .footer-brand img { width: 178px; }
  .focus-strip span { padding-inline: 16px; font-size: 10px; }
}

@media (max-width: 860px) {
  .brand img { width: 170px; height: 46px; }
  .home-hero { padding: 0; }
  .home-hero-visual { margin: 0; border-radius: 0; box-shadow: none; }
  .home-hero-visual::before { display: none; }
  .inner-hero { padding-right: 0; }
  .inner-hero-image { margin: 0; border-radius: 0; box-shadow: none; }
  .inner-hero-image::before { display: none; }
  .focus-strip { overflow-x: auto; scrollbar-width: none; }
  .focus-strip::-webkit-scrollbar { display: none; }
  .focus-strip-inner { width: max-content; min-width: 100%; display: flex; }
  .focus-strip span { min-width: 185px; scroll-snap-align: start; }
  .contact-direct { padding-top: calc(var(--header) + 34px); }
  .contact-direct-grid { grid-template-columns: 1fr; gap: 42px; }
  .contact-side { position: static; }
}

@media (max-width: 560px) {
  .brand img { width: 158px; height: 43px; }
  .focus-strip span { min-height: 56px; min-width: 168px; padding-inline: 15px; }
  .contact-direct { padding: calc(var(--header) + 22px) 0 82px; }
  .contact-direct .contact-form { padding: 23px 16px; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .button { width: 100%; }
  .contact-direct .form-status { text-align: left; }
}


/* V12 — geniş ekran oran düzeltmeleri */
@media (min-width: 861px) {
  .home-hero-copy > p { min-width: 0; }
  .hero-actions { max-width: 560px; }
  .about-hero .inner-hero-copy h1 { max-width: 560px; }
  .about-hero .inner-hero-copy > p { max-width: 570px; }
}
@media (min-width: 1500px) {
  .home-hero-copy h1 { font-size: 112px; }
  .inner-hero-copy h1 { font-size: 92px; }
}
@media (min-width: 861px) and (max-width: 1120px) {
  .home-hero { grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr); }
  .home-hero-copy { padding-left: 38px; padding-right: 34px; }
  .home-hero-copy h1 { font-size: clamp(72px,9vw,94px); }
  .inner-hero { grid-template-columns: minmax(0,.94fr) minmax(500px,1.06fr); }
  .inner-hero-copy { padding-left: 38px; padding-right: 34px; }
  .inner-hero-copy h1 { font-size: clamp(58px,7.4vw,82px); }
}

/* V13 — daha sıcak renk paleti, tam görünen fotoğraflar ve güçlü mobil düzen */
:root {
  --accent: #a85b3b;
  --accent-bright: #c77951;
  --rose: #e2ba8f;
  --warm-soft: #f0d2ae;
  --paper: #eee6dc;
}

::selection { background: var(--accent); color: #fff; }
.feature-copy .section-kicker,
.dark-heading .section-kicker,
.pillar-grid article > span { color: #9b583d; }
.feature-copy h2 em,
.dark-heading h2 em { color: #9b583d; }
.feature-copy .under-link:hover { color: #9b583d; border-color: #9b583d; }
.about-hero .hero-eyebrow { color: var(--warm-soft); }

/* Yeni wordmark */
.brand img,
.footer-brand img { width: 205px; height: 54px; }

/* Fotoğrafın tamamını gösteren katmanlı sahne */
.home-hero-visual,
.inner-hero-image { isolation: isolate; background: #17100d; }
.visual-backdrop {
  position: absolute;
  z-index: 0;
  inset: -34px;
  background-position: center;
  background-size: cover;
  filter: blur(28px) brightness(.34) saturate(.8);
  transform: scale(1.08);
  opacity: .95;
  pointer-events: none;
}
.hero-backdrop { background-image: url('/assets/images/hero-yeni.webp'); }
.about-backdrop { background-image: url('/assets/images/hakkimda-yeni.webp'); }
.home-hero-visual > img,
.inner-hero-image > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(.94) contrast(1.02) brightness(.94);
}
.home-hero-visual .image-shade,
.inner-hero-image .image-shade { z-index: 2; background: linear-gradient(90deg,rgba(16,11,13,.34),transparent 24%),linear-gradient(0deg,rgba(16,11,13,.22),transparent 42%); }
.image-note,
.photo-caption { z-index: 4; }

/* Daha anlaşılır fakat sakin aşağı yönlendirmesi */
.scroll-cue,
.about-story-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,239,232,.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.scroll-cue i,
.about-story-link i { width: 54px; height: 1px; background: currentColor; opacity: .55; }
.scroll-cue b,
.about-story-link b { color: var(--rose); font-size: 17px; font-weight: 400; animation: cueBounce 1.7s ease-in-out infinite; }
@keyframes cueBounce { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }
.about-story-link { width: max-content; margin-top: 14px; padding: 13px 0 8px; border-bottom: 1px solid rgba(226,186,143,.5); transition: color .2s ease, border-color .2s ease; }
.about-story-link:hover { color: #fff; border-color: var(--rose); }

@media (min-width: 861px) {
  .home-hero {
    grid-template-columns: minmax(450px,.84fr) minmax(620px,1.16fr);
    min-height: 100svh;
  }
  .home-hero-copy {
    justify-content: flex-start;
    padding-top: clamp(142px,17vh,184px);
    padding-bottom: 112px;
  }
  .home-hero-copy h1 {
    margin: 26px 0 27px;
    font-size: clamp(78px,6.4vw,110px);
    line-height: .84;
  }
  .home-hero-copy > p { max-width: 490px; font-size: clamp(17px,1.28vw,21px); }
  .home-hero-visual {
    min-height: calc(100svh - var(--header) - 44px);
    height: calc(100svh - var(--header) - 44px);
  }
  .scroll-cue {
    left: max(34px,calc((100vw - var(--container))/2));
    bottom: 34px;
    transform: none;
  }

  .inner-hero { grid-template-columns: minmax(450px,.84fr) minmax(620px,1.16fr); }
  .inner-hero-copy {
    justify-content: flex-start;
    padding-top: clamp(150px,18vh,196px);
    padding-bottom: 90px;
  }
  .about-hero .inner-hero-copy h1 { margin-bottom: 22px; }
  .inner-hero-image {
    min-height: calc(100svh - var(--header) - 44px);
    height: calc(100svh - var(--header) - 44px);
  }
}

@media (max-width: 1120px) and (min-width: 861px) {
  .home-hero,
  .inner-hero { grid-template-columns: minmax(390px,.86fr) minmax(510px,1.14fr); }
  .home-hero-copy,
  .inner-hero-copy { padding-left: 34px; padding-right: 30px; }
  .home-hero-copy h1 { font-size: clamp(70px,8vw,92px); }
  .inner-hero-copy h1 { font-size: clamp(58px,7vw,80px); }
  .scroll-cue { left: 34px; }
}

@media (max-width: 860px) {
  :root { --header: 66px; }
  .container { width: min(calc(100% - 32px),var(--container)); }
  .brand img { width: 180px; height: 48px; }

  .home-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: var(--header) 0 18px;
    overflow: visible;
  }
  .home-hero-copy {
    order: 1;
    justify-content: flex-start;
    padding: 46px 22px 38px;
  }
  .home-hero-copy h1 {
    margin: 24px 0 24px;
    max-width: 100%;
    font-size: clamp(66px,18vw,102px);
    line-height: .85;
  }
  .home-hero-copy h1 em { transform: translateX(8px); }
  .home-hero-copy > p { max-width: 520px; margin-bottom: 25px; font-size: 17px; line-height: 1.55; }
  .hero-actions { gap: 12px 18px; }
  .home-hero-visual {
    order: 2;
    height: min(68svh,680px);
    min-height: 500px;
    margin: 0 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 0 0 34px 34px;
    overflow: hidden;
  }
  .home-hero-visual > img { object-fit: contain; object-position: center; }
  .image-note { display: none; }
  .scroll-cue {
    display: inline-flex !important;
    left: auto;
    right: 24px;
    bottom: 34px;
    transform: none;
    z-index: 8;
    padding: 10px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(16,11,13,.72);
    backdrop-filter: blur(10px);
  }
  .scroll-cue i { width: 30px; }

  .inner-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: var(--header) 0 18px;
    overflow: visible;
  }
  .inner-hero-copy {
    order: 1;
    padding: 48px 22px 42px;
    justify-content: flex-start;
  }
  .inner-hero-copy h1 { margin: 24px 0 18px; font-size: clamp(58px,16vw,84px); }
  .inner-hero-image {
    order: 2;
    height: min(70svh,700px);
    min-height: 520px;
    margin: 0 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 0 0 34px 34px;
    overflow: hidden;
  }
  .inner-hero-image > img { object-fit: contain; object-position: center; }
  .about-story-link { margin-top: 3px; }
  .photo-caption { right: 20px; bottom: 20px; }

  .focus-strip-inner { scroll-snap-type: x mandatory; }
}

@media (max-width: 560px) {
  :root { --header: 62px; }
  .container { width: min(calc(100% - 28px),var(--container)); }
  .brand img { width: 164px; height: 44px; }
  .home-hero-copy { padding: 36px 18px 32px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .16em; }
  .home-hero-copy h1 { margin: 21px 0 21px; font-size: clamp(62px,20vw,88px); }
  .home-hero-copy > p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .under-link { flex: 1 1 auto; }
  .home-hero-visual { height: 66svh; min-height: 470px; margin-inline: 8px; border-radius: 0 0 26px 26px; }
  .scroll-cue { right: 18px; bottom: 27px; }
  .scroll-cue span { display: none; }
  .scroll-cue i { width: 34px; }

  .inner-hero-copy { padding: 38px 18px 34px; }
  .inner-hero-copy h1 { font-size: clamp(54px,18vw,78px); }
  .inner-hero-image { height: 66svh; min-height: 480px; margin-inline: 8px; border-radius: 0 0 26px 26px; }
  .about-story-link { font-size: 9px; }
  .about-story-link i { width: 42px; }
  .photo-caption { right: 16px; left: 16px; bottom: 16px; text-align: left; }
  .photo-caption strong { font-size: 20px; }
}

/* Mobilde aşağı yönlendirmesi ilk ekranda, fotoğrafın hemen önünde görünür. */
@media (max-width: 860px) {
  .home-hero > .scroll-cue {
    position: static;
    order: 1;
    align-self: flex-end;
    margin: -8px 22px 18px 0;
    padding: 0 0 8px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(226,186,143,.42);
    background: transparent;
    backdrop-filter: none;
  }
}
@media (max-width: 560px) {
  .home-hero > .scroll-cue { margin: -4px 18px 16px 0; }
  .home-hero > .scroll-cue span { display: inline; }
}


/* V14 — tam bölünmüş görsel düzen, sıkı dikey ritim ve mobil öncelikli düzeltmeler */

/* Masaüstünde referanstaki gibi temiz 50/50 bölünmüş giriş. */
@media (min-width: 861px) {
  .home-hero,
  .inner-hero {
    height: 100svh;
    min-height: 760px;
    padding: var(--header) 0 0;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    overflow: hidden;
    background: var(--bg);
  }

  .home-hero::before { opacity: .42; }

  .home-hero-copy,
  .inner-hero-copy {
    min-height: 0;
    justify-content: center;
    padding-top: clamp(36px,5vh,66px);
    padding-right: clamp(42px,5vw,82px);
    padding-bottom: clamp(74px,9vh,104px);
    padding-left: max(42px,calc((100vw - var(--container))/2));
  }

  .home-hero-copy::after { display: none !important; }

  .home-hero-copy h1 {
    margin: 25px 0 26px;
    max-width: 600px;
    font-size: clamp(82px,6.35vw,116px);
    line-height: .83;
  }

  .home-hero-copy > p {
    max-width: 500px;
    margin-bottom: 28px;
    font-size: clamp(17px,1.22vw,21px);
  }

  .hero-actions {
    max-width: 610px;
    gap: 15px 27px;
  }

  .home-hero-visual,
  .inner-hero-image {
    height: calc(100svh - var(--header));
    min-height: 688px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #171113;
  }

  .home-hero-visual::before,
  .inner-hero-image::before,
  .visual-backdrop {
    display: none !important;
  }

  .home-hero-visual > img,
  .inner-hero-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.035) brightness(.9);
  }

  .home-hero-visual > img { object-position: center 55%; }
  .inner-hero-image > img { object-position: center 47%; }

  .home-hero-visual .image-shade,
  .inner-hero-image .image-shade {
    background:
      linear-gradient(90deg,rgba(16,11,13,.28),transparent 20%),
      linear-gradient(0deg,rgba(16,11,13,.32),transparent 42%);
  }

  .scroll-cue {
    left: max(42px,calc((100vw - var(--container))/2));
    right: auto;
    bottom: 24px;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .inner-hero-copy h1 {
    margin: 26px 0 18px;
    max-width: 630px;
    font-size: clamp(72px,5.7vw,104px);
    line-height: .88;
  }

  .about-story-link {
    margin-top: 3px;
  }
}

/* Ana sayfadaki bir sonraki içerik gereksiz boşluk olmadan başlar. */
.home-disciplines { padding: 88px 0 96px; }
.home-feature,
.home-gallery { padding: 96px 0; }
.manifesto { padding: 94px 0; }
.story-section { padding: 94px 0; }

/* Mobilde metin, fotoğraf ve devam işareti tek ritimde ilerler. */
@media (max-width: 860px) {
  .home-hero,
  .inner-hero {
    display: flex;
    height: auto;
    min-height: 0;
    padding: var(--header) 0 0;
    overflow: visible;
  }

  .home-hero-copy,
  .inner-hero-copy {
    order: 1;
    min-height: 0;
    justify-content: flex-start;
    padding: 38px 20px 25px;
  }

  .home-hero-copy h1 {
    margin: 21px 0 22px;
    font-size: clamp(67px,19vw,92px);
    line-height: .84;
  }

  .home-hero-copy > p {
    margin: 0 0 24px;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 13px 18px;
  }

  .home-hero-visual,
  .inner-hero-image {
    order: 2;
    position: relative;
    width: 100%;
    height: min(75svh,690px);
    min-height: 510px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .home-hero-visual::before,
  .inner-hero-image::before,
  .visual-backdrop {
    display: none !important;
  }

  .home-hero-visual > img,
  .inner-hero-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.94) contrast(1.025) brightness(.92);
  }

  .home-hero-visual > img { object-position: center 54%; }
  .inner-hero-image > img { object-position: center 46%; }

  .scroll-cue {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 9px 13px;
    white-space: nowrap;
  }

  .inner-hero-copy {
    padding-bottom: 21px;
  }

  .inner-hero-copy h1 {
    margin: 20px 0 11px;
  }

  .about-story-link {
    margin: 0;
    padding: 11px 0 7px;
  }

  .home-disciplines,
  .home-feature,
  .home-gallery,
  .manifesto,
  .story-section {
    padding-top: 70px;
    padding-bottom: 74px;
  }

  .section-heading { margin-bottom: 38px; }
}

@media (max-width: 560px) {
  .home-hero-copy,
  .inner-hero-copy { padding-inline: 18px; }

  .home-hero-copy { padding-top: 32px; }
  .inner-hero-copy { padding-top: 34px; }

  .home-hero-visual,
  .inner-hero-image {
    height: min(72svh,625px);
    min-height: 490px;
  }

  .home-hero-copy h1 { font-size: clamp(63px,20vw,84px); }
  .inner-hero-copy h1 { font-size: clamp(57px,17vw,78px); }

  .scroll-cue { bottom: 14px; }
  .focus-strip span { min-width: 155px; }
}

/* Kısa ekranlı laptoplarda yazı ve fotoğraf taşmadan görünür. */
@media (min-width: 861px) and (max-height: 820px) {
  .home-hero,
  .inner-hero { min-height: 680px; }
  .home-hero-visual,
  .inner-hero-image { min-height: 608px; }
  .home-hero-copy h1 { font-size: clamp(72px,6vw,96px); }
  .inner-hero-copy h1 { font-size: clamp(64px,5.3vw,88px); }
  .home-hero-copy,
  .inner-hero-copy { padding-top: 28px; padding-bottom: 68px; }
}

/* V17 — mobil görünüm dengelemesi (Instagram/Safari dahil) */
@media (max-width: 860px) {
  :root { --header: 64px; }

  .site-header { height: var(--header); }
  .header-inner { width: calc(100% - 28px); }
  .brand img { width: 154px; height: 42px; }
  .menu-toggle { width: 46px; height: 46px; flex: 0 0 46px; }

  .home-hero,
  .inner-hero {
    padding-top: var(--header);
    min-height: 0;
    height: auto;
  }

  .home-hero-copy,
  .inner-hero-copy {
    padding: 28px 20px 20px;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: .15em;
    gap: 9px;
  }

  .hero-eyebrow::before { width: 24px; }

  .home-hero-copy h1 {
    margin: 16px 0 17px;
    font-size: clamp(58px, 16.5vw, 74px);
    line-height: .86;
    letter-spacing: -.052em;
  }

  .home-hero-copy h1 em { transform: translateX(4px); }

  .home-hero-copy > p {
    max-width: 33ch;
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 18px;
    width: 100%;
    max-width: 430px;
    align-items: center;
  }

  .hero-actions .button {
    grid-column: 1 / -1;
    width: max-content;
    min-height: 46px;
    padding-inline: 19px;
    font-size: 12px;
  }

  .hero-actions .under-link {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 0 7px;
    font-size: 12px;
  }

  .home-hero > .scroll-cue {
    position: static;
    order: 1;
    align-self: flex-start;
    margin: 0 20px 14px;
    padding: 3px 0 6px;
    border: 0;
    border-bottom: 1px solid rgba(226,186,143,.32);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    transform: none;
    font-size: 9px;
  }

  .home-hero > .scroll-cue span { display: inline; }
  .home-hero > .scroll-cue i { width: 28px; }
  .home-hero > .scroll-cue b { font-size: 15px; }

  .home-hero-visual,
  .inner-hero-image {
    order: 2;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .home-hero-visual > img,
  .inner-hero-image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-hero-visual .image-shade,
  .inner-hero-image .image-shade {
    background: linear-gradient(0deg, rgba(16,11,13,.18), transparent 28%);
  }

  .inner-hero-copy {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .inner-hero-copy h1 {
    margin: 15px 0 8px;
    font-size: clamp(52px, 15vw, 68px);
    line-height: .9;
  }

  .about-story-link {
    margin-top: 2px;
    padding: 9px 0 6px;
    font-size: 9px;
  }

  .about-story-link i { width: 34px; }

  .focus-strip-inner { padding-inline: 8px; }
  .focus-strip span { min-width: 142px; min-height: 52px; }

  .home-disciplines,
  .home-feature,
  .home-gallery,
  .manifesto,
  .story-section {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: clamp(42px, 12vw, 54px); }

  .page-hero { padding-top: calc(var(--header) + 42px); padding-bottom: 46px; }
  .page-hero h1 { font-size: clamp(52px, 15vw, 68px); }
}

@media (max-width: 430px) {
  .header-inner { width: calc(100% - 24px); }
  .brand img { width: 146px; height: 40px; }
  .menu-toggle { width: 44px; height: 44px; flex-basis: 44px; }

  .home-hero-copy,
  .inner-hero-copy { padding-inline: 18px; }

  .home-hero-copy { padding-top: 24px; padding-bottom: 17px; }
  .home-hero-copy h1 { font-size: clamp(55px, 16.8vw, 69px); }
  .home-hero-copy > p { font-size: 14.5px; }

  .hero-actions { gap: 8px 16px; }
  .hero-actions .button { min-height: 44px; padding-inline: 17px; }

  .home-hero > .scroll-cue { margin-left: 18px; margin-bottom: 12px; }

  .inner-hero-copy { padding-top: 26px; }
  .inner-hero-copy h1 { font-size: clamp(49px, 14.8vw, 63px); }

  .photo-caption { right: 14px; left: 14px; bottom: 14px; }
  .photo-caption strong { font-size: 17px; }
}

@media (max-width: 360px) {
  .home-hero-copy h1 { font-size: 54px; }
  .home-hero-copy > p { font-size: 14px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button { grid-column: auto; }
}

/* =========================================================
   V18 — MOBİL İÇİN BAĞIMSIZ HERO + TAM EKRAN MENÜ
   Masaüstü düzenine dokunmaz; yalnızca 860px ve altında çalışır.
   ========================================================= */
@media (max-width: 860px) {
  :root { --header: 76px; }

  .site-header {
    position: fixed;
    height: var(--header);
    background: linear-gradient(180deg, rgba(9,6,7,.88), rgba(9,6,7,.18));
    border-bottom-color: rgba(255,255,255,.08);
    backdrop-filter: none;
  }
  .site-header.scrolled,
  body.menu-open .site-header {
    background: rgba(13,9,11,.96);
    backdrop-filter: blur(18px);
  }
  .header-inner {
    width: calc(100% - 32px);
    gap: 16px;
  }
  .brand { position: relative; z-index: 112; }
  .brand img {
    width: 174px;
    height: 52px;
  }
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 112;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: rgba(12,8,10,.42);
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
  }

  /* Tam ekran mobil menü */
  .main-nav {
    position: fixed !important;
    inset: 0 !important;
    z-index: 108;
    width: 100% !important;
    height: 100svh !important;
    min-height: 100dvh;
    padding: 108px 28px 34px !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0 !important;
    overflow-y: auto;
    background:
      radial-gradient(circle at 18% 18%, rgba(168,91,59,.22), transparent 34%),
      radial-gradient(circle at 82% 84%, rgba(226,186,143,.10), transparent 34%),
      #100b0d;
    transform: translateY(-105%) !important;
    visibility: hidden;
    opacity: 0;
    transition: transform .38s cubic-bezier(.22,.8,.25,1), opacity .25s ease, visibility .38s;
  }
  .main-nav.open {
    transform: translateY(0) !important;
    visibility: visible;
    opacity: 1;
  }
  .main-nav a,
  .main-nav .nav-contact {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 16px 0 !important;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
    border-radius: 0;
    color: #f8f3ef;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(29px, 8.5vw, 42px);
    font-weight: 400;
    line-height: 1.05;
    text-align: left;
    letter-spacing: -.025em;
  }
  .main-nav a::after { display: none !important; }
  .main-nav a::before {
    display: inline-block;
    width: 34px;
    margin-right: 4px;
    color: var(--rose);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    vertical-align: middle;
  }
  .main-nav a:nth-child(1)::before { content: '01'; }
  .main-nav a:nth-child(2)::before { content: '02'; }
  .main-nav a:nth-child(3)::before { content: '03'; }
  .main-nav a:nth-child(4)::before { content: '04'; }
  .main-nav a:nth-child(5)::before { content: '05'; }
  .main-nav a.active { color: var(--rose); }
  .main-nav .nav-contact {
    margin-top: 22px;
    padding: 15px 18px !important;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
  }
  .main-nav .nav-contact::before { display: none; }

  /* Mobil ana sayfa: görsel ve metin tek sahne */
  body[data-page='home'] .home-hero {
    position: relative !important;
    display: block !important;
    min-height: 100svh !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden;
    background: #0d090b;
    isolation: isolate;
  }
  body[data-page='home'] .home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block !important;
    pointer-events: none;
    opacity: 1 !important;
    background:
      linear-gradient(180deg, rgba(9,6,7,.36) 0%, rgba(9,6,7,.08) 24%, rgba(9,6,7,.18) 45%, rgba(9,6,7,.88) 86%, #100b0d 100%),
      linear-gradient(90deg, rgba(9,6,7,.66) 0%, rgba(9,6,7,.26) 70%, rgba(9,6,7,.08) 100%);
  }
  body[data-page='home'] .home-hero-visual {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    background: #171113;
  }
  body[data-page='home'] .home-hero-visual::before,
  body[data-page='home'] .visual-backdrop,
  body[data-page='home'] .image-note { display: none !important; }
  body[data-page='home'] .home-hero-visual > img {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover !important;
    object-position: 50% 52% !important;
    filter: saturate(.88) contrast(1.05) brightness(.82) !important;
    transform: none !important;
  }
  body[data-page='home'] .home-hero-visual .image-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block !important;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.10) 46%, rgba(10,6,8,.66) 86%, #100b0d 100%) !important;
  }
  body[data-page='home'] .home-hero-copy {
    position: relative !important;
    z-index: 3;
    width: 100% !important;
    min-height: 100svh !important;
    margin: 0 !important;
    padding: clamp(128px, 17svh, 158px) 24px 132px !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent !important;
  }
  body[data-page='home'] .home-hero-copy::after { display: none !important; }
  body[data-page='home'] .hero-eyebrow {
    color: #f0c99f;
    font-size: 10px;
    letter-spacing: .16em;
    text-shadow: 0 2px 18px rgba(0,0,0,.75);
  }
  body[data-page='home'] .hero-eyebrow::before { width: 24px; }
  body[data-page='home'] .home-hero-copy h1 {
    max-width: 100%;
    margin: 18px 0 22px !important;
    color: #f8f3ef;
    font-size: clamp(67px, 20.5vw, 90px) !important;
    line-height: .82 !important;
    letter-spacing: -.065em;
    text-shadow: 0 10px 40px rgba(0,0,0,.5);
  }
  body[data-page='home'] .home-hero-copy h1 span,
  body[data-page='home'] .home-hero-copy h1 em { display: block; }
  body[data-page='home'] .home-hero-copy h1 em {
    color: #efc79e;
    transform: translateX(10px) !important;
  }
  body[data-page='home'] .home-hero-copy > p {
    max-width: 320px !important;
    margin: 0 0 25px !important;
    color: rgba(255,255,255,.92);
    font-size: 16px !important;
    line-height: 1.55;
    text-shadow: 0 3px 22px rgba(0,0,0,.82);
  }
  body[data-page='home'] .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 390px);
    gap: 12px 22px !important;
  }
  body[data-page='home'] .hero-actions .button {
    grid-column: 1 / -1;
    width: max-content;
    min-height: 48px;
    padding-inline: 20px;
    box-shadow: 0 13px 34px rgba(0,0,0,.25);
  }
  body[data-page='home'] .hero-actions .under-link {
    width: 100%;
    justify-content: space-between;
    color: #fff;
    border-color: rgba(255,255,255,.48);
    text-shadow: 0 2px 14px rgba(0,0,0,.72);
  }
  body[data-page='home'] .home-hero > .scroll-cue {
    position: absolute !important;
    left: 24px !important;
    right: auto !important;
    bottom: 22px !important;
    z-index: 4;
    width: auto !important;
    margin: 0 !important;
    padding: 8px 0 7px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(239,199,158,.45);
    background: transparent !important;
  }
  body[data-page='home'] .home-hero > .scroll-cue span {
    display: inline !important;
    font-size: 9px;
    letter-spacing: .18em;
  }
  body[data-page='home'] .home-hero > .scroll-cue i { width: 26px !important; }
  body[data-page='home'] .home-hero > .scroll-cue b { color: #efc79e; }

  .focus-strip { position: relative; z-index: 2; }
}

@media (max-width: 430px) {
  .header-inner { width: calc(100% - 28px); }
  .brand img { width: 158px; }
  .menu-toggle { width: 46px; height: 46px; flex-basis: 46px; }
  .main-nav { padding: 96px 22px 28px !important; }
  .main-nav a { padding: 14px 0 !important; font-size: clamp(27px, 8.6vw, 36px); }

  body[data-page='home'] .home-hero-copy {
    padding: 116px 20px 118px !important;
  }
  body[data-page='home'] .home-hero-copy h1 {
    margin-top: 15px !important;
    font-size: clamp(61px, 19.5vw, 78px) !important;
  }
  body[data-page='home'] .home-hero-copy > p {
    max-width: 285px !important;
    font-size: 15px !important;
  }
  body[data-page='home'] .hero-actions { width: 100%; gap: 10px 18px !important; }
  body[data-page='home'] .hero-actions .button { min-height: 46px; font-size: 12px; }
  body[data-page='home'] .home-hero > .scroll-cue { left: 20px !important; bottom: 18px !important; }
}

@media (max-width: 360px) {
  .brand img { width: 148px; }
  body[data-page='home'] .home-hero-copy { padding-inline: 18px !important; }
  body[data-page='home'] .home-hero-copy h1 { font-size: 57px !important; }
  body[data-page='home'] .hero-actions { grid-template-columns: 1fr; }
  body[data-page='home'] .hero-actions .button { grid-column: 1; }
}


/* =========================================================
   V19 — MOBİL HERO İNCE AYARLARI
   Büyük dairesel katmanı kaldırır, rol metnini döndürür ve
   alt bağlantıları hafifçe aşağı alır.
   ========================================================= */
.rotating-role {
  display: inline-block;
  min-width: 11ch;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .26s ease, transform .26s ease;
  will-change: opacity, transform;
}
.rotating-role.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

@media (max-width: 860px) {
  /* Eski 520px daire ölçülerini tamamen sıfırla. */
  body[data-page='home'] .home-hero::before {
    width: auto !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    background:
      linear-gradient(180deg,
        rgba(9,6,7,.34) 0%,
        rgba(9,6,7,.08) 23%,
        rgba(9,6,7,.12) 46%,
        rgba(9,6,7,.56) 78%,
        #100b0d 100%),
      linear-gradient(90deg,
        rgba(9,6,7,.58) 0%,
        rgba(9,6,7,.22) 58%,
        rgba(9,6,7,.05) 100%) !important;
  }

  body[data-page='home'] .home-hero-visual .image-shade {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.03) 0%,
      rgba(0,0,0,.05) 48%,
      rgba(10,6,8,.42) 80%,
      #100b0d 100%
    ) !important;
  }

  body[data-page='home'] .rotating-role {
    min-width: 12ch;
  }

  /* Projeler ve Instagram bağlantılarını çok az aşağı kaydır. */
  body[data-page='home'] .hero-actions .under-link {
    margin-top: 5px;
  }
}

@media (max-width: 430px) {
  body[data-page='home'] .hero-actions .under-link {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rotating-role { transition: none; }
}

/* =========================================================
   V20 — MOBİL YÜZ ALANI, MARKA VARLIKLARI VE AKAN ALAN ŞERİDİ
   ========================================================= */

/* Kesintisiz, sakin hareket eden çalışma alanları şeridi. */
.focus-strip {
  overflow: hidden !important;
  scrollbar-width: none;
}
.focus-strip-track {
  display: flex;
  width: max-content;
  animation: focusStripMarquee 34s linear infinite;
  will-change: transform;
}
.focus-strip-group {
  display: flex;
  flex: 0 0 auto;
}
.focus-strip-group span {
  min-width: clamp(190px, 18vw, 258px);
}
.focus-strip:hover .focus-strip-track { animation-play-state: paused; }
@keyframes focusStripMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 860px) {
  .focus-strip { overflow: hidden !important; }
  .focus-strip-track { animation-duration: 26s; }
  .focus-strip-group span {
    min-width: 174px !important;
    scroll-snap-align: none !important;
  }

  /* Projeler ve Instagram satırı, yüzde değil gövde hizasında görünür. */
  body[data-page='home'] .hero-actions .under-link {
    margin-top: clamp(78px, 12svh, 112px) !important;
  }
}

@media (max-width: 430px) {
  body[data-page='home'] .hero-actions .under-link {
    margin-top: clamp(72px, 11svh, 96px) !important;
  }
  .focus-strip-group span { min-width: 164px !important; }
}

@media (max-width: 360px) {
  body[data-page='home'] .hero-actions .under-link {
    margin-top: 58px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-strip-track { animation: none; }
  .focus-strip-group[aria-hidden='true'] { display: none; }
}


/* =========================================================
   V21 — SABİT ÇALIŞMA ALANLARI VE ÖKU DİJİTAL HERO BAĞLANTISI
   ========================================================= */

/* Projeler ve Instagram'ın altında, ortalanmış ÖKU Dijital bağlantısı. */
.hero-actions .oku-link {
  flex: 0 0 100%;
  width: max-content;
  margin-inline: auto;
  justify-content: center;
  gap: 12px;
}

/* Alt çalışma alanları artık hareket etmez; tamamı her zaman görünür. */
.focus-strip {
  overflow: visible !important;
  padding: 10px clamp(10px, 2vw, 22px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent),
    #151012;
}
.focus-strip-track {
  display: block !important;
  width: 100% !important;
  max-width: 1440px;
  margin-inline: auto;
  animation: none !important;
  transform: none !important;
}
.focus-strip-group {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.focus-strip-group[aria-hidden='true'] { display: none !important; }
.focus-strip-group span {
  min-width: 0 !important;
  min-height: 58px;
  padding: 10px 13px !important;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 8px;
  background: rgba(255,255,255,.018);
  color: #e9dfe1;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  white-space: normal !important;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.focus-strip-group span::after { display: none !important; }
.focus-strip-group span:hover {
  transform: translateY(-2px);
  border-color: rgba(239,199,158,.32) !important;
  background: rgba(239,199,158,.045);
}
.focus-strip-group b {
  flex: 0 0 auto;
  color: #efc79e;
  font-size: 11px;
}

@media (max-width: 860px) {
  body[data-page='home'] .hero-actions .oku-link {
    grid-column: 1 / -1;
    justify-self: center;
    width: max-content !important;
    margin-top: 7px !important;
    padding-inline: 13px;
  }

  .focus-strip {
    padding: 10px;
  }
  .focus-strip-group {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 7px;
  }
  .focus-strip-group span {
    grid-column: span 2;
    min-height: 48px;
    padding: 8px 7px !important;
    gap: 6px;
    font-size: clamp(8px, 2.55vw, 10px);
    letter-spacing: .075em;
  }
  .focus-strip-group span:nth-child(4) { grid-column: 2 / span 2; }
  .focus-strip-group span:nth-child(5) { grid-column: 4 / span 2; }
}

@media (max-width: 430px) {
  body[data-page='home'] .hero-actions .oku-link {
    margin-top: 5px !important;
    font-size: 10px;
  }
  .focus-strip-group span {
    min-height: 46px;
    font-size: clamp(7.8px, 2.45vw, 9.5px);
  }
  .focus-strip-group b { font-size: 9px; }
}
