/* ============================================================
   yilmaz.tc — Premium Personal Brand Design System
   Editorial · Swiss Modernism · Gold Accent · 2026
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Core colors */
  --bg:           #F8F8F6;
  --white:        #FFFFFF;
  --ink:          #101820;
  --text:         #3A4149;
  --muted:        #5F6872;
  --border:       #D9DDE0;
  --border-mid:   #C4CAD0;
  --gold:         #B8914A;
  --gold-light:   #D4AA6A;
  --gold-bg:      rgba(184,145,74,.07);
  --gold-border:  rgba(184,145,74,.25);
  --dark:         #101820;
  --dark-2:       #182633;
  --surface:      #FFFFFF;
  --surface-alt:  #F0F1ED;

  /* Backward-compat aliases */
  --accent:       var(--gold);
  --accent-soft:  var(--gold-bg);
  --accent-ink:   #FFFFFF;
  --line:         var(--border);
  --line-strong:  var(--border-mid);
  --line-2:       var(--border);

  /* Layout */
  --maxw:      1280px;
  --gutter:    52px;
  --header-h:  80px;

  /* Typography */
  --ff: "Jost", "Inter", system-ui, -apple-system, sans-serif;

  /* Radii — Editorial: small, controlled */
  --r-xs: 3px;
  --r-sm: 5px;
  --r:    8px;
  --r-md: 12px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(16,24,32,.05);
  --shadow-sm: 0 4px 16px rgba(16,24,32,.07);
  --shadow:    0 12px 40px rgba(16,24,32,.10);
  --shadow-lg: 0 28px 72px rgba(16,24,32,.14);

  /* Transitions */
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t:        .25s;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.032em;
}
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.3em; }
strong { color: var(--ink); font-weight: 600; }

/* === LAYOUT UTILITIES === */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 10vw, 140px);
}
.section--sm {
  padding-block: clamp(48px, 6vw, 80px);
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--alt {
  background: var(--surface-alt);
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  border-radius: 2px;
}

/* Section heading utility */
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 16px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: var(--ff);
  font-weight: 500;
  font-size: .97rem;
  letter-spacing: -.01em;
  padding: .82em 1.55em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: transform var(--t) var(--ease), background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg.arr { transition: transform var(--t) var(--ease); }
.btn:hover svg.arr { transform: translateX(4px); }

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: #1d2a38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,24,32,.2);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-mid);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--primary { /* alias for dark buttons in old views */
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: #1d2a38;
  transform: translateY(-2px);
}
.btn--lg { padding: 1.05em 1.9em; font-size: 1rem; }

/* === CUSTOM CURSOR (desktop only) === */
.c-cursor {
  display: none;
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s;
  mix-blend-mode: normal;
}
.c-cursor.expanded { width: 36px; height: 36px; background: transparent; border: 1.5px solid var(--gold); opacity: .7; }

@media (pointer: fine) {
  .c-cursor { display: block; }
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(248,248,246,.92);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: height var(--t) var(--ease), box-shadow var(--t);
}
.site-header.scrolled {
  height: 66px;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(16,24,32,.05);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.brand-name { line-height: 1; }
.brand-tag {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  padding: .5em .85em;
  border-radius: var(--r-xs);
  transition: color var(--t), background var(--t);
}
.nav a:hover,
.nav a.active { color: var(--ink); }
.nav a.active { font-weight: 600; }

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .btn { padding: .65em 1.35em; font-size: .92rem; }

/* Hamburger */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--t);
}
.burger:hover { border-color: var(--border-mid); }
.burger span {
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  padding: calc(var(--header-h) + 32px) 28px 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.m-search { display: flex; gap: 8px; margin-bottom: 36px; }
.m-search input {
  flex: 1;
  padding: .95em 1.1em;
  font-size: 1rem;
  font-family: var(--ff);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xs);
  outline: none;
  background: var(--white);
  color: var(--ink);
}
.m-search input:focus { border-color: var(--gold); }
.m-search button {
  padding: 0 1.4em;
  border: none;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-family: var(--ff);
}
.m-links { list-style: none; padding: 0; }
.m-links li { border-bottom: 1px solid var(--border); }
.m-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--ink);
  padding: .5em 0;
  letter-spacing: -.04em;
  transition: color var(--t), padding var(--t) var(--ease);
}
.m-links a span { color: var(--border-mid); transition: color var(--t), transform var(--t) var(--ease); }
.m-links a:hover { color: var(--gold); padding-left: .3em; }
.m-links a:hover span { color: var(--gold); transform: translateX(4px); }
.m-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: .4em;
}
.m-close:hover { color: var(--ink); }

body:has(#nav-toggle:checked) .mobile-menu,
#nav-toggle:checked ~ .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
body:has(#nav-toggle:checked) .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body:has(#nav-toggle:checked) .burger span:nth-child(2) { opacity: 0; }
body:has(#nav-toggle:checked) .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body:has(#nav-toggle:checked) { overflow: hidden; }

/* === SKIP LINK === */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: .8em 1.2em;
  z-index: 9999;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
}
.skip:focus { left: 0; }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 120px) clamp(72px, 10vw, 130px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

/* Eyebrow */
.hero .eyebrow { margin-bottom: 24px; }

/* H1 */
.hero h1 {
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .97;
  letter-spacing: -.04em;
  color: var(--ink);
  font-weight: 700;
}

/* Desc */
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
  margin-top: 22px;
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Social proof strip */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.proof-avatars {
  display: flex;
  align-items: center;
}
.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface-alt);
  margin-left: -10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .72rem;
  color: var(--muted);
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.4;
}
.proof-text strong { color: var(--ink); font-weight: 600; }

/* Hero visual composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hv-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hv-panel {
  background: var(--dark);
  border-radius: var(--r-md);
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hv-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,74,.18), transparent 65%);
  pointer-events: none;
}
.hv-panel-tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.hv-panel-quote {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
  color: var(--white);
  flex: 1;
}
.hv-panel-meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hv-meta-strip {
  display: flex;
  gap: 8px;
}
.hv-meta-strip span {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: .35em .8em;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
}
.hv-sig {
  font-family: var(--ff);
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  letter-spacing: -.01em;
}
.hv-sig small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}

/* Floating badges */
.hv-avail {
  position: absolute;
  top: -16px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.avail-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  flex-shrink: 0;
}
.hv-stat {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.hv-stat-num {
  display: block;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}
.hv-stat-label {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 5px;
  display: block;
  line-height: 1.4;
}

/* ============================================================
   METRICS BAND
   ============================================================ */
.metrics-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(36px, 5vw, 60px);
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  padding: 0 40px;
  position: relative;
}
.metric-item + .metric-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}
.metric-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--ink);
  letter-spacing: -.045em;
  line-height: 1;
}
.metric-num span { font-size: .55em; font-weight: 600; color: var(--gold); }
.metric-label {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: .02em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-item {
  position: relative;
  background: var(--white);
  padding: 44px 44px 40px;
  transition: background var(--t);
  overflow: hidden;
}
.service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--gold-bg);
  transition: opacity var(--t);
  pointer-events: none;
}
.service-item:hover::after { opacity: 1; }

.svc-num {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.svc-icon {
  width: 40px;
  height: 40px;
  color: var(--ink);
  margin-bottom: 20px;
  display: block;
  transition: transform var(--t) var(--ease);
}
.service-item:hover .svc-icon { transform: translateY(-3px); }
.service-item h3 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-item p {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 24px;
}
.svc-arrow {
  font-size: .88rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .04em;
  transition: gap var(--t) var(--ease);
}
.service-item:hover .svc-arrow { gap: 10px; }

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.proj-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.proj-row:last-child { margin-bottom: 0; }
.proj-row--1 { grid-template-columns: 65fr 35fr; }
.proj-row--2 { grid-template-columns: 35fr 65fr; }

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.proj-card--lg { aspect-ratio: 4/3; }
.proj-card--sm { aspect-ratio: 3/4; }

.proj-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.proj-card:hover .proj-card-img { transform: scale(1.04); }

/* Placeholder when no image */
.proj-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--dark-2);
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.proj-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,24,32,.82) 0%, rgba(16,24,32,.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background var(--t);
}
.proj-card:hover .proj-card-overlay {
  background: linear-gradient(to top, rgba(16,24,32,.9) 0%, rgba(16,24,32,.3) 60%, rgba(16,24,32,.05) 100%);
}

.proj-card-meta {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.proj-card-name {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.proj-card-arrow {
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t), gap var(--t) var(--ease);
}
.proj-card:hover .proj-card-arrow { color: var(--white); gap: 10px; }

/* ============================================================
   CASE STUDY SPOTLIGHT
   ============================================================ */
.case-spot {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.case-spot-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 440px;
}
.case-spot-img {
  background: var(--surface-alt);
  overflow: hidden;
  position: relative;
}
.case-spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.case-spot:hover .case-spot-img img { transform: scale(1.03); }
.case-spot-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-spot-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.case-spot-num {
  font-size: 4rem;
  font-weight: 700;
  color: var(--surface-alt);
  letter-spacing: -.08em;
  line-height: 1;
  margin-bottom: 16px;
}
.case-spot-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.case-spot-desc {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 38ch;
}
.case-spot-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tag-chip {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
  background: var(--surface-alt);
  padding: .4em .9em;
  border-radius: 2px;
}

/* ============================================================
   ABOUT / WHY WORK WITH ME
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-copy h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin: 14px 0 32px; }

.about-props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  margin-top: 36px;
}
.prop h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.prop p {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.prop-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* About visual */
.about-visual { position: relative; }
.about-quote {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 52px 48px 44px;
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,74,.15), transparent 65%);
  pointer-events: none;
}
.about-quote blockquote {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.025em;
  color: var(--white);
  border: none;
  padding: 0;
  margin-bottom: 36px;
  position: relative;
}
.about-quote cite {
  font-style: normal;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  position: relative;
}
.about-quote cite strong {
  color: var(--white);
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

/* Metrics strip inside about */
.about-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-top: 24px;
  overflow: hidden;
}
.about-metric {
  background: var(--surface-alt);
  padding: 20px 24px;
}
.about-metric b {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}
.about-metric small {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-header { text-align: center; margin-bottom: clamp(48px,6vw,72px); }
.process-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-top: 14px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: var(--border);
}

.step {
  padding: 0 24px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: background var(--t), border-color var(--t);
}
.step:hover .step-num {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--gold);
}
.step h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.step p { font-size: .93rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   EXPERTISE / TECHNICAL AUTHORITY
   ============================================================ */
.expertise { background: var(--white); }
.expertise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.expertise-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 14px 0 20px; }
.expertise-copy p { font-size: .97rem; color: var(--muted); line-height: 1.65; }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tech-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .45em 1em;
  border-radius: 2px;
  transition: color var(--t), border-color var(--t), background var(--t);
}
.tech-tag:hover {
  color: var(--ink);
  border-color: var(--border-mid);
  background: var(--surface-alt);
}

.expertise-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.exp-score {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 24px 22px;
  text-align: center;
  transition: border-color var(--t), transform var(--t) var(--ease);
}
.exp-score:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.exp-score-num {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  display: block;
}
.exp-score-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
  display: block;
}
.exp-score-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}
.exp-score-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 1.2s var(--ease-out);
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t);
}
.blog-card:hover { border-top-color: var(--gold); }

.blog-card-cat {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color var(--t);
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card-meta {
  font-size: .8rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.blog-card-meta span + span::before {
  content: "·";
  margin-right: 12px;
}
.blog-card-excerpt {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Old .card compatibility (blog/list views) */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--border-mid); }
.card .thumb { aspect-ratio: 16/10; background: var(--surface-alt); overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .thumb img { transform: scale(1.04); }
.card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 1.1rem; margin-bottom: .4em; letter-spacing: -.02em; line-height: 1.3; }
.card h3 a { transition: color var(--t); }
.card h3 a:hover { color: var(--gold); }
.card p { color: var(--muted); font-size: .93rem; margin-bottom: 1em; line-height: 1.55; }
.card .meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--muted); }

.chip {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-alt);
  padding: .38em .8em;
  border-radius: 2px;
}
.chip--gold { color: var(--gold); background: var(--gold-bg); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--dark);
  padding-block: clamp(72px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(184,145,74,.12), transparent 65%);
  pointer-events: none;
}
.cta-final-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
}
.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}
.cta-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}
.cta-final .btn--ghost {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.2);
}
.cta-final .btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.cta-final .btn--dark {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.cta-final .btn--dark:hover { background: var(--surface-alt); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: clamp(52px, 7vw, 80px) 32px;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand .brand-name { color: var(--white); }
.footer-brand .brand .brand-tag { color: rgba(255,255,255,.3); }
.footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 32ch; }

.footer-col h4 {
  font-family: var(--ff);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  padding: .3em 0;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color var(--t), border-color var(--t);
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   SINGLE POST / PROSE
   ============================================================ */
.post-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding-block: 24px 16px;
}
.post-head h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -.04em;
  margin-top: .4em;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 20px;
}
.post-cover {
  max-width: 960px;
  margin: 40px auto 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.post-cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

.prose {
  max-width: min(720px, 100%);
  margin-inline: auto;
  font-size: 1.07rem;
  line-height: 1.78;
  color: var(--text);
}
.prose h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin-top: 2em;
  letter-spacing: -.03em;
  color: var(--ink);
  scroll-margin-top: 90px;
}
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; color: var(--ink); }
.prose p { margin-bottom: 1.3em; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-color: var(--gold-light); }
.prose img { border-radius: var(--r-sm); margin: 1.8em auto; border: 1px solid var(--border); }
.prose blockquote {
  margin: 1.8em 0;
  padding: .5em 0 .5em 1.5em;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-size: 1.1rem;
  font-style: italic;
}
.prose ul li, .prose ol li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .95rem; }
.prose th, .prose td { border: 1px solid var(--border); padding: .7em 1em; text-align: left; }
.prose th { background: var(--surface-alt); color: var(--ink); font-weight: 600; }
.prose code {
  background: var(--surface-alt);
  padding: .15em .45em;
  border-radius: var(--r-xs);
  font-size: .88em;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  border: 1px solid var(--border);
}
.prose pre {
  background: var(--dark);
  color: #e8eaf6;
  padding: 1.3em;
  border-radius: var(--r-sm);
  overflow-x: auto;
  margin: 1.6em 0;
}
.prose pre code { background: none; padding: 0; border: 0; color: inherit; }

/* Author box */
.author-box {
  max-width: 720px;
  margin: 52px auto 0;
  padding: 28px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  gap: 20px;
  align-items: center;
}
.author-box .av {
  width: 60px;
  height: 60px;
  border-radius: var(--r-sm);
  background: var(--dark);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}
.author-box b { color: var(--ink); font-size: 1rem; }
.author-box p { margin: .2em 0 0; font-size: .9rem; color: var(--muted); }

/* Breadcrumb */
.breadcrumb { font-size: .83rem; color: var(--muted); padding-block: 16px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin-inline: .4em; opacity: .4; }

/* Related */
.related { margin-top: 72px; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 52px;
}
.pagination a, .pagination span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r-xs);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: .92rem;
  padding-inline: 12px;
  transition: all var(--t);
}
.pagination a:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.pagination .current { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ============================================================
   PAGE HERO (list / contact / search)
   ============================================================ */
.page-hero {
  padding-block: clamp(52px, 7vw, 88px);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -.04em; margin-top: 14px; }
.page-hero .lead { margin-top: 14px; }

/* ============================================================
   GRIDS (backward compat for list views)
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.section-head { max-width: 640px; margin-bottom: clamp(32px,4vw,52px); }
.section-head h2 { font-size: clamp(1.9rem,4vw,2.8rem); margin: 14px 0 0; }
.surface { background: var(--surface-alt); }

/* ============================================================
   CONTACT
   ============================================================ */
.split-contact { display: grid; grid-template-columns: 1.15fr .85fr; gap: 52px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.form-input {
  width: 100%;
  padding: .92em 1.1em;
  font-size: .97rem;
  font-family: var(--ff);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xs);
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
textarea.form-input { resize: vertical; min-height: 140px; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-hero form { display: flex; gap: 10px; max-width: 560px; margin-top: 24px; }
.search-hero input {
  flex: 1;
  padding: 1em 1.2em;
  font-size: 1rem;
  font-family: var(--ff);
  border: 1px solid var(--border-mid);
  border-radius: var(--r-xs);
  outline: none;
  background: var(--white);
  color: var(--ink);
}
.search-hero input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-bg); }
.search-hero button {
  padding: 0 1.6em;
  border: none;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  font-family: var(--ff);
}

/* ============================================================
   404 / EMPTY
   ============================================================ */
.page-404 { text-align: center; padding-block: 80px; }
.big404 {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--surface-alt);
  display: block;
  margin-bottom: 16px;
}
.empty { text-align: center; padding-block: 64px; color: var(--muted); }

/* Hub grid (backward compat) */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hub-card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--border-mid); }
.hub-ic { width: 40px; height: 40px; border-radius: var(--r-xs); background: var(--gold-bg); display: grid; place-items: center; color: var(--gold); margin-bottom: 18px; }
.hub-card h3 { font-size: 1.15rem; margin: 0 0 .3em; }
.hub-card p { color: var(--muted); font-size: .92rem; margin-bottom: .9em; }
.hub-card .count { font-size: .82rem; color: var(--gold); font-weight: 500; }
.hub-card .num { position: absolute; top: 24px; right: 24px; font-size: .8rem; color: var(--border-mid); font-weight: 700; }
.arr { display: inline-block; }

/* Hero entrance CSS animations */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-copy > * {
  animation: hero-fade-up .8s cubic-bezier(.16,1,.3,1) both;
}
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-copy > *:nth-child(5) { animation-delay: .45s; }
.hero-visual {
  animation: hero-fade-up .9s cubic-bezier(.16,1,.3,1) .28s both;
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* CTA band (old compat) */
.cta-band {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-md);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.6); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.cta-band .btn--primary:hover { background: var(--surface-alt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 36px; }
  .metrics-inner { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .metric-item + .metric-item::before { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; row-gap: 40px; }
  .process-steps::before { display: none; }
  .expertise-inner { grid-template-columns: 1fr; gap: 48px; }
  .expertise-visual { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  :root { --gutter: 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 440px; }
  .hv-frame { max-width: 100%; }
  .proj-row--1, .proj-row--2 { grid-template-columns: 1fr 1fr; }
  .proj-card--sm { aspect-ratio: 4/3; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .case-spot-inner { grid-template-columns: 1fr; }
  .case-spot-body { padding: 40px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-final-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .hub-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .split-contact { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; --header-h: 68px; }
  body { font-size: 16px; }
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .header-inner { gap: 12px; }

  .hero h1 { font-size: clamp(2.6rem, 8vw, 3.8rem); }
  .hero-actions { flex-direction: column; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 10px; }

  .metrics-inner { grid-template-columns: 1fr 1fr; }
  .metric-item { padding: 0 0 0 24px; }
  .metric-item:first-child { padding-left: 0; }
  .metric-item + .metric-item::before { display: block; }

  .proj-row--1, .proj-row--2 { grid-template-columns: 1fr; }
  .proj-card--lg, .proj-card--sm { aspect-ratio: 4/3; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .expertise-visual { grid-template-columns: 1fr 1fr; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-props { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-header--split { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-final-actions { width: 100%; }
  .cta-final-actions .btn { width: 100%; justify-content: center; }
  .hv-avail, .hv-stat { display: none; }
}

/* ============================================================
   HERO — YENİ SAĞ TARAF (Foto + Yan Etiketler)
   ============================================================ */

/* Hero inner: sol %50, sağ %50 */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero sol eyebrow */
.hero-eyebrow { margin-bottom: 20px; }

/* Sağ wrap: foto kutusu + dikey etiketler yan yana */
.hero-right-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

/* Fotoğraf kutusu */
.hero-photo-box {
  position: relative;
  flex: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 480px;
  background: var(--dark);
}

/* Gerçek img (kullanıcı eklediğinde gösterilir) */
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CSS fallback arka plan (foto yokken) */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 44px 40px;
  z-index: 0;
}
/* Foto varken bg gizlenir; foto remove() edilirse bg otomatik görünür */
.hero-photo-img ~ .hero-photo-bg { display: none; }

.hpot-tag {
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
}
.hpot-quote {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.025em;
  color: var(--white);
  flex: 1;
}
.hpot-chips {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
}
.hpot-chips span {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: .35em .8em;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
}

/* İmza overlay — fotoğrafın sol altına */
.hero-photo-sig {
  position: absolute;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  color: var(--white);
}
.hero-photo-sig em {
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.hero-photo-sig small {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  display: block;
}

/* Availability badge — sağ üst */
.hero-avail-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

/* Dikey yan etiketler */
.hero-side-labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0 0 0 16px;
  flex-shrink: 0;
}
.hero-side-labels span {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* ============================================================
   HİZMETLER YATAY BANT
   ============================================================ */
.svc-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(40px, 5vw, 64px);
}
.svc-band-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.svc-band-item {
  flex: 1;
  padding: 0 36px 0 0;
  border-right: 1px solid var(--border);
  margin-right: 36px;
  transition: color var(--t);
}
.svc-band-item:last-of-type {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.svc-band-icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  margin-bottom: 16px;
  display: block;
  transition: transform var(--t) var(--ease);
}
.svc-band-item:hover .svc-band-icon { transform: translateY(-3px); }
.svc-band-item h3 {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.svc-band-item p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 22ch;
}

/* Aside stacked text */
.svc-band-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 36px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
  align-self: center;
}
.svc-band-aside span {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
  display: block;
}

/* ============================================================
   PROJELER — 4 EŞİT KART
   ============================================================ */

/* Eyebrow with left arrow prefix */
.eyebrow--arrow::before {
  content: "←  ";
  letter-spacing: 0;
  font-size: .85em;
}

/* Proje bölüm başlığı */
.proj-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 4vw, 52px);
  gap: 24px;
  flex-wrap: wrap;
}
.proj-head-left .eyebrow { margin-bottom: 12px; }
.proj-head-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.proj-head-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.proj-all-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t) var(--ease), color var(--t);
}
.proj-all-link:hover { gap: 10px; color: var(--gold); }
.proj-all-link svg { transition: transform var(--t) var(--ease); }
.proj-all-link:hover svg { transform: translateX(3px); }

.proj-arrow-nav {
  display: flex;
  gap: 6px;
}
.proj-nav-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: transparent;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.proj-nav-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* 4 kart grid */
.proj-4grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.proj4-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  background: var(--surface-alt);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.proj4-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.proj4-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.proj4-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.proj4-card:hover .proj4-img img { transform: scale(1.05); }

.proj4-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 8px;
}
.proj4-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.proj4-name {
  font-weight: 700;
  font-size: .97rem;
  color: var(--ink);
  letter-spacing: -.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.proj4-meta {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.proj4-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t) var(--ease);
}
.proj4-card:hover .proj4-arrow {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateX(3px);
}

/* ============================================================
   HAKKIMDA — Ters 2 sütun (Foto Sol, Metin Sağ)
   ============================================================ */
.about-section { background: var(--bg); }

.about-flip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

/* Sol: Fotoğraf sütunu */
.about-photo-side {}

.about-photo-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 480px;
  background: var(--dark);
}

.about-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CSS fallback */
.about-photo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a2535 0%, #0c1520 100%);
  z-index: 0;
}
.about-photo-img ~ .about-photo-bg { display: none; }

/* Alıntı overlay */
.about-quote-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.0) 100%);
}
.about-quote-box blockquote {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -.015em;
  color: var(--white);
  border: none;
  padding: 0;
  margin-bottom: 12px;
}
.about-quote-box cite {
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
}

/* Sağ: Metin sütunu */
.about-text-side {}
.about-text-side .eyebrow { margin-bottom: 14px; }
.about-text-side h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 36px;
}

/* 2×2 prop grid */
.about-4props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.aprop {}
.aprop-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.aprop h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.aprop p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   KOYU CTA — Arka Plan Fotoğraflı
   ============================================================ */
.cta-dark-photo {
  position: relative;
  background: var(--dark);
  padding-block: clamp(80px, 11vw, 140px);
  overflow: hidden;
}
/* Arka plan dokusu */
.cta-dark-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184,145,74,.12), transparent),
    radial-gradient(ellipse 40% 80% at 20% 50%, rgba(16,24,32,.8), transparent);
  pointer-events: none;
  z-index: 0;
}
.cdp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,22,36,.9) 0%, rgba(18,28,44,.7) 100%);
  z-index: 0;
}
.cdp-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  align-items: center;
}
.cdp-eyebrow {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.cdp-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.15;
}
.cdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  align-items: flex-start;
}

/* Ghost button on dark bg */
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.22);
}
.btn--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE — YENİ ELEMANLAR
   ============================================================ */
@media (max-width: 1100px) {
  .proj-4grid { grid-template-columns: repeat(2, 1fr); }
  .about-flip { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { min-height: 380px; }
  .hero-side-labels { display: none; }
  .svc-band-aside { display: none; }
  .svc-band-item { padding-right: 24px; margin-right: 24px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right-wrap { max-width: 520px; }
  .hero-photo-box { min-height: 360px; }
  .about-flip { grid-template-columns: 1fr; gap: 40px; }
  .svc-band-grid { flex-wrap: wrap; gap: 32px; }
  .svc-band-item { flex: 0 0 calc(50% - 16px); padding-right: 0; border-right: none; margin-right: 0; }
  .cdp-inner { grid-template-columns: 1fr; }
  .cdp-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .proj-4grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .proj-4grid .proj4-img { aspect-ratio: 3/4; }
  .svc-band-item { flex: 0 0 100%; }
  .cdp-actions { flex-direction: column; width: 100%; }
  .cdp-actions .btn { width: 100%; justify-content: center; }
  .about-4props { grid-template-columns: 1fr; gap: 20px; }
  .proj-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .proj-4grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOCUS & ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ============================================================
   BRAND LOGO
   ============================================================ */
.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.brand-logo--footer {
  filter: brightness(0) invert(1);
  opacity: .85;
}
.brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
.brand-tag { font-size: .55rem; letter-spacing: .2em; color: var(--muted); text-transform: uppercase; font-weight: 500; }

/* ============================================================
   CLIENTS BAND — Referans Logo Şeridi
   ============================================================ */
.clients-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}
.clients-band .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.clients-label {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.client-logo-item {
  display: flex;
  align-items: center;
  opacity: .55;
  transition: opacity .2s;
  flex-shrink: 0;
}
.client-logo-item:hover { opacity: 1; }
.client-logo-item img {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .2s;
}
.client-logo-item:hover img { filter: none; }

@media (max-width: 760px) {
  .clients-band .container { gap: 20px; }
  .clients-label { display: none; }
  .clients-logos { gap: 20px; justify-content: center; }
  .client-logo-item img { height: 24px; }
}

/* ============================================================
   HERO RESPONSIVE — Yeni hero-right-wrap sonrası override
   (hero-inner @ line 1756 global kuralının üzerine yazar)
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .hero-right-wrap { max-width: 440px; margin: 0 auto; }
  .hero-photo-box { min-height: 340px; }
}
@media (max-width: 680px) {
  .hero-right-wrap { display: none; }
  .hero h1 br { display: inline; }
}

/* H1 <br> — AI parser için semantik boşluk */
.hero h1 br { content: " "; }

/* CLS — hero foto placeholder (boyut belirtilmemiş img) */
.hero-photo-img { aspect-ratio: 4 / 5; }

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
