/* Elizaveta Bazilevici — marketing portfolio
   Design system: cool neutral base, single blue accent, pink highlight accent. */

:root {
  --bg: oklch(0.99 0.004 265);
  --surface: oklch(0.995 0.002 265);
  --ink: oklch(0.28 0.045 265);
  --ink-strong: oklch(0.32 0.045 265);
  --body-text: oklch(0.44 0.03 265);
  --muted-text: oklch(0.48 0.028 265);
  --footer-text: oklch(0.46 0.028 265);
  --footer-muted: oklch(0.54 0.025 265);
  --label-muted: oklch(0.6 0.022 265);
  --footer-copyright: oklch(0.62 0.02 265);

  --blue: oklch(0.55 0.245 262);
  --blue-hover: oklch(0.45 0.235 264);
  --pink: oklch(0.63 0.29 350);
  --pink-tint-bg: oklch(0.63 0.29 350 / 0.14);

  --border: oklch(0.9 0.01 265);
  --border-light: oklch(0.93 0.008 265);
  --border-lighter: oklch(0.94 0.008 265);
  --border-strong: oklch(0.91 0.01 265);
  --border-control: oklch(0.87 0.012 265);

  --card-shadow: 0 1px 3px oklch(0.28 0.045 265 / 0.06);
  --card-shadow-hover: 0 14px 34px oklch(0.28 0.045 265 / 0.12);
  --nav-shadow: 0 1px 2px rgba(20, 20, 30, 0.03), 0 6px 20px rgba(20, 20, 30, 0.04);
  --tile-shadow: 0 10px 30px oklch(0.28 0.045 265 / 0.08);

  --max-width: 1440px;
  --gutter: clamp(20px, 5vw, 96px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  color: var(--ink);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-hover); }
::selection { background: oklch(0.55 0.135 42 / 0.18); }

img { max-width: 100%; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.99 0.004 265 / 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--nav-shadow);
}

.site-header__bar {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  transition: opacity 120ms ease;
}
.brand-link:hover { opacity: 0.75; }

.brand-link img { height: 52px; width: auto; display: block; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 36px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
}

.site-nav a,
.mobile-nav a {
  font-size: 15.5px;
  color: var(--ink-strong);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-nav a:hover,
.mobile-nav a:hover { color: var(--blue); }

.btn-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 15.5px;
  font-weight: 500;
}
.btn-contact:hover { background: var(--blue); color: var(--surface); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--border-control);
  border-radius: 6px;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1.5px; background: oklch(0.3 0.045 265); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--border-lighter);
  background: var(--bg);
}
.mobile-nav a {
  font-size: 17px;
  min-height: 52px;
  border-bottom: 1px solid var(--border-lighter);
  color: oklch(0.3 0.045 265);
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.is-open { display: flex; }
}

/* ---------- Hero ---------- */

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) var(--gutter) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__copy { max-width: 620px; }

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 34px);
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.01em;
}
.hero__kicker .kicker-pink {
  background: var(--pink);
  padding: 4px 12px;
  font-weight: 700;
  color: var(--surface);
  text-transform: uppercase;
}
.hero__kicker .kicker-ink {
  color: var(--ink-strong);
  text-transform: uppercase;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}

.hero__subhead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--body-text);
  max-width: 560px;
  margin: clamp(24px, 2.6vw, 34px) 0 0;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-top: clamp(30px, 3.2vw, 40px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--surface);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.btn-primary:hover { background: var(--blue-hover); color: var(--surface); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 4px;
  color: var(--blue);
  font-size: 16.5px;
  font-weight: 600;
}
.link-arrow:hover { color: var(--blue-hover); }
.link-arrow span { font-size: 17px; }

.hero__art {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  padding: 20px;
}
.hero__art .shape { position: absolute; z-index: 0; }
.hero__art .shape--ring {
  top: -18px; right: -14px; width: 90px; height: 90px;
  border-radius: 50%; border: 2px solid oklch(0.63 0.29 350 / 0.4);
}
.hero__art .shape--disc {
  bottom: -20px; left: -22px; width: 70px; height: 70px;
  border-radius: 50%; background: oklch(0.55 0.245 262 / 0.14);
}
.hero__art .shape--dot {
  top: 40%; right: -26px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--pink);
}
.hero__art figure {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}
.hero__art img { width: 100%; height: auto; display: block; }

/* ---------- Capability strip ---------- */

.capability-strip {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}

.capability-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.capability-item__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
}

.capability-item__text { display: flex; flex-direction: column; gap: 4px; }
.capability-item__title { font-weight: 700; font-size: 16.5px; letter-spacing: -0.012em; color: var(--ink); }
.capability-item__desc { font-size: 15.5px; line-height: 1.5; color: var(--muted-text); }

/* ---------- Section reveal (scroll animation) ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 380ms ease-out, transform 380ms ease-out;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-tilt].is-visible {
  transform: translateY(0) rotate(0deg);
}

/* ---------- "What's actually broken" ---------- */

.broken {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 2.5vw, 36px);
  align-items: start;
  scroll-margin-top: 88px;
}

@media (min-width: 640px) {
  .broken { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .broken { grid-template-columns: repeat(3, 1fr); }
}

.broken__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(4px, 1vw, 16px) clamp(8px, 2vw, 24px) 0 0;
}
.broken__intro h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.broken__intro p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.62;
  color: var(--body-text);
  text-wrap: pretty;
}

.broken-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  border-top: 3px solid var(--pink);
  transition: opacity 460ms cubic-bezier(0.22, 1.12, 0.36, 1), transform 460ms cubic-bezier(0.22, 1.12, 0.36, 1), box-shadow 160ms ease;
}
.broken-card h3 {
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
}
.broken-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--body-text);
  text-wrap: pretty;
  flex: 1;
}

/* Polaroid-drop starting poses, one per card position */
.broken-card[data-tilt="1"] { transform: translate(-8px, 14px) rotate(-3deg); transition-delay: 400ms; }
.broken-card[data-tilt="2"] { transform: translate(8px, 18px) rotate(3deg); transition-delay: 495ms; }
.broken-card[data-tilt="3"] { transform: translate(-10px, 12px) rotate(-4deg); transition-delay: 590ms; }
.broken-card[data-tilt="4"] { transform: translate(10px, 16px) rotate(4deg); transition-delay: 685ms; }
.broken-card[data-tilt="5"] { transform: translate(-6px, 20px) rotate(-3deg); transition-delay: 780ms; }
.broken-card.is-visible { transform: translate(0, 0) rotate(0deg); }

/* ---------- Services ---------- */

.services {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  scroll-margin-top: 88px;
}

.services__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.services__intro h2 {
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  margin: 0;
  text-wrap: balance;
}
.services__intro p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--body-text);
  margin: 22px 0 0;
  text-wrap: pretty;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: clamp(36px, 4vw, 56px) 0 clamp(40px, 5vw, 64px);
}

.service-tab {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.008em;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  cursor: pointer;
  will-change: transform;
  background: oklch(0.96 0.045 350);
  border: 2px solid oklch(0.63 0.29 350 / 0.35);
  color: oklch(0.48 0.24 350);
  transition: background 120ms ease, color 120ms ease;
}
.service-tab:hover {
  border-color: var(--pink);
  background: oklch(0.94 0.06 350);
}
.service-tab.is-active {
  border-color: var(--pink);
}
.service-tab.is-active:hover { background: oklch(0.96 0.045 350); }

.services__panel {
  display: grid;
  grid-template-columns: minmax(300px, 480px) minmax(280px, 480px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 768px) {
  .services__panel {
    grid-template-columns: 1fr;
  }
}

.services__panel-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__panel-text h3 {
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--ink);
}
.services__panel-text p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--body-text);
  text-wrap: pretty;
}

.services__panel-nav { display: flex; gap: 10px; margin-top: 4px; }
.services__panel-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid var(--border-control);
  background: transparent;
  color: var(--ink-strong);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.services__panel-nav button:hover { border-color: var(--pink); color: var(--pink); }

.services__panel-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__panel-image img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Featured work ---------- */

.featured-work {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(48px, 6vw, 84px);
  scroll-margin-top: 88px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 3vw, 36px);
}

.work-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 150ms ease, transform 150ms ease, opacity 380ms ease-out;
}
.work-card:hover {
  color: inherit;
  box-shadow: 0 12px 32px oklch(0.28 0.045 265 / 0.1);
  transform: translateY(-3px);
}
.work-card.is-visible:hover { transform: translateY(-3px); }

.work-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, oklch(0.94 0.03 262) 0%, oklch(0.86 0.07 262) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.work-card__placeholder {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.52 0.025 265);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 7px 12px;
  border-radius: 999px;
  text-align: center;
}

.work-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 30px);
}
.work-card__kind {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--pink);
}
.work-card__title {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.018em;
  margin: 0;
  line-height: 1.22;
}
.work-card__outcome {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted-text);
}
.work-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}

/* ---------- What's behind the work ---------- */

.behind-work {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  scroll-margin-top: 88px;
}

.behind-work__intro {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.behind-work__intro h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
}
.behind-work__intro p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--body-text);
  margin: 20px 0 0;
  text-wrap: pretty;
}

.behind-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(36px, 4vw, 56px);
  margin-bottom: clamp(56px, 7vw, 88px);
  align-items: stretch;
}

.behind-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.behind-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--pink-tint-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.behind-card__icon svg { color: var(--pink); }
.behind-card h3 {
  font-weight: 700;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.behind-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  text-wrap: pretty;
  flex: 1;
}

/* ---------- Contact CTA ---------- */

.contact {
  scroll-margin-top: 88px;
  padding: clamp(32px, 5vw, 64px) var(--gutter);
}
.contact__panel {
  max-width: 1340px;
  margin: 0 auto;
  background: linear-gradient(135deg, oklch(0.975 0.012 265) 0%, oklch(0.955 0.028 265) 100%);
  border: 1px solid oklch(0.93 0.012 265);
  border-radius: 22px;
  padding: clamp(36px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.contact__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}
.contact__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.contact__copy h2 {
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.026em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.contact__copy h2 span { color: var(--pink); }
.contact__copy p {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  color: var(--body-text);
  text-wrap: pretty;
}
.contact__cta { display: flex; margin-top: 10px; }
.btn-contact-cta {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 36px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--surface);
  font-size: 16.5px;
  font-weight: 600;
}
.btn-contact-cta:hover { background: var(--blue-hover); color: var(--surface); }

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-tile {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--tile-shadow);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-tile--offset { margin-left: clamp(0px, 3vw, 40px); }
.contact-tile__label { font-size: 14px; font-weight: 700; color: var(--ink-strong); }
.contact-tile a { font-size: 15.5px; word-break: break-all; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-strong);
}
.site-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) var(--gutter) 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.site-footer__brand { display: flex; flex-direction: column; gap: 12px; }
.site-footer__brand a { align-self: flex-start; }
.site-footer__brand img { height: 88px; width: auto; display: block; flex-shrink: 0; }
.site-footer__brand p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--footer-muted);
  max-width: 260px;
  text-wrap: pretty;
}

.site-footer nav, .site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-footer__label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-muted);
  margin-bottom: 8px;
}
.site-footer nav a, .site-footer__contact a {
  font-size: 14.5px;
  color: var(--footer-text);
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.site-footer nav a:hover, .site-footer__contact a:hover { color: var(--blue); }
.site-footer__contact a { word-break: break-all; }

.site-footer__location p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--footer-muted);
  text-wrap: pretty;
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site-footer__copyright {
  border-top: 1px solid var(--border-lighter);
  padding: 20px 0 40px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--footer-copyright);
}

.site-nav a.is-active,
.mobile-nav a.is-active {
  color: var(--blue);
  font-weight: 600;
}

/* Simple footer variant used on article pages (name only, no logo image) */
.site-footer__brand-name {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
}

/* ================= About page ================= */

.about-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) var(--gutter) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.026em;
  margin: 0;
}
.about-hero__tagline {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  color: var(--pink);
  margin-top: 10px;
  letter-spacing: -0.005em;
}
.about-hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 28px);
  max-width: 900px;
  margin-top: clamp(24px, 3vw, 34px);
}
.about-hero__lede {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.about-hero__lede-mark {
  border-left: 3px solid var(--pink);
  padding-left: clamp(16px, 2vw, 22px);
}
.about-hero__lede-mark p {
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.32;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}
.about-hero__copy p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--body-text);
  margin: 0;
  text-wrap: pretty;
}
.about-hero__photo {
  width: clamp(200px, 22vw, 280px);
  height: clamp(320px, 38vw, 490px);
  justify-self: center;
  border-radius: 14px;
  overflow: hidden;
}
.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
}

@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__photo { justify-self: start; }
  .about-hero__lede { grid-template-columns: 1fr; }
  .about-row { display: flex !important; flex-direction: column !important; gap: 14px !important; }
  .about-label-col { position: static !important; }
}

.about-sections {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 104px);
}

.about-row {
  display: grid;
  grid-template-columns: 26% 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border-light);
}
.about-row:last-of-type { border-bottom: none; }

.about-label-col {
  position: sticky;
  top: 100px;
  align-self: start;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}
.about-mini-card { display: flex; flex-direction: column; gap: 10px; }
.about-mini-card__bar { width: 34px; height: 6px; border-radius: 3px; }
.about-mini-card__bar--pink { background: var(--pink); }
.about-mini-card__bar--blue { background: var(--blue); }
.about-mini-card h3 { margin: 0; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--ink); }
.about-mini-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted-text); }

.about-experience {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-text);
}
.about-experience p { margin: 0; text-wrap: pretty; }
.about-experience div + div {
  padding-top: 18px;
  border-top: 1px solid var(--border-lighter);
}

.about-capabilities { display: flex; flex-direction: column; gap: 20px; }
.about-capabilities__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--label-muted);
  margin-bottom: 10px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-strong);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-block;
  will-change: transform;
  background: transparent;
  border: 1.5px solid transparent;
}
.pill--skill { border-color: var(--pink); }
.pill--tool { border-color: var(--blue); }

.about-education { display: flex; flex-direction: column; gap: 10px; font-size: 16px; line-height: 1.6; color: var(--body-text); max-width: 640px; }
.about-education p { margin: 0; }
.about-education strong { color: var(--ink); font-weight: 600; }

.language-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 36px) clamp(32px, 4vw, 56px);
  max-width: 640px;
}
.language-item { display: flex; flex-direction: column; gap: 8px; }
.language-item__name { font-weight: 700; font-size: 16px; color: var(--ink); }
.language-item__track { height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.language-item__fill { height: 100%; border-radius: 2px; }
.language-item__fill--pink { background: var(--pink); }
.language-item__fill--blue { background: var(--blue); }
.language-item__level { font-size: 14.5px; color: var(--muted-text); }

.about-more p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-text);
  max-width: 640px;
  text-wrap: pretty;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  padding-top: clamp(40px, 5vw, 56px);
}
.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.btn-outline-pill:hover { background: var(--blue); color: var(--surface); }
.btn-solid-pill {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--surface);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.btn-solid-pill:hover { background: var(--blue-hover); color: var(--surface); }

/* ================= Insights index ================= */

.insights-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(20px, 3vw, 32px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22px, 2.6vw, 30px);
}
.insights-hero__pill {
  background: var(--pink);
  color: var(--surface);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 4px 12px;
}
.insights-hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  margin: 0;
  text-wrap: balance;
}
.insights-hero p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--body-text);
  max-width: 620px;
  margin: 0;
  text-wrap: pretty;
}

.insights-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 24px) var(--gutter) 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 clamp(40px, 5vw, 64px);
}
.filter-pill {
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
  background: transparent;
  border: 1.5px solid var(--border-control);
  color: var(--muted-text);
}
.filter-pill:hover { border-color: var(--pink); color: var(--pink); }
.filter-pill.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--surface);
}
.filter-pill.is-active:hover { border-color: var(--pink); color: var(--surface); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 3vw, 36px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 150ms ease, transform 150ms ease, opacity 380ms ease-out, transform 380ms ease-out;
}
.insight-card:hover {
  color: inherit;
  box-shadow: 0 12px 32px oklch(0.28 0.045 265 / 0.1);
  transform: translateY(-3px);
}
.insight-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, oklch(0.94 0.03 262) 0%, oklch(0.86 0.07 262) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.insight-card__body { display: flex; flex-direction: column; gap: 10px; padding: clamp(22px, 2.4vw, 30px); }
.insight-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  display: inline-flex;
  align-self: flex-start;
  background: var(--pink);
  color: var(--surface);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.tag-pill:hover { background: oklch(0.55 0.27 350); }
.insight-card__title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.016em;
  margin: 0;
  line-height: 1.28;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-card__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.insight-card__meta { font-size: 13px; color: oklch(0.58 0.02 265); margin-top: 4px; }

/* ================= Article pages ================= */

.article-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) var(--gutter) clamp(28px, 3vw, 36px);
}
.back-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.article-hero h1 {
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.article-hero__dek {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--body-text);
  margin: 18px 0 0;
  text-wrap: pretty;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: oklch(0.58 0.02 265);
  margin-top: 22px;
  flex-wrap: wrap;
}
.article-tag {
  display: inline-flex;
  color: var(--surface);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.article-tag--pink { background: var(--pink); }
.article-tag--blue { background: var(--blue); }

.article-takeaways {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(40px, 5vw, 56px);
}
.article-takeaways__box {
  background: oklch(0.955 0.028 265);
  border-left: 3px solid var(--pink);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 3vw, 32px);
}
.article-takeaways__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.article-takeaways ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.article-takeaways li { display: flex; gap: 10px; font-size: 15.5px; line-height: 1.55; color: oklch(0.4 0.03 265); }
.article-takeaways li span { color: var(--blue); font-weight: 700; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(64px, 8vw, 104px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 16.5px;
  line-height: 1.7;
  color: oklch(0.4 0.03 265);
}
.article-body p { margin: 0; text-wrap: pretty; }
.article-body h2 {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 14px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
}
.article-body img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}
.article-callout {
  display: flex;
  gap: 16px;
  align-items: center;
  background: oklch(0.955 0.028 265);
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 8px;
}
.article-callout__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-callout__text { display: flex; flex-direction: column; gap: 2px; }
.article-callout__text a { font-size: 16px; font-weight: 600; }
.article-callout__text span { font-size: 14px; color: var(--footer-muted); font-style: italic; }

.article-links-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: oklch(0.955 0.028 265);
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 8px;
}
.article-links-box__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.article-links-box a { font-size: 16px; font-weight: 600; }

.video-list { display: flex; flex-direction: column; gap: 10px; }
.video-row {
  display: flex;
  gap: 12px;
  align-items: center;
  background: oklch(0.955 0.028 265);
  border-radius: 8px;
  padding: 14px 18px;
}
.video-row:hover { background: oklch(0.94 0.03 262); }
.video-row__play {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-row span:last-child { font-size: 15.5px; font-weight: 600; color: var(--ink); }

.more-insights {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 56px) var(--gutter) clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--border-light);
}
.more-insights h2 {
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.016em;
  margin: 0 0 clamp(28px, 3vw, 36px);
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}
.more-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.more-card:hover {
  color: inherit;
  box-shadow: 0 10px 26px oklch(0.28 0.045 265 / 0.1);
  transform: translateY(-3px);
}
.more-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, oklch(0.94 0.03 262) 0%, oklch(0.86 0.07 262) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}
.more-card__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.more-card__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; }
.more-card__tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--pink);
  color: var(--surface);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.more-card__title { font-weight: 700; font-size: 17px; letter-spacing: -0.012em; margin: 0; line-height: 1.3; color: var(--ink); }
.more-card__meta { font-size: 13px; color: oklch(0.58 0.02 265); }

/* ---------- Cookie consent banner ---------- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 16px var(--gutter);
  background: var(--ink);
  box-shadow: 0 -2px 16px oklch(0.28 0.045 265 / 0.16);
}
.cookie-banner__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--surface);
}
.cookie-banner__accept {
  flex: none;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 6px;
  border: none;
  background: var(--blue);
  color: var(--surface);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner__accept:hover { background: var(--blue-hover); }
