/* ============================================
   ARIA LAKIER — ART PORTFOLIO
   Scroll Strip / Dark Botanical Aesthetic
   ============================================ */

/* --- Type Scale (fluid) --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- 4px Spacing --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Content widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* --- Fonts --- */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* ============================================
   COLOR PALETTE — Dark Botanical / Scroll Strip
   Dark textured surfaces, amber/gold accent,
   copper blossom tones
   ============================================ */

:root, [data-theme="dark"] {
  /* Surfaces — dark first */
  --color-bg:             #0f0d0b;
  --color-surface:        #171412;
  --color-surface-2:      #1e1a17;
  --color-surface-3:      #252019;
  --color-surface-offset: #121010;
  --color-divider:        #2e2822;
  --color-border:         #3a332b;

  /* Text — warm light tones */
  --color-text:           #e8e0d4;
  --color-text-muted:     #9e9486;
  --color-text-faint:     #5e5548;
  --color-text-inverse:   #0f0d0b;

  /* Primary Accent — Amber Gold */
  --color-primary:        #c9943a;
  --color-primary-hover:  #daa84e;
  --color-primary-active: #b3832e;
  --color-primary-highlight: #2e2515;

  /* Secondary — Copper Blossom */
  --color-copper:         #b87a56;
  --color-copper-light:   #d4a07a;

  /* Scroll Window Warm */
  --color-amber-glow:     #d4a044;
  --color-amber-deep:     #8a6020;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
}

/* Light Mode — inverted for accessibility */
[data-theme="light"] {
  --color-bg:             #faf7f2;
  --color-surface:        #ffffff;
  --color-surface-2:      #f2ede5;
  --color-surface-3:      #ebe4da;
  --color-surface-offset: #e8e1d6;
  --color-divider:        #d8cfc2;
  --color-border:         #c8bfb0;

  --color-text:           #1a1614;
  --color-text-muted:     #6b6054;
  --color-text-faint:     #a09484;
  --color-text-inverse:   #faf7f2;

  --color-primary:        #9e7628;
  --color-primary-hover:  #876420;
  --color-primary-active: #6e5018;
  --color-primary-highlight: #f5eedd;

  --color-copper:         #9a6842;
  --color-copper-light:   #c49070;

  --color-amber-glow:     #c99530;
  --color-amber-deep:     #7a5818;

  --shadow-sm: 0 1px 2px rgba(40,30,15,0.08);
  --shadow-md: 0 4px 12px rgba(40,30,15,0.1);
  --shadow-lg: 0 12px 32px rgba(40,30,15,0.14);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--wide {
  max-width: var(--content-wide);
}

.container--narrow {
  max-width: var(--content-narrow);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

[data-theme="light"] .header {
  background: rgba(250, 247, 242, 0.92);
}

.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.header__logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header__logo span {
  color: var(--color-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    flex-direction: column;
    padding: var(--space-6) var(--space-4);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
  }
  .header__nav.open { display: flex; }
  .header__nav a {
    font-size: var(--text-base);
    padding: var(--space-2) 0;
  }
}

/* ============================================
   HERO — Scroll Strip
   ============================================ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-4);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('./assets/hero-bg.png') center center / cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 13, 11, 0.3) 0%,
    rgba(15, 13, 11, 0.15) 40%,
    rgba(15, 13, 11, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  color: #e8e0d4;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(232, 224, 212, 0.8);
  font-weight: 400;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-3);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-3) var(--space-6);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  background: rgba(15, 13, 11, 0.4);
}

.hero__cta:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.hero__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero__cta:hover svg {
  transform: translateX(3px);
}

/* ============================================
   SECTION DIVIDER — Blossom Branch
   ============================================ */

.section-divider {
  width: 100%;
  max-height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.section-divider img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

/* ============================================
   SECTION SHARED
   ============================================ */

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-10);
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: var(--space-6);
}

.section__link:hover {
  gap: var(--space-3);
}

.section__link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-4);
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  aspect-ratio: 4/5;
  cursor: pointer;
  group: true;
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.04);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 11, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #e8e0d4;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.portfolio-card__medium {
  font-size: var(--text-xs);
  color: rgba(232, 224, 212, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Placeholder state */
.portfolio-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-style: dashed;
}

.portfolio-card--placeholder .placeholder-icon {
  color: var(--color-text-faint);
  text-align: center;
}

.portfolio-card--placeholder .placeholder-icon svg {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: var(--space-2);
  opacity: 0.4;
}

.portfolio-card--placeholder .placeholder-icon span {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  display: block;
}

/* Featured / Large card */
.portfolio-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (max-width: 767px) {
  .portfolio-card--featured {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/5;
  }
}

/* Portfolio page — filter pills */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.filter-pill {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-pill.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

/* ============================================
   ABOUT SECTION (homepage preview)
   ============================================ */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-preview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__text {
  max-width: 480px;
}

@media (max-width: 767px) {
  .about-preview {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .about-preview__image {
    aspect-ratio: 16/9;
    max-height: 300px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: start;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.about-hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  position: sticky;
  top: calc(var(--space-16) + var(--space-8));
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__content h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.about-hero__content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.about-hero__content p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .about-hero__image {
    aspect-ratio: 16/9;
    max-height: 300px;
    position: static;
  }
}

/* Experience / Timeline */
.timeline {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

.timeline__list {
  list-style: none;
  padding: 0;
  border-left: 2px solid var(--color-divider);
  margin-left: var(--space-4);
}

.timeline__item {
  padding-left: var(--space-8);
  padding-bottom: var(--space-8);
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
}

.timeline__year {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.timeline__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.timeline__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  text-align: center;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.contact-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-decoration: none;
  padding: var(--space-4) var(--space-8);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.contact-email:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-8);
  text-align: center;
}

.footer__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.footer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

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

.footer a:hover {
  color: var(--color-text-muted);
}

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PAGE-LEVEL HERO (inner pages)
   ============================================ */

.page-hero {
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.page-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-inline: auto;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8e0d4;
  font-size: 24px;
  cursor: pointer;
  border-radius: var(--radius-full);
}

.lightbox__close:hover {
  background: rgba(232, 224, 212, 0.1);
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__info {
  text-align: center;
  margin-top: var(--space-4);
}

.lightbox__info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #e8e0d4;
  margin-bottom: var(--space-1);
}

.lightbox__info p {
  font-size: var(--text-sm);
  color: rgba(232, 224, 212, 0.6);
}

/* ============================================
   PROCESS CARDS — About page
   ============================================ */

.process-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(201, 148, 58, 0.06);
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.process-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */

/* Scroll window accent — used as decorative frame */
.scroll-frame {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-1);
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  box-shadow: inset 0 0 20px rgba(201, 148, 58, 0.04);
}

/* Gold line accent */
.gold-rule {
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-copper-light));
  border: none;
  margin-block: var(--space-6);
}

/* Portfolio in-progress banner */
.portfolio-banner {
  text-align: center;
  margin-top: var(--space-10);
  padding: var(--space-10);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}

.portfolio-banner h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.portfolio-banner p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 400px;
  margin: 0 auto;
}
