:root {
  --ink: #121b20;
  --ink-soft: #334148;
  --muted: #66747a;
  --line: #dbe4e1;
  --paper: #f7f9f8;
  --white: #ffffff;
  --purple: #57218a;
  --purple-deep: #32104f;
  --orange: #ff6b18;
  --orange-soft: #fff0e8;
  --teal: #10797b;
  --mint: #68beac;
  --amber: #e7ac43;
  --coral: #d65c50;
  --blue: #3e71b8;
  --shadow: 0 24px 70px rgba(18, 27, 32, 0.12);
  --purple-glow: 0 18px 44px rgba(87, 33, 138, 0.18);
  --orange-glow: 0 18px 44px rgba(255, 107, 24, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(247, 249, 248, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(18, 27, 32, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 clamp(178px, 21vw, 286px);
  max-width: min(286px, 48vw);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--purple);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--purple), var(--orange));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  min-height: calc(100vh - 72px);
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(42px, 6vw, 72px);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
  border-color: var(--purple-deep);
  box-shadow: var(--purple-glow);
}

.button-secondary {
  background: transparent;
  border-color: var(--orange);
  color: var(--purple-deep);
}

.hero-media {
  margin: 0;
  min-width: 0;
}

.hero-media img {
  width: min(760px, 48vw);
  height: min(72vh, 760px);
  margin-left: auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.hero-media .hero-photo {
  aspect-ratio: 4 / 5;
}

.hero-video-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(760px, 48vw);
  margin: 14px 0 0 auto;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(87, 33, 138, 0.18);
  border-radius: 8px;
  box-shadow: var(--purple-glow);
}

.hero-video-callout span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-video-callout a {
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
}

.hero-video-callout a:hover,
.hero-video-callout a:focus {
  color: var(--orange);
}

.intro-band,
.section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 4vw, 56px);
}

.intro-band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tight {
  padding-top: clamp(36px, 6vw, 72px);
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split,
.section-heading,
.belief-panel,
.metrics,
.portfolio-grid,
.resume-layout,
.feature-row,
.reflection-grid,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.body-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.body-copy p:last-child,
.section-heading p:last-child,
.artifact-card p:last-child,
.timeline p:last-child,
.media-placeholder p:last-child {
  margin-bottom: 0;
}

.belief-panel {
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 107, 24, 0.12), transparent 38%),
    var(--purple-deep);
  color: var(--white);
  border-radius: 8px;
}

.belief-panel .section-kicker {
  color: #ffb37d;
}

.belief-panel h2 {
  max-width: 940px;
}

.belief-panel p {
  max-width: 760px;
  color: #d6e1dd;
  font-size: 1.1rem;
}

.city-band {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  min-height: clamp(230px, 28vw, 340px);
  margin: clamp(52px, 7vw, 92px) auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.city-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(50, 16, 79, 0.82), rgba(87, 33, 138, 0.44) 44%, rgba(255, 107, 24, 0.16)),
    linear-gradient(0deg, rgba(18, 27, 32, 0.18), transparent 60%);
  pointer-events: none;
}

.city-band::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
  pointer-events: none;
}

.city-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.city-band-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 640px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
}

.city-band-content .section-kicker {
  color: #ffb37d;
}

.city-band-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.city-band-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.portfolio-heading p {
  max-width: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.metrics div {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div:first-child {
  border-top: 4px solid var(--purple);
}

.metrics div:nth-child(2) {
  border-top: 4px solid var(--orange);
}

.metrics div:nth-child(3) {
  border-top: 4px solid var(--purple);
}

.metrics div:nth-child(4) {
  border-top: 4px solid var(--orange);
}

.metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.artifact-card,
.media-placeholder,
.skills-panel {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artifact-card {
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.artifact-card h3 {
  margin-bottom: 16px;
}

.artifact-card:hover {
  border-color: rgba(87, 33, 138, 0.28);
  box-shadow: var(--purple-glow);
  transform: translateY(-2px);
}

.artifact-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.is-ready .artifact-topline span {
  color: var(--purple);
}

.is-pending .artifact-topline span {
  color: var(--orange);
}

.artifact-card p,
.timeline p,
.media-placeholder p {
  color: var(--ink-soft);
}

.artifact-card a {
  margin-top: auto;
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
}

.artifact-card a:hover,
.artifact-card a:focus {
  text-decoration: underline;
}

.disabled-link {
  color: var(--muted) !important;
  cursor: not-allowed;
}

.resume-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 20px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  padding: 24px;
  background: var(--paper);
  border-left: 6px solid var(--purple);
}

.timeline article:nth-child(2) {
  border-left-color: var(--orange);
}

.timeline article:nth-child(3) {
  border-left-color: var(--teal);
}

.timeline span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.skills-panel {
  min-height: auto;
  background: var(--purple-deep);
  color: var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #edf5f1;
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

blockquote {
  margin: 0;
  padding: clamp(24px, 4vw, 44px);
  background: var(--orange-soft);
  border-left: 8px solid var(--orange);
  border-radius: 8px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 8px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--purple-glow);
}

.section-action:hover,
.section-action:focus {
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.reflection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-placeholder span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-placeholder:nth-child(2) span {
  color: var(--blue);
}

.media-placeholder:nth-child(3) span {
  color: var(--purple);
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--purple-glow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: 12px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--purple-glow);
}

.media-link:hover,
.media-link:focus {
  background: linear-gradient(135deg, var(--purple), var(--orange));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px) 46px;
  color: #d6e1dd;
  background: var(--ink);
}

.footer-name {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
}

.footer-logo {
  width: 240px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-weight: 800;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.linkedin-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 13px 0 8px;
  background: #0a66c2;
  border-radius: 6px;
}

.linkedin-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: #0a66c2;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #ffb37d;
}

.footer-links .linkedin-button:hover,
.footer-links .linkedin-button:focus {
  color: var(--white);
  background: #084f97;
}

.presentation-page {
  background:
    linear-gradient(135deg, rgba(87, 33, 138, 0.06), transparent 32%),
    var(--paper);
}

.document-page {
  background:
    linear-gradient(135deg, rgba(255, 107, 24, 0.08), transparent 28%),
    var(--paper);
}

.presentation-header,
.document-header {
  position: sticky;
}

.presentation-hero,
.document-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 4vw, 56px) clamp(28px, 5vw, 56px);
}

.presentation-hero h1,
.document-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 7rem);
}

.presentation-hero p:not(.section-kicker),
.document-hero p:not(.section-kicker) {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.document-sheet {
  width: min(calc(100% - 40px), 900px);
  margin: 0 auto clamp(64px, 8vw, 112px);
  padding: clamp(28px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.letterhead {
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.letterhead h2 {
  margin-bottom: 8px;
  color: var(--purple-deep);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.letterhead p,
.document-sheet p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.document-sheet > p {
  margin-bottom: 20px;
}

.document-sheet > p:last-child {
  margin-bottom: 0;
}

.pitch-sheet {
  border-left: 8px solid var(--orange);
}

.resume-sheet {
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto clamp(64px, 8vw, 112px);
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.resume-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.resume-header h2 {
  margin-bottom: 8px;
  color: var(--purple-deep);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.resume-header p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.resume-linkedin {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  background: #0a66c2;
  border-radius: 6px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.resume-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.resume-section:last-child {
  border-bottom: 0;
}

.resume-section h3 {
  color: var(--purple-deep);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.resume-section p,
.resume-section li {
  color: var(--ink-soft);
}

.resume-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.resume-experience {
  display: grid;
  gap: 18px;
}

.resume-experience article {
  padding: 20px;
  background: var(--paper);
  border-left: 5px solid var(--purple);
  border-radius: 6px;
}

.resume-experience article:nth-child(even) {
  border-left-color: var(--orange);
}

.resume-experience h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.05rem;
}

.resume-experience article > p {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
}

.resume-experience ul {
  margin: 0;
  padding-left: 20px;
}

.resume-skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.resume-skill-grid li {
  padding: 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 24, 0.18);
  border-radius: 6px;
  font-weight: 700;
}

.slide-viewer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto clamp(64px, 8vw, 112px);
}

.slide-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.slide-toolbar button,
.slide-thumbs button {
  min-height: 40px;
  border: 1px solid rgba(87, 33, 138, 0.24);
  border-radius: 6px;
  background: var(--white);
  color: var(--purple-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.slide-toolbar button {
  padding: 0 14px;
}

.slide-toolbar button:hover,
.slide-toolbar button:focus,
.slide-thumbs button:hover,
.slide-thumbs button:focus,
.slide-thumbs button.is-active {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white);
}

.slide-toolbar span {
  color: var(--muted);
  font-weight: 800;
}

.slide-stage {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.slide-stage img {
  display: none;
  width: 100%;
  height: auto;
}

.slide-stage img.is-active {
  display: block;
}

.slide-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.slide-thumbs button {
  width: 42px;
  padding: 0;
}

.presentation-footer {
  width: min(100%, var(--max));
}

@media (max-width: 980px) {
  .hero,
  .split,
  .resume-layout,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    width: 100%;
    height: min(68vh, 620px);
  }

  .hero-video-callout {
    width: 100%;
  }

  .metrics,
  .portfolio-grid,
  .reflection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-band {
    width: min(calc(100% - 40px), var(--max));
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 71px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .resume-header {
    flex-direction: column;
  }

  .resume-skill-grid {
    grid-template-columns: 1fr;
  }

  .hero-video-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .brand {
    flex-basis: 168px;
    max-width: 50vw;
  }

  .brand-logo {
    max-height: 42px;
  }

  .button {
    width: 100%;
  }

  .metrics,
  .portfolio-grid,
  .reflection-grid {
    grid-template-columns: 1fr;
  }

  .artifact-card,
  .media-placeholder {
    min-height: 220px;
  }

  .city-band {
    min-height: 360px;
    margin-top: 44px;
  }

  .city-band-content {
    padding: 24px;
  }
}
