/* =========================================================
   Portfolio Ilan Bargain — main stylesheet
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { font-family: 'K2D', sans-serif; line-height: 1.5; }

/* ---------- THEME TOKENS ---------- */
:root,
:root[data-theme="dark"] {
  --bg:        #1d1d1d;
  --bg-card:   #2a2a2a;
  --bg-card-2: #242424;
  --bg-input:  #2a2a2a;
  --fg:        #ffffff;
  --fg-muted:  #999999;
  --fg-subtle: rgba(255,255,255,.55);
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.15);
  --accent:    #ffec02;
  --accent-fg: #1d1d1d;
  --green:     #4ade80;
  --pill-bg:        #2a2a2a;
  --pill-bg-active: #ffec02;
  --pill-fg:        #ffffff;
  --pill-fg-active: #1d1d1d;
  --skill-bg:  rgba(255,255,255,.04);
  --shadow:    0 24px 60px rgba(0,0,0,.35);
}
:root[data-theme="light"] {
  --bg:        #f6f6f4;
  --bg-card:   #ffffff;
  --bg-card-2: #ffffff;
  --bg-input:  #ffffff;
  --fg:        #1d1d1d;
  --fg-muted:  #5a5a5a;
  --fg-subtle: rgba(29,29,29,.55);
  --line:      rgba(29,29,29,.10);
  --line-2:    rgba(29,29,29,.18);
  --accent:    #ffec02;
  --accent-fg: #1d1d1d;
  --green:     #1fa363;
  --pill-bg:        #ececec;
  --pill-bg-active: #ffec02;
  --pill-fg:        #1d1d1d;
  --pill-fg-active: #1d1d1d;
  --skill-bg:  rgba(29,29,29,.04);
  --shadow:    0 24px 60px rgba(0,0,0,.08);
}

body {
  background: var(--bg);
  color: var(--fg);
  transition: background .9s ease, color .9s ease;
}
body.is-theme-changing,
body.is-theme-changing * {
  transition: background-color .9s ease, color .9s ease,
              border-color .9s ease, fill .9s ease, stroke .9s ease,
              box-shadow .9s ease, filter .9s ease !important;
}

/* FR/EN language fade */
body.is-lang-changing [data-fr],
body.is-lang-changing [data-fr-placeholder] {
  opacity: 0;
  filter: blur(2px);
}
[data-fr], [data-fr-placeholder] {
  transition: opacity .22s ease, filter .22s ease;
}

::selection { background: var(--accent); color: var(--accent-fg); }

a { color: inherit; text-decoration: none; }

/* ---------- LAYOUT ---------- */
.shell {
  width: 100%;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: clamp(24px, 3vw, 56px);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 3vw, 36px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, border-color .35s ease;
}
.site-header__logo img { display: block; height: 44px; width: auto; }
:root[data-theme="light"] .site-header__logo img { filter: invert(1) hue-rotate(180deg) brightness(.8) contrast(1.4); }

.site-nav {
  display: flex;
  gap: 4px;
}
.site-nav a {
  position: relative;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover { background: var(--line); }
.site-nav a.is-current { background: var(--accent); color: var(--accent-fg); }

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-icon {
  height: 38px;
  min-width: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--fg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.btn-icon:hover { transform: translateY(-1px); background: color-mix(in srgb, var(--bg-card) 80%, var(--accent) 20%); }
.btn-icon svg { width: 16px; height: 16px; display: block; }

/* ---------- HERO ---------- */
.hero { padding-top: 56px; padding-bottom: 40px; position: relative; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 500;
}
.hero__tag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--green)  0%, transparent); }
}

.hero__title {
  font-family: 'K2D', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 13.2vw, 250px);
  line-height: .9;
  letter-spacing: -.018em;
  margin: 22px 0 0;
  color: var(--fg);
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  display: block;
  color: var(--accent);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-top: 48px;
}
.hero__cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.info-card {
  min-width: 175px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.info-card__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
}
.info-card__value.is-accent { color: var(--accent); }

.hero__portrait {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  justify-self: center;
  border: 1px solid var(--line);
  margin-bottom: 56px; /* room for scroll cue underneath */
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}
.btn--primary:hover { background: color-mix(in srgb, var(--accent) 90%, #fff); }
.btn svg { width: 14px; height: 14px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fg-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--fg-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .25; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1); transform-origin: top; }
}

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
}
.section-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.16px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin: 0;
  line-height: 1;
  color: var(--fg);
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
}
.about__lead {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0;
}
.about__lead em { color: var(--accent); font-style: normal; font-weight: 600; }
.about__para {
  font-size: 15.5px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 14px 0 0;
}
.about__para em { color: var(--fg); font-style: normal; font-weight: 600; }

.about-block {
  margin-top: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.about-block__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.42px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.exp-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.exp-item:first-of-type { border-top: 0; padding-top: 4px; }
.exp-name { font-size: 15px; font-weight: 700; color: var(--fg); }
.exp-name em { color: var(--accent); font-weight: 700; font-style: normal; }
.exp-desc { font-size: 13.5px; color: var(--fg-muted); margin-top: 4px; }
.exp-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .6px;
  color: var(--fg-muted);
  white-space: nowrap;
  padding-top: 3px;
}

/* ---------- SKILLS / LANGS / INTERESTS ---------- */
.side-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 28px;
  margin-bottom: 18px;
}
.side-card h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.42px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.skill-sub {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg);
  margin: 18px 0 10px;
}
.skill-sub:first-of-type { margin-top: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--skill-bg);
  border: 1px solid var(--line);
  color: var(--fg);
}

.lang-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.lang-row:first-child { border-top: 0; }
.lang-row b { font-size: 15px; }
.lang-row span { font-size: 12.5px; color: var(--fg-muted); }

.interest-line {
  font-size: 13.5px;
  margin: 10px 0;
  color: var(--fg-muted);
}
.interest-line strong { color: var(--fg); font-weight: 600; margin-right: 4px; }

/* ---------- PROJECTS ---------- */
.projects { padding: 80px 0 60px; }
.projects__intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--fg-muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.projects__intro em { color: var(--accent); font-style: normal; font-weight: 600; }

.projects__toolbar {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.search {
  position: relative;
  flex: 1 1 360px;
  min-width: 280px;
}
.search input {
  width: 100%;
  height: 47px;
  border-radius: 14px;
  background: var(--bg-input);
  border: 1px solid var(--line);
  padding: 0 44px 0 44px;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--fg);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.search input::placeholder { color: var(--fg-muted); }
.search input:focus { border-color: var(--accent); }
.search__icon, .search__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--fg-muted);
  pointer-events: none;
}
.search__icon { left: 16px; }
.search__clear {
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  border: 0;
  color: var(--fg);
}
.search.has-value .search__clear { display: inline-flex; }

.pill {
  height: 47px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 14px;
  background: var(--pill-bg);
  border: 1px solid var(--line);
  color: var(--pill-fg);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  position: relative;
  white-space: nowrap;
}
.pill:hover { transform: translateY(-1px); }
.pill.is-active {
  background: var(--pill-bg-active);
  color: var(--pill-fg-active);
  border-color: var(--accent);
}
.pill__count {
  font-size: 11px;
  background: rgba(0,0,0,.15);
  padding: 2px 7px;
  border-radius: 999px;
  margin-left: 2px;
}

/* dropdown for tag picker */
.tag-picker { position: relative; z-index: 50; }
.tag-picker.is-open { z-index: 200; }
.projects__toolbar { position: relative; z-index: 40; }
.tag-picker__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 220;
  min-width: 260px;
  max-height: 360px;
  overflow-y: auto;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.tag-picker.is-open .tag-picker__menu { display: flex; }
.tag-picker__opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  user-select: none;
  transition: background .15s ease;
}
.tag-picker__opt:hover { background: var(--skill-bg); }
.tag-picker__opt.is-selected { background: color-mix(in srgb, var(--accent) 25%, transparent); }
.tag-picker__opt input { display: none; }
.tag-picker__opt small { color: var(--fg-muted); font-size: 11px; }

.active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.active-tags:empty { display: none; }
.active-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  padding: 6px 12px 6px 14px;
  background: var(--bg-card);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.active-tag:hover { transform: translateY(-1px); border-color: var(--accent); }
.active-tag::after {
  content: "✕";
  font-size: 10px;
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 700;
}

/* projects grid */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.project-card.is-hidden { display: none; }

.project-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__thumb--text {
  background: #0a0a0a;
  color: #fff;
  flex-direction: column;
  font-family: 'K2D';
  text-align: center;
  padding: 24px;
}
.project-card__thumb--text h3 {
  font-size: 56px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.02em;
}
.project-card__thumb--text small {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  margin-top: 6px;
}
.project-card__chip {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.project-card__meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.project-card__meta span:first-child::after {
  content: "·";
  margin-left: 12px;
}
.project-card__name {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  color: var(--fg);
}
.project-card__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin: 0;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.project-card__tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--skill-bg);
  border: 1px solid var(--line);
  color: var(--fg);
}

.projects__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--fg-muted);
  font-size: 16px;
  border: 1px dashed var(--line);
  border-radius: 18px;
}
.projects__empty.is-hidden { display: none; }

/* ---------- AGENDA ---------- */
.agenda__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.agenda__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.agenda__eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
.agenda__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin: 18px 0;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--fg);
}
.agenda__title em { color: var(--accent); font-style: normal; }
.agenda__desc { color: var(--fg-muted); font-size: 15.5px; line-height: 1.6; margin: 0 0 26px; }
.agenda__desc em { color: var(--fg); font-style: normal; font-weight: 600; }
.agenda__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.stat {
  padding: 22px;
  border-radius: 18px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
}
:root[data-theme="dark"] .stat { background: rgba(255,255,255,.03); }
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--fg);
}
.stat span { color: var(--fg-muted); font-size: 13.5px; }

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding: 56px clamp(20px, 3vw, 36px) 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer__brand { max-width: 360px; }
.footer__brand img { height: 44px; margin-bottom: 14px; }
:root[data-theme="light"] .footer__brand img { filter: invert(1) hue-rotate(180deg) brightness(.8) contrast(1.4); }
.footer__brand p { color: var(--fg-muted); font-size: 13px; line-height: 1.55; margin: 0; }
.footer__brand em { color: var(--fg); font-style: normal; font-weight: 600; }
.footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--accent); }
.footer__col a::after {
  content: "↗";
  font-size: 12px;
  color: var(--fg-muted);
  transition: transform .2s ease;
}
.footer__col a:hover::after { transform: translate(2px,-2px); color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .4s;  }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__portrait { width: 100%; max-width: 360px; height: 360px; }
  .hero__cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .agenda__card { grid-template-columns: 1fr; gap: 32px; }
  .projects__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .site-header { padding-inline: 16px; }
  .container { padding-inline: 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: clamp(64px, 18vw, 120px); }
  .info-card { min-width: 0; flex: 1 1 calc(50% - 14px); }
  .projects__toolbar { flex-direction: column; }
  .pill { width: 100%; justify-content: center; }
  .tag-picker__menu { left: 0; right: 0; width: 100%; }
  .exp-item { grid-template-columns: 1fr; }
  .exp-date { padding-top: 0; }
}

/* ---------- TWEAKS HOOKS (for direct-edit safety) ---------- */
.is-current[data-current-section] { background: var(--accent); color: var(--accent-fg); }
