:root {
      --cream:     #F4EFE6;
      --cream-2:   #ECE5D6;
      --ivory:     #FAF6EC;
      --ink:       #1A1D2B;
      --navy:      #2C3247;
      --mute:      #6B6B6B;
      --hairline:  #D8D0BE;
      --terracotta: #B85A3A;
      --terracotta-dark: #8E3F25;
      --mustard:   #C89636;
      --mustard-dark: #8E6720;
      --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --max:    1440px;
      --gutter: clamp(20px, 4vw, 56px);
    }
    *, *::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-sans);
      font-weight: 400;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; transition: color 250ms ease, background 250ms ease, border-color 250ms ease; }
    a:hover { color: var(--terracotta); }
    img { max-width: 100%; display: block; }

    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

    /* LOGO */
    .logo { display: inline-flex; align-items: flex-end; gap: 14px; line-height: 1; }
    .logo-mono { font-family: var(--font-serif); font-weight: 500; font-size: 32px; letter-spacing: -1px; color: var(--ink); }
    .logo-rule { width: 1px; height: 28px; background: var(--terracotta); }
    .logo-tag { display: flex; flex-direction: column; gap: 3px; padding-bottom: 2px; }
    .logo-tag-1 { font-family: var(--font-sans); font-weight: 500; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); }
    .logo-tag-2 { font-family: var(--font-sans); font-weight: 400; font-size: 9px; letter-spacing: 0.18em; color: var(--terracotta); text-transform: uppercase; }

    /* NAV */
    .nav { position: sticky; top: 0; z-index: 100; background: rgba(244, 239, 230, 0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 0.5px solid var(--hairline); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
    .nav-links { display: flex; gap: 38px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
    .nav-cta { background: var(--ink); color: var(--cream); padding: 12px 24px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
    .nav-cta:hover { background: var(--terracotta); color: var(--cream); }
    @media (max-width: 760px) { .nav-links { display: none; } .logo-tag-2 { display: none; } }

    /* HERO */
    .hero { padding: clamp(40px, 8vh, 80px) 0 clamp(60px, 10vh, 100px); }
    .hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 40px); }
    @media (min-width: 900px) { .hero-grid { grid-template-columns: 7fr 5fr; grid-template-rows: auto auto; gap: 32px 40px; } }
    .hero-image { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); position: relative; }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; }
    .hero-image-tag { position: absolute; top: 20px; left: 20px; background: var(--terracotta); color: var(--cream); padding: 6px 14px; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
    .hero-headline { grid-column: 2; grid-row: 1; align-self: end; padding-top: clamp(20px, 4vh, 60px); }
    .hero-eyebrow { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 22px; font-weight: 500; }
    .hero-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(40px, 5.2vw, 78px); line-height: 0.96; letter-spacing: -0.015em; margin-bottom: 24px; color: var(--ink); }
    .hero-title em { font-style: italic; color: var(--terracotta); font-weight: 400; }
    .hero-sub { grid-column: 2; grid-row: 2; align-self: start; font-size: 15px; line-height: 1.55; color: var(--navy); max-width: 460px; padding-top: 8px; border-top: 0.5px solid var(--hairline); margin-top: 8px; }
    .hero-sub::before { content: ''; display: block; width: 32px; height: 1px; background: var(--terracotta); margin-bottom: 18px; }

    /* SECTION SHELLS */
    section { padding: clamp(60px, 10vh, 120px) 0; }
    .section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: clamp(32px, 5vw, 60px); flex-wrap: wrap; gap: 20px; }
    .section-num { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 12px; }
    .section-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.01em; line-height: 1; color: var(--ink); }
    .section-title em { font-style: italic; color: var(--terracotta); }
    .section-link { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; border-bottom: 0.5px solid var(--ink); padding-bottom: 4px; color: var(--ink); }
    .section-link:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

    /* ROSTER */
    .roster { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.4vw, 20px); }
    .tile { position: relative; overflow: hidden; background: var(--cream-2); }
    .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease; }
    .tile:hover img { transform: scale(1.04); filter: brightness(0.92); }
    .tile-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px 20px; background: linear-gradient(to top, rgba(26,29,43,0.78) 0%, rgba(26,29,43,0) 100%); color: #FFF; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
    .tile-name { font-family: var(--font-sans); font-weight: 500; font-size: 16px; letter-spacing: -0.005em; line-height: 1.1; }
    .tile-tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.9; font-weight: 500; white-space: nowrap; }
    .tile.monsta-x { grid-column: span 7; aspect-ratio: 4 / 3; }
    .tile.wonho    { grid-column: span 5; aspect-ratio: 3 / 4; }
    .tile.ive      { grid-column: span 5; aspect-ratio: 4 / 3; }
    .tile.kiiikiii { grid-column: span 4; aspect-ratio: 1 / 1; }
    .tile.dayoung  { grid-column: span 3; aspect-ratio: 1 / 1; }
    .tile.paul-kim { grid-column: span 12; aspect-ratio: 21 / 9; }
    @media (max-width: 880px) {
      .tile.monsta-x { grid-column: span 12; aspect-ratio: 16 / 11; }
      .tile.wonho, .tile.ive, .tile.kiiikiii, .tile.dayoung { grid-column: span 6; }
      .tile.ive { aspect-ratio: 3 / 4; }
      .tile.paul-kim { grid-column: span 12; aspect-ratio: 16 / 9; }
    }

    /* PRESS RECEIPTS — NAVY BAND */
    .press-section { background: var(--navy); color: var(--cream); padding: clamp(80px, 12vh, 130px) 0; }
    .press-section .section-num { color: var(--mustard); }
    .press-section .section-title { color: var(--cream); }
    .press-section .section-title em { color: var(--mustard); }
    .press-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 28px); }
    .press-card { background: var(--ink); padding: clamp(24px, 3vw, 36px); border: 0.5px solid rgba(244, 239, 230, 0.12); display: flex; flex-direction: column; transition: background 300ms ease, border-color 300ms ease; }
    .press-card:hover { background: #20253A; border-color: var(--mustard); }
    .press-card-img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--navy); margin-bottom: 22px; }
    .press-card-img img { width: 100%; height: 100%; object-fit: cover; }
    .press-card-img.tall { aspect-ratio: 3 / 4; }
    .press-eyebrow { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mustard); font-weight: 500; margin-bottom: 10px; }
    .press-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--cream); }
    .press-title em { font-style: italic; color: var(--mustard); }
    .press-meta { font-size: 13px; color: rgba(244, 239, 230, 0.65); line-height: 1.5; margin-top: auto; padding-top: 14px; border-top: 0.5px solid rgba(244, 239, 230, 0.12); }
    .press-card.feature { grid-column: span 7; }
    .press-card.side    { grid-column: span 5; }
    .press-card.third   { grid-column: span 4; }
    .press-stat { background: var(--terracotta); color: var(--cream); padding: clamp(28px, 3.4vw, 40px); border: none; display: flex; flex-direction: column; justify-content: space-between; min-height: 180px; }
    .press-stat:hover { background: var(--terracotta-dark); border-color: transparent; }
    .press-stat .press-eyebrow { color: rgba(244, 239, 230, 0.85); }
    .press-stat .press-title { color: var(--cream); }
    .press-stat .press-title em { color: var(--ivory); }
    .press-stat .press-meta { color: rgba(244, 239, 230, 0.78); border-top-color: rgba(244, 239, 230, 0.2); }
    .press-big-num { font-family: var(--font-serif); font-weight: 400; font-size: clamp(72px, 9vw, 128px); line-height: 0.9; letter-spacing: -0.03em; margin-bottom: 8px; }
    @media (max-width: 880px) {
      .press-card.feature, .press-card.side, .press-card.third, .press-stat { grid-column: span 12; }
    }

    /* PULL QUOTE */
    .quote { padding: clamp(70px, 11vh, 130px) 0; background: var(--ivory); border-top: 0.5px solid var(--hairline); border-bottom: 0.5px solid var(--hairline); }
    .quote-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; }
    @media (min-width: 900px) { .quote-wrap { grid-template-columns: 5fr 7fr; } }
    .quote-portrait { aspect-ratio: 3 / 4; overflow: hidden; background: var(--cream-2); }
    .quote-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
    .quote-text-wrap { display: flex; flex-direction: column; justify-content: center; }
    .quote-text { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: clamp(24px, 3.4vw, 42px); line-height: 1.25; letter-spacing: -0.005em; margin-bottom: 28px; color: var(--ink); }
    .quote-attr { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; display: flex; align-items: center; gap: 12px; }
    .quote-attr::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--terracotta); }

    /* MOMENTS */
    .road { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.4vw, 20px); }
    .road-tile { position: relative; overflow: hidden; background: var(--cream-2); }
    .road-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1); }
    .road-tile:hover img { transform: scale(1.03); }
    .road-cap { position: absolute; bottom: 18px; left: 22px; right: 22px; color: #FFF; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; text-shadow: 0 1px 14px rgba(0,0,0,0.6); }
    .road-tile.t1 { grid-column: span 7; aspect-ratio: 16 / 11; }
    .road-tile.t2 { grid-column: span 5; aspect-ratio: 4 / 5; }
    .road-tile.t3 { grid-column: span 4; aspect-ratio: 1 / 1; }
    .road-tile.t4 { grid-column: span 4; aspect-ratio: 1 / 1; }
    .road-tile.t5 { grid-column: span 4; aspect-ratio: 1 / 1; }
    .road-tile.t6 { grid-column: span 6; aspect-ratio: 16 / 11; }
    .road-tile.t7 { grid-column: span 6; aspect-ratio: 16 / 11; }
    @media (max-width: 880px) {
      .road-tile.t1, .road-tile.t2, .road-tile.t3, .road-tile.t4, .road-tile.t5, .road-tile.t6, .road-tile.t7 { grid-column: span 12; aspect-ratio: 16 / 10; }
    }

    /* CREDITS */
    .credits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(16px, 2vw, 28px); }
    .credit { display: flex; flex-direction: column; gap: 14px; }
    .credit-img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-2); }
    .credit-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
    .credit:hover .credit-img img { transform: scale(1.04); }
    .credit-meta { display: flex; flex-direction: column; gap: 4px; }
    .credit-title { font-family: var(--font-sans); font-weight: 500; font-size: 15px; letter-spacing: -0.005em; color: var(--ink); }
    .credit-artist { font-size: 13px; color: var(--mute); }
    .credit-year { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin-top: 2px; font-weight: 500; }

    /* VENTURES */
    .ventures { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 0.5px solid var(--hairline); }
    @media (min-width: 800px) { .ventures { grid-template-columns: 1fr 1fr; } }
    .venture { background: var(--cream); padding: clamp(36px, 5vw, 60px); display: flex; flex-direction: column; justify-content: space-between; min-height: 340px; transition: background 250ms ease; position: relative; overflow: hidden; }
    .venture::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--terracotta); transition: height 350ms ease; }
    .venture:hover::before { height: 100%; }
    .venture:hover { background: var(--ivory); }
    .venture-num { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; margin-bottom: 24px; }
    .venture-name { font-family: var(--font-serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 14px; color: var(--ink); }
    .venture-name em { font-style: italic; color: var(--terracotta); }
    .venture-desc { color: var(--navy); font-size: 14px; line-height: 1.6; max-width: 380px; }
    .venture-link { margin-top: 32px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; align-self: flex-start; color: var(--ink); }
    .venture-link::after { content: '→'; transition: transform 250ms ease; }
    .venture:hover .venture-link::after { transform: translateX(6px); }
    .venture:hover .venture-link { color: var(--terracotta); }

    /* Logo plate for Intertwine venture */
    .venture-logo-plate {
      background: var(--ink);
      padding: 18px 22px;
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      align-self: flex-start;
      transition: background 250ms ease;
    }
    .venture-logo-plate img {
      height: 38px;
      width: auto;
      filter: brightness(1);
    }
    .venture-logo-plate-text {
      font-family: var(--font-sans);
      font-weight: 500;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--cream);
      line-height: 1.2;
    }
    .venture:hover .venture-logo-plate { background: var(--terracotta-dark); }

    /* CONTACT */
    .contact-bar { padding: clamp(80px, 14vh, 140px) 0; background: var(--ink); color: var(--cream); }
    .contact-eyebrow { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mustard); font-weight: 500; margin-bottom: 28px; }
    .contact-headline { font-family: var(--font-serif); font-weight: 400; font-size: clamp(40px, 6vw, 88px); line-height: 1.0; letter-spacing: -0.015em; margin-bottom: 40px; color: var(--cream); }
    .contact-headline em { font-style: italic; color: var(--mustard); }
    .contact-email { display: inline-block; font-family: var(--font-sans); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.01em; border-bottom: 1px solid var(--mustard); padding-bottom: 4px; color: var(--cream); }
    .contact-email:hover { color: var(--mustard); }

    /* FOOTER */
    footer { background: var(--ink); color: rgba(244, 239, 230, 0.6); padding: 48px 0 40px; font-size: 11px; letter-spacing: 0.08em; border-top: 0.5px solid rgba(244, 239, 230, 0.12); }
    .foot { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
    .foot-col { display: flex; flex-direction: column; gap: 8px; }
    .foot-col-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mustard); font-weight: 500; margin-bottom: 6px; }
    .foot-col a { color: rgba(244, 239, 230, 0.6); }
    .foot-col a:hover { color: var(--mustard); }
    footer .logo-mono { color: var(--cream); }
    footer .logo-tag-1 { color: var(--cream); }
    footer .logo-tag-2 { color: var(--mustard); }

    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; animation: none !important; }
      .tile:hover img, .road-tile:hover img, .credit:hover .credit-img img { transform: none; }
    }
    a:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; }

    /* PRESS LIST — replaces image-card grid */
    .press-tier-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mustard); font-weight: 500; margin: 32px 0 16px; padding-bottom: 10px; border-bottom: 0.5px solid rgba(244, 239, 230, 0.18); }
    .press-tier-label:first-of-type { margin-top: 0; }
    .press-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
    .press-item { background: var(--ink); border: 0.5px solid rgba(244, 239, 230, 0.12); padding: 22px 24px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: background 250ms ease, border-color 250ms ease, transform 250ms ease; }
    .press-item:hover { background: #20253A; border-color: var(--mustard); color: var(--cream); }
    .press-item-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 12px; }
    .press-item-outlet { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mustard); font-weight: 500; }
    .press-item-year { font-size: 10px; letter-spacing: 0.1em; color: var(--mustard); font-weight: 500; }
    .press-item-headline { font-family: var(--font-serif); font-weight: 400; font-size: 20px; line-height: 1.2; color: var(--cream); letter-spacing: -0.005em; margin-bottom: 10px; }
    .press-item-headline em { font-style: italic; color: var(--mustard); }
    .press-item-meta { font-size: 12px; color: rgba(244, 239, 230, 0.62); line-height: 1.5; margin-top: auto; padding-top: 12px; border-top: 0.5px solid rgba(244, 239, 230, 0.1); }
    .press-list.tier1 .press-item-headline { font-size: 22px; }
    .press-list.tier1 .press-item { padding: 26px 28px; }

    /* Featured press card with image (the Billboard 2017 spread) */
    .press-item.featured-spread { grid-column: 1 / -1; padding: 0; overflow: hidden; }
    .press-item.featured-spread .featured-img { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
    .press-item.featured-spread .featured-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1); }
    .press-item.featured-spread:hover .featured-img img { transform: scale(1.02); }
    .press-item.featured-spread .featured-body { padding: 28px 32px; }
    .press-item.featured-spread .press-item-headline { font-size: 26px; }
    @media (min-width: 900px) {
      .press-item.featured-spread { display: grid; grid-template-columns: 7fr 5fr; align-items: stretch; }
      .press-item.featured-spread .featured-img { aspect-ratio: auto; height: 100%; }
      .press-item.featured-spread .featured-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
    }

    /* ACHIEVEMENTS */
    .ach-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); }
    @media (min-width: 900px) { .ach-grid { grid-template-columns: 1fr 1fr; } }
    .ach-block { display: flex; flex-direction: column; }
    .ach-block.full { grid-column: 1 / -1; padding-top: 24px; border-top: 0.5px solid var(--hairline); }
    .ach-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 0.5px solid var(--hairline); flex-wrap: wrap; }
    .ach-artist { font-family: var(--font-serif); font-weight: 400; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.01em; line-height: 1; color: var(--ink); }
    .ach-artist em { font-style: italic; color: var(--terracotta); }
    .ach-period { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; }
    .ach-list { list-style: none; padding: 0; margin: 0; }
    .ach-list li { font-size: 14px; line-height: 1.6; color: var(--navy); padding: 7px 0 7px 24px; position: relative; }
    .ach-list li::before { content: '—'; position: absolute; left: 0; color: var(--terracotta); font-weight: 500; }
    .ach-list li strong { color: var(--ink); font-weight: 500; }

    /* COLLABS */
    .collab-section { background: var(--ivory); border-top: 0.5px solid var(--hairline); border-bottom: 0.5px solid var(--hairline); }
    .collab-list { list-style: none; padding: 0; margin: 0; }
    .collab-item { padding: 18px 0; border-bottom: 0.5px solid var(--hairline); display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
    .collab-item:last-child { border-bottom: none; }
    .collab-left { flex: 1 1 60%; min-width: 240px; }
    .collab-song { font-family: var(--font-serif); font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.005em; line-height: 1.1; color: var(--ink); margin-bottom: 4px; }
    .collab-song em { font-style: italic; color: var(--terracotta); }
    .collab-artists { font-size: 13px; color: var(--mute); }
    .collab-right { text-align: right; font-size: 12px; color: var(--mute); line-height: 1.5; }
    .collab-stat { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); font-weight: 500; display: block; margin-top: 2px; }
    @media (max-width: 600px) {
      .collab-right { text-align: left; }
    }
/* ARTIST PAGE — streaming/social pill links */
.artist-link {
  display: inline-block;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}
.artist-link:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}

/* CONTACT FORM */
.contact-form { margin-top: 8px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.form-field .required { color: var(--terracotta); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--ivory);
  border: 0.5px solid var(--hairline);
  border-radius: 0;
  color: var(--ink);
  font-weight: 400;
  width: 100%;
  transition: border-color 200ms ease, background 200ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: #FFF;
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-sans);
}
.form-submit {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 18px 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background 250ms ease, transform 250ms ease;
}
.form-submit:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

/* NAV SOCIALS — small icons in top nav */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 8px;
}
.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--ink);
  transition: color 250ms ease, transform 250ms ease;
}
.nav-socials a:hover {
  color: var(--terracotta);
  transform: translateY(-1px);
}
.nav-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (max-width: 760px) {
  .nav-socials { gap: 10px; margin-right: 4px; }
  .nav-socials a { width: 18px; height: 18px; }
  .nav-socials svg { width: 15px; height: 15px; }
}
.nav-inner {
  gap: 20px;
}

/* SHARE BAR — blog post sharing controls */
.share-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
  flex-wrap: wrap;
}
.share-bar.bottom { margin-top: 48px; margin-bottom: 0; }
.share-bar.top    { margin-bottom: 40px; }
.share-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-right: auto;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: transparent;
  color: var(--ink);
  border: 0.5px solid var(--hairline);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  text-decoration: none;
}
.share-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.share-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.share-btn.copied {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}

/* VIDEO GRID — YouTube thumbnails */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.video-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 300ms ease;
}
.video-card:hover .video-thumb img { transform: scale(1.04); filter: brightness(0.85); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184, 90, 58, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms ease, transform 250ms ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.video-card:hover .video-play {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-play svg {
  width: 24px;
  height: 24px;
  fill: var(--cream);
  margin-left: 3px;
}

/* CAPTIONED VIDEO CARD */
.video-card.captioned { display: flex; flex-direction: column; }
.video-meta {
  padding: 16px 20px 20px;
  background: var(--cream);
  border-top: 0.5px solid var(--hairline);
}
.video-artist {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.video-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.video-year {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.video-card.captioned:hover .video-meta { background: var(--ivory); }

/* HERO VIDEO LINK — big play overlay on featured thumbnail */
.hero-video-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.hero-video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 300ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-video-link:hover img { filter: brightness(0.78); transform: scale(1.02); }
.hero-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(184, 90, 58, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 250ms ease, transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.hero-video-link:hover .hero-play {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 12px 56px rgba(0,0,0,0.5);
}
.hero-play svg {
  width: 38px;
  height: 38px;
  fill: var(--cream);
  margin-left: 5px;
}
@media (max-width: 760px) {
  .hero-play { width: 72px; height: 72px; }
  .hero-play svg { width: 28px; height: 28px; }
}

/* VIDEO LIGHTBOX */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  transition: opacity 250ms ease;
}
.video-lightbox.active {
  display: flex;
  opacity: 1;
}
.video-lightbox-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
}
.video-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-lightbox-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 239, 230, 0.7);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.video-lightbox-error {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  background: #000;
  color: var(--cream);
  z-index: 2;
}
.video-lightbox-error-msg {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
  max-width: 480px;
  padding: 0 20px;
}
.video-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  z-index: 10;
}
.video-lightbox-close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: rotate(90deg);
}
.video-lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: var(--cream);
}
