:root {
  --bg: #0d0d0d;
  --bg-card: #141414;
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --cream: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.55);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
  background: rgba(13, 13, 13, 0.85);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-geo {
  position: absolute;
  border: 1px solid;
  border-color: rgba(201, 168, 76, 0.12);
}
.hero-geo-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-geo-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: 100px;
  left: -80px;
  border-color: rgba(201, 168, 76, 0.08);
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.hero-geo-3 {
  width: 2px;
  height: 100%;
  top: 0;
  right: 20%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15), transparent);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.hero-headline .line { display: block; }
.hero-headline .gold { color: var(--gold); }
.hero-headline .line-3 { color: var(--cream); font-style: italic; }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-transform: uppercase;
}
.stat-div {
  width: 1px;
  height: 50px;
  background: rgba(201,168,76,0.2);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ─── MODEL / STREAMS ────────────────────────────────── */
.model {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 72px;
}
.streams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}
.stream {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
}
.stream:hover { background: #111; }
.stream-icon {
  margin-bottom: 24px;
}
.stream-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 32px;
  right: 32px;
  line-height: 1;
}
.stream-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--cream);
}
.stream-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}
.stream-metric {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 20px;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.metric-label {
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── MANIFESTO ──────────────────────────────────────── */
.manifesto {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.manifesto-inner {
  max-width: 720px;
}
.manifesto-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 40px;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.cta-text {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-style: italic;
}

/* ─── CLOSER / TARGETS ───────────────────────────────── */
.closer {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.closer-inner { max-width: 900px; }
.closer-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-bottom: 64px;
}
.targets {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.target { flex: 1; }
.target-val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.target-label {
  display: block;
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.target-desc {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.target-plus {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.closer-result {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 32px;
  margin-bottom: 40px;
}
.result-equals {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  opacity: 0.5;
}
.result-val {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.closer-note {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 64px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(245,240,232,0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 64px; }
  .hero-headline { font-size: 48px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .streams { grid-template-columns: 1fr; }
  .model { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .closer { padding: 80px 24px; }
  .targets { flex-direction: column; gap: 16px; }
  .target-plus { display: none; }
  .footer { padding: 48px 24px; }
}

/* ─── BRAND HUB / REG DA BARBER ───────────────────────── */
.brand-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.brand-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.brand-geo {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.brand-geo-1 {
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.brand-geo-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  border-color: rgba(201, 168, 76, 0.08);
}
.brand-geo-3 {
  width: 2px;
  height: 80%;
  top: 10%;
  right: 25%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.12), transparent);
}
.brand-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}
.brand-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 20px;
}
.brand-tagline {
  font-size: 18px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
}
.brand-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.brand-btn-primary {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: all 0.25s ease;
}
.brand-btn-primary:hover {
  background: #d4b55a;
  transform: translateY(-1px);
}
.brand-btn-secondary {
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  transition: all 0.25s ease;
}
.brand-btn-secondary:hover {
  border-color: rgba(245, 240, 232, 0.5);
  transform: translateY(-1px);
}

/* ─── BIO ─────────────────────────────────────────────── */
.brand-bio {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.brand-bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
}
.brand-portrait {
  position: sticky;
  top: 120px;
}
.brand-portrait-inner {
  width: 260px;
  height: 320px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.brand-portrait-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.portrait-mono {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  letter-spacing: 4px;
  line-height: 1;
}
.portrait-caption {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.brand-bio-right {}
.brand-bio-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--cream);
}
.brand-bio-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.brand-credentials {
  margin-top: 40px;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cred-icon {
  font-size: 22px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}
.cred-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.cred-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ─── SERVICES ────────────────────────────────────────── */
.brand-services {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: linear-gradient(180deg, var(--bg) 0%, #0f0f0f 100%);
}
.brand-services-inner { max-width: 1100px; }
.brand-services-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
}
.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s ease;
}
.service-card:hover { background: #161616; }
.service-card-featured {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 20px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
}
.service-card-price {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 20px;
}
.price-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.services-note {
  margin-top: 40px;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-note::before {
  content: 'ℹ';
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.services-note-text {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ─── PERSONALITY ─────────────────────────────────────── */
.brand-personality {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.brand-personality-inner { max-width: 1100px; }
.personality-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.personality-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cream);
  position: sticky;
  top: 120px;
}
.personality-traits {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trait-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.trait-block:first-child { padding-top: 0; }
.trait-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.trait-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  font-style: italic;
  line-height: 1.4;
}

/* ─── PORTFOLIO ────────────────────────────────────────── */
.brand-portfolio {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
  background: var(--bg);
}
.brand-portfolio-inner { max-width: 1100px; }
.portfolio-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}
.portfolio-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 64px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
  margin-bottom: 0;
}
.portfolio-slot {
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s ease;
  position: relative;
  min-height: 240px;
}
.portfolio-slot:hover { background: #161616; }
.portfolio-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,168,76,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.slot-icon { margin-bottom: 20px; }
.slot-type {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.slot-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.slot-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}
.portfolio-cta {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 48px;
  margin-top: 48px;
}
.portfolio-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.portfolio-cta-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
}

/* ─── BRAND CTA ───────────────────────────────────────── */
.brand-cta {
  padding: 120px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
  position: relative;
  overflow: hidden;
}
.brand-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-geo {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.cta-geo-1 {
  width: 500px; height: 500px;
  bottom: -200px; right: -100px;
  border: 1px solid rgba(201,168,76,0.1);
}
.cta-geo-2 {
  width: 250px; height: 250px;
  top: -80px; left: -60px;
  border: 1px solid rgba(201,168,76,0.08);
}
.brand-cta-content { position: relative; z-index: 1; max-width: 640px; }
.brand-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}
.brand-cta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 48px;
}
.brand-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.brand-btn-cta {
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  transition: all 0.25s ease;
}
.brand-btn-cta:hover {
  background: #d4b55a;
  transform: translateY(-1px);
}
.brand-btn-cta-secondary {
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 32px;
  border: 1px solid rgba(245,240,232,0.25);
  transition: all 0.25s ease;
}
.brand-btn-cta-secondary:hover {
  border-color: rgba(245,240,232,0.5);
  transform: translateY(-1px);
}
.brand-cta-note {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}
.brand-email-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}
.brand-email-link:hover { color: #d4b55a; }

/* ─── BRAND FOOTER ────────────────────────────────────── */
.brand-footer {
  padding: 64px 48px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.brand-footer-inner { text-align: center; }
.brand-footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.brand-footer-tag {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.brand-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.brand-footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.brand-footer-links a:hover { color: var(--cream); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .personality-grid { grid-template-columns: 1fr; gap: 40px; }
  .personality-headline { position: static; }
}
@media (max-width: 768px) {
  .brand-hero { padding: 100px 24px 64px; }
  .brand-name { font-size: 56px; }
  .brand-bio { padding: 80px 24px; }
  .brand-bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .brand-portrait { position: static; }
  .brand-portrait-inner { width: 100%; max-width: 280px; }
  .brand-services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .brand-portfolio { padding: 80px 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .brand-personality { padding: 80px 24px; }
  .brand-cta { padding: 80px 24px; }
  .brand-cta-headline { font-size: 36px; }
  .brand-footer { padding: 48px 24px; }
  .brand-footer-links { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .brand-name { font-size: 44px; }
  .brand-hero-actions { flex-direction: column; align-items: flex-start; }
  .brand-btn-primary, .brand-btn-secondary, .brand-btn-cta, .brand-btn-cta-secondary { width: 100%; text-align: center; }
  .brand-cta-actions { flex-direction: column; }
}
