
   :root {
      --bg: #e3e3e0;
      --text: #2d2a26;
      --accent: #7a5c47;
      --panel: #ffffff;
      --border: #e6ddd4;
      --muted: #6d655e;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      text-align: center;
      z-index: 10;
    }

    header {
      position: sticky;
      top: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      z-index: 10;
    }

    /* NEW HEADER LAYOUT */
    .header-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0.8rem 1.5rem 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .site-title {
      font-size: clamp(1.2rem, 3vw, 2.1rem);
      letter-spacing: 0.19em;
      font-weight: normal;
    }

    /* MENU (RIGHT SIDE) */
     .menu {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

   .menu li:hover .mega-menu,
   .menu li:focus-within .mega-menu {
     display: block;
   }



.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu > ul > li {
    position: relative;
}

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

.mega-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% - 8px);
    width: 360px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 1.2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    text-align: left;
}



.menu-section {
  margin-bottom: 0.4rem;
}

.menu-section:last-child {
    margin-bottom: 0;
}

.menu-section .heading {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: .35rem;
}

.menu-section .heading,
.menu-section .heading-link {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: .35rem;
}

.menu-section a {
    display: block;
    padding: .08rem 0 .08rem 1rem;
    color: var(--muted);
}

.menu-section a:hover {
    color: var(--text);
}

.hero {
      max-width: 800px;
      margin: 0 auto;
      padding: 0.5rem 1.5rem 0.6rem;
    }

.page-title {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 0.6rem;
}

.page-title h1 {
      margin: 0;
      font-size: 1.2rem;
      font-weight: normal;
      letter-spacing: 0.19em;
      color: var(--muted);
    }


      .small-title h1 {
  font-size: 1.1rem;
}

.intro {
    max-width: 600px;
    margin: 0 auto 1rem;
    padding: 0 1.5rem;
    font-size: .9rem;
    line-height: 1.6;
    color: var(--muted);
    text-align: justify;
    text-align-last: center;   /* Optional */
    box-sizing: border-box;
}

    main {
      max-width: 800px;
      margin: 0 auto;
      padding: 0.5rem 1.5rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
    }



.figure-drawing-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem auto 1.5rem;
  flex-wrap: wrap;
}

.figure-drawing-row figure {
  margin: 0;
  text-align: center;
}

.figure-drawing-row img {
  width: auto;
  height: 280px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.figure-drawing-row img.enlarged {
  height: 560px;
}

.figure-drawing-row figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

.sculpture-pair-row {
  width: 100%;
  max-width: 700px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 1rem auto 1.5rem;
  flex-wrap: wrap;
}

.sculpture-pair-row figure {
  margin: 0;
  text-align: center;
  flex: 0 1 calc(50% - 1rem);
  display: flex;
  flex-direction: column;
}

.sculpture-pair-row img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto auto 0 auto;
}

.sculpture-pair-row img.half-size {
  width: 75%;
}

.sculpture-pair-row figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--muted);
}

.sculpture-full-row img {
  width: 700px;
  max-width: 100%;
  height: auto;
}

.sculpture-full-row img.portrait {
  width: auto;
  height: 520px;
  max-width: 100%;
  margin: 0 auto;
}

.sculpture-full-row img.reduced {
  width: 525px;
}

.image-text-row {
  width: 100%;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
  flex-wrap: wrap;
}

.image-text-row .image-pair {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.image-text-row .image-pair img {
  width: auto;
  height: 280px;
  max-width: 100%;
  display: block;
}

.image-text-row .row-text {
  flex: 1 1 220px;
  text-align: left;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

.image-text-row .row-text p {
  margin: 0 0 0.8rem;
}

.image-text-row .row-text p:last-child {
  margin-bottom: 0;
}

.about-columns {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
  flex-wrap: nowrap;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 1 260px;
  max-width: 320px;
  min-width: 100px;
}

.about-images img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}

.about-images figure {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.about-images figcaption {
  flex: 0 0 auto;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.about-text {
  flex: 1 1 160px;
  min-width: 0;
  text-align: justify;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-text p {
  margin: 0 0 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 500px) {
  .about-columns {
    gap: 0.75rem;
  }

  .about-images {
    flex-basis: 100px;
    min-width: 80px;
    gap: 0.6rem;
  }

  .about-text {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

.about-note {
  width: 100%;
  max-width: 800px;
  margin: 0.5rem auto 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-title {
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 0.5rem;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.logo-row {
  width: 100%;
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
  margin: 1rem auto 2rem;
}

.logo-row figure {
  margin: 0;
  text-align: center;
}

.logo-row img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
  }
}

.logo-row figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

    .artwork {
      width: 100%;
      max-width: 700px;
      margin-bottom: 0.2rem;
      padding-bottom: 1.5rem;
      text-align: center;
      position: relative;
      text-decoration: none;
  color: inherit;
    }

    .artwork img {
      width: 80%;
      height: auto;
      display: block;
      margin: 0 auto 0.4rem;
      border: none;
    }



    .artwork p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.4;
    }

    .artwork .title {
      display: block;
      margin-top: 0.4rem;
      margin-bottom: 0.2rem;
      font-size: 0.7rem;
      letter-spacing: 0.19em;
    }

        .artwork .caption {
      display: block;
      margin-bottom: 0.3rem;
      font-size: .7rem;
      
    }

.news-item img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.5rem auto 0.2rem;
}

.news-item {
    width: 100%;
    max-width: 700px;
    margin-bottom: 1rem;     /* was 2rem or 3rem */
    padding-bottom: 0.75rem; /* was 1.5rem or 2rem */
    border-bottom: 1px solid var(--border);
    text-align: left;
}
.news-item figure {
    margin: 0;
}

.news-item h2 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: var(--text);
}

.news-item p {
    margin: 0rem 0;
    line-height: 1.35;
    font-size: 0.9rem;
    color: var(--muted);
}



.news-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.news-image {
    text-align: center;
    margin-top: 0.5rem;
}

.news-image img {
    width: 300px;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.news-image figcaption {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--muted);
}
.news-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 0rem;
    flex-wrap: wrap;
}

.news-images figure {
    width: 300px;
    margin: 0;
}

.news-images img {
    width: 300px;
    height: auto;
    display: block;
    margin: 0;
    max-width: none;
}

.news-images figcaption {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.news-images-small figure {
    width: 220px;
}

.news-images-small img {
    width: 220px;
}

.news-images-three figure {
    width: 200px;
}

.news-images-three img {
    width: 200px;
}

.news-images-three .news-image-lg {
    width: 300px;
}

.news-images-three .news-image-lg img {
    width: 300px;
}

.news-images-three-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.news-images-three-stack .news-images {
    margin-top: 0;
}

.unity-loft-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 1rem auto 1.5rem;
    flex-wrap: wrap;
}

.unity-loft-row figure {
    margin: 0;
    text-align: center;
}

.unity-loft-row img {
    width: 300px;
    height: auto;
    display: block;
}

.unity-loft-row figcaption {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.unity-loft-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exhibition-title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
}

.contact-group {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-name {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.contact-item a:hover {
  text-decoration: underline;
}

.category-links {
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

.category-links::after {
  content: "";
  display: block;
  width: 60%;
  margin: 0.9rem auto 0;
  border-bottom: 1px solid var(--border);
}

    footer {
      padding: 2rem;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.9rem;
    }

.evolution-grid {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1rem auto 2rem;
  align-items: start;
}

.evolution-grid figure {
  margin: 0;
  text-align: center;
}

.evolution-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.evolution-grid figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
}

@media (max-width: 700px) {
  .evolution-grid {
    grid-template-columns: 1fr;
  }
}

.evolution-grid.one-column {
  grid-template-columns: 1fr;
  max-width: 700px;
}

.evolution-grid.one-column img {
  width: 80%;
  margin: 0 auto;
}

.evolution-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 600px;
}

.video-row {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.evolution-intro-row {
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
  flex-wrap: wrap;
}

.evolution-intro-row img {
  width: 40%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.evolution-intro-row .row-text {
  flex: 1 1 200px;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}