@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

:root {
  --bg: #f6f7fa;
  --bg-soft: #f1f4f8;
  --surface: rgba(255,255,255,0.92);
  --surface-solid: #ffffff;
  --text: #2d2929;
  --muted: #716a6a;
  --accent: #7a1f2b;
  --accent-strong: #651824;
  --accent-soft: rgba(122,31,43,0.08);
  --border: #e9e5e6;
  --shadow: 0 20px 45px rgba(39,24,27,0.08);
  --radius: 24px;
  --max: 1240px;
  --footer-bg: rgba(120, 125, 135, 0.12);
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(122,31,43,0.04), transparent 24%),
    linear-gradient(180deg, #fbfbfc 0%, var(--bg-soft) 100%);
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.section-eyebrow,
.section-title p:first-child,
.event-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,251,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(122,31,43,0.08);
}
.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  position: relative;
  z-index: 102;
}
.brand img {
  width: 185px;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 2px;
  transition: color 0.22s ease, transform 0.22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links .nav-cta {
  background: transparent;
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(122,31,43,0.35);
}
.nav-links .nav-cta::after {
  display: none;
}
.nav-links .nav-cta:hover {
  background: rgba(122,31,43,0.06);
}

.menu-toggle {
  display: none;
  height: 54px;
  border: 1px solid rgba(122,31,43,0.12);
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 16px;
  position: relative;
  z-index: 102;
  gap: 12px;
}
.hamburger {
  position: relative;
  width: 22px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.25s ease;
}
.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(7px); }
body.menu-open .hamburger span:nth-child(1) { transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: rotate(-45deg); }

.menu-text {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.page-hero {
  padding: 18px 0 30px;
}
.hero-shell {
  position: relative;
  min-height: 50vh;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: #fdfdfd;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.4s ease, transform 8.5s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,12,13,0.04) 0%, rgba(17,12,13,0.12) 100%);
  z-index: 1;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.hero-dots button.active { background: #fff; }

.section-link-row {
  padding-top: 2px;
}
.quick-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.quick-links a {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  color: var(--accent);
  font-weight: 600;
}

.page-title {
  padding: 54px 0 14px;
}
.page-title-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px 32px;
}
.page-title h1, .section-title h2, .content-card h2, .content-card h3, .art-body h3, 
.socials, .footer-socials {
  gap: 12px;
}
.icon-link {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1.5px solid rgba(122,31,43,0.18);
  background: rgba(255,255,255,0.88);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(39,24,27,0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.icon-link:hover {
  transform: translateY(-2px);
  background: rgba(122,31,43,0.06);
  border-color: rgba(122,31,43,0.34);
}
.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.newsletter-card h2, .contact-card h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}
.page-title h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2.7rem, 4vw, 4.35rem);
  letter-spacing: 0.015em;
}
.page-title p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

main section {
  padding: 66px 0;
}
.section-title {
  margin-bottom: 26px;
}
.section-title h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
}
.section-title p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.cards-3, .gallery-grid, .portfolio-grid, .contact-layout, .about-layout, .grid-2 {
  display: grid;
  gap: 24px;
}
.cards-3, .gallery-grid, .portfolio-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-layout, .about-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.content-card, .toolbar, .art-card, .newsletter-card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-card, .newsletter-card, .contact-card { padding: 28px; }

.content-card p, .newsletter-card p, .contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sub-filters {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 2px solid rgba(122,31,43,0.1);
}
.sub-filters .chip {
  padding: 6px 14px;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid rgba(122,31,43,0.15);
  color: var(--text);
}
.sub-filters .chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
@media (max-width: 760px) {
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .sub-filters {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(122,31,43,0.08);
    padding-top: 12px;
  }
}
.toolbar-right, .socials, .card-actions, .button-row, .footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-panel {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.admin-panel-copy {
  display: grid;
  gap: 6px;
}
.admin-form, .admin-session {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.admin-form input {
  min-width: 220px;
  flex: 1 1 220px;
}
.art-card.is-sold {
  opacity: 0.92;
}
.art-card.is-sold .art-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(122,31,43,0.08);
  pointer-events: none;
}
.chip.is-disabled,
.chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.admin-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-active-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: #10b981;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.sold-toggle-wrap {
  margin-right: auto;
}
.toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.toggle-label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.admin-shortcut {
  color: var(--accent) !important;
  font-weight: 700 !important;
  border-top: 1px solid rgba(122, 31, 43, 0.1);
  margin-top: 10px !important;
  padding-top: 15px !important;
}

.admin-log {
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.8;
  margin-top: 4px;
  font-style: italic;
}

.mobile-only { display: none; }
@media (max-width: 760px) {
  .mobile-only { display: block; }
  .available-summary {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  .sold-toggle-wrap { margin-right: 0; }
}

@media (max-width: 760px) {
  .admin-form, .admin-session {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-form input,
  .admin-form button,
  .admin-session button {
    width: 100%;
  }
}
.chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: white;
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
}
.chip.active, .chip:hover {
  color: var(--accent);
  border-color: rgba(122,31,43,0.24);
  background: rgba(122,31,43,0.04);
}

.art-card {
  overflow: hidden;
}
.art-image {
  position: relative;
  height: auto;
  overflow: hidden;
  background: transparent;
}
.art-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.art-card:hover .art-image img { transform: scale(1.03); }
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
}
.badge.sold {
  background: var(--accent);
  color: #fff;
}
.art-body { padding: 22px; display: grid; gap: 12px; }
.art-title-block {
  display: grid;
  gap: 8px;
}
.art-ref {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(122,31,43,0.16);
  background: rgba(122,31,43,0.05);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.art-body h3 {
  margin: 0;
  font-size: clamp(1.55rem, 1.7vw, 1.95rem);
  line-height: 1.08;
}
.meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.meta strong {
  color: var(--text);
  font-weight: 600;
}
.price {
  margin-top: 16px;
  color: var(--accent);
  font-weight: 700;
}
.small-btn, .btn {
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid rgba(122,31,43,0.35);
}
.small-btn {
  padding: 11px 14px;
  background: white;
  color: var(--accent);
}
.small-btn.accent, .btn-primary {
  background: transparent;
  color: var(--accent);
}
.small-btn:hover, .btn:hover {
  background: rgba(122,31,43,0.06);
}
.btn {
  padding: 14px 22px;
}
.btn-outline {
  background: #fff;
  color: var(--accent);
}
.notice, .muted-small {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-photo img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.detail-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(122,31,43,0.08);
}
form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
input, select, textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.icon-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid currentColor;
}

.newsletter-card {
  text-align: center;
  background: rgba(120, 125, 135, 0.10);
  border: 1px solid rgba(122,31,43,0.10);
  padding: 42px 34px;
}
.newsletter-card h2 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(2.1rem, 3vw, 3.1rem);
}
.newsletter-card p {
  max-width: 860px;
  margin: 0 auto;
}
.newsletter-card form {
  max-width: 820px;
  margin: 28px auto 0;
}
.newsletter-card .grid-2 {
  gap: 18px;
}
.newsletter-card input {
  min-height: 60px;
  font-size: 1rem;
  border: 1px solid rgba(122,31,43,0.12);
  background: rgba(255,255,255,0.84);
}
.newsletter-card .btn {
  min-width: 170px;
  min-height: 58px;
  font-weight: 700;
  background: rgba(122,31,43,0.06);
  box-shadow: 0 10px 25px rgba(122,31,43,0.08);
}
.newsletter-card .notice {
  margin-top: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 12, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  z-index: 300;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  position: relative;
  width: min(100%, 1320px);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.26);
  background: rgba(122,31,43,0.72);
  color: white;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.clickable-image {
  cursor: zoom-in;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1.5px solid rgba(122,31,43,0.35);
  background: rgba(122,31,43,0.18);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 14px 28px rgba(39,24,27,0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease;
  z-index: 220;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(122,31,43,0.28);
}

.site-footer {
  margin-top: 20px;
  border-top: 1px solid rgba(122,31,43,0.08);
  padding: 26px 0 34px;
  color: var(--muted);
}
.footer-shell {
  background: var(--footer-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(122,31,43,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer-brand img {
  width: 140px;
}
.footer-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--accent);
}
.footer-contact {
  display: grid;
  gap: 10px;
}
.designed-by {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(122,31,43,0.08);
  font-size: 0.98rem;
  text-align: center;
  color: var(--muted);
}
.designed-by a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .cards-3, .gallery-grid, .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(84vw, 360px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    box-shadow: -18px 0 40px rgba(32,20,22,0.12);
    border-left: 1px solid rgba(122,31,43,0.08);
    padding: 110px 28px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 101;
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a {
    font-size: 1.14rem;
    width: 100%;
    padding: 10px 0;
  }
  .nav-wrap { min-height: 88px; }
  .brand img { width: 200px; }
}
@media (max-width: 760px) {
  .gallery-grid, .portfolio-grid, .cards-3, .about-layout, .contact-layout, .grid-2, .footer-wrap {
    grid-template-columns: 1fr;
  }
  .hero-shell { min-height: 68vh; }
  .newsletter-card {
    padding: 32px 18px;
  }
  .newsletter-card form {
    max-width: 100%;
  }
  .lightbox {
    padding: 14px;
  }
  .lightbox img {
    max-height: 84vh;
  }
  .lightbox-close {
    top: -6px;
    right: -6px;
    width: 44px;
    height: 44px;
  }
}


.about-hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(122,31,43,0.10), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,244,248,0.96));
}
.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(122,31,43,0.03) 45%, transparent 70%);
  pointer-events: none;
}
.about-lead {
  font-size: 1.08rem;
  line-height: 1.9;
}
.about-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 24px;
}
.about-pill {
  padding: 18px;
  border-radius: 20px;
  background: rgba(122,31,43,0.06);
  border: 1px solid rgba(122,31,43,0.10);
  box-shadow: 0 12px 24px rgba(39,24,27,0.05);
}
.about-pill strong {
  display: block;
  color: var(--accent);
  margin-bottom: 6px;
}

.blog-feature {
  position: relative;
  overflow: hidden;
}
.blog-feature .art-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,12,13,0.02), rgba(16,12,13,0.30));
  pointer-events: none;
}
.blog-feature .art-body {
  position: relative;
}
.blog-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122,31,43,0.08);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
}
.mini-posts {
  display: grid;
  gap: 18px;
}
.mini-post {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mini-post h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--accent);
}
.mini-post p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(94%, 980px);
  padding: 18px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(32, 18, 22, 0.72), rgba(32, 18, 22, 0.84)),
    rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
}
.lightbox-caption h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.28);
}
.lightbox-caption p {
  margin: 0;
  line-height: 1.7;
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.footer-contact a,
.detail-list a {
  word-break: break-word;
}

@media (max-width: 1024px) {
  .about-highlight-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-highlight-grid {
    grid-template-columns: 1fr;
  }
  .footer-shell {
    padding: 22px 18px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-title,
  .footer-links,
  .footer-contact,
  .footer-socials {
    text-align: center;
    justify-content: center;
  }
  .footer-wrap > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .designed-by {
    font-size: 0.92rem;
  }
  .lightbox-caption {
    width: calc(100% - 20px);
    bottom: 10px;
    padding: 14px 16px;
  }
  .lightbox-caption h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .lightbox-caption p {
    font-size: 0.94rem;
    line-height: 1.55;
  }
}

.section-link-row, .quick-links { display:none !important; }

.page-title h1,
.section-title h2,
.content-card h2,
.content-card h3,
.newsletter-card h2,
.contact-card h2,
.art-body h3 {
  color: var(--accent);
}

.contact-card,
.newsletter-card,
.content-card {
  padding: 32px;
}

.pretty-form input,
.pretty-form select,
.pretty-form textarea {
  border: 1px solid rgba(122,31,43,0.12);
  background: rgba(255,255,255,0.92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.pretty-form input:focus,
.pretty-form select:focus,
.pretty-form textarea:focus {
  outline: none;
  border-color: rgba(122,31,43,0.34);
  box-shadow: 0 0 0 4px rgba(122,31,43,0.08);
}

.newsletter-card {
  background: linear-gradient(180deg, rgba(120,125,135,0.11), rgba(255,255,255,0.78));
}
.newsletter-card .btn {
  min-width: 180px;
  background: rgba(122,31,43,0.06);
}
.newsletter-card p,
.contact-card p,
.content-card p {
  margin-top: 0;
  margin-bottom: 14px;
}

.footer-brand > div {
  display: grid;
  gap: 6px;
}
.footer-brand .notice {
  line-height: 1.55;
  max-width: 280px;
}

.about-highlight-grid { display:none !important; }
.lightbox-caption { display:none !important; }

@media (max-width: 760px) {
  .contact-card,
  .newsletter-card,
  .content-card {
    padding: 24px 18px;
  }
}

/* v9 refinements */
.page-hero .container {
  width: 100%;
  max-width: none;
  margin: 0;
}
.hero-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
  min-height: 82vh;
}

.toolbar-right .muted-small { display: none !important; }

.gallery-grid,
.portfolio-grid {
  display: block;
  column-count: 3;
  column-gap: 24px;
}
.gallery-grid .art-card,
.portfolio-grid .art-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.gallery-grid .art-image,
.portfolio-grid .art-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(39,24,27,0.10);
  background: #eceff4;
}
.gallery-grid .art-body,
.portfolio-grid .art-body {
  padding: 14px 4px 0;
}
.gallery-grid .art-card:hover .art-image img,
.portfolio-grid .art-card:hover .art-image img {
  transform: scale(1.045);
  filter: saturate(1.03);
}
.gallery-grid .art-card:hover .art-image,
.portfolio-grid .art-card:hover .art-image {
  box-shadow: 0 24px 48px rgba(39,24,27,0.16);
}
.gallery-grid .art-card .art-image,
.portfolio-grid .art-card .art-image {
  aspect-ratio: auto !important;
  height: auto !important;
}

.blog-feature .art-image {
  aspect-ratio: auto !important;
  height: auto !important;
}
.blog-feature .art-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

.awards-card {
  background:
    radial-gradient(circle at top right, rgba(122,31,43,0.12), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,240,241,0.98));
  border: 1px solid rgba(122,31,43,0.12);
  box-shadow: 0 18px 40px rgba(39,24,27,0.10);
}
.awards-card h3 {
  font-size: 1.7rem;
}
.awards-card p strong {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .gallery-grid,
  .portfolio-grid {
    column-count: 2;
  }
}
@media (max-width: 760px) {
  .hero-shell {
    min-height: 62vh;
  }
  .gallery-grid,
  .portfolio-grid {
    column-count: 1;
  }
  .lightbox {
    padding: 0;
  }
  .lightbox-inner {
    width: 100vw;
    height: 100vh;
    max-height: none;
  }
  .lightbox img {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* v10 fixes */
@media (max-width: 860px) {
  .nav-links {
    padding-top: 145px;
  }
  .nav-links a:first-child {
    margin-top: 10px;
  }
}

@media (max-width: 760px) {
  .hero-slide {
    background-size: contain !important;
    background-repeat: no-repeat;
    background-color: #eef1f5;
  }
  .back-to-top {
    display: inline-flex !important;
    right: 14px;
    bottom: 14px;
  }
  .menu-toggle {
    margin-right: 8px;
  }
}

.lightbox {
  padding: 0 !important;
}
.lightbox-inner {
  width: 100vw !important;
  height: 100vh !important;
  max-height: none !important;
}
.lightbox img {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: #111;
}

/* v11 fixes */
.back-to-top {
  display: inline-flex !important;
}
.back-to-top.show {
  display: inline-flex !important;
}

@media (max-width: 760px) {
  .page-hero {
    padding-top: 0;
    padding-bottom: 18px;
  }
  .page-hero .container {
    padding: 0;
    width: 100%;
  }
  .hero-shell {
    min-height: 68vh !important;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0 !important;
  }
  .hero-slide {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
  }
  .hero-dots {
    bottom: 22px;
  }
  .back-to-top {
    position: fixed !important;
    right: 14px !important;
    bottom: 14px !important;
    width: 56px !important;
    height: 56px !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}

/* Available works medium categories look cleaner */
.toolbar .filters {
  gap: 12px;
}

/* v12 fixes */
.contact-card,
.newsletter-card {
  background: rgba(120,125,135,0.10) !important;
  border: 1px solid rgba(122,31,43,0.10) !important;
}
.detail-list div {
  background: rgba(255,255,255,0.58) !important;
}

.about-photo-stack {
  display: grid;
  gap: 22px;
}
.about-secondary-photo img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(39,24,27,0.10);
  object-fit: cover;
}

.lightbox {
  position: fixed !important;
  inset: 0 !important;
  padding: 0 !important;
  background: rgba(10,10,12,0.96) !important;
  z-index: 99999 !important;
}
.lightbox.open {
  display: flex !important;
}
.lightbox-inner {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-height: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lightbox img {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: rgba(10,10,12,0.96) !important;
}
.lightbox-close {
  position: fixed !important;
  top: 16px !important;
  right: 16px !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(255,255,255,0.22) !important;
  background: rgba(122,31,43,0.78) !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  z-index: 100000 !important;
  box-shadow: 0 12px 24px rgba(0,0,0,0.28) !important;
}
.lightbox-caption {
  display: none !important;
}

@media (max-width: 760px) {
  .lightbox,
  .lightbox-inner,
  .lightbox img {
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
  }
  .hero-shell {
    min-height: 72vh !important;
  }
}

/* v13 fixes */
.about-bottom-photo {
  margin-top: 26px;
}
.about-bottom-photo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(39,24,27,0.10);
  display: block;
}

/* v14 fixes */
.site-header {
  position: sticky !important;
  top: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky !important;
    top: 0;
  }
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    height: 100vh !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.art-card .badge {
  z-index: 2;
}

/* v15 mobile sticky header fix */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000 !important;
    background: rgba(250,250,251,0.96) !important;
    backdrop-filter: blur(18px);
  }
  .nav-wrap {
    min-height: 88px;
  }
  body {
    overflow-x: hidden;
  }
}

/* v16 fixed mobile navbar + back-to-top */
@media (max-width: 860px) {
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: rgba(250,250,251,0.96) !important;
    backdrop-filter: blur(18px);
  }
  body {
    padding-top: 88px !important;
  }
}

@media (max-width: 760px) {
  .back-to-top {
    position: fixed !important;
    right: 14px !important;
    bottom: 14px !important;
    display: inline-flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
  }
}

/* v17 full-art presentation */
.brand img {
  width: 150px;
}
.page-hero {
  padding-top: 0;
}
.hero-shell {
  background: linear-gradient(180deg, #f5f6f8 0%, #eef1f4 100%) !important;
  min-height: 78vh !important;
}
.hero-slide {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  opacity: 0;
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.08)) !important;
}
.hero-dots {
  display: none !important;
}

/* available works masonry layout refinements - NO FIXED ASPECT RATIO FOR FULL BLEED */
.gallery-grid .art-image,
.portfolio-grid .art-image,
.blog-feature .art-image {
  aspect-ratio: auto !important;
  height: auto !important;
  background: transparent !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(39,24,27,0.10);
}
.gallery-grid .art-image img,
.portfolio-grid .art-image img,
.blog-feature .art-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important; /* contain with auto height ensures the full image is shown without gaps */
  display: block;
}

@media (max-width: 860px) {
  .brand img {
    width: 135px;
  }
}
@media (max-width: 760px) {
  .hero-shell {
    min-height: 64vh !important;
  }
  .hero-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-color: #eef1f5 !important;
  }
}

/* FINAL V18 FIXES */
.menu-toggle {
  display: none !important;
  width: auto !important;
  height: 52px !important;
  padding: 0 16px !important;
  gap: 12px !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 14px !important;
  background: #fff !important;
  border: 1px solid rgba(122,31,43,0.14) !important;
  box-shadow: 0 8px 20px rgba(39,24,27,0.06) !important;
}
@media (max-width: 860px) {
  .menu-toggle {
    display: flex !important;
  }
}
.menu-text {
  font-size: 0.94rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: var(--accent) !important;
  display: inline-block !important;
  text-transform: uppercase !important;
}

.hero-shell {
  min-height: auto !important;
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  max-height: calc(100vh - 160px) !important;
  background: #fdfdfd !important;
  margin-inline: auto;
}
.hero-slide {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  transform: scale(1) !important;
  transition: opacity 1.2s ease !important;
}
.hero-slide.active {
  opacity: 1 !important;
}
@media (max-width: 760px) {
  .hero-shell {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Homepage Links Section */
.homepage-links {
  padding: 54px 0 !important;
  text-align: center;
}
.privacy-notice {
  color: #a5a5a5 !important;
  font-size: 1rem !important;
  margin-bottom: 32px !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-style: italic !important;
  letter-spacing: 0.02em;
}
.quick-links-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.quick-links-row a {
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  color: #333 !important;
  transition: color 0.2s ease;
  padding: 4px 0;
}
.quick-links-row a:hover {
  color: var(--accent) !important;
}
@media (max-width: 760px) {
  .quick-links-row {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .quick-links-row a {
    font-size: 1.05rem !important;
  }
}


/* v20 utility/info pages */
.homepage-links {
  padding: 28px 0 20px !important;
}
.privacy-notice {
  text-align: center;
  color: #9a938f !important;
  font-size: 0.98rem !important;
  margin-bottom: 28px !important;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0.01em;
}
.quick-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.quick-links-row a {
  position: relative;
  color: var(--text) !important;
  font-size: 1.02rem !important;
  font-weight: 500 !important;
  padding: 6px 0 !important;
  transition: color 0.22s ease, transform 0.22s ease;
}
.quick-links-row a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.quick-links-row a:hover {
  color: var(--accent) !important;
  transform: translateY(-1px);
}
.quick-links-row a:hover::after {
  transform: scaleX(1);
}

.info-page {
  padding: 20px 0 56px !important;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px 34px;
}
.info-card h1 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.info-card h2 {
  margin: 28px 0 10px;
  color: var(--accent);
  font-size: 1.28rem;
}
.info-card p, .info-card li {
  color: var(--muted);
  line-height: 1.85;
}
.info-card ul {
  padding-left: 22px;
  margin: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,244,245,0.96));
  border: 1px solid rgba(122,31,43,0.10);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(39,24,27,0.07);
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  color: rgba(122,31,43,0.12);
  line-height: 1;
}
.testimonial-text {
  position: relative;
  margin: 14px 0 18px;
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
}
.testimonial-author {
  color: var(--accent);
  font-weight: 700;
}
.testimonial-source {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 4px;
}
.testimonial-intro {
  margin-bottom: 26px;
}
.testimonial-intro p {
  max-width: 760px;
}
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .quick-links-row {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    padding: 28px 20px;
  }
}


/* v5 utility links + CTA */
.site-utility-links {
  border-top: 1px solid rgba(122,31,43,0.06);
}
.info-cta-card {
  text-align: center;
  background: linear-gradient(180deg, rgba(120,125,135,0.08), rgba(255,255,255,0.94));
}
.info-cta-card h2 {
  margin-top: 0;
}
.info-cta-card .btn {
  min-width: 220px;
}


/* v6 utility links mobile layout */
.quick-links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.quick-links-row a {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .quick-links-row {
    flex-direction: row !important;
    justify-content: center;
    gap: 12px 18px !important;
    flex-wrap: wrap;
  }
  .quick-links-row a {
    font-size: 0.98rem !important;
    padding: 4px 0 !important;
  }
}


/* v9 hi-res fullscreen image handling */
.lightbox-inner.hi-res-ready {
  padding: 24px;
}
.lightbox img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  image-rendering: auto;
}
.lightbox.loading::after {
  content: "Loading image...";
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .lightbox-inner.hi-res-ready {
    padding: 12px;
  }
  .lightbox img {
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 24px) !important;
  }
}


/* v10 testimonials social proof */
.social-proof-section {
  padding-top: 18px !important;
}
.social-proof-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,241,242,0.96));
  border: 1px solid rgba(122,31,43,0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px 30px;
  text-align: center;
}
.social-proof-card h2 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.social-proof-card p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.85;
}
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
  margin-bottom: 26px;
}
.social-proof-quote {
  background: rgba(122,31,43,0.04);
  border: 1px solid rgba(122,31,43,0.08);
  border-radius: 20px;
  padding: 18px 18px 16px;
  text-align: left;
}
.social-proof-quote strong {
  display: block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.96rem;
}
.review-button-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.review-button-row .btn {
  min-width: 220px;
}
@media (max-width: 760px) {
  .social-proof-card {
    padding: 26px 18px;
  }
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
  .review-button-row .btn {
    width: 100%;
    min-width: 0;
  }
}


/* v11 Formspree integration */
.formspree-form {
  position: relative;
}
.formspree-form button[disabled] {
  opacity: 0.72;
  cursor: wait;
}
.form-success-message {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(122,31,43,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,244,0.96));
  box-shadow: 0 12px 28px rgba(39,24,27,0.06);
  color: var(--text);
  display: grid;
  gap: 8px;
}
.form-success-message[hidden],
.form-error-message[hidden] {
  display: none !important;
}
.form-success-message strong {
  color: var(--accent);
  font-size: 1.06rem;
}
.form-success-message span {
  color: var(--muted);
  line-height: 1.75;
}
.form-error-message {
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.95rem;
}
.pretty-form input,
.pretty-form select,
.pretty-form textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.pretty-form input:disabled,
.pretty-form select:disabled,
.pretty-form textarea:disabled {
  opacity: 0.75;
}


/* v12 about image clarity improvement */
.about-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .about-image {
    float: right;
    margin: 20px 0 20px 40px;
  }
}


/* v13 upgraded footer */
.site-footer {
  margin-top: 34px;
  padding: 26px 0 38px;
  border-top: 0;
}
.footer-shell-upgraded {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(122,31,43,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(243,244,247,0.96));
  border: 1px solid rgba(122,31,43,0.08);
  border-radius: 34px;
  padding: 30px 32px 22px;
  box-shadow: 0 22px 48px rgba(39,24,27,0.08);
}
.footer-topline {
  height: 1px;
  width: 100%;
  margin-bottom: 24px;
  background: linear-gradient(90deg, transparent, rgba(122,31,43,0.18), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.footer-brand-panel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.footer-main-logo {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}
.footer-brand-copy {
  display: grid;
  gap: 8px;
}
.footer-brand-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.footer-nav-panel,
.footer-contact-panel {
  padding-top: 8px;
}
.footer-feature-panel {
  display: flex;
  justify-content: flex-end;
}
.footer-feature-card {
  width: 100%;
  max-width: 340px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(122,31,43,0.08);
  box-shadow: 0 14px 32px rgba(39,24,27,0.07);
}
.footer-feature-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  max-height: 250px;
  object-fit: cover;
}
.footer-feature-caption {
  padding: 12px 6px 4px;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
}
.footer-socials-upgraded {
  margin-top: 18px;
}
.footer-bottomline {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(122,31,43,0.08);
  text-align: center;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-feature-panel {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .footer-shell-upgraded {
    padding: 24px 18px 20px;
    border-radius: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav-panel,
  .footer-contact-panel,
  .footer-feature-panel {
    padding-top: 0;
    text-align: center;
  }
  .footer-links,
  .footer-contact,
  .footer-socials-upgraded {
    justify-content: center;
  }
  .footer-feature-panel {
    justify-content: center;
  }
  .footer-feature-card {
    max-width: 100%;
  }
  .footer-feature-image {
    max-height: none;
  }
}


/* v14 remove extra about photo and refine footer */
.about-bottom-photo {
  display: none !important;
}

.footer-feature-card {
  align-self: start;
}
.footer-feature-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}
.footer-shell-upgraded {
  margin-top: 0;
}
.site-utility-links {
  padding-top: 22px !important;
}

@media (max-width: 760px) {
  .footer-feature-image {
    max-height: 260px;
  }
  .footer-shell-upgraded {
    padding-top: 22px;
  }
}


/* filter spacing refinement */
.toolbar {
  gap: 22px;
}
.filters {
  gap: 14px !important;
}
.filter-group,
.secondary-filters,
.sub-filters:not([hidden]) {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  padding-top: 10px;
}
.filters + .sub-filters,
.filters + .secondary-filters,
.filter-group + .sub-filters,
.filter-group + .secondary-filters {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(122,31,43,0.10);
}
.chip {
  margin: 0 !important;
}

@media (max-width: 760px) {
  .toolbar {
    padding: 18px 16px;
    gap: 18px;
  }
  .filters,
  .filter-group,
  .secondary-filters,
  .sub-filters {
    gap: 10px 12px !important;
  }
  .filters + .sub-filters,
  .filters + .secondary-filters,
  .filter-group + .sub-filters,
  .filter-group + .secondary-filters {
    margin-top: 12px;
    padding-top: 12px;
  }
}


/* v2 filter layout polish */
.toolbar {
  padding: 22px 26px !important;
  gap: 20px !important;
  border-radius: 32px !important;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px !important;
  margin: 0 !important;
}
.secondary-filters,
.sub-filters,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px !important;
  padding-top: 16px !important;
  margin-top: 2px !important;
  border-top: 1px solid rgba(122,31,43,0.10) !important;
}
.chip {
  padding: 12px 24px !important;
  line-height: 1.1 !important;
}
@media (max-width: 760px) {
  .toolbar {
    padding: 18px 16px !important;
    gap: 16px !important;
    border-radius: 26px !important;
  }
  .filters,
  .secondary-filters,
  .sub-filters,
  .filter-group {
    gap: 10px !important;
  }
  .secondary-filters,
  .sub-filters,
  .filter-group {
    padding-top: 14px !important;
  }
  .chip {
    padding: 10px 18px !important;
  }
}

/* v2026-04 available works dynamic gallery cleanup */
.available-section {
  padding-top: 20px !important;
}

.available-toolbar {
  align-items: flex-start;
  padding: 24px;
  margin-bottom: 28px;
}

.available-summary {
  min-width: 140px;
  display: flex;
  justify-content: flex-end;
}

.filters-wrap {
  gap: 14px;
}

.main-filters,
.sub-filters {
  gap: 10px;
}

.sub-filters {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}

.chip {
  padding: 11px 18px;
  border-radius: 999px;
}

.chip.is-disabled,
.chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.gallery-empty {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--muted);
  padding: 22px 24px;
  margin-bottom: 24px;
}

.gallery-grid[data-gallery-grid] {
  align-items: start;
}

.gallery-grid .art-card {
  overflow: hidden;
}

.gallery-grid .art-image {
  padding: 14px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.95), rgba(239, 242, 246, 0.95)) !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.gallery-grid .art-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

.art-body {
  padding: 24px;
}

.art-body .meta {
  display: grid;
  gap: 8px;
}

.art-card.is-sold {
  opacity: 0.92;
}

.lightbox {
  padding: 18px;
}

.lightbox-inner.hi-res-ready {
  width: min(96vw, 1600px);
  height: min(94vh, 1100px);
  display: grid;
  place-items: center;
}

.lightbox img {
  max-width: 100% !important;
  max-height: 100% !important;
}

@media (max-width: 980px) {
  .available-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .available-summary {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .available-section {
    padding-top: 14px !important;
  }

  .available-toolbar {
    padding: 18px;
    gap: 16px;
    margin-bottom: 20px;
  }

  .chip {
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .gallery-grid .art-image {
    padding: 10px;
  }

  .art-body {
    padding: 18px;
  }

  .back-to-top {
    right: 14px !important;
    bottom: 14px !important;
  }
}

/* Ensure sub-filters are hidden when they have the [hidden] attribute */
.sub-filters[hidden] {
  display: none !important;
}



/* v2026-04-02 mobile fix for Firebase admin panel overflow */
html,
body {
  overflow-x: hidden;
}

.available-section,
.page-title,
.gallery-grid,
.art-card,
.art-body,
.admin-panel {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  main,
  .page-title,
  .available-section,
  .container {
    max-width: 100vw;
    overflow-x: clip;
  }

  .page-title {
    padding: 18px 0 10px !important;
  }

  .page-title-card {
    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  .page-title h1,
  .page-title p,
  .art-body,
  .art-body h3,
  .art-body p,
  .art-body .meta,
  .muted-small {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .available-toolbar,
  .admin-panel,
  .gallery-empty,
  .art-card {
    width: 100%;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .admin-panel {
    padding: 16px !important;
    margin-bottom: 20px !important;
  }

  .admin-form,
  .admin-session {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .admin-form input,
  .admin-form button,
  .admin-session button {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}


.home-events-section {
  padding-top: 18px;
  padding-bottom: 12px;
}

.upcoming-events-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px 50px;
  background: white;
  border: 1px solid #e0d8d9;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.2s ease;
  max-width: fit-content;
  margin: 0 auto;
}

.upcoming-events-card:hover {
  transform: translateY(-2px);
}

.upcoming-events-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.upcoming-events-action .btn.upcoming-events-btn {
  min-width: auto;
  padding: 10px 24px;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(122,31,43,0.3);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.upcoming-events-action .btn.upcoming-events-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  transform: none;
}

@media (max-width: 760px) {
  .upcoming-events-card {
    flex-direction: column;
    border-radius: 30px;
    padding: 30px 24px;
    text-align: center;
    gap: 20px;
    max-width: 100%;
  }
  .upcoming-events-copy h1 {
    font-size: 1.8rem;
    white-space: normal;
  }
  .upcoming-events-action, .upcoming-events-btn {
    width: 100%;
  }
}


.event-feature-section,
.artist-feature-section {
  padding-top: 12px;
}

.event-feature-card,
.artist-feature-card,
.about-intro-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-feature-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.event-eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.event-feature-card h2,
.artist-feature-card h2,
.about-intro-card h2 {
  margin-bottom: 12px;
}

.event-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}

.event-feature-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(122,31,43,0.12);
  color: var(--accent);
  font-weight: 600;
}

.event-feature-note {
  margin-bottom: 0;
}

.event-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.artist-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.artist-feature-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-intro-card {
  padding: 28px;
  align-self: center;
}

@media (max-width: 900px) {
  .artist-feature-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .event-feature-card,
  .artist-feature-card,
  .about-intro-card {
    padding: 22px;
  }

  .event-feature-actions {
    flex-direction: column;
  }

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


/* maroon heading consistency */
.page-title h1,
.content-card h2,
.content-card h3,
.artist-feature-card h2,
.about-intro-card h2 {
  color: var(--accent);
}

.event-eyebrow {
  color: var(--accent);
}


/* v15 targeted typography, events spacing, and layout stability refinements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.012em;
  line-height: 1.06;
}

.page-title h1,
.section-title h2,
.newsletter-card h2,
.contact-card h2,
.content-card h2,
.content-card h3,
.footer-title,
.upcoming-events-card .section-eyebrow,
.art-body h3 {
  color: var(--accent);
}

.page-title h1 {
  font-size: clamp(3rem, 4.2vw, 4.85rem);
  font-weight: 700;
}

.section-title h2,
.newsletter-card h2,
.contact-card h2,
.content-card h2 {
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 700;
}

.content-card h3,
.footer-title {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 700;
}

.section-eyebrow,
.section-title p:first-child,
.event-eyebrow {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.art-title-block {
  gap: 10px;
}

.art-ref {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.art-body h3 {
  font-size: clamp(1.7rem, 1.95vw, 2.15rem);
  font-weight: 700;
  line-height: 1.12;
}

.home-events-section {
  padding-top: 14px;
  padding-bottom: 4px;
}

.upcoming-events-card {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(122,31,43,0.05) 100%);
  border: 1px solid rgba(122,31,43,0.12);
  border-radius: 26px;
}

.upcoming-events-copy {
  min-width: 0;
}



.upcoming-events-card .section-eyebrow {
  margin: 0;
}

.upcoming-events-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.upcoming-events-action .btn,
.upcoming-events-btn {
  min-width: 210px;
  justify-content: center;
  font-weight: 700;
}

.gallery-grid {
  align-items: start;
}

.art-image img {
  display: block;
  height: auto;
}

.admin-panel {
  min-height: 180px;
}

.footer-feature-image {
  aspect-ratio: 600 / 398;
  height: auto;
}

@media (max-width: 860px) {
  .upcoming-events-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    padding: 22px 22px;
  }

  .upcoming-events-action {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .page-title h1 {
    font-size: clamp(2.45rem, 10vw, 3.3rem);
  }

  .section-title h2,
  .newsletter-card h2,
  .contact-card h2,
  .content-card h2,
  .art-body h3 {
    font-size: clamp(1.75rem, 7vw, 2.3rem);
  }

  .upcoming-events-card {
    gap: 14px;
    padding: 20px 18px;
  }

  .upcoming-events-action .btn,
  .upcoming-events-btn {
    min-width: 0;
    width: 100%;
  }
}

/* End of styles */

/* final homepage events layout */
.home-events-section {
  padding-top: 14px;
  padding-bottom: 8px;
}

.upcoming-events-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 34px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(122,31,43,0.05) 100%);
  border: 1px solid rgba(122,31,43,0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.upcoming-events-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.upcoming-events-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw, 3.05rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.upcoming-events-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.upcoming-events-btn {
  min-width: 210px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .upcoming-events-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
  }

  .upcoming-events-copy h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .upcoming-events-action,
  .upcoming-events-btn {
    width: 100%;
  }
}
