/* ============================================================
   TDM Projektledning — Tomas Dahlström
   Theme: "Deep Petrol" — dark, editorial, engineering
   ============================================================ */

:root {
  --bg:         #0e1b1e;
  --bg-2:       #0a1517;
  --surface:    #13272b;
  --surface-2:  #163035;
  --petrol:     #0e6e78;
  --petrol-deep:#0a555e;
  --steel:      #37535a;
  --ink:        #f2f5f4;
  --ink-dim:    #cdd8d8;
  --muted:      #8da3a6;
  --line:       rgba(255,255,255,.10);
  --line-soft:  rgba(255,255,255,.06);
  --accent:     #f6b21e;   /* amber-gold — reserved for CTAs, numbers, one hero word */
  --accent-2:   #ff6a2b;
  --radius:     14px;
  --radius-sm:  10px;
  --maxw:       1200px;
  --ff-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --ff-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-mono:    "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: var(--ink); margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #1a1204; }

/* ============ SIDE LABEL ============ */
.side-label {
  position: fixed; left: 0; top: 0; bottom: 0; width: 34px; z-index: 40;
  display: grid; place-items: center; pointer-events: none;
  border-right: 1px solid var(--line-soft);
}
.side-label span {
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .28em;
  color: var(--muted); opacity: .6; text-transform: uppercase; white-space: nowrap;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  transition: background .3s, border-color .3s, height .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,27,30,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 78px; transition: height .3s; }
.site-header.scrolled .header-inner { height: 64px; }

.brand { display: flex; align-items: center; gap: .8rem; margin-right: auto; }
.logo-mark { color: var(--accent); height: 40px; width: auto; flex: none; display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1.0; }
.brand-word .bw-1, .brand-word .bw-2 { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; color: var(--ink); font-size: .96rem; letter-spacing: -0.01em; }
.brand-word .bw-1 { color: var(--accent); }
.brand-mark {
  font-family: var(--ff-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em;
  color: #101a10; background: var(--accent);
  padding: .5rem .55rem; border-radius: 8px; line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--ff-display); font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.brand-text em { font-style: normal; font-size: .72rem; color: var(--muted); font-family: var(--ff-mono); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .8rem; border-radius: 8px; font-size: .92rem; font-weight: 500; color: var(--ink-dim); transition: background .15s, color .15s; }
.nav a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.nav-idx { font-family: var(--ff-mono); font-size: .68rem; color: var(--muted); }
.nav .nav-cta { background: var(--accent); color: #171003; font-weight: 600; margin-left: .4rem; }
.nav .nav-cta:hover { background: #ffc23f; color: #171003; }

.header-tools { display: flex; align-items: center; gap: .6rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .25rem;
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
  border-radius: 999px; padding: .35rem .6rem; cursor: pointer;
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 500; color: var(--muted);
}
.lang-toggle .lang-opt { padding: .1rem .2rem; border-radius: 5px; transition: color .15s; }
.lang-toggle .lang-sep { opacity: .4; }
body.lang-sv .lang-opt[data-lang="sv"],
body.lang-en .lang-opt[data-lang="en"] { color: var(--accent); }

.menu-btn { display: none; flex-direction: column; gap: 4px; width: 42px; height: 40px; align-items: center; justify-content: center; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-btn span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.blueprint {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(120% 100% at 78% 8%, #000 0%, #000 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 78% 8%, #000 0%, #000 42%, transparent 78%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 70% at 82% -5%, rgba(246,178,30,.14), transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(14,110,120,.28), transparent 55%);
}
.hero-annos { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.anno { position: absolute; font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.anno::before { content: "+ "; color: var(--accent); }
.anno-tl { top: 22px; left: 46px; }
.anno-tr { top: 22px; right: 22px; }
.anno-bl { bottom: 26px; left: 46px; }

.hero-inner { position: relative; z-index: 3; padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1fr clamp(220px, 30%, 300px); gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: 3.2rem; }
.hero-copy { min-width: 0; }
.hero-portrait { margin: 0; position: relative; }
.hero-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 28%; display: block; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 26px 54px -26px rgba(0,0,0,.7); }
.hero-portrait-tag { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; flex-direction: column; gap: 2px; background: rgba(10,21,23,.66); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 12px; padding: .7rem .95rem; }
.hero-portrait-tag strong { font-family: var(--ff-display); color: #fff; font-size: 1.04rem; letter-spacing: -0.01em; }
.hero-portrait-tag span { font-family: var(--ff-mono); font-size: .72rem; color: var(--accent); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-mono); font-weight: 500; font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-dim);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.6rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(246,178,30,.2); }
.hero-title { font-size: clamp(1.85rem, 4.4vw, 3.4rem); max-width: 20ch; margin-bottom: 1.4rem; }
.hero-title .hl { color: var(--accent); }
.hero-lead { font-size: clamp(1.02rem, 1.9vw, 1.24rem); color: var(--ink-dim); max-width: 58ch; margin-bottom: 2.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 3.2rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  font-family: var(--ff-display); transition: transform .14s, background .18s, box-shadow .18s, border-color .18s; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #171003; box-shadow: 0 12px 30px -12px rgba(246,178,30,.8); }
.btn-primary:hover { background: #ffc23f; transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(246,178,30,.9); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.06); border-color: var(--ink-dim); transform: translateY(-2px); }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 0; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.hero-stats .stat { display: flex; flex-direction: column; position: relative; padding-left: 1rem; }
.hero-stats .stat::before { content: ""; position: absolute; left: 0; top: .35rem; bottom: .35rem; width: 2px; background: var(--accent); opacity: .55; }
.hero-stats .num { font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
.hero-stats dd { margin: .5rem 0 0; font-size: .84rem; color: var(--muted); line-height: 1.3; }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; background: var(--accent); color: #171003; border-block: 1px solid rgba(0,0,0,.15); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--ff-display); font-weight: 600; font-size: .95rem; padding: .85rem 0; white-space: nowrap; }
.marquee-item::after { content: "／"; margin: 0 1.5rem; opacity: .45; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section-surface { background: var(--surface); }
.section-petrol { background: linear-gradient(180deg, var(--petrol-deep), #0b3c43); }
.section-petrol .card, .section-petrol .method-tools { }

.section-head { max-width: 64ch; margin-bottom: 3rem; }
.kicker { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--ff-mono); font-weight: 500; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 1.1rem; }
.kicker .idx { color: var(--accent); font-weight: 500; }
.kicker .idx::after { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--line); vertical-align: middle; margin-left: .7rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 1.1rem; }
.section-intro { font-size: 1.08rem; color: var(--ink-dim); }
.section-petrol .section-intro { color: rgba(242,245,244,.82); }

/* ============ SERVICE CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card {
  background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s, background .2s;
}
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--accent); transition: width .3s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(246,178,30,.5); background: rgba(255,255,255,.045); }
.card:hover::after { width: 100%; }
.card-no { font-family: var(--ff-mono); font-weight: 500; font-size: .8rem; color: var(--accent); letter-spacing: .05em; }
.card h3 { font-size: 1.22rem; margin: .8rem 0 .6rem; }
.card p { color: var(--ink-dim); font-size: .96rem; }
.section-petrol .card { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); }

/* ============ METHOD / AI ============ */
.method-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.2rem; }
.method-tools, .method-ai { border-radius: var(--radius); padding: 2.1rem; }
.method-tools { background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.14); }
.method-tools h3, .method-ai h3 { font-size: 1.3rem; margin-bottom: 1.2rem; color: #fff; }
.tag-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.tag-list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #eef4f4; border-radius: 999px; padding: .45rem .9rem; font-size: .86rem; font-weight: 500; font-family: var(--ff-mono); }

.method-ai { background: linear-gradient(160deg, #2a1e08, #12262a 65%); border: 1px solid rgba(246,178,30,.4); position: relative; }
.ai-badge { display: inline-block; font-family: var(--ff-mono); font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: rgba(246,178,30,.14); border: 1px solid rgba(246,178,30,.5); padding: .35rem .75rem; border-radius: 999px; margin-bottom: 1.1rem; }
.method-ai p { color: rgba(242,245,244,.85); margin-bottom: 1.3rem; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.8rem; color: #eef4f4; font-size: .98rem; }
.check-list li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

/* ============ VIDEO ============ */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { display: grid; place-items: center; background: linear-gradient(160deg, var(--surface-2), var(--bg)); border: 1px dashed rgba(255,255,255,.24); }
.video-ph-inner { position: relative; z-index: 2; text-align: center; color: var(--ink-dim); padding: 1.5rem; }
.play-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--accent); color: #171003; font-size: 1.3rem; padding-left: 4px; box-shadow: 0 14px 34px -10px rgba(246,178,30,.85); }
.video-ph-inner p { font-family: var(--ff-display); font-weight: 600; font-size: 1.05rem; color: #fff; }
.video-ph-inner small { display: block; margin-top: .45rem; color: var(--muted); font-size: .82rem; }

/* ============ PROJECTS ============ */
.projects { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.project { background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; transition: transform .2s, border-color .2s, background .2s; }
.project:hover { transform: translateY(-5px); border-color: rgba(246,178,30,.4); background: rgba(255,255,255,.04); }
.project-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: baseline; margin-bottom: .9rem; }
.project-year { font-family: var(--ff-mono); font-weight: 500; color: var(--accent); font-size: .86rem; letter-spacing: .04em; }
.project-client { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted); }
.project h3 { font-size: 1.32rem; margin-bottom: .75rem; }
.project p { color: var(--ink-dim); font-size: .96rem; margin-bottom: 1.2rem; }
.project-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.project-tags li { font-family: var(--ff-mono); font-size: .74rem; font-weight: 500; color: #bfeef2; background: rgba(14,110,120,.28); border: 1px solid rgba(14,110,120,.5); border-radius: 6px; padding: .3rem .6rem; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 2.8rem; align-items: start; }
.about-photo { position: sticky; top: 100px; background: radial-gradient(52% 46% at 50% 42%, rgba(14,110,120,.30), transparent 72%); }
.photo-ph { aspect-ratio: 4 / 5; border-radius: var(--radius); background: linear-gradient(160deg, var(--surface-2), #0c1f22); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); font-family: var(--ff-mono); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.about-img { width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 30px rgba(0,0,0,.5)); }
.photo-tag { display: block; margin-top: .8rem; font-family: var(--ff-mono); font-size: .72rem; color: var(--muted); letter-spacing: .08em; }
.about-text h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.3rem; }
.about-text > p { color: var(--ink-dim); margin-bottom: 1.1rem; font-size: 1.04rem; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin: 2rem 0 1.5rem; }
.about-cols h4 { font-size: 1rem; margin-bottom: .8rem; padding-bottom: .5rem; border-bottom: 2px solid var(--accent); display: inline-block; color: #fff; }
.plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.plain-list li { font-size: .92rem; color: var(--ink-dim); padding-left: 1.2rem; position: relative; }
.plain-list li::before { content: "›"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.plain-list.two-col { grid-template-columns: 1fr 1fr; gap: .45rem 1rem; }
.about-lang { font-size: .95rem; color: var(--ink-dim); margin-top: .4rem; }
.about-lang strong { color: #fff; }

/* ============ CONTACT ============ */
.section-contact { background: linear-gradient(160deg, var(--petrol), var(--petrol-deep)); position: relative; overflow: hidden; }
.section-contact::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(100% 100% at 100% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(100% 100% at 100% 0%, #000, transparent 70%); }
.contact-inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.8rem; align-items: center; }
.contact-lead .kicker { color: #eafcfd; }
.contact-lead .kicker .idx { color: var(--accent); }
.contact-lead h2 { color: #fff; font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 1rem; }
.contact-lead p { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.contact-cards { display: grid; gap: .8rem; }
.contact-card { position: relative; display: flex; flex-direction: column; gap: .25rem; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); padding: 1.15rem 1.4rem; transition: border-color .18s, transform .18s, background .18s; }
a.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); background: rgba(0,0,0,.32); }
.cc-label { font-family: var(--ff-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.cc-value { font-family: var(--ff-display); font-weight: 600; font-size: 1.18rem; color: #fff; }
.cc-arrow { position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.2rem; opacity: 0; transition: opacity .18s, transform .18s; }
a.contact-card:hover .cc-arrow { opacity: 1; transform: translateY(-50%) translateX(3px); }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-2); color: var(--muted); padding: 2.6rem 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.logo-mark-lg { color: var(--accent); height: 62px; width: auto; flex: none; }
.footer-wordmark { display: flex; flex-direction: column; line-height: 1.02; }
.footer-wordmark .wm-1, .footer-wordmark .wm-2 { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; color: #fff; font-size: 1.32rem; letter-spacing: -0.01em; }
.footer-wordmark .wm-3 { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.footer-copy { font-family: var(--ff-mono); font-size: .8rem; color: var(--muted); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .hero-grid, .method-grid, .about-grid, .contact-inner { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.2rem; }
  .hero-portrait { max-width: 280px; }
  .about-photo { position: static; max-width: 340px; }
  .side-label { display: none; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(14,27,30,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: .6rem 1.5rem 1.4rem; transform: translateY(-140%); transition: transform .28s ease; }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .95rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .nav .nav-cta { margin: .7rem 0 0; border-radius: 8px; justify-content: center; border-bottom: 0; }
  .menu-btn { display: flex; }
  .cards, .projects, .video-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .about-cols, .plain-list.two-col { grid-template-columns: 1fr; }
  .anno-tr { display: none; }
}
@media (max-width: 420px) {
  .brand-text em { display: none; }
}
