/* ═══════════════════════════════════════════════
   DESIGN TOKENS — BASQUIAT × MONDRIAN × LEIBOVITZ
   ═══════════════════════════════════════════════ */
:root {
    --cream:        #F4EFE3;
    --cream-warm:   #EDE7D5;
    --ink:          #1A1208;
    --ink-soft:     #3D3220;
    --red:          #D42020;
    --red-deep:     #A01515;
    --yellow:       #F5C000;
    --yellow-warm:  #E8A800;
    --blue:         #0F3FA8;
    --blue-light:   #E8EEFF;
    --pink:         #E8135A;   /* Schiaparelli "Shocking Pink" */
    --pink-deep:    #B00048;
    --pink-blush:   #FFE4ED;
    --green:        #1A7A4A;
    --white:        #FDFAF4;
    --border:       3px solid var(--ink);
    --border-thick: 6px solid var(--ink);
    --border-pink:  4px solid var(--pink);
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif:   'Playfair Display', serif;
    --font-stamp:   'Special Elite', cursive;
    --font-body:    'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ═══════════════════════════════════════════════
   PROMO BAR — announcement strip above nav
   ═══════════════════════════════════════════════ */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    height: 44px;
    background: var(--yellow);
    border-bottom: 3px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-stamp);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--ink);
    padding: 0 24px;
    white-space: nowrap;
}

.promo-bar a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}

.promo-bar a:hover {
    color: var(--red-deep);
    border-color: var(--red-deep);
}

/* ═══════════════════════════════════════════════
   NAV — EDITORIAL BROADSHEET HEADER
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 44px; /* sits below the 44px promo bar */
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: var(--border-thick);
    display: flex;
    align-items: stretch;
    height: 64px;
}

.nav-logo-block {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    padding: 0 28px;
    display: flex;
    align-items: center;
    border-right: var(--border-thick);
    white-space: nowrap;
}

.nav-logo-block span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    border-left: var(--border);
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: var(--font-stamp);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: var(--ink);
    height: 100%;
    transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
    background: var(--ink);
    color: var(--cream);
}

.nav-cta {
    background: var(--pink) !important;
    color: var(--white) !important;
    font-family: var(--font-stamp) !important;
}

.nav-cta:hover {
    background: var(--pink-deep) !important;
}

/* ═══════════════════════════════════════════════
   HERO — BASQUIAT COMPOSITION
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: 108px; /* 44px promo bar + 64px nav */
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: 1fr auto;
    border-bottom: var(--border-thick);
    position: relative;
    overflow: hidden;
}

/* Big yellow geometric block — Mondrian structural element */
.hero-color-block {
    grid-column: 2;
    grid-row: 1 / 3;
    background: var(--yellow);
    border-left: var(--border-thick);
    position: relative;
}

/* Mondrian sub-block inside the yellow panel */
.hero-color-block::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: var(--red);
    border-top: var(--border-thick);
}

/* Small blue accent block */
.hero-color-block::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--blue);
    border-left: var(--border-thick);
    border-bottom: var(--border-thick);
}

.hero-content {
    grid-column: 1;
    grid-row: 1;
    padding: 60px 64px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Basquiat annotation — stamp-style label */
.hero-stamp {
    font-family: var(--font-stamp);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    border: 2px solid var(--ink-soft);
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 24px;
    width: fit-content;
}

/* Crown glyph — Basquiat signature */
.crown {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.3em;
}

/* Hero name — massive, editorial */
.hero-name {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 32px;
    position: relative;
}

/* Red underline stroke — Basquiat mark-making */
.hero-name::after {
    content: '';
    display: block;
    height: 8px;
    background: var(--red);
    width: 60%;
    margin-top: 16px;
}

/* Identity tags — Basquiat label-box style */
.hero-identities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-identity {
    font-family: var(--font-stamp);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border: var(--border);
    background: transparent;
    color: var(--ink);
}

.hero-identity--filled {
    background: var(--ink);
    color: var(--cream);
}

/* Hero tagline — Playfair serif, literary */
.hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 48px;
    border-left: 5px solid var(--yellow-warm);
    padding-left: 20px;
}

/* CTA buttons */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    font-family: var(--font-stamp);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border: var(--border-thick);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn--primary {
    background: var(--ink);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translate(-2px, -2px);
}

.btn--secondary {
    background: transparent;
    color: var(--ink);
}

.btn--secondary:hover {
    background: var(--yellow);
    transform: translate(-2px, -2px);
}

/* Hero ticker — visitor counter / broadsheet dateline */
.hero-dateline {
    grid-column: 1;
    grid-row: 2;
    border-top: var(--border);
    padding: 16px 64px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-stamp);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
}

.dateline-stat { display: flex; align-items: center; gap: 8px; }
.dateline-stat strong { color: var(--ink); font-size: 1.1rem; }

/* ═══════════════════════════════════════════════
   MARQUEE STRIP — Faith Ringgold pattern band
   ═══════════════════════════════════════════════ */
.marquee-strip {
    background: var(--ink);
    color: var(--yellow);
    border-top: var(--border-thick);
    border-bottom: var(--border-thick);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-stamp);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 57.75s linear infinite;
}

.marquee-inner span {
    margin: 0 32px;
    color: var(--cream);
}

.marquee-inner span.dot {
    color: var(--pink);
    margin: 0 4px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   ABOUT — MANIFESTO LAYOUT
   ═══════════════════════════════════════════════ */
.about {
    display: grid;
    grid-template-columns: 280px 1fr;
    border-bottom: var(--border-thick);
}

/* Left sidebar — Mondrian blue panel */
.about-sidebar {
    background: var(--blue);
    border-right: var(--border-thick);
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--white);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.1em;
}

/* Stats block in sidebar */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
}

.stat {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 16px;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-stamp);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

/* Main about content */
.about-body {
    padding: 64px;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 40px;
    position: relative;
}

/* Warhol-pop highlight on a key word */
.highlight-yellow {
    background: var(--yellow);
    padding: 2px 6px;
}

.highlight-red {
    background: var(--red);
    color: var(--white);
    padding: 2px 6px;
}

.about-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 24px;
    max-width: 680px;
}

/* Fashion editorial note — "The Edit" */
.fashion-note {
    margin: 48px 0;
    max-width: 600px;
    position: relative;
}

.fashion-note::before {
    content: '';
    display: block;
    height: 1px;
    background: var(--ink);
    margin-bottom: 28px;
}

.fashion-note::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--ink);
    margin-top: 28px;
}

.fashion-note-label {
    font-family: var(--font-stamp);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fashion-note-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--pink);
    opacity: 0.4;
}

.fashion-note-quote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 16px;
}

.fashion-note-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.fashion-note-sub em {
    font-family: var(--font-stamp);
    font-style: normal;
    color: var(--pink);
    letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   EXPERIENCE — RINGGOLD QUILT PANELS
   ═══════════════════════════════════════════════ */
.experience {
    border-bottom: var(--border-thick);
}

.experience-header {
    padding: 48px 64px 0;
    display: flex;
    align-items: baseline;
    gap: 24px;
    border-bottom: var(--border);
}

.experience-header h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 0.05em;
}

.experience-header .era-count {
    font-family: var(--font-stamp);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    border: var(--border);
    padding: 4px 12px;
}

/* Quilt grid — Faith Ringgold inspired */
.quilt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.quilt-panel {
    border-right: var(--border);
    border-bottom: var(--border);
    padding: 40px;
    position: relative;
    transition: background 0.2s;
}

.quilt-panel:nth-child(3n) { border-right: none; }

.quilt-panel:hover {
    background: var(--cream-warm);
}

/* Year badge — Basquiat crown label */
.quilt-year {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.quilt-year-range {
    font-family: var(--font-stamp);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    margin-bottom: 20px;
    padding-bottom: 4px;
}

.quilt-role {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.quilt-company {
    font-family: var(--font-stamp);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 20px;
}

.quilt-highlights {
    list-style: none;
    margin-bottom: 24px;
}

.quilt-highlights li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.quilt-highlights li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.quilt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.quilt-tag {
    font-family: var(--font-stamp);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    border: 1.5px solid var(--ink);
    padding: 3px 10px;
    color: var(--ink);
}

/* Accent panels — Mondrian color blocks in the grid */
.quilt-panel--red {
    background: var(--red);
}

.quilt-panel--yellow {
    background: var(--yellow);
}

.quilt-panel--blue {
    background: var(--blue);
}

.quilt-panel--red .quilt-year,
.quilt-panel--blue .quilt-year { color: var(--white); }

.quilt-panel--red .quilt-role,
.quilt-panel--blue .quilt-role { color: var(--white); }

.quilt-panel--red .quilt-company { color: var(--yellow); }
.quilt-panel--blue .quilt-company { color: var(--yellow); }

.quilt-panel--red .quilt-highlights li,
.quilt-panel--blue .quilt-highlights li { color: rgba(255,255,255,0.85); }

.quilt-panel--red .quilt-highlights li::before,
.quilt-panel--blue .quilt-highlights li::before { color: var(--yellow); }

.quilt-panel--red .quilt-tag {
    border-color: var(--yellow);
    color: var(--yellow);
}

.quilt-panel--blue .quilt-tag {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.quilt-panel--yellow .quilt-year { color: var(--ink); }

/* Pink panel variant */
.quilt-panel--pink {
    background: var(--pink);
}
.quilt-panel--pink .quilt-year { color: var(--white); }
.quilt-panel--pink .quilt-role { color: var(--white); }
.quilt-panel--pink .quilt-company { color: var(--yellow); }
.quilt-panel--pink .quilt-year-range { color: rgba(255,255,255,0.7); }
.quilt-panel--pink .quilt-highlights li { color: rgba(255,255,255,0.9); }
.quilt-panel--pink .quilt-highlights li::before { color: var(--yellow); }
.quilt-panel--pink .quilt-tag {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ═══════════════════════════════════════════════
   PROJECTS — POP ART CARD GRID (Warhol)
   ═══════════════════════════════════════════════ */
.projects {
    border-bottom: var(--border-thick);
}

.projects-header {
    padding: 48px 64px 0;
    border-bottom: var(--border);
}

.projects-header h2 {
    font-family: var(--font-display);
    font-size: 4rem;
    letter-spacing: 0.05em;
}

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

.project-card {
    border-right: var(--border);
    border-bottom: var(--border);
    display: flex;
    flex-direction: column;
}

.project-card:nth-child(2n) { border-right: none; }

/* Color block header — Warhol screen print panels */
.project-card-header {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: var(--border-thick);
    position: relative;
    font-size: 3rem;
}

.project-card-header--green  { background: var(--green); color: var(--white); }
.project-card-header--purple { background: #5B2D8E; color: var(--white); }
.project-card-header--coral  { background: var(--red); color: var(--white); }
.project-card-header--teal   { background: #1B7A8A; color: var(--white); }
.project-card-header--pink   { background: var(--pink); color: var(--white); }

.project-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-stamp);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    border: 2px solid currentColor;
    padding: 3px 10px;
}

.project-card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 12px;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.project-tag {
    font-family: var(--font-stamp);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border: 1.5px solid var(--ink);
}

.project-link {
    font-family: var(--font-stamp);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.project-link:hover { color: var(--red); }

/* ═══════════════════════════════════════════════
   CONTACT — BROADSIDE CLOSING STATEMENT
   ═══════════════════════════════════════════════ */
.contact {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 420px;
    border-bottom: var(--border-thick);
}

.contact-main {
    padding: 72px 64px;
    border-right: var(--border-thick);
}

.contact-main h2 {
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 32px;
}

.contact-main h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--red);
}

.contact-main p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-sidebar {
    background: var(--ink);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-sidebar-label {
    font-family: var(--font-stamp);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--yellow);
    margin-bottom: -12px;
}

.contact-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.15s;
}

.contact-link i { color: var(--yellow); width: 18px; }
.contact-link:hover { color: var(--yellow); }

/* ═══════════════════════════════════════════════
   FOOTER — MASTHEAD
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--ink);
    color: var(--cream);
    padding: 32px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.12em;
}

.footer-logo span { color: var(--yellow); }

.footer-copy {
    font-family: var(--font-stamp);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
    text-align: right;
}

/* ═══════════════════════════════════════════════
   CHATBOT — RE-SKINNED CONCIERGE
   ═══════════════════════════════════════════════ */
.concierge-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: var(--ink);
    border: var(--border-thick);
    color: var(--yellow);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.1s;
    z-index: 200;
}

.concierge-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translate(-2px, -2px);
}

/* ═══════════════════════════════════════════════
   HAMBURGER NAV — mobile only
   ═══════════════════════════════════════════════ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0 20px;
    cursor: pointer;
    background: none;
    border: none;
    height: 100%;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-drawer {
    display: none;
    position: fixed;
    top: 108px; /* promo bar + nav */
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: var(--border-thick);
    z-index: 99;
    flex-direction: column;
}

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

.nav-mobile-drawer a {
    display: block;
    padding: 18px 28px;
    font-family: var(--font-stamp);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: var(--ink);
    border-bottom: var(--border);
    transition: background 0.15s;
}

.nav-mobile-drawer a:hover { background: var(--cream-warm); }
.nav-mobile-drawer a.nav-cta {
    background: var(--pink);
    color: var(--white);
    border-bottom: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr 280px;
    }

    .hero-content {
        padding: 48px 40px 32px;
    }

    .hero-dateline {
        padding: 16px 40px;
        gap: 20px;
    }

    .about {
        grid-template-columns: 220px 1fr;
    }

    .about-body {
        padding: 48px 40px;
    }

    .experience-header,
    .projects-header {
        padding: 40px 40px 0;
    }

    .quilt-panel {
        padding: 28px;
    }

    .contact-main {
        padding: 56px 40px;
    }

    .contact-main h2 {
        font-size: 4rem;
    }

    .footer {
        padding: 28px 40px;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Promo bar */
    .promo-bar {
        font-size: 0.75rem;
        gap: 6px;
        padding: 0 16px;
    }

    /* Nav */
    .nav {
        height: 52px;
        top: 44px;
    }

    .nav-logo-block {
        font-size: 1.3rem;
        padding: 0 18px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero — single column, no color block */
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding-top: 96px; /* 44px promo + 52px nav */
        min-height: auto;
    }

    .hero-color-block {
        display: none;
    }

    .hero-content {
        grid-column: 1;
        grid-row: 1;
        padding: 40px 24px 32px;
    }

    .hero-name {
        font-size: clamp(3.8rem, 16vw, 6rem);
        margin-bottom: 24px;
    }

    .hero-tagline {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-dateline {
        grid-column: 1;
        grid-row: 2;
        padding: 16px 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .dateline-stat[style] {
        margin-left: 0 !important;
    }

    /* About — stacked */
    .about {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        padding: 32px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 24px;
        border-right: none;
        border-bottom: var(--border-thick);
    }

    .section-label {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 2.8rem;
        flex: 0 0 auto;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 0;
    }

    .stat {
        min-width: 100px;
    }

    .about-body {
        padding: 36px 24px;
    }

    .about-lead {
        font-size: 1.6rem;
    }

    .fashion-note {
        margin: 32px 0;
    }

    /* Experience — 1 column */
    .experience-header {
        padding: 32px 24px 0;
        flex-wrap: wrap;
        gap: 12px;
    }

    .experience-header h2 {
        font-size: 2.8rem;
    }

    .quilt-grid {
        grid-template-columns: 1fr;
    }

    .quilt-panel {
        border-right: none !important;
        padding: 28px 24px;
    }

    .quilt-year {
        font-size: 2.8rem;
    }

    /* Projects — 1 column */
    .projects-header {
        padding: 32px 24px 0;
    }

    .projects-header h2 {
        font-size: 2.8rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        border-right: none !important;
    }

    .project-card-body {
        padding: 24px;
    }

    /* Contact — stacked */
    .contact {
        grid-template-columns: 1fr;
    }

    .contact-main {
        padding: 40px 24px;
        border-right: none;
        border-bottom: var(--border-thick);
    }

    .contact-main h2 {
        font-size: 3rem;
        line-height: 1;
    }

    .contact-sidebar {
        padding: 36px 24px;
        gap: 20px;
    }

    /* Footer — stacked */
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 32px 24px;
    }

    .footer-tagline {
        max-width: 100%;
        text-align: left;
    }

    /* Chatbot button — move up from bottom edge */
    .concierge-btn,
    .chat-button {
        bottom: 20px;
        right: 20px;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {

    .promo-bar {
        font-size: 0.7rem;
        flex-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-stamp {
        font-size: 0.7rem;
    }

    .hero-name {
        font-size: clamp(3rem, 18vw, 5rem);
    }

    .crown {
        font-size: 1.1rem;
    }

    .hero-identities {
        gap: 8px;
    }

    .hero-identity {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .about-lead {
        font-size: 1.35rem;
    }

    .fashion-note-quote {
        font-size: 1.2rem;
    }

    .contact-main h2 {
        font-size: 2.5rem;
    }

    .quilt-year {
        font-size: 2.4rem;
    }

    .experience-header h2,
    .projects-header h2 {
        font-size: 2.4rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }
}
