/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --bg:          #090807;
  --bg-2:        #0f0e0c;
  --gold:        #c9a96e;
  --gold-2:      #e8d5a3;
  --gold-lt:     rgba(201,169,110,0.1);
  --grad:        linear-gradient(135deg, #c9a96e, #e8d5a3);
  --grad-soft:   linear-gradient(135deg, rgba(201,169,110,0.1), rgba(232,213,163,0.07));
  --text:        #f0ece4;
  --text-dim:    rgba(240,236,228,0.62);
  --text-mute:   rgba(240,236,228,0.35);
  --card-bg:     rgba(255,255,255,0.025);
  --card-border: rgba(255,255,255,0.055);
  --script: 'Pinyon Script', cursive;
  --serif:  'Cormorant Garamond', 'Times New Roman', Times, serif;
  --body:   'Times New Roman', Times, serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Canvas bg ─────────────────────────────────────────────────── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; }

/* ── Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 32px;
  background: rgba(9,8,7,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.07);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto;
}
.brand {
  font-family: var(--script);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--body);
  color: var(--text-dim); text-decoration: none;
  font-size: 13px; letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn.pill {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 9999px;
  font-family: var(--body);
  font-size: 13px; letter-spacing: 1.2px;
  text-decoration: none; text-transform: uppercase;
  background: var(--grad);
  color: #0a0908;
  font-weight: 700;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn.pill:hover { opacity: 0.85; transform: translateY(-1px); }
.btn.pill.ghost {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
}
.btn.pill.ghost:hover { border-color: var(--gold); background: var(--gold-lt); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  padding: 140px 24px 80px;
}
.hero-inner { text-align: center; max-width: 860px; }
.hero-eyebrow {
  font-family: var(--body);
  font-size: 11px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0.65;
  margin-bottom: 24px;
}
.hero-name {
  font-family: var(--script);
  font-size: clamp(72px, 11vw, 130px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 8px;
  animation: name-glow 5s ease-in-out infinite;
  will-change: transform, filter;
  display: inline-block;
}

@keyframes name-float {
  0%   { transform: translateY(0px) rotate(-0.3deg); }
  30%  { transform: translateY(-14px) rotate(0.2deg); }
  60%  { transform: translateY(-6px) rotate(-0.15deg); }
  100% { transform: translateY(0px) rotate(-0.3deg); }
}

@keyframes name-glow {
  0%, 100% {
    filter: drop-shadow(0 0 14px rgba(201,169,110,0.25))
            drop-shadow(0 0 40px rgba(232,213,163,0.10));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(201,169,110,0.55))
            drop-shadow(0 0 70px rgba(232,213,163,0.25))
            drop-shadow(0 0 110px rgba(201,169,110,0.10));
  }
}
.hero-name em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--body);
  font-size: 18px; line-height: 1.65; font-style: italic;
  color: var(--text-dim);
  margin-bottom: 38px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--body);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-mute);
}
.hero-scroll-hint::after {
  content: '';
  display: block; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 8px auto 0;
}

/* ── Credentials Strip ─────────────────────────────────────────── */
.cred-strip {
  position: relative; z-index: 10;
  background: rgba(201,169,110,0.04);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 22px 24px;
}
.cred-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 1000px; margin: 0 auto; flex-wrap: wrap;
}
.cred-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 28px; gap: 3px;
}
.cred-val {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold);
}
.cred-desc {
  font-family: var(--body);
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mute);
}
.cred-sep {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,0.2), transparent);
}

/* ── Section base ──────────────────────────────────────────────── */
.section {
  max-width: 1060px; margin: 48px auto;
  padding: 0 24px; position: relative; z-index: 2;
}
.card {
  background: var(--card-bg);
  border-radius: 16px; padding: 36px;
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
}
.card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.025) 0%, transparent 60%);
  pointer-events: none; border-radius: 16px;
}
.section-eyebrow {
  font-family: var(--body);
  font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--body);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text); margin-bottom: 40px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-title-sm {
  font-family: var(--body);
  font-size: 32px;
  font-weight: 700;
  color: var(--text); margin-bottom: 12px;
  line-height: 1.2;
}
.section-body {
  font-family: var(--body);
  color: var(--text-dim); font-size: 15px; line-height: 1.75;
}

/* ── About header ──────────────────────────────────────────────── */
.about-header { text-align: center; margin-bottom: 40px; }

/* ── About Grid ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px; margin-bottom: 20px; align-items: start;
}
.about-main.card { padding: 36px 40px; }
.about-intro {
  font-family: var(--body);
  font-size: 17px; line-height: 1.8;
  color: var(--text); margin-bottom: 20px;
}
.hl {
  font-style: italic;
}
.about-body {
  font-family: var(--body);
  font-size: 15px; line-height: 1.82;
  color: var(--text-dim); margin-bottom: 16px;
}
.about-body:last-of-type { margin-bottom: 20px; }
.about-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.badge {
  padding: 5px 14px; border-radius: 9999px;
  font-family: var(--body);
  font-size: 10px; letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--grad-soft);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--gold);
}

/* ── About Sidebar ─────────────────────────────────────────────── */
.about-sidebar { display: flex; flex-direction: column; gap: 14px; }
.side-card.card {
  padding: 18px 22px; display: flex; flex-direction: column; gap: 4px;
}
.side-card-label {
  font-family: var(--body);
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-mute);
}
.side-card-val {
  font-family: var(--body);
  font-size: 15px; font-weight: 600;
  color: var(--text); line-height: 1.3;
}
.side-card-sub {
  font-family: var(--body);
  font-size: 11px; color: var(--text-mute); margin-top: 1px;
}
.accent-card {
  background: linear-gradient(135deg, rgba(201,169,110,0.07), rgba(232,213,163,0.04));
  border-color: rgba(201,169,110,0.2);
}
.accent-card .side-card-val {
  color: var(--gold);
}

/* ── Power Bar ─────────────────────────────────────────────────── */
.power-bar.card {
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(201,169,110,0.04), rgba(232,213,163,0.025));
  border-color: rgba(201,169,110,0.12);
}
.power-bar-label {
  font-family: var(--body);
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); opacity: 0.65;
  margin-bottom: 24px;
}
.power-stats { display: flex; align-items: center; }
.power-stat { flex: 1; text-align: center; padding: 0 20px; }
.power-val {
  font-family: var(--body);
  font-size: 26px; font-weight: 700; line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.power-desc {
  font-family: var(--body);
  font-size: 11.5px; color: var(--text-mute); line-height: 1.5;
}
.power-line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,0.15), transparent);
  flex-shrink: 0;
}

/* ── Gallery ───────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.gallery-featured {
  grid-column: 1 / -1;
  flex-direction: row !important;
}
.gallery-featured .gallery-visual {
  width: 340px; flex-shrink: 0; height: auto; min-height: 240px;
}
.gallery-featured .gallery-info {
  padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Entry animations */
.gallery-card {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
}
.gallery-card.from-left  { transform: translateX(-70px); }
.gallery-card.from-right { transform: translateX(70px); }
.gallery-card.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
  animation: card-bob var(--bob-dur, 6s) ease-in-out infinite var(--bob-delay, 0s);
}

@keyframes card-bob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Visual panels */
.gallery-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.g-glow {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* Scholar */
.g-scholar {
  background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.12) 0%, transparent 70%),
              linear-gradient(160deg, #0e0c0a 0%, #141008 100%);
}
.g-scholar .g-glow {
  background: radial-gradient(ellipse at 50% 80%, rgba(201,169,110,0.18) 0%, transparent 60%);
}
.g-symbol {
  font-family: var(--body);
  font-size: 110px;
  color: var(--gold);
  opacity: 0.18;
  user-select: none;
  line-height: 1;
  animation: symbol-pulse 5s ease-in-out infinite;
}
@keyframes symbol-pulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.28; transform: scale(1.06); }
}

/* Trader */
.g-trader {
  background: radial-gradient(ellipse at 50% 100%, rgba(100,200,100,0.07) 0%, transparent 60%),
              linear-gradient(160deg, #080e08 0%, #0b110b 100%);
  align-items: flex-end;
  padding: 0 28px 20px;
}
.g-trader .g-glow {
  background: radial-gradient(ellipse at 50% 100%, rgba(120,220,120,0.12) 0%, transparent 50%);
}
.g-chart {
  display: flex; align-items: flex-end; gap: 6px;
  width: 100%; height: 140px;
}
.g-bar {
  flex: 1; height: var(--h);
  background: linear-gradient(180deg, rgba(120,220,120,0.7), rgba(80,180,80,0.3));
  border-radius: 3px 3px 0 0;
  animation: bar-breathe 3s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.04s);
}
@keyframes bar-breathe {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.06); }
}

/* Builder */
.g-builder {
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.22) 0%, transparent 65%),
              linear-gradient(160deg, #0f0e14 0%, #141220 100%);
}
.g-builder .g-glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.28) 0%, transparent 55%);
}
.g-brackets {
  font-family: 'Courier New', monospace;
  font-size: 80px; font-weight: 700;
  color: var(--gold);
  opacity: 0.65;
  user-select: none;
  animation: bracket-pulse 4.5s ease-in-out infinite;
  letter-spacing: -4px;
  text-shadow: 0 0 30px rgba(201,169,110,0.5);
}
@keyframes bracket-pulse {
  0%, 100% { opacity: 0.55; letter-spacing: -4px; text-shadow: 0 0 20px rgba(201,169,110,0.4); }
  50%       { opacity: 0.85; letter-spacing: 4px;  text-shadow: 0 0 50px rgba(201,169,110,0.8); }
}
.g-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* Philosophy */
.g-philosophy {
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.22) 0%, transparent 65%),
              linear-gradient(160deg, #110e08 0%, #18130a 100%);
}
.g-philosophy .g-glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.3) 0%, transparent 55%);
}
.g-phi {
  font-size: 130px !important;
  opacity: 0.6 !important;
  color: var(--gold) !important;
  text-shadow: 0 0 40px rgba(201,169,110,0.6);
  animation: symbol-pulse 6s ease-in-out infinite !important;
}
@keyframes symbol-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1);    text-shadow: 0 0 30px rgba(201,169,110,0.5); }
  50%       { opacity: 0.75; transform: scale(1.06); text-shadow: 0 0 70px rgba(201,169,110,0.9); }
}
.g-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.g-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.28);
  animation: ring-expand 8s ease-in-out infinite;
}
.g-ring:nth-child(1) { width: 120px; height: 120px; animation-delay: 0s; }
.g-ring:nth-child(2) { width: 190px; height: 190px; animation-delay: -2.5s; }
.g-ring:nth-child(3) { width: 260px; height: 260px; animation-delay: -5s; }
@keyframes ring-expand {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.08); }
}

/* Drive */
.g-drive {
  background: radial-gradient(ellipse at 50% 70%, rgba(201,169,110,0.24) 0%, transparent 60%),
              linear-gradient(160deg, #110f0a 0%, #17140c 100%);
}
.g-drive .g-glow {
  background: radial-gradient(ellipse at 50% 85%, rgba(201,169,110,0.35) 0%, transparent 55%);
}
.g-arrow-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.g-arrow {
  width: 3px; height: 90px;
  background: linear-gradient(180deg, var(--gold), rgba(201,169,110,0.2));
  position: relative;
  animation: arrow-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(201,169,110,0.6);
}
.g-arrow::before, .g-arrow::after {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 32px; height: 3px;
  background: var(--gold);
  transform-origin: left center;
  box-shadow: 0 0 12px rgba(201,169,110,0.6);
}
.g-arrow::before { transform: translateX(-50%) rotate(-40deg); }
.g-arrow::after  { transform: translateX(-50%) rotate(40deg) scaleX(-1); }
@keyframes arrow-pulse {
  0%, 100% { transform: translateY(10px); opacity: 0.55; box-shadow: 0 0 10px rgba(201,169,110,0.4); }
  50%       { transform: translateY(-10px); opacity: 1;    box-shadow: 0 0 30px rgba(201,169,110,0.9); }
}

/* Info panel */
.gallery-info {
  padding: 20px 24px 24px;
}
.gallery-tag {
  font-family: var(--body);
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0.65;
  margin-bottom: 6px;
}
.gallery-name {
  font-family: var(--body);
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.gallery-desc {
  font-family: var(--body);
  font-size: 13.5px; line-height: 1.72;
  color: var(--text-dim);
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-featured { flex-direction: column !important; }
  .gallery-featured .gallery-visual { width: 100%; min-height: 200px; }
}

/* ── Work Grid ─────────────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card.card {
  padding: 28px 28px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.work-card.card:hover {
  border-color: rgba(201,169,110,0.25);
  transform: translateY(-4px);
}
.work-icon {
  font-size: 26px; margin-bottom: 14px;
}
.work-label {
  font-family: var(--body);
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); opacity: 0.7;
  margin-bottom: 6px;
}
.work-title {
  font-family: var(--body);
  font-size: 22px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.work-body {
  font-family: var(--body);
  font-size: 14px; line-height: 1.75;
  color: var(--text-dim); flex: 1;
}
@media (max-width: 860px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ── Contact card ──────────────────────────────────────────────── */
.contact-card { text-align: center; padding: 0; overflow: hidden; }
.contact-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.contact-content {
  position: relative; z-index: 1;
  padding: 56px 40px;
}
.contact-card .section-title-sm { margin-bottom: 10px; }
.contact-card .section-body { margin-bottom: 28px; }

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  position: relative; z-index: 2;
  padding: 28px 32px;
  border-top: 1px solid rgba(201,169,110,0.07);
}
.footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand {
  font-family: var(--script);
  font-size: 20px;
  color: var(--gold);
}
.footer-copy {
  font-family: var(--body);
  font-size: 12px; color: var(--text-mute);
}

/* ── Hamburger button (hidden on desktop) ───────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 60;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile nav overlay ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(9,8,7,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none;
  color: var(--text-mute); font-size: 22px;
  cursor: pointer; padding: 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav-links {
  list-style: none; text-align: center;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-nav-links a {
  font-family: var(--script);
  font-size: 52px; line-height: 1.2;
  color: var(--text); text-decoration: none;
  transition: color 0.2s;
  display: block; padding: 6px 0;
}
.mobile-nav-links a:hover { color: var(--gold); }

/* ── Tablet (≤860px) ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1; min-width: 200px; }
  .power-stats { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .power-line { display: none; }
  .cred-strip-inner { gap: 0; flex-wrap: wrap; }
  .cred-sep { display: none; }
  .cred-item { padding: 8px 16px; }
}

/* ── Mobile (≤640px) ────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; padding: 100px 20px 60px; }
  .hero-name { font-size: clamp(58px, 14vw, 80px); line-height: 1.05; }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2.5px; }
  .cta-row { flex-direction: column; align-items: center; gap: 10px; }
  .btn.pill { width: 100%; max-width: 280px; text-align: center; padding: 14px 24px; }

  /* Credentials strip */
  .cred-strip { padding: 14px 12px; }
  .cred-strip-inner { gap: 0; }
  .cred-item { width: 50%; padding: 8px 10px; }
  .cred-val { font-size: 14px; }
  .cred-desc { font-size: 8px; }

  /* Sections */
  .section { margin: 28px auto; padding: 0 16px; }
  .card { padding: 22px 18px; }

  /* About */
  .about-header { margin-bottom: 24px; }
  .section-title { font-size: 32px; margin-bottom: 24px; }
  .about-main.card { padding: 20px; }
  .about-intro { font-size: 15px; }
  .about-body { font-size: 14px; }
  .about-sidebar { flex-direction: column; }
  .side-card { min-width: unset; }
  .about-badges { gap: 6px; }
  .badge { font-size: 9px; padding: 4px 10px; }

  /* Power bar */
  .power-bar.card { padding: 20px; }
  .power-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .power-val { font-size: 20px; }
  .power-desc { font-size: 11px; }

  /* Work grid */
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .work-card.card { padding: 20px; }
  .work-title { font-size: 18px; }
  .work-body { font-size: 13.5px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-featured { flex-direction: column !important; }
  .gallery-featured .gallery-visual { width: 100%; min-height: 180px; }
  .gallery-featured .gallery-info { padding: 20px; }
  .gallery-visual { height: 180px; }
  .gallery-name { font-size: 17px; }
  .gallery-desc { font-size: 13px; }
  .g-symbol { font-size: 80px !important; }
  .g-brackets { font-size: 60px; }

  /* Contact */
  .contact-content { padding: 36px 20px; }
  .section-title-sm { font-size: 26px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}
