.container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 0 4rem;
    }

    /* typography — EB Garamond for headings and logo */
    h1, h2, h3, h4, .logo-font, .hero .tag {
      font-family: 'EB Garamond', serif;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    h1 {
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      color: #0d0d0d;
    }

    h2 {
      font-size: 2.4rem;
      font-weight: 600;
      margin-top: 2.8rem;
      margin-bottom: 1rem;
      border-bottom: 1px solid rgba(26, 26, 26, 0.25);
      padding-bottom: 0.4rem;
      color: #0d0d0d;
    }

    h3 {
      font-size: 1.6rem;
      font-weight: 600;
      margin-top: 1.8rem;
      margin-bottom: 0.6rem;
      color: #111111;
    }

    .subhead {
      font-size: 1.2rem;
      font-weight: 300;
      color: #4a4a4a;
      font-style: italic;
      font-family: 'EB Garamond', serif;
      margin-bottom: 1.8rem;
    }

    p {
      margin-bottom: 1.2rem;
      font-weight: 350;
      max-width: 75ch;
      color: #333333;
    }

    .text-muted {
      color: #555555;
    }

    /* accent line — using cool stone #1a1a1a */
    .accent-line {
      width: 80px;
      height: 3px;
      background: #1a1a1a;
      margin: 1.2rem 0 1.8rem;
    }

    /* logo color #1a1a1a (cool stone) used across */
    .logo-color {
      color: #1a1a1a;
    }
    .logo-border {
      border-color: #1a1a1a;
    }
    .btn-outline {
      border-color: #1a1a1a;
      color: #111111;
    }
    .btn-outline:hover {
      background: #111111;
      color: #f4f4f4;
      border-color: #111111;
    }

    /* hero with image */
    .hero {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      padding: 1.5rem 0 2.5rem;
      border-bottom: 1px solid #dcdcdc;
      margin-bottom: 2rem;
      align-items: center;
    }

    .hero-content {
      flex: 1 1 50%;
      min-width: 280px;
    }

    .hero-image {
      flex: 1 1 40%;
      min-width: 220px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      background: #e5e5e5;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 4/3;
      filter: saturate(0.92) contrast(1.02);
      transition: all 0.2s;
    }

    .hero .tag {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.3rem;
      font-family: 'EB Garamond', serif;
    }

    .hero h1 span {
      font-weight: 400;
      font-style: italic;
      display: inline-block;
      background: rgba(26, 26, 26, 0.10);
      padding: 0 0.5rem;
    }

    /* responsive grid for featured works */
    .grid-2col, .grid-3col {
      display: grid;
      gap: 2rem;
      margin: 2rem 0 1.5rem;
    }

    .grid-2col {
      grid-template-columns: 1fr 1fr;
    }

    .grid-3col {
      grid-template-columns: repeat(3, 1fr);
    }

    .art-card {
      background: #ffffff;
      backdrop-filter: blur(2px);
      padding: 1.5rem 1.5rem 1.8rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      border: 1px solid #dcdcdc;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .art-card:hover {
      background: #ffffff;
      border-color: #1a1a1a;
      box-shadow: 0 12px 28px rgba(0,0,0,0.04);
    }

    /* alternate black / white treatment so cards don't all read identically */
    .grid-3col .art-card,
    .grid-2col .art-card {
      border-top: 3px solid #1a1a1a;
    }

    .grid-3col .art-card:nth-child(even),
    .grid-2col .art-card:nth-child(even) {
      background: #111111;
      border-top: 3px solid #ffffff;
      border-color: #111111;
    }
    .grid-3col .art-card:nth-child(even) .card-label,
    .grid-2col .art-card:nth-child(even) .card-label {
      color: #ffffff;
      border-bottom-color: rgba(255,255,255,0.2);
    }
    .grid-3col .art-card:nth-child(even) .card-label i,
    .grid-2col .art-card:nth-child(even) .card-label i {
      color: #ffffff !important;
    }
    .grid-3col .art-card:nth-child(even) h4,
    .grid-2col .art-card:nth-child(even) h4,
    .grid-3col .art-card:nth-child(even) .desc,
    .grid-2col .art-card:nth-child(even) .desc {
      color: #ffffff;
    }
    .grid-3col .art-card:nth-child(even) .attribution,
    .grid-2col .art-card:nth-child(even) .attribution {
      color: #cccccc;
    }
    .grid-3col .art-card:nth-child(even) .year,
    .grid-2col .art-card:nth-child(even) .year {
      background: #2a2a2a;
      color: #ffffff;
    }
    .grid-3col .art-card:nth-child(even):hover,
    .grid-2col .art-card:nth-child(even):hover {
      background: #000000;
      border-color: #ffffff;
    }

    .art-card .card-image {
      width: 100%;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 0.8rem;
      background: #e5e5e5;
    }

    .art-card .card-image img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: saturate(0.9) contrast(1.02);
      transition: transform 0.2s;
    }

    .art-card:hover .card-image img {
      transform: scale(1.01);
    }

    .art-card .card-label {
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #6b6b6b;
      border-bottom: 1px solid #dcdcdc;
      padding-bottom: 0.5rem;
      margin-bottom: 0.6rem;
      font-weight: 400;
      font-family: 'Inter', sans-serif;
    }

    .art-card h4 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
      font-family: 'EB Garamond', serif;
    }

    .art-card .attribution {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      color: #4a4a4a;
      font-size: 1rem;
    }

    .art-card .year {
      font-size: 0.8rem;
      color: #555555;
      background: #e5e5e5;
      display: inline-block;
      padding: 0.1rem 0.8rem;
      border-radius: 20px;
      margin-top: 0.4rem;
      align-self: flex-start;
    }

    .art-card .desc {
      font-size: 0.95rem;
      margin-top: 0.5rem;
      color: #333333;
      flex: 1;
    }

    /* callout / quote */
    .callout {
      background: #ffffff;
      padding: 2rem 2.5rem;
      border-radius: 12px;
      border: 1px solid #dcdcdc;
      border-left: 6px solid #1a1a1a;
      margin: 2.5rem 0;
    }

    .callout p {
      font-size: 1.1rem;
      font-weight: 350;
      margin-bottom: 0.2rem;
    }

    .callout .source {
      font-family: 'EB Garamond', serif;
      font-style: italic;
      color: #4a4a4a;
    }

    /* FAQ */
    .faq-item {
      border-bottom: 1px solid #dcdcdc;
      padding: 1.2rem 0;
    }

    .faq-item strong {
      display: block;
      font-weight: 600;
      font-family: 'EB Garamond', serif;
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }

    .faq-item p {
      margin-bottom: 0;
      font-size: 0.98rem;
    }

    /* button / link */
    .btn {
      display: inline-block;
      background: #111111;
      color: #f4f4f4;
      padding: 0.8rem 2.2rem;
      border-radius: 40px;
      font-weight: 400;
      letter-spacing: 0.3px;
      text-decoration: none;
      border: 1px solid #111111;
      transition: all 0.2s;
      font-size: 0.95rem;
      font-family: 'Inter', sans-serif;
    }

    .btn-outline {
      background: transparent;
      color: #111111;
      border: 1px solid #1a1a1a;
    }

    .btn-outline:hover {
      background: #111111;
      color: #f4f4f4;
      border-color: #111111;
    }

    .btn:hover {
      background: #333333;
      border-color: #333333;
      transform: translateY(-1px);
    }

    .inline-icon {
      margin-right: 0.5rem;
      color: #1a1a1a;
    }

    /* responsive */
    @media (max-width: 900px) {
      .grid-3col {
        grid-template-columns: 1fr 1fr;
      }
      h1 {
        font-size: 2.6rem;
      }
      h2 {
        font-size: 2rem;
      }
      .callout {
        padding: 1.5rem;
      }
      .hero {
        flex-direction: column;
      }
      .hero-image {
        width: 100%;
      }
    }

    @media (max-width: 640px) {
      body {
        padding: 0 1rem;
      }
      .grid-2col, .grid-3col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
      }
      h1 {
        font-size: 2.2rem;
      }
      h2 {
        font-size: 1.8rem;
        margin-top: 2rem;
      }
      .hero {
        padding: 0.5rem 0 1.5rem;
      }
      .art-card {
        padding: 1.2rem 1rem 1.5rem;
      }
      .container {
        padding: 1rem 0 2.5rem;
      }
      .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
      .callout {
        padding: 1.2rem;
      }
    }

    @media (max-width: 400px) {
      h1 {
        font-size: 1.8rem;
      }
    }

    hr {
      border: 0;
      height: 1px;
      background: linear-gradient(90deg, #dcdcdc 20%, #1a1a1a 80%);
      margin: 2.5rem 0 1.5rem;
    }

    .footer-note {
      margin-top: 3.5rem;
      padding-top: 2rem;
      border-top: 1px solid #dcdcdc;
      font-size: 0.9rem;
      color: #555555;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
    .footer-note i {
      margin-right: 0.4rem;
      color: #1a1a1a;
    }

    /* logo display */
    .logo-display {
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
    }
    .logo-display .logo-main {
      font-family: 'EB Garamond', serif;
      font-weight: 700;
      font-size: 1.6rem;
      color: #1a1a1a;
      letter-spacing: -0.02em;
    }
    .logo-display .logo-sub {
      font-family: 'EB Garamond', serif;
      font-weight: 400;
      font-style: italic;
      font-size: 1.1rem;
      color: #4a4a4a;
      margin-left: 0.25rem;
    }