:root {
  --bg: #ffffff;
  --ink: #161411;
  --muted: #726c64;
  --faint: #f3f0eb;
  --line: #ded8cf;
  --line-soft: #ece7df;
  --surface: #fbfaf8;
  --shadow: 0 20px 44px rgba(35, 30, 24, .12);
  --radius: 4px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.62;
  letter-spacing: 0;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .18em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  width: min(var(--wrap), calc(100% - 36px));
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  text-decoration: none;
  justify-self: start;
}

.brand__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #23201d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.main-nav a:hover { text-decoration: underline; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.header-cta { justify-self: end; }
.button--primary { min-height: 42px; padding: 0 22px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.site-main {
  background: #fff;
}

.home-hero {
  width: min(100%, 1500px);
  min-height: 586px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 38%) minmax(0, 62%);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(238,235,230,.95), rgba(255,255,255,.7) 34%, rgba(255,255,255,0) 48%),
    radial-gradient(circle at 14% 50%, #f6f3ef, #e7e1d8 44%, #f8f7f4 45%, #fff 70%);
}

.home-hero__copy {
  align-self: center;
  padding: clamp(48px, 7vw, 104px) clamp(26px, 5vw, 88px);
}

.home-hero h1,
.section-intro h2,
.artist-statement h2,
.contact-band h2,
.joomla-component h1,
.joomla-component h2,
.joomla-component h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-hero h1 {
  margin: 0 0 22px;
  max-width: 440px;
  font-size: clamp(40px, 3.75vw, 58px);
  line-height: 1.06;
}

.home-hero p {
  max-width: 390px;
  margin: 0;
  color: #57514a;
  font-size: 15px;
  line-height: 1.68;
}

.home-hero__room {
  position: relative;
  --art-left: 20%;
  --art-width: min(46vw, 450px);
  --art-half: min(23vw, 225px);
  --bench-width: min(28vw, 340px);
  min-height: 586px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f5f1ea 0 66%, #d8d0c4 66% 67%, #b7afa4 100%);
}

.home-hero__room::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 18%, transparent 78%, rgba(0,0,0,.08)),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 34%);
  pointer-events: none;
}

.wall-art {
  position: absolute;
  margin: 0;
  padding: 11px;
  background: #d5c5ad;
  border: 1px solid #917b5d;
  box-shadow: 0 24px 34px rgba(35, 30, 24, .2);
}

.wall-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wall-art__black {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), rgba(255,255,255,0) 42%),
    #070605;
}

.wall-art__black img {
  width: 80px;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.wall-art--main {
  width: var(--art-width);
  aspect-ratio: 1.1 / 1;
  left: var(--art-left);
  top: 15%;
  background: #cdbb9d;
}

.wall-art--side-a,
.wall-art--side-b {
  width: min(16vw, 160px);
  aspect-ratio: 3 / 4;
  top: 27%;
}
.wall-art--side-a { right: 19%; }
.wall-art--side-b { right: 5%; }

.gallery-bench {
  position: absolute;
  left: calc(var(--art-left) + var(--art-half));
  transform: translateX(-50%);
  bottom: 8%;
  width: var(--bench-width);
  height: 38px;
  border-radius: 3px;
  background: #18120e;
  box-shadow: 0 26px 26px rgba(0,0,0,.28);
}
.gallery-bench::before,
.gallery-bench::after {
  content: "";
  position: absolute;
  top: 35px;
  width: 5px;
  height: 68px;
  background: #18120e;
}
.gallery-bench::before { left: 34px; }
.gallery-bench::after { right: 34px; }

.selected-works,
.artist-statement,
.events-section,
.contact-band,
.content-shell {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 0 auto;
}

.selected-works,
.events-section {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 54px;
  padding: 84px 0;
}

.section-intro span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 0 0 34px;
  font-size: clamp(28px, 3vw, 42px);
}

.section-intro a {
  font-size: 12px;
  font-weight: 700;
}

.work-grid,
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.work-card,
.event-card {
  min-width: 0;
}

.work-card img,
.event-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--faint);
  box-shadow: 0 1px 0 var(--line);
}

.work-card h3,
.event-card h3 {
  margin: 16px 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 600;
}

.work-card p,
.event-card p {
  margin: 0 0 4px;
  color: #4e4841;
  font-size: 12px;
  line-height: 1.45;
}

.work-card small,
.event-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.artist-statement {
  min-height: 470px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 8vw, 118px);
  align-items: center;
  padding: 74px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.artist-statement h2 {
  max-width: 450px;
  margin: 0 0 26px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.artist-statement p {
  max-width: 430px;
  margin: 0 0 22px;
  color: #4e4841;
}

.signature {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 26px;
  color: var(--ink) !important;
}

.artist-statement figure,
.contact-band figure {
  margin: 0;
}

.artist-statement img,
.contact-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.events-section {
  padding-top: 82px;
}

.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-card img {
  aspect-ratio: 16 / 10;
}

.contact-band {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 72px 0 92px;
  border-top: 1px solid var(--line-soft);
}

.contact-band h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 3.5vw, 52px);
}

.contact-band p {
  max-width: 390px;
  margin: 0 0 24px;
  color: #4e4841;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  padding: 62px 0 82px;
  align-items: start;
}

body:not(.is-home) .content-shell { grid-template-columns: minmax(0, 1fr); }
body:not(.is-home) .shop-sidebar { display: none; }

.joomla-component {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 52px);
}

.joomla-component h1 { font-size: clamp(38px, 5vw, 68px); }
.joomla-component h2 { font-size: clamp(28px, 3vw, 44px); margin-top: 42px; }
.joomla-component h3 { font-size: 24px; }
.joomla-component p,
.joomla-component li { color: #3f3932; }

.joomla-component .animated,
.is-home .joomla-component .item-page,
.is-home .joomla-component .item-page * {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
}

.joomla-component h1,
.joomla-component h2,
.joomla-component h3,
.joomla-component h1 *,
.joomla-component h2 *,
.joomla-component h3 * {
  color: var(--ink) !important;
}

.joomla-component h1[style],
.joomla-component h2[style],
.joomla-component h3[style],
.joomla-component p[style],
.joomla-component span[style],
.joomla-component div[style] {
  color: inherit !important;
}

.joomla-component img {
  border-radius: var(--radius);
}

.modern-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin: 22px 0 38px;
}

.modern-gallery__item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--faint);
}

.modern-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.modern-gallery__item:hover img { transform: scale(1.035); }

.contact-panel {
  margin: 22px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
}

.joomla-component table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.joomla-component th,
.joomla-component td {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px;
  text-align: left;
}

.module-card {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
}

.module-card__title {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.category-view .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 310px));
  justify-content: center;
  gap: 34px;
}

.category-view .category,
.category-view .category.floatleft,
.category-view .width33 {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.category-view .spacer {
  padding: 0;
}

.category-view h2 {
  margin: 0;
  font-size: 18px !important;
  line-height: 1.2;
  text-align: center;
}

.category-view h2 a {
  display: block;
  text-decoration: none;
}

.category-view .browseCategoryImage {
  width: 100% !important;
  max-width: 310px;
  height: 235px !important;
  margin: 10px auto 0;
  object-fit: cover;
  border-radius: var(--radius);
}

.category-view .clear {
  display: none;
}

.browse-view {
  color: var(--ink);
}

.browse-view > h1,
.productdetails-view h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 500;
}

.browse-view > p,
.browse-view .category_description,
.productdetails-view .product-short-description {
  max-width: 760px;
  color: #4c463f;
  line-height: 1.75;
}

.orderby-displaynumber,
.vm-pagination,
.vm-pagination-bottom,
.horizontal-separator,
.vm-product-rating-container,
.browse-view .clear,
.productdetails-view .clear {
  display: none !important;
}

.browse-view .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  margin: 34px 0;
}

.browse-view .product,
.browse-view .product.vm-col,
.browse-view .vm-col,
.browse-view .vm-col-3 {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.browse-view .product-container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 10px;
  align-items: start;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(35, 30, 24, .04);
}

.browse-view .vm-product-media-container {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 12px 0;
}

.browse-view .vm-product-media-container a {
  display: block;
}

.browse-view .browseProductImage {
  width: 100% !important;
  height: 290px !important;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--faint);
}

.browse-view .vm-product-descr-container-1 {
  grid-column: 1 / -1;
  min-height: 0 !important;
  padding: 0 18px;
}

.browse-view .vm-product-descr-container-1 h2 {
  margin: 2px 0 8px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px !important;
  line-height: 1.15;
  font-weight: 500;
}

.browse-view .vm-product-descr-container-1 h2 a {
  color: var(--ink);
  text-decoration: none;
}

.browse-view .product_s_desc {
  margin: 0;
  color: #3f3932;
  font-size: 14px;
  line-height: 1.55;
}

.browse-view .vm3pr-0 {
  grid-column: 1;
  padding: 0 0 18px 18px;
}

.browse-view .vm3pr-0:has(.addtocart-area) {
  display: none;
}

.product-price {
  margin: 0 0 12px;
}

.browse-view .product-price {
  margin: 0;
}

.ask-a-question,
.ask-a-question.bold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #3f3932 !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
}

.browse-view .vm-details-button,
.browse-view .details-button {
  grid-column: 2;
  margin-top: 0;
  padding: 0 18px 18px 0;
  text-align: left;
}

.browse-view .vm3pr-0,
.browse-view .vm-details-button,
.browse-view .details-button {
  display: flex;
  align-items: center;
}

.browse-view a.product-details,
.productdetails-view a.product-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 170px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.productdetails-view {
  position: relative;
}

.productdetails-view .back-to-category {
  position: absolute;
  top: 0;
  right: 0;
}

.productdetails-view .back-to-category a.product-details {
  min-width: 0;
  min-height: 34px;
  padding: 0 13px;
  border-color: var(--line);
  background: #fff;
  color: #4c463f !important;
  font-size: 12px;
}

.productdetails-view .vm-product-container {
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(220px, .32fr);
  gap: 32px;
  align-items: start;
  margin-top: 26px;
}

.productdetails-view .vm-product-media-container,
.productdetails-view .vm-product-details-container {
  float: none !important;
  width: auto !important;
  min-width: 0;
}

.productdetails-view .main-image {
  margin: 0;
}

.productdetails-view .main-image a {
  display: block;
}

.productdetails-view .main-image img {
  width: 100% !important;
  max-width: 620px;
  height: auto !important;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--faint);
}

.productdetails-view .spacer-buy-area {
  padding: 0;
}

.productdetails-view .product-description {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: #3f3932;
}

.productdetails-view .product-description .title {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.productdetails-view .product-description p {
  max-width: 820px;
  line-height: 1.75;
}

.shop-sidebar input,
.shop-sidebar select,
.shop-sidebar button,
.joomla-component input,
.joomla-component select,
.joomla-component textarea,
.joomla-component button {
  max-width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.shop-sidebar button,
.joomla-component button,
.joomla-component .button,
.joomla-component .btn {
  padding: 9px 14px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #fff;
  color: var(--ink);
  padding: 48px 0 34px;
}

.site-footer__inner {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .7fr .8fr 1fr;
  gap: 46px;
  align-items: start;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.site-footer p,
.site-footer a,
.newsletter-form label {
  display: block;
  margin: 0 0 7px;
  color: #5a554e;
  font-size: 12px;
  text-decoration: none;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr 38px;
  border: 1px solid var(--line);
}

.newsletter-form input,
.newsletter-form button {
  min-height: 38px;
  border: 0;
  background: #fff;
}

.newsletter-form input {
  min-width: 0;
  padding: 0 12px;
}

.newsletter-form button {
  background: var(--ink);
  color: #fff;
}

.system-message-container,
#system-message-container {
  width: min(var(--wrap), calc(100% - 44px));
  margin: 18px auto;
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }
  .nav-toggle { display: block; order: 3; }
  .main-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 58px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { min-height: 38px; }
  .home-hero {
    grid-template-columns: 1fr;
  }
  .home-hero__copy {
    padding-bottom: 26px;
  }
  .home-hero__room {
    min-height: 470px;
  }
  .wall-art--main {
    width: min(62vw, 430px);
    left: 12%;
  }
  .wall-art--side-a { right: 19%; }
  .wall-art--side-b { right: 4%; }
  .selected-works,
  .events-section,
  .artist-statement,
  .contact-band,
  .content-shell,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .productdetails-view .vm-product-container {
    grid-template-columns: 1fr;
  }
  .productdetails-view .back-to-category {
    position: static;
    margin-bottom: 18px;
    text-align: right;
  }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .site-header__inner {
    width: min(100% - 28px, var(--wrap));
    min-height: 58px;
    gap: 12px;
  }
  .brand__text { font-size: 20px; }
  .header-cta {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }
  .home-hero {
    min-height: 0;
  }
  .home-hero__copy {
    padding: 48px 22px 24px;
  }
  .home-hero h1 {
    font-size: 42px;
  }
  .home-hero__room {
    min-height: 360px;
  }
  .wall-art--main {
    width: 58vw;
    left: 9%;
    top: 18%;
  }
  .wall-art--side-a,
  .wall-art--side-b {
    width: 23vw;
    padding: 6px;
    top: 29%;
  }
  .gallery-bench {
    left: 50%;
    width: 52vw;
    bottom: 16%;
  }
  .selected-works,
  .artist-statement,
  .events-section,
  .contact-band,
  .content-shell,
  .site-footer__inner {
    width: min(100% - 28px, var(--wrap));
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .work-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }
  .selected-works,
  .events-section {
    gap: 24px;
  }
  .artist-statement,
  .contact-band {
    gap: 28px;
  }
  .joomla-component {
    padding: 22px;
  }
  .browse-view .row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .browse-view .browseProductImage {
    height: 260px !important;
  }
  .browse-view .product-container {
    grid-template-columns: 1fr;
  }
  .browse-view .vm3pr-0,
  .browse-view .vm-details-button,
  .browse-view .details-button {
    grid-column: 1;
    justify-content: center;
    padding-left: 18px;
    padding-right: 18px;
  }
  .browse-view a.product-details {
    min-width: 0;
    width: min(100%, 220px);
  }
  .browse-view > h1,
  .productdetails-view h1 {
    font-size: 38px;
  }
  .productdetails-view .back-to-category {
    text-align: left;
  }
}
