/* ============================================
   Jannis Simmet — Personal branding site
   Design tokens
   ============================================ */
:root {
  --bg-deep: #0a1420;
  --bg-surface: #10233a;
  --bg-surface-2: #15304f;
  --accent: #4a90d9;
  --accent-light: #7ab6f0;
  --warm: #c9a876;
  --warm-light: #ddc79c;
  --text: #f2efe9;
  --text-muted: #93a1b5;
  --border: rgba(242, 239, 233, 0.12);
  --border-strong: rgba(242, 239, 233, 0.22);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --container: 1180px;
}

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

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
}

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { position: relative; }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-light);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--warm);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .hero-node, .hero-link, .flow-dot {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 20, 32, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-light);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.lang-toggle button.active {
  background: var(--accent);
  color: #071018;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links, .lang-toggle-wrap { display: none; }
  .nav-right { display: flex; align-items: center; gap: 0.75rem; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-surface);
    padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
    gap: 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav.open .lang-toggle-wrap {
    display: block;
    position: absolute;
    top: 250px;
    left: clamp(1.25rem, 4vw, 2.5rem);
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 78% 28%, rgba(74, 144, 217, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(201, 168, 118, 0.08), transparent 60%),
    var(--bg-deep);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.14;
  margin: 0.9rem 0 1.4rem;
  max-width: 620px;
}
.hero-copy p.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.1rem;
}
.hero-ctas { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary { background: var(--accent); color: #071018; }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-light); }
.btn-ghost { color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent-light); color: var(--accent-light); }

.hero-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.hero-link:hover { color: var(--accent-light); border-color: var(--accent-light); }

/* Signature hero visual: nodes converging into order */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  justify-self: center;
}
.hero-visual svg { width: 100%; height: 100%; overflow: visible; }
.hero-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.4s var(--ease), opacity 0.6s var(--ease);
}
.hero-node {
  transition: transform 1.3s var(--ease), fill 0.6s var(--ease);
}
.hero-node.warm { fill: var(--warm); }
.hero-node.blue { fill: var(--accent); }
.hero-node.dim { fill: var(--text-muted); }

.hero-visual.settled .hero-line { opacity: 0.55; stroke-dashoffset: 0; }
.hero-visual.settled .hero-node { animation: float 6s ease-in-out infinite; }
.hero-visual .hero-node:nth-child(odd) { animation-delay: -1.4s; }
.hero-visual .hero-node:nth-child(3n) { animation-delay: -3.1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-align: center;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* ============================================
   About
   ============================================ */
.about { padding: clamp(5rem, 10vw, 8rem) 0; }
.about .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo img { width: 100%; }
.about-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,20,32,0.55));
  pointer-events: none;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
}
.about-ventures {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.venture-badge {
  width: 88%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.venture-badge:hover { transform: translateY(-3px); border-color: var(--accent-light); }
.venture-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.venture-badge-simbility { background: #2e2e2e; }
.venture-badge-simbility img {
  object-fit: contain;
  padding: 15%;
  box-sizing: border-box;
  filter: invert(1);
  mix-blend-mode: screen;
}
.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.fact-chip {
  font-size: 0.82rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.about-body p { color: var(--text-muted); font-size: 1.04rem; text-align: justify; text-justify: inter-word; hyphens: auto; }
.about-body p:first-child { color: var(--text); font-size: 1.2rem; font-family: var(--font-display); font-weight: 500; line-height: 1.4; }
.about-subhead {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.8rem 0 0.6rem;
}
.about-body a { color: var(--warm-light); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   Skills
   ============================================ */
.skills { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-surface); }
.skills-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "g1 g2 g3"
    "g4 visual g5"
    "g6 g7 g7";
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}
.skills-connectors { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
.skills-connectors line { stroke: var(--accent); stroke-width: 1; opacity: 0.4; }
.skills-connectors circle { fill: var(--accent-light); opacity: 0.7; }
.skill-slot-visual { grid-area: visual; position: relative; z-index: 1; }
.skill-slot-1 { grid-area: g1; position: relative; z-index: 1; }
.skill-slot-2 { grid-area: g2; position: relative; z-index: 1; }
.skill-slot-3 { grid-area: g3; position: relative; z-index: 1; }
.skill-slot-4 { grid-area: g4; position: relative; z-index: 1; }
.skill-slot-5 { grid-area: g5; position: relative; z-index: 1; }
.skill-slot-6 { grid-area: g6; position: relative; z-index: 1; }
.skill-slot-7 { grid-area: g7; position: relative; z-index: 1; }
.skills-visual { position: relative; display: flex; align-items: center; justify-content: center; padding: 0.5rem; }
.skills-visual svg { width: 100%; max-width: 260px; }
.skill-group h3 {
  display: inline-block;
  font-size: 1rem;
  color: var(--warm-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tag {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.tag:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.tag-extra { display: none; }
.tag-row.expanded .tag-extra { display: inline-flex; }
.tag-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 0.8rem;
  padding: 0;
  background: none;
  border: none;
  color: var(--warm-light);
  font-size: 0.85rem;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tag-toggle:hover { color: var(--accent-light); }

/* ============================================
   Services
   ============================================ */
.services { padding: clamp(5rem, 10vw, 8rem) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
  background: var(--bg-surface-2);
}
.service-card-wide { grid-column: 1 / -1; }
.service-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.3rem;
  color: var(--accent-light);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.service-card p { color: var(--text-muted); font-size: 0.98rem; margin: 0; }

@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(2), .service-card:nth-child(2):hover { transform: none; }
}

/* ============================================
   Journey / References
   ============================================ */
.journey { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--bg-surface); }
.journey-sub {
  font-size: 0.95rem;
  color: var(--warm-light);
  margin: 2.4rem 0 1.2rem;
  font-family: var(--font-display);
}
.journey-sub:first-of-type { margin-top: 0; }
.venture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.venture-card {
  background: #f2efe9;
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.venture-card-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.venture-card-head img { max-height: 40px; width: auto; max-width: 84px; object-fit: contain; }
.venture-card-head h4 { font-size: 1.02rem; font-family: var(--font-display); font-weight: 500; color: #16202c; margin: 0; }
.venture-card p { font-size: 0.92rem; line-height: 1.55; color: #52606d; margin: 0; }
.venture-card p a { color: #16202c; text-decoration: underline; text-underline-offset: 2px; }
.venture-card p a:hover { color: #0a4f8c; }
@media (max-width: 640px) {
  .venture-grid { grid-template-columns: 1fr; }
}
.journey-note { color: var(--text-muted); font-size: 0.85rem; margin: -0.6rem 0 1.2rem; }
.work-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.work-thumb {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-surface-2);
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.work-thumb:hover { transform: translateY(-4px); border-color: var(--accent-light); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.work-thumb-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.6rem 0.7rem;
  font-size: 0.78rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(0deg, rgba(10,20,32,0.85), transparent);
}
.work-thumb--video img { opacity: 0.75; transition: opacity 0.25s var(--ease); }
.work-thumb--video:hover img { opacity: 1; }
.work-thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 999px;
  background: rgba(10, 20, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.work-thumb-play::before {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.work-thumb--video:hover .work-thumb-play { background: rgba(10, 20, 32, 0.85); border-color: var(--accent-light); }
.work-gallery-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}
.work-gallery-note::before { content: "🔗"; font-style: normal; }
.work-gallery-note--flow::before { content: "⚙️"; }
.work-gallery-note--sport::before { content: "🏃"; }
.work-gallery-note--wedding::before { content: "💍"; }
.work-gallery-note--image::before { content: "🖼️"; }
@media (max-width: 900px) {
  .work-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .work-gallery { grid-template-columns: 1fr; }
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6, 12, 20, 0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  padding: 3rem 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { max-width: min(90vw, 1000px); max-height: 85vh; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; margin: 0; }
.lightbox-img { max-width: 100%; max-height: 75vh; border-radius: var(--radius); border: 1px solid var(--border); object-fit: contain; }
.lightbox-video { max-width: 100%; max-height: 75vh; border-radius: var(--radius); border: 1px solid var(--border); background: #000; }
.lightbox-video[hidden] { display: none; }
.lightbox-caption { color: var(--text-muted); font-size: 0.9rem; text-align: center; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--accent-light); color: var(--accent-light); }
.lightbox-close { top: 1.2rem; right: 1.2rem; width: 42px; height: 42px; font-size: 1.4rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1.2rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

/* ============================================
   Contact
   ============================================ */
.contact { padding: clamp(5rem, 10vw, 8rem) 0; }
.contact .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 4rem); }
.contact-info p { color: var(--text-muted); }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 1.05rem;
  color: var(--accent-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}
.contact-email:hover { border-color: var(--accent-light); }

.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.18);
}
.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}
.form-status.ok { color: #8fd4a8; }
.form-status.err { color: #e39b9b; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links { display: flex; gap: 1.4rem; }
.footer-links a:hover { color: var(--accent-light); }

/* ============================================
   Legal pages (impressum / datenschutz)
   ============================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 9rem) clamp(1.25rem, 4vw, 2.5rem) 5rem;
}
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1.8rem; }
.legal h2 { font-size: 1.15rem; margin: 2rem 0 0.7rem; color: var(--warm-light); }
.legal p, .legal li { color: var(--text-muted); font-size: 0.98rem; }
.legal a { color: var(--accent-light); }
.legal ul { padding-left: 1.2rem; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  .hero .container, .about .container, .contact .container {
    grid-template-columns: 1fr;
  }
  .hero-visual { max-width: 320px; margin-top: 2.5rem; order: -1; }
  .about-photo { max-width: 320px; }
  .skills-orbit {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "g1" "g2" "g3" "g4" "g5" "g6" "g7";
  }
  .skills-visual svg { max-width: 240px; margin: 0 auto 0.5rem; }
}
