/* =============================================
   COLIN SUMMERS — Design Architect for AI/LLMs
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* 1. VARIABLES & RESET
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #080808;
  --bg-2:         #111111;
  --bg-3:         #1A1A1A;
  --bg-card:      #121212;
  --accent:       #F7C948;
  --accent-dim:   rgba(247, 201, 72, 0.08);
  --accent-glow:  rgba(247, 201, 72, 0.20);
  --text:         #F0F0F0;
  --text-sub:     #999;
  --text-muted:   #555;
  --border:       #1E1E1E;
  --border-mid:   #2A2A2A;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        80px;
  --max-w:        min(92vw, 1400px);
  --gap:          clamp(16px, 3vw, 32px);
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.22s var(--ease);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.06) 0%, rgba(247, 201, 72, 0.025) 35%, rgba(247, 201, 72, 0.008) 60%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

body {
  background-color: var(--bg);
  background-image: radial-gradient(circle, #1f1f1f 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* 2. TYPOGRAPHY
   ============================================= */
.display {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
h2, .h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
h3, .h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4, .h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-sub); }
strong { color: var(--text); font-weight: 600; }

.accent-text { color: var(--accent); }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

/* 3. LAYOUT
   ============================================= */
.container {
  width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-header {
  margin-bottom: clamp(40px, 6vw, 64px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* 4. NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: url('../images/me.png') center/cover no-repeat;
  border: 1px solid var(--accent);
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
  transition: box-shadow var(--transition), opacity var(--transition);
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-sub);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta,
.nav-links a.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 99;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-sub);
  padding: 14px 0;
  text-align: center;
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--accent); }

/* 5. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-accent-outline:hover {
  background: var(--accent);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--accent); }

/* 6. CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent-glow);
}

.card-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-body {
  padding: 24px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.tag-systems {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.tag-ai {
  background: rgba(247, 201, 72, 0.10);
  color: var(--accent);
  border: 1px solid rgba(247, 201, 72, 0.2);
}

.tag-strategy {
  background: rgba(52, 211, 153, 0.10);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.tag-experience {
  background: rgba(251, 146, 60, 0.10);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--text);
  transition: color var(--transition);
}

.card:hover h3 { color: var(--accent); }

.card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color var(--transition), transform var(--transition);
}

.card:hover .card-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* 7. PAGE HERO
   ============================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(60px, 10vw, 100px));
  padding-bottom: clamp(60px, 8vw, 80px);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 700px;
}

.page-hero p {
  max-width: 540px;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* 8. FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 0;
  border-color: var(--border-mid);
  transition: opacity var(--transition), border-color var(--transition);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

/* 9. DIVIDER & UTILITIES
   ============================================= */
.hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: clamp(40px, 6vw, 80px) 0;
}

.text-accent { color: var(--accent); }
.text-sub { color: var(--text-sub); }
.text-muted { color: var(--text-muted); }

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* 10. HOME PAGE — HERO
   ============================================= */
.home-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(48px, 8vw, 80px));
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title .line-2 {
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-sub);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* 11. HOME PAGE — PILLARS
   ============================================= */
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.pillar-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(247, 201, 72, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* 12. HOME PAGE — FEATURED WORK
   ============================================= */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
}

.featured-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: var(--accent-dim);
}

.featured-card .card-thumb,
.featured-card.secondary .card-thumb {
  height: 200px;
}

.featured-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-card .card-body p {
  font-size: 0.88rem;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-footer-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.card-footer-link:hover { gap: 10px; }

/* 13. HOME PAGE — CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--accent-dim);
  border: 1px solid rgba(247, 201, 72, 0.15);
  border-radius: 16px;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 500px;
}

/* 14. WORK PAGE
   ============================================= */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-mid);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  background: var(--accent-dim);
}

.work-card .card-thumb { height: 180px; }

.work-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-card .card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide/show filter */
.work-card[data-hidden="true"] {
  display: none;
}

/* 15. ABOUT PAGE
   ============================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.avatar-block {
  position: relative;
}

.avatar-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  background: var(--bg-3);
  border: 1px solid rgba(247, 201, 72, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px rgba(247, 201, 72, 0.1);
}

.avatar-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--accent);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 8px;
}

.about-bio h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 20px;
}

.about-bio p {
  font-size: 1.0rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Journey/timeline */
.journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}

.journey-era {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.journey-era.current {
  border-color: rgba(247, 201, 72, 0.3);
  background: var(--accent-dim);
}

.era-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.era-tag.past {
  background: var(--bg-3);
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
}

.era-tag.now {
  background: var(--accent);
  color: #000;
}

.journey-era h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.journey-era p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.journey-era ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journey-era ul li {
  font-size: 0.86rem;
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.journey-era ul li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.skill-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-sub);
  text-align: center;
  transition: all var(--transition);
}

.skill-pill:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-dim);
}

/* 16. CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--accent-dim);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--text);
}

.contact-card p {
  font-size: 0.85rem;
  text-align: center;
}

.contact-handle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

/* 17. SVG THUMBNAILS
   ============================================= */
.thumb-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 18. ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}

.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.15s; }
.fade-up-3 { animation-delay: 0.25s; }
.fade-up-4 { animation-delay: 0.35s; }
.fade-up-5 { animation-delay: 0.45s; }

/* 19. RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .grid-3, .work-grid, .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .avatar-placeholder { max-width: 300px; }
  .journey { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .work-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
