/* ─── Language & Theme visibility ─────────────────────────────────────────────── */
html[lang="tr"] .lang-en { display: none !important; }
html[lang="en"] .lang-tr { display: none !important; }

/* ─── Light Theme Overrides ────────────────────────────────────────────── */
html.theme-light {
  --bg: #fdfbf7;
  --bg-soft: #f4efea;
  --fg: #1a1918;
  --fg-dim: #6b6863;
  --rule: rgba(0, 0, 0, 0.12);
  --accent: #b07c3f;
  --accent-dim: rgba(176, 124, 63, 0.32);
}

html.theme-light .nav {
  mix-blend-mode: normal;
  color: var(--fg);
}

.nav {
  mix-blend-mode: normal !important;
  color: var(--fg) !important;
  isolation: isolate;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 10px clamp(14px, 2vw, 30px);
  z-index: -1;
  border: 1px solid rgba(241, 236, 225, 0.08);
  border-radius: 999px;
  background: rgba(11, 10, 8, 0.34);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  opacity: 0.86;
}

html.theme-light .nav::before {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(253, 251, 247, 0.58);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

html.theme-light .hero::after {
  background:
    radial-gradient(circle at center, rgba(253, 251, 247, 0.90) 0%, rgba(253, 251, 247, 0.65) 35%, transparent 70%),
    linear-gradient(to bottom, transparent 0%, transparent 80%, var(--bg) 100%);
}

html.theme-light .hero { color: var(--fg); }
html.theme-light .hero__title { color: var(--fg); }
html.theme-light .hero__eyebrow { color: var(--accent); }
html.theme-light .hero__canvas { filter: invert(1) hue-rotate(180deg) brightness(1.2); }

/* ─── Premium Toggle Buttons ─────────────────────────────────────────── */
.nav__toggles {
  justify-self: end;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
html.theme-light .nav__toggles {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#lang-toggle, #theme-toggle {
  background: transparent;
  border: none;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
#lang-toggle:hover, #theme-toggle:hover { 
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 12px rgba(176, 124, 63, 0.3);
}

/* Force Canvas Visibility for Debugging */
.hero__canvas { opacity: 1 !important; }

/* ─── Readable font sizes (was 10–12px → now 13–14px) ───────────────── */
.section-tag           { font-size: 13px !important; }
.hero__eyebrow         { font-size: 13px !important; }
.hero__topbar          { font-size: 12px !important; }
.hero__scroll          { font-size: 13px !important; }
.hero__signoff         { font-size: 13px !important; }
.practice__num         { font-size: 13px !important; }
.practice__tags        { font-size: 12px !important; line-height: 2 !important; }
.manifesto__col h3     { font-size: 13px !important; }
.approach__step::before{ font-size: 12px !important; }
.field__caption        { font-size: 12px !important; }
.conversation__col h5  { font-size: 13px !important; }
.footer__row           { font-size: 12px !important; }
.nav__links a          { font-size: 13px !important; letter-spacing: 0.12em !important; }
.nav__links            { gap: 14px !important; align-items: center !important; }
.nav__status           { font-size: 12px !important; }

/* ─── Spinning Blog badge ─────────────────────────────────────────── */
.nav__links a[href="/blog.html"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(rgba(14, 18, 18, 0.92), rgba(14, 18, 18, 0.92)) padding-box,
    conic-gradient(from var(--angle, 0deg), #f59e0b, #ef4444, #8b5cf6, #06b6d4, #22c55e, #f59e0b) border-box;
  color: #d7f4ff !important;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.16);
  animation: spin-badge 3s linear infinite;
  opacity: 1 !important;
}

.nav__links .nav__hr {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(249, 199, 79, 0.42);
  border-radius: 999px;
  color: #ffe6a8 !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 234, 168, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(217, 167, 106, 0.18), rgba(37, 99, 235, 0.08));
  box-shadow: 0 0 16px rgba(249, 199, 79, 0.22), inset 0 0 14px rgba(255, 255, 255, 0.05);
  line-height: 1;
  opacity: 1 !important;
}

.nav__links .nav__hr::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(249, 199, 79, 0.18);
  filter: blur(1px);
  animation: hr-glow 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hr-glow {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.9; transform: scale(1.04); }
}
.nav__links a[href="/blog.html"]::before {
  content: none;
}
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spin-badge {
  to { --angle: 360deg; }
}

.cursor {
  font-weight: 300;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ─── Hero signature sparkle ─────────────────────────────────────────── */
.hero__signoff {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  justify-self: start !important;
  text-align: left !important;
  transform: translateX(-51px);
  color: var(--fg) !important;
  opacity: 1 !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-shadow:
    0 0 14px rgba(217, 167, 106, 0.42),
    0 0 34px rgba(217, 167, 106, 0.16);
}

.hero__bottom > span:first-child {
  grid-column: 3;
  grid-row: 1;
}

.hero__scroll {
  grid-column: 2;
  grid-row: 1;
}

.hero__signoff::before,
.hero__signoff::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 8px rgba(217, 167, 106, 0.9),
    0 0 18px rgba(217, 167, 106, 0.35);
  animation: signoff-sparkle 2.8s ease-in-out infinite;
}

.hero__signoff::before {
  width: 5px;
  height: 5px;
  top: -10px;
  left: -18px;
}

.hero__signoff::after {
  width: 3px;
  height: 3px;
  left: 18px;
  bottom: -8px;
  animation-delay: 1.25s;
}

.hero__signoff > span {
  color: var(--accent) !important;
}

.hero__actions {
  position: absolute;
  right: clamp(12px, 1.8vw, 28px);
  top: 50%;
  bottom: auto;
  transform: translateY(-18%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  z-index: 4;
}

.hero__actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 154px;
  padding: 10px 14px;
  border: 1px solid var(--action-border, rgba(217, 167, 106, 0.45));
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--action-bg-a, rgba(217, 167, 106, 0.12)), var(--action-bg-b, rgba(255, 255, 255, 0.035)));
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px var(--action-glow, rgba(217, 167, 106, 0.08));
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero__actions a::after {
  content: '↗';
  margin-left: 14px;
  color: var(--action-arrow, var(--accent));
}

.hero__actions a:nth-child(1) {
  --action-border: rgba(245, 158, 11, 0.62);
  --action-bg-a: rgba(245, 158, 11, 0.24);
  --action-bg-b: rgba(245, 158, 11, 0.055);
  --action-glow: rgba(245, 158, 11, 0.14);
  --action-arrow: #f59e0b;
}

.hero__actions a:nth-child(2) {
  --action-border: rgba(6, 182, 212, 0.58);
  --action-bg-a: rgba(6, 182, 212, 0.2);
  --action-bg-b: rgba(6, 182, 212, 0.055);
  --action-glow: rgba(6, 182, 212, 0.13);
  --action-arrow: #06b6d4;
}

.hero__actions a:nth-child(3) {
  --action-border: rgba(34, 197, 94, 0.55);
  --action-bg-a: rgba(34, 197, 94, 0.18);
  --action-bg-b: rgba(34, 197, 94, 0.05);
  --action-glow: rgba(34, 197, 94, 0.12);
  --action-arrow: #22c55e;
  margin-left: 10px;
}

.hero__actions a:nth-child(4) {
  --action-border: rgba(236, 72, 153, 0.56);
  --action-bg-a: rgba(236, 72, 153, 0.18);
  --action-bg-b: rgba(236, 72, 153, 0.045);
  --action-glow: rgba(236, 72, 153, 0.12);
  --action-arrow: #ec4899;
  margin-left: 22px;
}

.hero__actions a:hover,
.hero__actions a:focus-visible {
  transform: translateX(-5px);
  border-color: var(--action-arrow);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--action-bg-a) 70%, white 18%), var(--action-bg-b));
  box-shadow: 0 16px 40px var(--action-glow);
  outline: none;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  max-width: min(760px, 92vw);
}

.hero__proof span {
  padding: 7px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--fg);
  opacity: 0.86;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.2;
}

@keyframes signoff-sparkle {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.65);
  }
  45% {
    opacity: 1;
    transform: scale(1.35);
  }
}

/* ─── Extra projects rows & Images ─────────────────────────────────────────────── */
.field__card--med { grid-column: span 6; aspect-ratio: 4 / 5; }

.project-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 24px;
  padding: 6px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.project-tabs__button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--fg-dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.project-tabs__button.is-active {
  border-color: rgba(217, 167, 106, 0.42);
  background: rgba(217, 167, 106, 0.13);
  color: var(--fg);
  box-shadow: 0 10px 26px rgba(217, 167, 106, 0.12);
}

.field__grid[data-project-view="featured"] .field__card[data-project-card="archive"] {
  display: none;
}

/* Assign colors for each project card */
.field__card:nth-child(1) { --card-border: rgba(245, 158, 11, 0.5); } /* Amber */
.field__card:nth-child(2) { --card-border: rgba(239, 68, 68, 0.5); } /* Red */
.field__card:nth-child(3) { --card-border: rgba(139, 92, 246, 0.5); } /* Purple */
.field__card:nth-child(4) { --card-border: rgba(6, 182, 212, 0.5); } /* Cyan */
.field__card:nth-child(5) { --card-border: rgba(34, 197, 94, 0.5); } /* Green */
.field__card:nth-child(6) { --card-border: rgba(236, 72, 153, 0.5); } /* Pink */
.field__card:nth-child(7) { --card-border: rgba(59, 130, 246, 0.5); } /* Blue */
.field__card:nth-child(8) { --card-border: rgba(234, 179, 8, 0.5); } /* Yellow */
.field__card:nth-child(9) { --card-border: rgba(20, 184, 166, 0.5); } /* Teal */

/* Apply soft border to project cards */
.field__card {
  border: 2px solid var(--card-border, rgba(255,255,255,0.1)) !important;
  border-radius: 4px;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.field__card[data-project-disabled] {
  cursor: default;
}

.field__card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

/* ─ Image sits at z-index 0, overlay at 1, caption at 3 (always on top) ─ */
.field__card img {
  position: relative;
  z-index: 0;
  filter: brightness(0.50) saturate(0.55) contrast(1.05) !important;
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease, opacity 0.8s ease !important;
}
.field__card:hover img {
  filter: brightness(0.68) saturate(0.8) contrast(1.05) !important;
  transform: scale(1.02) !important;
  opacity: 1;
}

/* Gradient overlay — sits above image, below caption */
.field__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.96) 0%,
    rgba(11, 10, 8, 0.60) 40%,
    rgba(11, 10, 8, 0.10) 100%
  );
  transition: background 0.4s ease;
}
html.theme-light .field__card::after {
  background: linear-gradient(
    to top,
    rgba(253, 251, 247, 0.96) 0%,
    rgba(253, 251, 247, 0.60) 40%,
    rgba(253, 251, 247, 0.08) 100%
  );
}
.field__card:hover::after {
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.92) 0%,
    rgba(11, 10, 8, 0.45) 50%,
    transparent 100%
  );
}

/* Caption typography override */
.field__caption {
  position: absolute !important;
  z-index: 3 !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px !important;
  text-transform: none !important;
  background: none !important;
  padding: 32px 28px !important;
  width: 100%;
}
.field__caption-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
}
.field__caption span:first-child {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: 0;
}
.field__caption span:last-child {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Also push the expanded desc above the overlay */
.field__desc {
  position: relative;
  z-index: 3;
}

/* ─── Blog CTA Simple Pill ────────────────────────────────────────────── */
.blog-cta-simple {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.blog-cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 64px;
  border-radius: 50px;
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1;
}
html.theme-light .blog-cta-pill {
  background: rgba(0, 0, 0, 0.03);
  color: var(--fg);
}
.blog-cta-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}
html.theme-light .blog-cta-pill:hover {
  background: rgba(0, 0, 0, 0.08);
}
.blog-cta-pill::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 53px;
  padding: 3px;
  background: conic-gradient(
    from var(--angle, 0deg),
    #f59e0b, #ef4444, #8b5cf6, #06b6d4, #22c55e, #f59e0b
  );
  animation: spin-badge 3s linear infinite;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ─── About Me Section Image Layout ──────────────────────────────────── */
.manifesto__grid--with-img {
  grid-template-columns: 280px 1.1fr 1fr !important;
  align-items: start;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.8) contrast(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
html.theme-light .about-img {
  filter: brightness(1) contrast(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .manifesto__grid--with-img {
    grid-template-columns: 1fr 1fr !important;
  }
  .manifesto__img-col {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto 32px;
  }
}
@media (max-width: 820px) {
  .manifesto__grid--with-img {
    grid-template-columns: 1fr !important;
  }
}

/* ─── References Section ───────────────────────────────────────────────── */
.references__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.reference-card {
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.reference-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
html.theme-light .reference-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}
.reference-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.reference-card p {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ─── Social Links ───────────────────────────────────────────────────── */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* Individual Social Brand Colors */
.social-link:nth-child(1) { --social-color: #3b82f6; } /* LinkedIn */
.social-link:nth-child(2) { --social-color: #f1ece1; } /* GitHub */
.social-link:nth-child(3) { --social-color: #10b981; } /* Medium */

.social-link {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 1;
}
/* Glitter Border Effect */
.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1.5px;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(60deg, transparent 30%, var(--social-color) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: glitter-border 2.5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
@keyframes glitter-border {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}
.social-link:hover::before {
  background-color: var(--social-color); /* Fill the border fully on hover */
}
.social-link__icon {
  width: 20px;
  height: 20px;
  color: var(--fg-dim);
  transition: color 0.3s ease;
}
.social-link:hover .social-link__icon {
  color: var(--accent);
}
.social-link__label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.social-link__handle {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  justify-self: end;
}

/* ─── Experience Cards ──────────────────────────────────────────────────────── */
.approach__step {
  position: relative;
  border: none !important; /* override styles.css */
  z-index: 1;
}
.approach__step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  padding: 1.5px; /* Border thickness */
  background: var(--exp-border, rgba(255,255,255,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
/* 1. Turkcell */
.approach__step:nth-child(1) { --exp-border: linear-gradient(135deg, #facc15 22%, #ffffff 48%, #1d4ed8 78%); }
/* 2-3. TUBITAK research */
.approach__step:nth-child(2) { --exp-border: linear-gradient(to right, #ef4444 30%, #ffffff 80%); }
.approach__step:nth-child(3) { --exp-border: linear-gradient(to bottom, #ef4444 30%, #ffffff 80%); }
/* 4-5. Entrepreneurship */
.approach__step:nth-child(4) { --exp-border: linear-gradient(135deg, #ef4444 18%, #f59e0b 52%, #ffffff 84%); }
.approach__step:nth-child(5) { --exp-border: linear-gradient(135deg, #22c55e 15%, #facc15 48%, #38bdf8 82%); }
/* 6. Synapse */
.approach__step:nth-child(6) { --exp-border: #22c55e; }
/* 7. Sakarya */
.approach__step:nth-child(7) { --exp-border: linear-gradient(225deg, #3b82f6 30%, #ffffff 80%); }

.approach__step h4 {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.exp-brand {
  width: 104px;
  height: 44px;
  flex: 0 0 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.30),
    inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.exp-brand img {
  width: 100%;
  max-width: 88px;
  max-height: 30px;
  object-fit: contain;
}

.exp-brand--turkcell img { max-width: 92px; max-height: 32px; }
.exp-brand--synapse img { max-width: 86px; max-height: 32px; }
.exp-brand--teknofest {
  width: 100%;
  height: 82px;
  flex: 0 0 100%;
  justify-content: flex-start;
  gap: 14px;
  padding: 10px 16px 10px 10px;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, #e33324 0%, #f26a2e 42%, #0b6fae 100%);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.10) inset;
}

.exp-brand--teknofest img {
  width: 86px;
  height: 66px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 50% 56%;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.exp-brand--teknofest strong {
  display: block;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.exp-brand--teknofest::before {
  content: none;
}

.exp-brand--sau {
  width: 100%;
  height: 56px;
  flex: 0 0 100%;
  justify-content: flex-start;
  padding: 8px 14px;
}

.exp-brand--sau img {
  max-width: 176px;
  max-height: 40px;
}

.exp-brand--text {
  color: #0f172a;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-transform: none;
}

.exp-brand--venture {
  color: #0b0a08;
  font-family: var(--mono);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* ─── Contact Email Link ─────────────────────────────────────────────────────── */
.conversation__email {
  position: relative;
  padding: 16px 28px !important;
  border-radius: 8px;
  z-index: 1;
}
.conversation__email::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, #06b6d4 100%);
  animation: spin-badge 3s linear infinite;
  z-index: -1;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ─── Article & Contact Links Typography ───────────────────────────────── */
.manifesto__col h3 {
  font-size: 16px !important;
  color: var(--accent) !important;
  margin-bottom: 12px;
}
.manifesto__col a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px !important;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.manifesto__col a:hover { 
  opacity: 1; 
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.contact__col p, .contact__col a {
  font-size: 15px !important;
  line-height: 1.8 !important;
  opacity: 1 !important;
}

/* ─── Project detail badges & Typography ──────────────────────────────────────────── */
.field__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 2px;
}

.field__bullets {
  margin-top: 12px;
  padding-left: 18px;
  list-style-type: disc;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
}
.field__bullets li {
  margin-bottom: 6px;
}
.field__tags {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
  opacity: 0.9;
}

/* ─── AXIOM — The Iron Owl — RAG Chat Widget ─────────────────────────── */

/* Toggle button: pulse ring to draw attention */
#rag-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(217,167,106,0.35);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.3s;
}
#rag-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(217,167,106,0.4);
  animation: axiom-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes axiom-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.18); opacity: 0; }
}
#rag-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(217,167,106,0.55); }
#rag-toggle.is-open { background: rgba(217,167,106,0.15); color: var(--accent); border: 1px solid var(--accent-dim); }
#rag-toggle.is-open::before { animation: none; opacity: 0; }

/* Main panel */
#rag-panel {
  position: fixed;
  bottom: 108px;
  right: 32px;
  z-index: 199;
  width: min(440px, calc(100vw - 48px));
  height: min(580px, calc(100vh - 140px));
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--accent);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 70px rgba(0,0,0,0.65), 0 0 40px rgba(217,167,106,0.08);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.28s ease;
}
#rag-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* Header with identity */
.rag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
  background: rgba(217,167,106,0.04);
}
.rag-header-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rag-owl-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(217,167,106,0.12);
  border: 1px solid rgba(217,167,106,0.25);
  color: var(--accent);
  flex-shrink: 0;
}
.rag-owl-icon svg { width: 18px; height: 18px; }
.rag-title {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1.1;
}
.rag-subtitle {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-top: 3px;
}
.rag-close {
  background: none;
  border: none;
  color: var(--fg-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}
.rag-close:hover { color: var(--fg); }

/* Messages container */
.rag-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}

.rag-message {
  max-width: 92%;
  font-size: 14px;
  line-height: 1.7;
  padding: 11px 15px;
  border-radius: 3px;
  animation: rag-fade 0.28s ease;
}
@keyframes rag-fade { from { opacity: 0; transform: translateY(8px); } }

.rag-message--user {
  align-self: flex-end;
  background: var(--accent);
  color: var(--bg);
  font-weight: 400;
  max-width: 78%;
}
.rag-message--assistant {
  align-self: flex-start;
  background: rgba(241,236,225,0.05);
  border: 1px solid var(--rule);
  border-left: 2px solid rgba(217,167,106,0.4);
  color: var(--fg);
}
.rag-message--error {
  align-self: center;
  background: rgba(200,60,60,0.10);
  border: 1px solid rgba(200,60,60,0.22);
  color: #e07070;
  font-size: 13px;
  text-align: center;
}

/* Typing indicator with mini owl */
.rag-message--typing {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 14px;
}
.rag-typing-owl {
  display: flex;
  align-items: center;
  color: var(--accent);
  opacity: 0.7;
  margin-right: 2px;
}
.rag-typing-owl svg { width: 14px; height: 14px; }
.rag-message--typing span:not(.rag-typing-owl) {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: rag-bounce 1.3s ease-in-out infinite;
}
.rag-message--typing span:nth-child(2) { animation-delay: 0.18s; }
.rag-message--typing span:nth-child(3) { animation-delay: 0.36s; }
.rag-message--typing span:nth-child(4) { animation-delay: 0.54s; }
@keyframes rag-bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-7px); opacity: 1; }
}

/* Input form */
.rag-form {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
  flex-shrink: 0;
}
.rag-input {
  flex: 1;
  background: rgba(241,236,225,0.04);
  border: 1px solid var(--rule);
  border-radius: 3px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.25s;
}
.rag-input:focus { border-color: rgba(217,167,106,0.5); }
.rag-input::placeholder { color: var(--fg-dim); opacity: 0.7; }
.rag-input:disabled { opacity: 0.5; cursor: not-allowed; }

.rag-send {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.rag-send:hover:not(:disabled) { opacity: 0.85; transform: scale(1.05); }
.rag-send:disabled { opacity: 0.3; cursor: not-allowed; }

@media (max-width: 520px) {
  #rag-toggle { bottom: 20px; right: 20px; }
  #rag-panel { bottom: 90px; right: 16px; width: calc(100vw - 32px); }
}

/* ─── Obsidian Graph ─────────────────────────────────────────────────────── */
.graph-wrapper {
  margin-top: 80px;
  width: 100%;
}
.graph-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 8px;
}
.graph-subtitle {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.graph-container {
  width: 100%;
  height: 500px;
  background: rgba(241, 236, 225, 0.02);
  border: 1px solid var(--rule);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.graph-container:active {
  cursor: grabbing;
}
.graph-tooltip {
  position: absolute;
  text-align: center;
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 2px;
  pointer-events: none;
  z-index: 1000;
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* ─── Final readability pass requested for portfolio sections ───────────── */
.manifesto__grid--with-img .manifesto__col p,
.manifesto__col p {
  font-size: clamp(15.5px, 1vw, 17px) !important;
  line-height: 1.74 !important;
  opacity: 0.9 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.practice__row {
  grid-template-columns: 70px 1.15fr 2.35fr 1.15fr !important;
  align-items: start !important;
  padding: 40px 0 !important;
}

.practice__title {
  font-family: var(--sans) !important;
  font-size: clamp(23px, 2vw, 32px) !important;
  line-height: 1.12 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.practice__body {
  font-size: clamp(15.5px, 1vw, 17px) !important;
  line-height: 1.68 !important;
  max-width: 640px !important;
  opacity: 0.95 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.practice__tags {
  font-size: 11.5px !important;
  line-height: 1.85 !important;
  color: var(--accent) !important;
  opacity: 0.92 !important;
}

.field__lede {
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.68 !important;
  opacity: 0.86 !important;
  max-width: 500px !important;
  font-weight: 400 !important;
}

.field__caption span:first-child {
  font-family: var(--sans) !important;
  font-size: clamp(22px, 1.8vw, 30px) !important;
  line-height: 1.12 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.field__bullets {
  padding-left: 20px !important;
  font-family: var(--sans) !important;
  font-size: clamp(14px, 1vw, 15.5px) !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  color: var(--fg) !important;
  opacity: 0.94 !important;
  font-weight: 400 !important;
}

.field__bullets li {
  margin-bottom: 8px !important;
}

.field__tags {
  font-size: 12px !important;
  opacity: 1 !important;
}

.approach__step {
  min-height: 270px !important;
  padding: 32px 24px 28px !important;
}

.approach__step h4 {
  font-family: var(--sans) !important;
  font-size: clamp(21px, 1.55vw, 26px) !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.approach__step p {
  font-size: clamp(14.5px, 0.95vw, 16px) !important;
  line-height: 1.64 !important;
  opacity: 0.9 !important;
  font-weight: 400 !important;
}

.manifesto__col a {
  font-size: clamp(16px, 1.08vw, 18px) !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.references__grid {
  gap: 24px !important;
}

.references__note {
  max-width: 680px;
  margin: -24px 0 38px;
  color: var(--fg);
  opacity: 0.76;
  font-size: 15.5px;
  line-height: 1.7;
}

.reference-card {
  padding: 32px !important;
  border-color: rgba(234, 179, 8, 0.26) !important;
  box-shadow: 0 0 34px rgba(234, 179, 8, 0.08) !important;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease !important;
}

.reference-card:hover {
  transform: translateY(-5px) scale(1.018) !important;
  border-color: rgba(234, 179, 8, 0.62) !important;
  background: color-mix(in srgb, var(--bg-soft) 86%, #eab308 14%) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 42px rgba(234, 179, 8, 0.24) !important;
}

html.theme-light .reference-card:hover {
  box-shadow: 0 16px 46px rgba(126, 88, 18, 0.16), 0 0 34px rgba(234, 179, 8, 0.24) !important;
}

.reference-card h4 {
  font-size: 24px !important;
  margin-bottom: 8px !important;
}

.reference-card p {
  font-size: 14.5px !important;
  color: var(--fg) !important;
  opacity: 0.82 !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
}

.social-link {
  padding: 12px 16px !important;
}

.social-link__label {
  font-size: 15px !important;
  font-weight: 550 !important;
}

.social-link__handle {
  font-size: 11px !important;
}

.conversation__col h5 {
  font-size: 13px !important;
}

.conversation__col p,
.conversation__col a {
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.72 !important;
  opacity: 0.9 !important;
  font-weight: 400 !important;
}

.conversation__row .conversation__col:last-child p {
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.66 !important;
}

@media (max-width: 900px) {
  .practice__row {
    grid-template-columns: 44px 1fr !important;
  }

  .practice__body,
  .practice__tags {
    grid-column: 2 !important;
  }
}

/* ─── Responsive hardening pass ────────────────────────────────────────── */
@media (max-width: 1280px) {
  :root {
    --gutter: clamp(18px, 3vw, 44px);
  }

  .nav__links {
    gap: 16px !important;
  }

  .nav__links a {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
  }

  .hero__actions {
    position: absolute;
    right: clamp(10px, 1.6vw, 20px);
    top: 52%;
    bottom: auto;
    transform: translateY(-12%);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    margin-top: 0;
    max-width: 176px;
  }

  .hero__actions a {
    min-width: 148px;
    justify-content: space-between;
    padding-inline: 12px;
  }

  .hero__actions a:hover,
  .hero__actions a:focus-visible {
    transform: translateX(-4px);
  }
}

@media (max-width: 900px) {
  .hero__actions {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: min(760px, 92vw);
  }

  .hero__actions a {
    min-width: 142px;
    justify-content: center;
    margin-left: 0 !important;
  }

  .hero__actions a:hover,
  .hero__actions a:focus-visible {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none !important;
  }

  .nav {
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    row-gap: 14px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .nav__links {
    display: flex !important;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-content: flex-start !important;
    width: 100%;
    overflow-x: auto;
    gap: 18px !important;
    padding: 4px 0 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links::-webkit-scrollbar {
    display: none;
  }

  .nav__links a {
    flex: 0 0 auto;
    font-size: 11px !important;
    letter-spacing: 0.11em !important;
  }

  .nav__toggles {
    justify-self: end !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .nav::before {
    inset: 8px 12px;
    border-radius: 18px;
  }

  .hero {
    min-height: 620px !important;
  }

  .manifesto__grid--with-img {
    grid-template-columns: minmax(220px, 300px) 1fr !important;
    gap: 34px !important;
  }

  .manifesto__img-col {
    grid-row: span 2;
  }

  .approach__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  section {
    padding: 84px var(--gutter) !important;
  }

  .hero {
    position: relative !important;
    height: auto !important;
    min-height: 100svh !important;
    padding-top: 92px !important;
    padding-bottom: 32px !important;
  }

  .hero__title {
    font-size: 58px !important;
    line-height: 0.98 !important;
    max-width: 9ch !important;
  }

  .hero__typewriter {
    font-size: 16px !important;
    min-height: 3.2em !important;
    max-width: min(100%, 360px);
    line-height: 1.45 !important;
  }

  .hero__actions {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }

  .hero__actions a {
    min-width: 150px;
    justify-content: center;
  }

  .hero__actions a:hover,
  .hero__actions a:focus-visible {
    transform: translateY(-2px);
  }

  .hero__bottom {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
  }

  .hero__bottom > span:first-child {
    display: none !important;
  }

  .hero__signoff {
    grid-column: 1 !important;
    grid-row: 1 !important;
    transform: none !important;
    justify-self: start !important;
    text-align: left !important;
    max-width: 100%;
  }

  .hero__scroll {
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    align-items: flex-start !important;
  }

  .manifesto__lede,
  .approach__intro,
  .conversation__headline {
    font-size: 42px !important;
    line-height: 1.08 !important;
    max-width: 12ch !important;
    margin-bottom: 48px !important;
  }

  .manifesto__grid,
  .manifesto__grid--with-img,
  .field__head,
  .conversation__row {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .manifesto__img-col {
    grid-row: auto !important;
    max-width: 300px !important;
    margin: 0 0 8px !important;
  }

  .practice__row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 34px 0 !important;
  }

  .practice__num,
  .practice__body,
  .practice__tags {
    grid-column: 1 !important;
  }

  .practice__tags {
    text-align: left !important;
  }

  .field__grid {
    display: block !important;
  }

  .field__card,
  .field__card--lg,
  .field__card--sm,
  .field__card--wide,
  .field__card--tall,
  .field__card--med {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    margin-bottom: 22px !important;
    display: grid !important;
    grid-template-rows: 250px auto;
  }

  .field__card img {
    height: 250px !important;
    opacity: 1 !important;
  }

  .field__caption {
    position: relative !important;
    inset: auto !important;
    padding: 22px !important;
    background: var(--bg-soft) !important;
  }

  .field__caption-top {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .approach__steps,
  .references__grid {
    grid-template-columns: 1fr !important;
  }

  .conversation__email {
    font-size: 26px !important;
    overflow-wrap: anywhere;
  }

  .social-link {
    grid-template-columns: auto 1fr !important;
    gap: 12px !important;
  }

  .social-link__handle {
    grid-column: 2 !important;
    justify-self: start !important;
  }

  #rag-panel {
    right: 16px !important;
    bottom: 92px !important;
    width: calc(100vw - 32px) !important;
    height: min(560px, calc(100svh - 124px)) !important;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 18px;
  }

  .nav {
    padding: 14px 18px !important;
    row-gap: 12px !important;
  }

  .nav__brand {
    font-size: 19px !important;
  }

  #lang-toggle,
  #theme-toggle {
    min-width: 44px;
    min-height: 36px;
    padding: 6px 10px !important;
  }

  .hero {
    min-height: 100svh !important;
    padding-top: 116px !important;
  }

  .hero__title {
    font-size: 46px !important;
    max-width: 8.6ch !important;
  }

  .hero__eyebrow {
    font-size: 10.5px !important;
    line-height: 1.6 !important;
    letter-spacing: 0.18em !important;
    max-width: 280px;
  }

  .hero__signoff {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
  }

  .hero__actions a {
    width: 100%;
    max-width: 280px;
  }

  .hero__proof {
    justify-content: flex-start;
    max-width: 300px;
  }

  .hero__signoff::before {
    left: -10px;
  }

  .hero__signoff::after {
    left: 10px;
  }

  .manifesto__lede,
  .approach__intro,
  .conversation__headline {
    font-size: 34px !important;
  }

  .field__heading {
    font-size: 38px !important;
    line-height: 1.08 !important;
  }

  .field__card,
  .field__card--lg,
  .field__card--sm,
  .field__card--wide,
  .field__card--tall,
  .field__card--med {
    grid-template-rows: 220px auto;
  }

  .field__card img {
    height: 220px !important;
  }

  .field__caption span:first-child {
    font-size: 21px !important;
  }

  .field__bullets {
    font-size: 13.5px !important;
    line-height: 1.58 !important;
  }

  .approach__step {
    min-height: auto !important;
    padding: 28px 22px 26px !important;
  }

  .reference-card {
    padding: 26px !important;
  }

  .conversation__email {
    font-size: 21px !important;
  }

  .footer__row {
    gap: 10px !important;
    letter-spacing: 0.12em !important;
  }
}
