/* ==========================================================================
   ASF YAPI VE MÜHENDİSLİK — Editorial Edition
   Clean. Restrained. Premium.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-bg:        #ffffff;
  --c-bg-soft:   #faf8f4;
  --c-bg-warm:   #f3eee5;
  --c-line:      #ece7dd;
  --c-line-soft: #f0ecdf;
  --c-ink:       #161413;
  --c-ink-2:     #2a2624;
  --c-text:      #4a4541;
  --c-mute:      #8a8278;
  --c-faint:     #c4bcad;
  --c-brand:     #F37021;
  --c-brand-deep:#cf5a13;
  --c-brand-soft:#fbeede;

  --f-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --header-h: 88px;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga', 'cv11';
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { border: 0; background: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--c-brand); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}

.h-display {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.h-1 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.h-2 { font-size: clamp(1.375rem, 2.4vw, 1.875rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.h-3 { font-size: 1.1875rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }

.lead {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.65;
  font-weight: 400;
}

.body-text { color: var(--c-text); font-size: 1rem; line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 18px;
}

.eyebrow-line {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 22px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 140px 0;
}
.section-sm { padding: 96px 0; }
.section-tight { padding: 72px 0; }

.bg-soft { background: var(--c-bg-soft); }
.bg-warm { background: var(--c-bg-warm); }
.bg-dark {
  background: var(--c-ink);
  color: var(--c-bg-soft);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.section-head .lede {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 460px;
}

.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-arrow {
  display: inline-block;
  width: 16px;
  height: 12px;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn-primary:hover { background: var(--c-brand); }

.btn-accent {
  background: var(--c-brand);
  color: #fff;
}
.btn-accent:hover { background: var(--c-brand-deep); }

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: var(--c-bg);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--c-ink);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease);
}
.link-cta.on-dark { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.link-cta:hover { gap: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-line);
}

.site-header.over-dark .nav-link,
.site-header.over-dark .header-phone { color: rgba(255,255,255,0.92); }
.site-header.over-dark .menu-toggle span { background: #fff; }
.site-header.over-dark .nav-link:hover { color: var(--c-brand); }
.site-header.scrolled.over-dark .nav-link,
.site-header.scrolled.over-dark .header-phone { color: var(--c-ink); }
.site-header.scrolled.over-dark .menu-toggle span { background: var(--c-ink); }

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  flex-shrink: 0;
}

.brand-logo {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }

/* Dark/light logo variant — light version (orange + white house) shows over dark hero */
.brand-logo-light { display: none; }
.site-header.over-dark:not(.scrolled) .brand-logo-dark { display: none; }
.site-header.over-dark:not(.scrolled) .brand-logo-light { display: block; }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name strong {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--c-ink);
}
.brand-name span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 2px;
}
.site-header.over-dark .brand-name strong { color: #fff; }
.site-header.over-dark .brand-name span { color: rgba(255,255,255,0.6); }
.site-header.scrolled.over-dark .brand-name strong { color: var(--c-ink); }
.site-header.scrolled.over-dark .brand-name span { color: var(--c-mute); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink);
  border-radius: 999px;
  transition: color 0.2s var(--ease);
}
.nav-link:hover { color: var(--c-brand); }
.nav-link.active { color: var(--c-brand); }
.nav-link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14px);
  width: 4px;
  height: 4px;
  background: var(--c-brand);
  border-radius: 50%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Header phone link is hidden — replaced by floating phone button at the bottom */
.header-phone { display: none !important; }
.header-phone-icon { display: none; }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--c-ink);
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  background: var(--c-ink);
  color: #fff;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,20,19,0.55) 0%, rgba(22,20,19,0.45) 35%, rgba(22,20,19,0.92) 100%),
    linear-gradient(90deg, rgba(22,20,19,0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--c-brand);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 28px;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.hero-bottom .lede {
  color: rgba(255,255,255,0.86);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hero-stat .num {
  font-family: var(--f-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.hero-stat .num .plus { color: var(--c-brand); }
.hero-stat .lbl {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ---------- Intro / Manifesto ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.intro-aside { position: sticky; top: 120px; }

.intro-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 18px;
}

.intro-body p.lead {
  font-size: 1.1875rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.intro-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--c-line);
}

.intro-fig .num {
  font-family: var(--f-display);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.intro-fig .num .plus { color: var(--c-brand); }
.intro-fig .lbl {
  font-size: 0.8125rem;
  color: var(--c-mute);
  letter-spacing: 0.02em;
}

/* ---------- Services / Capabilities ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}

.svc-cell {
  position: relative;
  padding: 48px 36px 56px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  transition: background 0.3s var(--ease);
}
.svc-cell:hover { background: var(--c-bg-soft); }

.svc-cell .ix {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-brand);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.svc-cell h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.svc-cell p {
  color: var(--c-text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.svc-cell .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.3s var(--ease);
}
.svc-cell:hover .more { gap: 16px; color: var(--c-brand); }

.bg-dark .svc-grid { border-color: rgba(255,255,255,0.12); }
.bg-dark .svc-cell { border-color: rgba(255,255,255,0.12); }
.bg-dark .svc-cell:hover { background: rgba(255,255,255,0.03); }
.bg-dark .svc-cell h3 { color: #fff; }
.bg-dark .svc-cell p { color: rgba(255,255,255,0.6); }
.bg-dark .svc-cell .more { color: rgba(255,255,255,0.9); }

/* ---------- Project showcase ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-warm);
  cursor: pointer;
}

.work-card.span-7  { grid-column: span 7;  aspect-ratio: 16/11; }
.work-card.span-5  { grid-column: span 5;  aspect-ratio: 4/5; }
.work-card.span-6  { grid-column: span 6;  aspect-ratio: 16/11; }
.work-card.span-4  { grid-column: span 4;  aspect-ratio: 4/5; }
.work-card.span-8  { grid-column: span 8;  aspect-ratio: 16/9; }
.work-card.span-12 { grid-column: span 12; aspect-ratio: 21/9; }

/* Uniform 3-column grid — same aspect for every card (used on projects page) */
.work-grid.uniform {
  grid-template-columns: repeat(3, 1fr);
}
.work-grid.uniform .work-card {
  grid-column: auto !important;
  aspect-ratio: 4/3 !important;
}

.work-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.work-card:hover .work-cover { /* scale moved to img */ }

.work-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(22,20,19,0.85) 100%);
}

.work-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 36px;
  color: #fff;
}

.work-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 12px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.work-id {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
}

.work-foot h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}

.work-foot .meta {
  display: flex;
  gap: 18px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 0 32px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.process-step .ix {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-brand);
  line-height: 1;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
}

.process-step h4 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.process-step p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ---------- Voices / Testimonials ---------- */
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}

.voice {
  padding: 48px 36px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}

.voice .stars {
  color: var(--c-brand);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}

.voice blockquote {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-ink-2);
  margin-bottom: 32px;
  flex: 1;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.voice-attr {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--c-line);
}

.voice-attr .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voice-attr .who .name {
  font-family: var(--f-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}
.voice-attr .who .role {
  font-size: 0.75rem;
  color: var(--c-mute);
  margin-top: 2px;
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.stat-cell {
  padding: 56px 32px;
  border-right: 1px solid var(--c-line);
}
.stat-cell:last-child { border-right: 0; }

.stat-cell .num {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 700;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-cell .num .plus { color: var(--c-brand); }
.stat-cell .lbl {
  font-size: 0.8125rem;
  color: var(--c-mute);
  letter-spacing: 0.02em;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 28px;
}

.contact-info .lead { margin-bottom: 40px; max-width: 420px; }

.contact-rows {
  display: grid;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}

.contact-row .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}

.contact-row .val {
  font-size: 1rem;
  color: var(--c-ink);
  line-height: 1.55;
}

.contact-row .val a:hover { color: var(--c-brand); }
.contact-row .val a + a { display: block; }

.contact-form {
  background: var(--c-bg-soft);
  padding: 48px 44px;
  border-radius: 4px;
}

.field {
  position: relative;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--c-line);
}
.field:focus-within { border-bottom-color: var(--c-ink); }

.field label {
  position: absolute;
  top: 24px;
  left: 0;
  font-size: 0.875rem;
  color: var(--c-mute);
  pointer-events: none;
  transition: all 0.25s var(--ease);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 32px 0 16px;
  border: 0;
  background: transparent;
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--c-ink);
  outline: none;
  letter-spacing: -0.008em;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: transparent; }

.field input:focus + label,
.field textarea:focus + label,
.field select:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label,
.field select:valid + label {
  top: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c-mute) 50%),
                    linear-gradient(135deg, var(--c-mute) 50%, transparent 50%);
  background-position: calc(100% - 14px) 38px, calc(100% - 8px) 38px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.form-foot {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--c-mute);
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--c-brand-soft);
  color: var(--c-brand-deep);
  border-left: 3px solid var(--c-brand);
  font-size: 0.875rem;
}
.form-success.visible { display: block; }

/* ---------- Map ---------- */
.map-frame {
  margin-top: 80px;
  border-radius: 4px;
  overflow: hidden;
  height: 460px;
  position: relative;
  border: 1px solid var(--c-line);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(35%) contrast(0.95);
}

.map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 2;
}
.map-card .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 4px;
}
.map-card .val {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.008em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 40px;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.foot-brand .footer-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}

.foot-brand p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

.foot-socials {
  display: flex;
  gap: 10px;
}

.foot-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s var(--ease);
  font-size: 14px;
}
.foot-socials a:hover {
  background: var(--c-brand);
  border-color: var(--c-brand);
  color: #fff;
  transform: translateY(-2px);
}

.foot-col h5 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.foot-col ul { display: grid; gap: 12px; }
.foot-col li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}
.foot-col li a:hover { color: var(--c-brand); }

.foot-contact .row { margin-bottom: 18px; }
.foot-contact .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.foot-contact a, .foot-contact p {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.foot-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 0 100px;
  background: var(--c-bg-soft);
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--c-mute);
  margin-bottom: 28px;
}
.page-hero .breadcrumb a:hover { color: var(--c-brand); }
.page-hero .breadcrumb .sep { color: var(--c-faint); }
.page-hero .breadcrumb .current { color: var(--c-brand); font-weight: 500; }

.page-hero h1 {
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-bottom: 20px;
}

.page-hero h1 .accent { color: var(--c-brand); }

.page-hero .lead { max-width: 640px; }

/* ---------- Service detail rail (services page) ---------- */
.svc-rail {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--c-line);
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--c-line);
  align-items: start;
}

.svc-row .ix {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-brand);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.svc-row h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}

.svc-row p {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
}

.svc-row ul {
  display: grid;
  gap: 10px;
}
.svc-row li {
  display: flex;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--c-text);
}
.svc-row li::before {
  content: "—";
  color: var(--c-brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Project filters ---------- */
.work-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-text);
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--c-ink); color: var(--c-ink); }
.filter-btn.active {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.founder-img {
  position: relative;
  aspect-ratio: 3/4;
  background-color: var(--c-bg-warm);
  border-radius: 4px;
  overflow: hidden;
}

.founder-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.97);
  padding: 18px 22px;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.founder-tag .name {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
}
.founder-tag .role {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}

.founder-quote {
  margin-top: 36px;
  padding: 20px 28px;
  border-left: 2px solid var(--c-brand);
  font-family: var(--f-display);
  font-size: 1.375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.45;
  letter-spacing: -0.012em;
}

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--c-line);
  border-left: 1px solid var(--c-line);
}

.value {
  padding: 48px 36px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg);
  transition: background 0.3s var(--ease);
}
.value:hover { background: var(--c-bg-soft); }

.value .ix {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-brand);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.value h3 { font-size: 1.375rem; margin-bottom: 12px; font-weight: 700; }
.value p { color: var(--c-text); font-size: 0.9375rem; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  border-top: 1px solid var(--c-line);
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}
.faq-item .ix {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-brand);
  letter-spacing: 0.04em;
}
.faq-item h3 { font-size: 1.375rem; margin-bottom: 14px; font-weight: 700; }
.faq-item p { color: var(--c-text); font-size: 1rem; line-height: 1.75; max-width: 720px; }

/* ---------- Visual polish (subtle premium touches) ---------- */

/* Service cells: gentle lift on hover with refined shadow */
.svc-cell {
  position: relative;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-cell::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -18px rgba(22,20,19,0.18);
  z-index: 2;
}
.svc-cell:hover::after { transform: scaleX(1); }

/* Project cards: smoother cover zoom + brand corner accent on hover */
.work-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(22,20,19,0.35);
}
.work-card .work-cover {
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.work-card:hover .work-cover img { transform: scale(1.06); }

.work-tag {
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.work-card:hover .work-tag {
  background: var(--c-brand);
  border-color: transparent;
}

/* Buttons: subtle depth, polished */
.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
}
.btn-accent {
  box-shadow: 0 8px 22px -10px rgba(243,112,33,0.5);
}
.btn-accent:hover {
  box-shadow: 0 12px 28px -10px rgba(243,112,33,0.6);
}
.btn-primary {
  box-shadow: 0 8px 22px -12px rgba(22,20,19,0.4);
}
.btn-primary:hover {
  box-shadow: 0 12px 28px -10px rgba(243,112,33,0.4);
}

/* Stats cells: subtle hover */
.stat-cell {
  transition: background 0.3s var(--ease);
}
.stat-cell:hover { background: rgba(243,112,33,0.03); }

/* Section refinements */
.section { position: relative; }

/* Subtle hairline divider above bg-soft sections */
.bg-soft { position: relative; }
.bg-soft::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--c-brand);
  opacity: 0.5;
}

/* Page-hero subtle accent */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-brand) 50%, transparent);
  opacity: 0.4;
}

/* Filter buttons polished */
.filter-btn {
  transition: all 0.3s var(--ease);
  letter-spacing: 0;
  font-weight: 600;
}
.filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(22,20,19,0.15);
}
.filter-btn.active {
  box-shadow: 0 8px 18px -8px rgba(22,20,19,0.4);
}

/* Eyebrow refinement — slightly lighter */
.eyebrow-line, .eyebrow {
  font-weight: 600;
  letter-spacing: 0.16em;
}

/* Brand logo subtle drop shadow on dark headers */
.site-header.over-dark:not(.scrolled) .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

/* FAQ items hover */
.faq-item {
  transition: padding-left 0.3s var(--ease);
}
.faq-item:hover { padding-left: 8px; }
.faq-item:hover .ix { color: var(--c-brand-deep); }

/* Map frame — subtle depth */
.map-frame {
  box-shadow: 0 20px 50px -28px rgba(22,20,19,0.25);
}

/* Footer refinement */
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243,112,33,0.4) 50%, transparent);
}

/* Floating buttons — refined shadows on hover */
.whatsapp-float:hover {
  box-shadow: 0 16px 36px rgba(37,211,102,0.42);
}
.phone-float:hover {
  box-shadow: 0 16px 36px rgba(243,112,33,0.4);
}

/* Hero — refined overlay with extra subtle gradient */
.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(22,20,19,0.55) 0%, rgba(22,20,19,0.35) 35%, rgba(22,20,19,0.94) 100%),
    linear-gradient(90deg, rgba(22,20,19,0.55) 0%, rgba(22,20,19,0.10) 50%, transparent 100%);
}

/* Smooth section transitions */
section + section { position: relative; }

/* Selection refinement */
::selection { background: var(--c-brand); color: #fff; }

/* Body subtle background grain (very faint) */
body {
  background-image:
    radial-gradient(circle at 25% 0%, rgba(243,112,33,0.015), transparent 50%);
}

/* ---------- Project detail page ---------- */
.pd-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: 4px;
  background-color: var(--c-bg-warm);
  overflow: hidden;
}
.pd-hero-img > img { border-radius: 4px; }

.pd-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.pd-facts > div {
  padding: 28px 24px;
  border-right: 1px solid var(--c-line);
}
.pd-facts > div:last-child { border-right: 0; }
.pd-facts .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
  display: block;
  margin-bottom: 8px;
}
.pd-facts .val {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.pd-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pd-gallery > div {
  aspect-ratio: 4/3;
  border-radius: 4px;
  background-color: var(--c-bg-warm);
  overflow: hidden;
}
.pd-gallery > div > img { border-radius: 4px; }
.pd-gallery > div.wide { grid-column: span 2; aspect-ratio: 21/9; }

.pd-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.pd-body aside { position: sticky; top: 120px; }
.pd-body aside h2 {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: 14px;
}
.pd-body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 14px;
}

@media (max-width: 1100px) {
  .pd-body { grid-template-columns: 1fr; gap: 24px; }
  .pd-body aside { position: static; }
}

@media (max-width: 720px) {
  .pd-facts { grid-template-columns: repeat(2, 1fr); }
  .pd-facts > div:nth-child(2) { border-right: 0; }
  .pd-facts > div:nth-child(1), .pd-facts > div:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-gallery > div.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .pd-hero-img { aspect-ratio: 16/10; }
}

/* ---------- Floating action buttons ---------- */
.whatsapp-float,
.phone-float {
  position: fixed;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  z-index: 999;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.whatsapp-float:hover,
.phone-float:hover { transform: scale(1.08); }

/* WhatsApp on top of the stack */
.whatsapp-float {
  bottom: 88px;
  background: #25D366;
  box-shadow: 0 12px 28px rgba(37,211,102,0.32);
}
.whatsapp-float:hover { background: #1ea952; }

/* Phone pinned to bottom, directly under WhatsApp */
.phone-float {
  bottom: 24px;
  background: var(--c-ink);
  box-shadow: 0 12px 28px rgba(22,20,19,0.28);
}
.phone-float:hover { background: var(--c-brand); }

/* Tooltip on hover */
.phone-float::before,
.whatsapp-float::before {
  content: attr(data-tip);
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-ink);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease);
}
.phone-float[data-tip]:hover::before,
.whatsapp-float[data-tip]:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 660px;
  z-index: 1100;
  background: #fff;
  color: var(--c-ink);
  padding: 22px 26px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-brand);
  display: block;
  margin-bottom: 6px;
}
.cookie-banner-text p { font-size: 0.875rem; line-height: 1.55; color: var(--c-text); }
.cookie-banner-text a { color: var(--c-brand); border-bottom: 1px solid var(--c-brand); }
.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-banner .btn-cookie {
  padding: 10px 18px;
  font-family: var(--f-display);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.cookie-banner .btn-cookie:hover { border-color: var(--c-ink); }
.cookie-banner .btn-cookie.primary {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
}
.cookie-banner .btn-cookie.primary:hover { background: var(--c-brand); border-color: var(--c-brand); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.left  { transform: translateX(-24px); }
.reveal.right { transform: translateX(24px); }
.reveal.left.visible, .reveal.right.visible { transform: translateX(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .section { padding: 96px 0; }
  .container { padding: 0 28px; }

  .section-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .intro-grid, .founder, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .intro-aside { position: static; }

  .svc-grid, .voices, .values { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-step:nth-child(2)::after { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: 0; }

  /* About — approach grid: 4 → 2 cols */
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-cell:nth-child(4n) { border-right: 1px solid var(--c-line); }
  .approach-cell:nth-child(2n) { border-right: 0; }

  .work-grid { grid-template-columns: repeat(6, 1fr); }
  .work-card.span-7 { grid-column: span 6; }
  .work-card.span-5 { grid-column: span 6; aspect-ratio: 16/10; }
  .work-card.span-6 { grid-column: span 6; }
  .work-card.span-4 { grid-column: span 3; }
  .work-card.span-8 { grid-column: span 6; }
  .work-grid.uniform { grid-template-columns: repeat(2, 1fr); }

  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; }

  .hero-bottom { grid-template-columns: 1fr; gap: 36px; }

  .svc-row { grid-template-columns: 60px 1fr; gap: 24px; padding: 40px 0; }
  .svc-row > p, .svc-row > ul { grid-column: 2; margin-top: 16px; }
}

/* ---------- Tablet & small laptop ---------- */
@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
  .section-sm { padding: 56px 0; }

  body { padding-bottom: 0; }

  /* Header */
  .nav-wrap { gap: 12px; }
  .menu-toggle { display: flex; width: 44px; height: 44px; }
  .header-cta { gap: 8px; }
  .header-cta .header-phone { display: none; }

  .brand { gap: 10px; }
  .brand-logo { height: 38px; }
  .brand-name strong { font-size: 0.9375rem; }
  .brand-name span { font-size: 0.625rem; letter-spacing: 0.12em; }

  /* Mobile nav drawer */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    border-top: 1px solid var(--c-line);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav .nav-link {
    padding: 18px 4px;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--c-line-soft);
    border-radius: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .main-nav .nav-link.active::before { display: none; }
  .main-nav .nav-link.active { color: var(--c-brand); }

  /* Typography refinement */
  .h-display { font-size: clamp(1.875rem, 9vw, 2.5rem); letter-spacing: -0.02em; }
  .h-1 { font-size: clamp(1.5rem, 7vw, 2rem); letter-spacing: -0.018em; }
  .h-2 { font-size: clamp(1.25rem, 5.5vw, 1.625rem); }
  .lead, .lede { font-size: 0.9375rem; line-height: 1.6; }
  .body-text { font-size: 0.9375rem; }
  .eyebrow-line, .eyebrow { font-size: 0.6875rem; letter-spacing: 0.12em; margin-bottom: 14px; }
  .section-head { gap: 18px; margin-bottom: 40px; }

  /* Hero */
  .hero { min-height: 88vh; align-items: center; }
  .hero-content { padding-top: 60px; padding-bottom: 40px; }
  .hero h1 {
    font-size: clamp(1.875rem, 9vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-eyebrow { font-size: 0.6875rem; gap: 10px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 24px !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-bottom .lede { margin-bottom: 0; font-size: 0.9375rem; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 0.875rem; min-height: 46px; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h) + 48px) 0 56px; }
  .page-hero h1 { font-size: clamp(1.625rem, 7vw, 2.25rem); }
  .page-hero .breadcrumb { font-size: 0.75rem; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }

  /* Sections to single column */
  .svc-grid, .voices, .values { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-cell { border-right: 0 !important; }
  .approach-cell:last-child { border-bottom: 0; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .process-step:last-child { border-bottom: 0; }
  .process-step::after { display: none !important; }
  .process-step .ix { font-size: 1.5rem; margin-bottom: 12px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 1px solid var(--c-line); padding: 32px 16px; }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .stat-cell .num { font-size: 1.875rem; }

  .svc-cell { padding: 32px 24px; }

  /* Project cards */
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card.span-7, .work-card.span-5, .work-card.span-6,
  .work-card.span-4, .work-card.span-8, .work-card.span-12 { grid-column: span 1; aspect-ratio: 4/5; }
  .work-grid.uniform { grid-template-columns: 1fr; }
  .work-grid.uniform .work-card { aspect-ratio: 4/3 !important; }
  .work-info { padding: 24px 22px; }
  .work-foot h3 { font-size: 1.125rem; }
  .work-tag { padding: 5px 10px; font-size: 0.625rem; }

  /* Project filters */
  .work-filters { gap: 6px; margin-bottom: 32px; padding: 0 4px; }
  .filter-btn { padding: 9px 16px; font-size: 0.75rem; min-height: 40px; }

  /* Footer */
  .site-footer { padding: 64px 0 28px; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .foot-brand { grid-column: span 1; }
  .foot-brand .footer-brand-logo { height: 50px; margin-bottom: 18px; }
  .foot-brand p { font-size: 0.875rem; }
  .foot-col h5 { margin-bottom: 14px; }
  .foot-col ul { gap: 10px; }
  .foot-col li a { font-size: 0.875rem; padding: 4px 0; display: inline-block; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 0.75rem; padding-top: 24px; }

  /* Forms */
  .contact-grid { gap: 36px; }
  .contact-form { padding: 24px 20px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; padding: 8px 0; }
  .field input, .field textarea, .field select { font-size: 16px; padding: 30px 0 14px; min-height: 56px; }
  .field textarea { min-height: 120px; }
  .field label { top: 20px; font-size: 0.875rem; }
  .field input:focus + label, .field textarea:focus + label, .field select:focus + label,
  .field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
  .field select:valid + label { top: 6px; font-size: 0.6875rem; }
  .form-foot { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 22px; }
  .form-foot .btn { width: 100%; justify-content: center; }

  /* Intro */
  .intro-grid { gap: 40px; }
  .intro-body p.lead { font-size: 1rem; }
  .intro-body p { font-size: 0.9375rem; }
  .intro-figures { grid-template-columns: 1fr; gap: 14px; padding-top: 28px; margin-top: 36px; }
  .intro-fig .num { font-size: 1.625rem; }

  /* Cookie banner — clear of floating action buttons (~80px bottom) */
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 18px 16px;
    bottom: 90px; left: 12px; right: 12px;
  }
  .cookie-banner-text p { font-size: 0.8125rem; }
  .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Floating actions */
  .whatsapp-float, .phone-float {
    width: 50px;
    height: 50px;
    right: 16px;
    font-size: 19px;
  }
  .whatsapp-float { bottom: 78px; }
  .phone-float { bottom: 18px; }
  .whatsapp-float::before, .phone-float::before { display: none; }

  /* Service rail (services page) */
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 32px 0; }
  .svc-row .ix { font-size: 0.8125rem; padding-top: 0; }
  .svc-row h3 { font-size: 1.25rem; }
  .svc-row p { font-size: 0.9375rem; max-width: 100%; }
  .svc-row ul { padding-top: 12px; }
  .svc-row li { font-size: 0.875rem; }

  /* Founder section */
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-img { aspect-ratio: 3/4; max-height: 480px; }
  .founder-tag { padding: 14px 18px; bottom: 16px; left: 16px; right: 16px; }
  .founder-tag .name { font-size: 1rem; }
  .founder-tag .role { font-size: 0.625rem; }
  .founder-quote { font-size: 1rem; padding: 16px 20px; }

  /* Project detail */
  .pd-hero-img { aspect-ratio: 16/10; }
  .pd-facts { grid-template-columns: repeat(2, 1fr); }
  .pd-facts > div { padding: 22px 16px; }
  .pd-facts > div:nth-child(2n) { border-right: 0; }
  .pd-facts > div:nth-child(1), .pd-facts > div:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .pd-facts .val { font-size: 0.9375rem; }
  .pd-facts .lbl { font-size: 0.625rem; margin-bottom: 6px; }
  .pd-body { grid-template-columns: 1fr; gap: 20px; }
  .pd-body aside { position: static; }
  .pd-body p { font-size: 0.9375rem; }
  .pd-gallery { grid-template-columns: 1fr; gap: 12px; }
  .pd-gallery > div { aspect-ratio: 16/11; }
  .pd-gallery > div.wide { grid-column: span 1; aspect-ratio: 16/10; }

  /* FAQ */
  .faq-item { grid-template-columns: 50px 1fr; gap: 16px; padding: 28px 0; }
  .faq-item h3 { font-size: 1.0625rem; margin-bottom: 8px; }
  .faq-item p { font-size: 0.9375rem; }

  /* Map */
  .map-frame { height: 320px; margin-top: 48px; }
  .map-card { top: 14px; left: 14px; padding: 12px 14px; }
  .map-card .lbl { font-size: 0.625rem; }
  .map-card .val { font-size: 0.9375rem; }
}

/* ---------- Small phones ---------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 40px 0; }

  .brand-name span { display: none; }
  .brand-logo { height: 36px; }

  .hero h1 { font-size: 1.625rem; }
  .h-display { font-size: 1.625rem; }
  .h-1 { font-size: 1.375rem; }

  .eyebrow-line, .eyebrow { font-size: 0.75rem; letter-spacing: 0.10em; }

  .work-info { padding: 20px 18px; }
  .work-foot h3 { font-size: 1.0625rem; }

  .filter-btn { padding: 10px 16px; font-size: 0.75rem; min-height: 44px; }

  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--c-line); padding: 26px 16px; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2), .stat-cell:nth-child(3) { border-bottom: 1px solid var(--c-line); }
  .stat-cell:last-child { border-bottom: 0; }

  .pd-facts { grid-template-columns: repeat(2, 1fr); }
  .pd-facts > div {
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding: 18px 14px;
  }
  .pd-facts > div:nth-child(2n) { border-right: 0; }
  .pd-facts > div:nth-last-child(-n+2) { border-bottom: 0; }

  /* Drawer trims on tiny phones */
  .main-nav { padding: 24px 18px; }

  /* Footer columns: tighter, readable */
  .foot-top { gap: 28px; }
  .foot-col h5 { font-size: 0.75rem; }
  .foot-col li a { font-size: 0.9375rem; }

  .footer-brand-logo { height: 44px !important; }

  .cookie-banner-actions { grid-template-columns: 1fr; }
  .cookie-banner { bottom: 80px; }

  .map-frame { height: 260px; }

  /* Breadcrumb compact */
  .page-hero .breadcrumb { font-size: 0.75rem; gap: 6px; }
  .page-hero .breadcrumb .sep { opacity: 0.5; }

  /* Process step polish */
  .process-step .ix { font-size: 1.375rem !important; }

  /* About page — manifesto */
  .manifesto-quote { font-size: 1.375rem; }
  .manifesto-quote::before { font-size: 2.75rem; }

  /* About page — founder credentials */
  .founder-creds { grid-template-columns: 1fr; gap: 14px; padding-top: 20px; margin-top: 28px; }

  /* About page — approach */
  .approach-cell { padding: 32px 20px; }
}

/* ---------- Tiny phones ---------- */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.5rem; }
  .h-display { font-size: 1.5rem; }
  .h-1 { font-size: 1.25rem; }
  .filter-btn { padding: 8px 12px; font-size: 0.6875rem; min-height: 40px; }
  .pd-facts { grid-template-columns: 1fr; }
  .pd-facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .pd-facts > div:last-child { border-bottom: 0; }
  .brand-name strong { font-size: 0.8125rem; }
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .work-card:hover .work-cover { transform: none; }
  .svc-cell:hover { background: var(--c-bg); }
  .filter-btn:hover { border-color: var(--c-line); color: var(--c-text); }
}

/* ==========================================================================
   Mobile premium polish — extra refinements over the responsive base
   ========================================================================== */

@media (max-width: 720px) {

  /* Cleaner mobile hero — gentler, more elegant */
  .hero {
    min-height: 72vh;
    background: var(--c-ink);
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(22,20,19,0.50) 0%, rgba(22,20,19,0.45) 30%, rgba(22,20,19,0.95) 100%),
      linear-gradient(0deg, rgba(22,20,19,0.20), transparent 40%);
  }
  .hero h1 {
    font-weight: 700;
    line-height: 1.08;
  }
  .hero h1 .accent { display: block; }
  .hero-content { padding-top: 80px; padding-bottom: 56px; }

  /* Smoother section transitions on mobile — subtle hairline */
  section + .section,
  section + .section-tight,
  section + .section-sm {
    border-top: 0;
  }
  .section.bg-soft, .section.bg-warm { border-top: 1px solid var(--c-line); }
  .section.bg-dark { border-top: 0; }

  /* Premium mobile menu drawer with staggered reveal */
  .main-nav {
    background: #fff;
    padding: 32px 24px;
    box-shadow: -20px 0 40px -20px rgba(0,0,0,0.15);
    will-change: transform;
  }
  .main-nav .nav-link {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line-soft);
    padding: 20px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s var(--ease);
  }
  .main-nav.open .nav-link { opacity: 1; transform: translateX(0); }
  .main-nav.open .nav-link:nth-child(1) { transition-delay: 0.06s; }
  .main-nav.open .nav-link:nth-child(2) { transition-delay: 0.10s; }
  .main-nav.open .nav-link:nth-child(3) { transition-delay: 0.14s; }
  .main-nav.open .nav-link:nth-child(4) { transition-delay: 0.18s; }
  .main-nav.open .nav-link:nth-child(5) { transition-delay: 0.22s; }
  .main-nav .nav-link.active { color: var(--c-brand); }

  /* Force dark text on open drawer regardless of header state (over-dark vs solid) */
  .site-header .main-nav.open .nav-link,
  .site-header.over-dark .main-nav.open .nav-link,
  .site-header.over-dark:not(.scrolled) .main-nav.open .nav-link { color: var(--c-ink); }
  .site-header .main-nav.open .nav-link.active,
  .site-header.over-dark .main-nav.open .nav-link.active { color: var(--c-brand); }

  /* Menu-toggle X must remain visible on white drawer when menu is open */
  .site-header.over-dark .menu-toggle.open span,
  .site-header.over-dark:not(.scrolled) .menu-toggle.open span { background: var(--c-ink); }

  /* Add quick contact in mobile menu */
  .main-nav::after {
    content: "0532 308 30 65  ·  asfyapi3434@gmail.com";
    display: block;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--c-line-soft);
    font-size: 0.75rem;
    color: var(--c-mute);
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.6;
  }

  /* Project cards: more elegant on mobile */
  .work-grid.uniform { gap: 16px; }
  .work-grid.uniform .work-card {
    aspect-ratio: 4/3 !important;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 28px -18px rgba(22,20,19,0.25);
  }
  .work-card .work-cover { transform: scale(1.02); }
  .work-info { padding: 22px 22px 24px; }
  .work-foot h3 {
    font-size: 1.1875rem;
    line-height: 1.25;
    letter-spacing: -0.012em;
  }
  .work-foot .meta {
    font-size: 0.75rem;
    gap: 14px;
    opacity: 0.85;
  }
  .work-tag {
    padding: 6px 12px;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  /* Filter buttons: scrollable horizontal row when crowded */
  .work-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 12px;
    margin: 0 -20px 28px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .work-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* Service rail (svc-row) — more elegant card-like presentation */
  .svc-rail { gap: 16px; display: grid; border-top: 0; }
  .svc-row {
    background: var(--c-bg);
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 28px 24px !important;
    grid-template-columns: 1fr;
    gap: 12px;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .svc-row:hover, .svc-row:active {
    border-color: var(--c-ink);
    box-shadow: 0 14px 30px -18px rgba(22,20,19,0.2);
  }
  .svc-row .ix {
    background: var(--c-brand);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  /* Service grid cells — softer borders, lifted feel */
  .svc-grid {
    border: 0;
    gap: 14px;
  }
  .svc-cell {
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 28px 22px;
  }
  .svc-cell .ix {
    background: var(--c-brand-soft);
    color: var(--c-brand);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .svc-cell::after { display: none; }

  /* Values grid same treatment */
  .values {
    border: 0;
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .value {
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 26px 22px;
  }
  .value .ix {
    background: var(--c-brand-soft);
    color: var(--c-brand);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
  }

  /* Process steps with branded dot */
  .process-step {
    padding: 28px 0 28px 0;
    position: relative;
  }
  .process-step::before {
    content: "";
    position: absolute;
    left: 0; top: 32px;
    width: 24px; height: 1px;
    background: var(--c-brand);
    opacity: 0.6;
  }
  .process-step .ix {
    font-size: 1.375rem;
    margin-bottom: 12px;
  }
  .process-step h4 { font-size: 1.0625rem; }

  /* Page hero — refined mobile */
  .page-hero {
    padding: calc(var(--header-h) + 36px) 0 44px;
    text-align: left;
  }
  .page-hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.375rem);
    margin-bottom: 14px;
  }
  .page-hero .lead { max-width: 100%; font-size: 0.9375rem; }
  .page-hero::after { background: linear-gradient(90deg, transparent, var(--c-brand) 30%, var(--c-brand) 70%, transparent); opacity: 0.3; }

  /* Founder card refinement */
  .founder-img {
    aspect-ratio: 4/5;
    max-height: 420px;
    border-radius: 8px;
  }

  /* Stats — elegant grouping */
  .stats-row {
    border-radius: 8px;
    overflow: hidden;
    border-left: 1px solid var(--c-line);
    border-right: 1px solid var(--c-line);
  }
  .stat-cell { padding: 28px 16px; }
  .stat-cell .num { font-size: 2rem; }

  /* Buttons — polished edges */
  .btn { border-radius: 999px; }

  /* Hero buttons — premium feel */
  .hero-actions .btn {
    padding: 16px 24px;
    font-size: 0.9375rem;
    border-radius: 999px;
  }
  .hero-actions .btn-accent {
    box-shadow: 0 12px 26px -10px rgba(243,112,33,0.55);
  }

  /* Project detail — more elegant */
  .pd-hero-img {
    border-radius: 8px;
    aspect-ratio: 16/11;
  }
  .pd-facts {
    border-radius: 8px;
    overflow: hidden;
    border-left: 1px solid var(--c-line);
    border-right: 1px solid var(--c-line);
  }
  .pd-gallery > div {
    border-radius: 8px;
  }

  /* Smooth content reveal as you scroll on mobile */
  .reveal { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }

  /* Floating buttons — elevated and pulsing on first load */
  .whatsapp-float, .phone-float {
    width: 52px;
    height: 52px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  }
  .whatsapp-float { box-shadow: 0 8px 22px rgba(37,211,102,0.38); }
  .phone-float { box-shadow: 0 8px 22px rgba(22,20,19,0.32); }

  /* Footer refinement */
  .site-footer { padding-top: 56px; }
  .foot-top { gap: 28px; padding-bottom: 28px; }
  .foot-col h5 {
    margin-bottom: 12px;
    font-size: 0.6875rem;
  }
  .foot-col ul { gap: 8px; }
  .foot-col li a { font-size: 0.875rem; }
  .foot-contact .row { margin-bottom: 14px; }
  .foot-contact a, .foot-contact p { font-size: 0.875rem; }
  .foot-socials a {
    width: 38px;
    height: 38px;
  }

  /* Cookie banner refinement */
  .cookie-banner {
    border-radius: 10px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.18);
  }

  /* Subtle scroll-snap feel for sections */
  html { scroll-behavior: smooth; }

  /* Map card clean */
  .map-frame { border-radius: 8px; overflow: hidden; }

  /* Form refinement */
  .contact-form {
    border: 1px solid var(--c-line);
    border-radius: 12px;
    background: var(--c-bg);
  }
  .field input, .field textarea, .field select { font-size: 1rem; }

  /* Premium link-cta */
  .link-cta {
    font-weight: 600;
    border-bottom-width: 1.5px;
    padding-bottom: 6px;
  }
}

/* Tap highlight for nice mobile feedback */
@media (max-width: 720px) {
  .work-card, .svc-cell, .value, .filter-btn, .btn, .nav-link {
    -webkit-tap-highlight-color: rgba(243,112,33,0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- About page — founder credentials ---------- */
.founder-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  gap: 18px;
}
.founder-creds > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.founder-creds .lbl {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.founder-creds .val {
  font-family: var(--f-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}

/* ---------- About page — manifesto / quote ---------- */
.manifesto {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}
.manifesto .eyebrow-line {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 28px;
}
.manifesto-quote {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.6vw, 2.375rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}
.manifesto-quote::before {
  content: "“";
  display: block;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--c-brand);
  margin-bottom: 12px;
  font-weight: 400;
}
.manifesto-attr {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.manifesto-name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.manifesto-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- About page — approach grid ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  margin-top: 24px;
}
.approach-cell {
  padding: 40px 28px;
  border-right: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  position: relative;
  background: #fff;
  transition: background 0.3s var(--ease);
}
.approach-cell:nth-child(4n) { border-right: 0; }
.approach-cell:hover { background: var(--c-bg-soft); }
.approach-cell .ix {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-brand);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.approach-cell h3 {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.approach-cell p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
}

/* ---------- Mobile typography & overflow safety ---------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
h1, h2, h3, h4, h5, p { overflow-wrap: break-word; word-wrap: break-word; }
img, svg, video { max-width: 100%; }

/* ---------- Image containers (replaces inline background-image) ---------- */
.hero-bg img,
.work-cover img,
.pd-hero-img img,
.pd-gallery > div img,
.founder-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-hero-img,
.pd-gallery > div {
  position: relative;
  overflow: hidden;
}

.work-cover img {
  transition: transform 1s var(--ease);
}
.work-card:hover .work-cover img { transform: scale(1.05); }

.founder-img > img { z-index: 0; }
.founder-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,20,19,0.20) 0%, rgba(22,20,19,0.60) 100%);
  z-index: 1;
}
.founder-tag { position: absolute; z-index: 2; }

/* ---------- Inline SVG icons (replaces Font Awesome) ---------- */
.ic {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
}
