/* HUY_Graphy — selbstgehostete Replica
   Fotograf Eric Huy · huy-graphy.de */

/* ─── VARIABLES ──────────────────────────────────── */
:root {
  --bg:        #0c0c0c;
  --bg-2:      #131313;
  --bg-3:      #1c1c1c;
  --line:      #2a2a2a;
  --text:      #f3efe9;
  --text-mute: #a8a39b;
  --text-dim:  #6b6862;
  --accent:    #d9c2a4;
  --accent-2:  #b89a78;
  --error:     #e05454;
  --success:   #5cb85c;

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --rad:    6px;
  --rad-lg: 14px;
  --maxw:   1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--accent); color: #000; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── SKIP LINK ──────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  z-index: 9999;
  border-radius: var(--rad);
}

/* ─── TYPOGRAPHY ──────────────────────────────────── */
.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -.01em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.08;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .75rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-mute);
  max-width: 56ch;
  line-height: 1.65;
}

/* ─── LAYOUT ──────────────────────────────────────── */
.wrap        { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 860px;  margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide   { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

section.block       { padding: clamp(64px, 9vw, 140px) 0; }
section.block.tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(12,12,12,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled {
  background: rgba(12,12,12,.94);
  border-bottom-color: var(--line);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 30px; width: auto;
  filter: invert(1) brightness(2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-mute);
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 500;
  padding: 9px 20px;
  background: var(--accent);
  color: #000;
  border-radius: var(--rad);
  transition: background .2s ease;
}
.nav-cta:hover { background: var(--accent-2); color: #000; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--text-mute);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .nav-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,.12) 0%,
    rgba(12,12,12,.08) 40%,
    rgba(12,12,12,.72) 78%,
    rgba(12,12,12,.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(48px, 8vw, 100px) 0 clamp(60px, 8vw, 120px);
}
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* Inner page hero (text only) */
.hero-text {
  padding: clamp(140px, 18vw, 220px) 0 clamp(56px, 7vw, 100px);
  border-bottom: 1px solid var(--line);
}
.hero-text h1 { max-width: 16ch; }
.hero-text .lead { margin-top: 20px; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 13px 28px;
  border-radius: var(--rad);
  border: none;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-2); color: #000; }
.btn-ghost {
  background: transparent;
  color: var(--text-mute);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }

/* ─── FADE-IN ─────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: .12s; }
.fade-in.delay-2 { transition-delay: .24s; }
.fade-in.delay-3 { transition-delay: .36s; }
.fade-in.delay-4 { transition-delay: .48s; }

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header { margin-bottom: clamp(36px, 5vw, 64px); }
.section-header h2 { max-width: 22ch; }
.section-header .lead { margin-top: 16px; }

/* ─── STATS ───────────────────────────────────────── */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin-top: clamp(32px, 4vw, 56px);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
}
.stat-item .label {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: 6px;
  max-width: 20ch;
}

/* ─── FEATURE GRID ────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.feature-item {
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 40px);
}
.feature-item .num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.feature-item h4 { margin-bottom: 10px; }
.feature-item p  { font-size: .92rem; color: var(--text-mute); line-height: 1.6; }

/* ─── PORTFOLIO GRID ──────────────────────────────── */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.portfolio-filter button {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: transparent;
  color: var(--text-mute);
  border: 1px solid var(--line);
  border-radius: 40px;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.portfolio-filter button:hover,
.portfolio-filter button.active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(217,194,164,.08);
}

.gallery-grid {
  columns: 3;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--rad);
}
.gallery-item img {
  width: 100%;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 500px) { .gallery-grid { columns: 1; } }

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--rad-lg);
}
.cat-card.wide { grid-column: span 2; aspect-ratio: 16/7; }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.04); }
.cat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px 24px 24px;
  background: linear-gradient(to top, rgba(12,12,12,.82) 0%, transparent 100%);
}
.cat-card-label h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.cat-card-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(217,194,164,.4);
  padding-bottom: 2px;
}
.cat-card-link:hover { color: var(--accent); opacity: .75; }

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.wide { grid-column: auto; aspect-ratio: 4/5; }
}

/* ─── PREVIEW STRIP ───────────────────────────────── */
.preview-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.preview-strip .img-wrap {
  overflow: hidden;
  border-radius: var(--rad);
  aspect-ratio: 3/4;
}
.preview-strip .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.preview-strip .img-wrap:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
  .preview-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ABOUT SPLIT ─────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-split .img-side img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--rad-lg);
}
.about-split .text-side { display: flex; flex-direction: column; gap: 20px; }
.about-split .text-side p { color: var(--text-mute); line-height: 1.75; }

@media (max-width: 760px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split .img-side { max-width: 440px; }
}

/* ─── COACHING PAGE ───────────────────────────────── */
.coaching-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(56px, 7vw, 100px);
}
.coaching-hero .text .lead { margin-top: 20px; }
.coaching-hero .text .btn  { margin-top: 32px; }
.coaching-hero .img-side img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--rad-lg);
}
@media (max-width: 760px) {
  .coaching-hero { grid-template-columns: 1fr; }
  .coaching-hero .img-side { order: -1; }
}

.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.module-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: clamp(24px, 3vw, 36px);
}
.module-card .num {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
}
.module-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.module-card p  { font-size: .92rem; color: var(--text-mute); line-height: 1.65; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; margin-top: clamp(32px, 4vw, 48px); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform .25s ease; }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer {
  font-size: .93rem;
  color: var(--text-mute);
  line-height: 1.72;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s ease;
}
.faq-answer.open { max-height: 600px; padding-bottom: 22px; }

/* ─── SOCIAL COACHING PAGE ───────────────────────── */
.sc-hero {
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: clamp(64px, 8vw, 120px);
  text-align: center;
}
.sc-hero .badge {
  display: inline-block;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(217,194,164,.3);
  border-radius: 40px;
  padding: 5px 14px;
  margin-bottom: 24px;
}
.sc-hero h1 { max-width: 14ch; margin: 0 auto; }
.sc-hero .lead { margin: 20px auto 0; text-align: center; }
.sc-hero .btn  { margin-top: 36px; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 48px);
}
.problem-card {
  background: var(--bg-2);
  padding: clamp(24px, 3vw, 40px);
}
.problem-card h4 { margin-bottom: 10px; }
.problem-card p  { font-size: .92rem; color: var(--text-mute); line-height: 1.6; }

.coach-bio {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coach-bio img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--rad-lg);
}
.coach-bio .text h2 { margin-bottom: 20px; }
.coach-bio .text p  { color: var(--text-mute); line-height: 1.75; margin-bottom: 14px; }
.coach-bio .text .btn { margin-top: 20px; }
@media (max-width: 860px) {
  .coach-bio { grid-template-columns: 1fr; }
  .coach-bio img { max-width: 360px; }
}

.levels-list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(32px, 4vw, 48px);
}
.level-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line);
}
.level-item:first-child { border-top: 1px solid var(--line); }
.level-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}
.level-body h4 { margin-bottom: 8px; }
.level-body p  { font-size: .92rem; color: var(--text-mute); line-height: 1.65; }

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
}
.result-col {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: clamp(24px, 3vw, 40px);
}
.result-col h4 {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.result-col.after h4 { color: var(--accent); }
.result-list { display: flex; flex-direction: column; gap: 12px; }
.result-list li {
  font-size: .9rem;
  color: var(--text-mute);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.result-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--text-dim);
}
.result-col.after .result-list li::before { content: '✓'; color: var(--accent); }

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

/* ─── CONTACT FORM ────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info .lead { color: var(--text-mute); }
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.contact-feature h4 { font-size: 1rem; margin-bottom: 6px; }
.contact-feature p  { font-size: .9rem; color: var(--text-mute); }

.form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--rad-lg);
  padding: clamp(28px, 4vw, 48px);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  width: 100%;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6862' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group option { background: var(--bg-3); }

.form-status {
  font-size: .88rem;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--rad);
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status.success { background: rgba(92,184,92,.12); color: var(--success); }
.form-status.error   { background: rgba(224,84,84,.12);  color: var(--error); }

.form-wrap .btn { width: 100%; justify-content: center; margin-top: 6px; }

@media (max-width: 760px) { .contact-split { grid-template-columns: 1fr; } }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 110px) 0;
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin: 0 auto; }
.cta-band p  {
  margin: 16px auto 0;
  max-width: 48ch;
  color: var(--text-mute);
  font-size: 1.05rem;
}
.cta-band .btn { margin-top: 32px; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand img {
  height: 26px;
  filter: invert(1) brightness(2);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .88rem;
  color: var(--text-dim);
  max-width: 32ch;
  line-height: 1.65;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .9rem;
  color: var(--text-mute);
}
.footer-col ul a:hover { color: var(--text); }
.footer-col address {
  font-style: normal;
  font-size: .9rem;
  color: var(--text-mute);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
}
.footer-bottom p,
.footer-bottom a { font-size: .8rem; color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text-mute); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: .8rem; color: var(--text-dim); letter-spacing: .06em; }
.footer-social a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ─── LEGAL PAGE ──────────────────────────────────── */
.legal-content {
  padding-top: clamp(130px, 16vw, 200px);
  padding-bottom: clamp(64px, 8vw, 120px);
}
.legal-content h1 { margin-bottom: 40px; }
.legal-body { max-width: 740px; }
.legal-body h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-top: 40px; margin-bottom: 12px;
}
.legal-body h3 {
  font-size: 1rem; font-weight: 600;
  margin-top: 24px; margin-bottom: 8px;
}
.legal-body p,
.legal-body ul,
.legal-body ol {
  font-size: .95rem;
  color: var(--text-mute);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── UTILITY ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.mt-xs  { margin-top: 8px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 32px; }
.mt-lg  { margin-top: 48px; }
.mt-xl  { margin-top: 64px; }

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats { gap: 28px 40px; }
  .level-item { grid-template-columns: 40px 1fr; gap: 16px; }
}
