/* Dalswinton Studio — global styles */
:root {
  --font-cormorant: "Cormorant Garamond", Georgia, serif;
  --font-baskerville: "Libre Baskerville", Georgia, serif;
  --font-im-fell: "IM Fell English SC", Georgia, serif;
  --sage: #6B8B72;
  --indigo: #243447;
  --gold: #C9A66B;
  --parchment: #FAF7F0;
  --ink: #1C1C1C;
  --max-site: 1100px;
  --space-unit: 1rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--ink);
  font-family: var(--font-baskerville);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding-top: 76px;
}

@media (max-width: 780px) {
  body { padding-top: 77px; }
}
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  body { width: 100%; }
  main, .site-container { max-width: 100%; }
  .nav-bottom-line { display: none; }
}
@media (max-width: 767px) {
  body { padding-top: 69px; }
}

/* Homepage: desktop = sticky stack; mobile = normal stacking, one section per viewport */
body.home-page main {
  display: block;
}
body.home-page main section {
  position: sticky;
  top: 76px;
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 780px) {
  body.home-page main section { top: 77px; min-height: calc(100vh - 77px); min-height: calc(100dvh - 77px); }
}
/* Mobile: sections stack in normal flow, each fills viewport */
@media (max-width: 767px) {
  body.home-page main section {
    position: relative;
    top: auto;
    min-height: calc(100vh - 69px);
    min-height: calc(100dvh - 69px);
  }
}
body.home-page main section#hero { z-index: 1; }
/* Remove gap under mobile nav: pull hero up so it sits flush (under ~780px only) */
@media (max-width: 780px) {
  body.home-page main section#hero {
    margin-top: -20px;
    padding-top: 20px;
    box-sizing: content-box;
  }
}
body.home-page main section#room-one { z-index: 2; justify-content: center; }
body.home-page main section#room-two { z-index: 3; justify-content: center; }
body.home-page main section#room-three { z-index: 4; justify-content: center; }
body.home-page main section#room-four { z-index: 5; justify-content: center; }

/* Homepage tour rooms: fill viewport, efficient padding for all desktop sizes */
body.home-page main section.tour-room {
  min-height: calc(100vh - 76px);
  min-height: calc(100dvh - 76px);
}
@media (max-width: 780px) {
  body.home-page main section.tour-room { min-height: calc(100vh - 77px); min-height: calc(100dvh - 77px); }
}
@media (max-width: 767px) {
  body.home-page main section.tour-room {
    min-height: calc(100vh - 69px);
    min-height: calc(100dvh - 69px);
  }
}
body.home-page main section.tour-room.section-spacing {
  padding-top: clamp(1.5rem, 4vh, 3rem);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}
@media (min-width: 768px) {
  body.home-page main section.tour-room.section-spacing {
    padding-top: clamp(2rem, 5vh, 4rem);
    padding-bottom: clamp(2rem, 5vh, 4rem);
  }
}
@media (min-width: 1024px) {
  body.home-page main section.tour-room.section-spacing {
    padding-top: clamp(2.5rem, 6vh, 5rem);
    padding-bottom: clamp(2.5rem, 6vh, 5rem);
  }
}
body.home-page .tour-room__inner {
  padding-top: 0;
  padding-bottom: 0;
}
/* Homepage: container uses viewport-relative padding so sections fill screen efficiently */
body.home-page .site-container {
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
  padding-right: clamp(1.5rem, 5vw, 2.5rem);
}
@media (min-width: 1024px) {
  body.home-page .site-container {
    padding-left: clamp(2rem, 5vw, 3.5rem);
    padding-right: clamp(2rem, 5vw, 3.5rem);
  }
}
@media (min-width: 1280px) {
  body.home-page .site-container {
    padding-left: clamp(2.5rem, 4vw, 4rem);
    padding-right: clamp(2.5rem, 4vw, 4rem);
  }
}

/* Homepage: footer scrolls on top of last section (sticky stack on desktop only) */
body.home-page .tour-footer-wrap {
  position: sticky;
  top: 76px;
  z-index: 6;
  background: var(--indigo);
}
@media (max-width: 768px) {
  body.home-page .tour-footer-wrap { top: 77px; }
}
@media (max-width: 767px) {
  body.home-page .tour-footer-wrap {
    position: relative;
    top: auto;
  }
}

/* Preloader (homepage only): gallery / guided tour entry */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader-img {
  position: absolute;
  inset: 0;
  background-image: url("/images/ghana.jpg");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
  transition: opacity 0.8s ease;
}
.preloader-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(36, 52, 71, 0.88) 0%, rgba(26, 40, 54, 0.9) 45%, rgba(54, 70, 60, 0.85) 100%);
}
.preloader-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 30rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(201, 166, 107, 0.25);
  border-bottom: 1px solid rgba(201, 166, 107, 0.25);
}
.preloader-invite {
  font-family: var(--font-baskerville);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.7);
  display: block;
  margin-bottom: 1.25rem;
  animation: preloaderFadeIn 1s ease 0.2s both;
}
.preloader-label {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  animation: preloaderFadeIn 1s ease 0.4s both;
}
.preloader-title {
  font-family: var(--font-cormorant);
  font-size: 3rem;
  color: var(--parchment);
  line-height: 1.1;
  margin: 0 0 0.5rem;
  animation: preloaderFadeIn 1s ease 0.6s both;
}
@media (min-width: 640px) { .preloader-title { font-size: 4rem; } }
@media (min-width: 768px) { .preloader-title { font-size: 4.5rem; } }
.preloader-sub {
  font-family: var(--font-baskerville);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.75);
  margin: 0 0 0.75rem;
  animation: preloaderFadeIn 1s ease 0.8s both;
}
.preloader-hint {
  font-family: var(--font-baskerville);
  font-size: 0.8125rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 240, 0.55);
  margin: 0 0 2rem;
  animation: preloaderFadeIn 1s ease 1s both;
}
@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.preloader-enter {
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--parchment);
  background: transparent;
  border: 1px solid rgba(250, 247, 240, 0.65);
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  animation: preloaderFadeIn 1s ease 1.2s both;
}
.preloader-enter:hover {
  background: var(--parchment);
  color: var(--indigo);
  border-color: var(--parchment);
  box-shadow: 0 0 0 1px var(--parchment);
}
.preloader-enter:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

body.entered .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Site content hidden until Enter */
#site-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0.15s, visibility 0.5s ease 0.15s;
}
body.entered #site-content {
  opacity: 1;
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cormorant);
  color: var(--indigo);
  line-height: 1.1;
  margin: 0 0 0.5em;
}

::selection {
  background-color: var(--gold);
  color: var(--parchment);
}

.site-container {
  max-width: var(--max-site);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .site-container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* Section system */
.section-spacing { padding-top: 5rem; padding-bottom: 5rem; }
@media (max-width: 767px) {
  .section-spacing {
    padding-top: clamp(1.5rem, 5vh, 3rem);
    padding-bottom: clamp(1.5rem, 5vh, 3rem);
  }
}
@media (min-width: 768px) {
  .section-spacing { padding-top: 6rem; padding-bottom: 6rem; }
}

.section {
  position: relative;
}
.section-inner {
  position: relative;
  max-width: var(--max-site);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .section-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.section-accent-top {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(201, 166, 107, 0.25) 20%, rgba(201, 166, 107, 0.35) 50%, rgba(201, 166, 107, 0.25) 80%, transparent 100%);
  margin-bottom: 0;
}
.section-accent-bottom {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(201, 166, 107, 0.25) 20%, rgba(201, 166, 107, 0.35) 50%, rgba(201, 166, 107, 0.25) 80%, transparent 100%);
  margin-top: 0;
}

.section-header {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .section-header { margin-bottom: 1.25rem; }
  .section-header + .section-content { margin-top: 1.25rem; }
}
@media (min-width: 768px) {
  .section-header { margin-bottom: 2.5rem; }
}
.section-header .section-label { margin-bottom: 1rem; }
@media (max-width: 767px) { .section-header .section-label { margin-bottom: 0.5rem; } }
.section-header .section-title,
.section-header .font-heading { margin-bottom: 0.75rem; }
.section-header .divider-gold { margin-top: 1rem; margin-bottom: 0; }
.section-header + .section-content { margin-top: 2rem; }

.section-content {
  margin-top: 1.5rem;
}
.section-content:first-child { margin-top: 0; }

.page-intro {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .page-intro {
    padding-top: clamp(1.5rem, 4vh, 2.5rem);
    padding-bottom: clamp(1.5rem, 4vh, 2.5rem);
  }
}
@media (min-width: 768px) {
  .page-intro { padding-top: 5rem; padding-bottom: 5rem; }
}
.page-intro .section-header { max-width: 42rem; }

.section-label {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-cormorant);
  color: var(--indigo);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }

.divider-gold { width: 3rem; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

.font-heading { font-family: var(--font-cormorant); }
.font-body { font-family: var(--font-baskerville); }
.font-accent { font-family: var(--font-im-fell); }

.btn-primary {
  display: inline-block;
  background: var(--sage);
  color: var(--parchment);
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.btn-primary:hover { background: var(--indigo); box-shadow: 0 4px 12px rgba(36, 52, 71, 0.12); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--indigo);
  color: var(--indigo);
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  min-height: 44px;
}

.btn-outline:hover { background: var(--indigo); color: var(--parchment); }
.btn-outline:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  min-height: 44px;
}

.btn-ghost:hover { color: var(--sage); }
.btn-ghost:active { transform: scale(0.98); }

.btn-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  min-height: 44px;
}

.btn-gold:hover { background: var(--gold); color: var(--parchment); box-shadow: 0 4px 12px rgba(201, 166, 107, 0.2); }
.btn-gold:active { transform: scale(0.98); }

.gallery-frame { position: relative; overflow: hidden; }

.gallery-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(201,166,107,0.25) 0%, transparent 50%, rgba(201,166,107,0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Gallery/museum-style section scroll-up: stronger motion, calmer timing */
.reveal--section {
  transform: translateY(56px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--section.visible { transform: translateY(0); }
.reveal--section .reveal { transition-delay: 0.1s; }
.reveal--section.visible .reveal { transition-delay: 0s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-fade-in { animation: fadeUp 1.2s ease both; }
.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }

/* Nav */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.7s, box-shadow 0.3s;
  background: rgba(250, 247, 240, 0.8);
  backdrop-filter: blur(4px);
}

.nav-header.scrolled {
  background: rgba(250, 247, 240, 0.97);
  border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.nav-accent-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 166, 107, 0.5), transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

@media (min-width: 768px) { .nav-inner { height: 76px; } }

.nav-left, .nav-right {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .nav-left { display: flex; flex: 1; }
  .nav-right { display: flex; flex: 1; justify-content: flex-end; }
}

.nav-link {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.nav-link:hover { color: rgba(28, 28, 28, 0.55); border-bottom-color: rgba(28, 28, 28, 0.2); }

.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav-link.active { color: var(--sage); border-bottom-color: var(--sage); }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); margin: 0; }
}

.nav-logo-label {
  font-family: var(--font-im-fell);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.nav-logo-name {
  font-family: var(--font-cormorant);
  color: var(--indigo);
  font-size: 22px;
}

@media (min-width: 768px) { .nav-logo-name { font-size: 26px; } }

.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

@media (min-width: 1024px) { .nav-menu-btn { display: none; } }

.nav-menu-line {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--indigo);
  transition: transform 0.4s, opacity 0.3s;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-line:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

.nav-bottom-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 166, 107, 0.2), transparent);
  transition: opacity 0.5s;
}

.nav-header.scrolled .nav-bottom-line { opacity: 0; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

@media (min-width: 1024px) { .nav-overlay { display: none; } }

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-accent {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 166, 107, 0.5), transparent);
}

.nav-overlay-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.nav-overlay-logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; margin-bottom: 0.5rem; }

.nav-overlay-name { font-size: 1.875rem; }

.nav-overlay-rule { width: 2rem; height: 1px; background: rgba(201, 166, 107, 0.4); }

.nav-overlay-link {
  font-family: var(--font-cormorant);
  font-size: 1.5rem;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-overlay-link:hover { color: var(--sage); }

.nav-overlay-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 166, 107, 0.2);
}

.nav-overlay-social-link {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-overlay-social-link:hover { color: var(--gold); }

.nav-overlay-social-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav-overlay-link:focus-visible,
.nav-overlay-logo:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav-menu-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav-overlay-footer {
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.3);
}

/* Footer — redesigned */
.footer {
  background: var(--indigo);
  color: var(--parchment);
}

.footer__accent {
  height: 1px;
  background: linear-gradient(to right, transparent 10%, rgba(201, 166, 107, 0.35) 50%, transparent 90%);
}

.footer__inner {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer__inner { padding-top: 4.5rem; padding-bottom: 3rem; }
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.footer__newsletter { margin-top: 1.5rem; }
.footer__newsletter-label,
.footer__social-label { font-family: var(--font-baskerville); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250, 247, 240, 0.5); margin: 0 0 0.5rem; }
.footer__newsletter-form { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__newsletter-input { flex: 1; min-width: 10rem; padding: 0.5rem 0.75rem; font-family: var(--font-baskerville); font-size: 0.875rem; color: var(--ink); background: rgba(250, 247, 240, 0.15); border: 1px solid rgba(250, 247, 240, 0.2); border-radius: 0; }
.footer__newsletter-input::placeholder { color: rgba(250, 247, 240, 0.4); }
.footer__newsletter-input:focus { outline: none; border-color: var(--gold); }
.footer__newsletter-btn { padding: 0.5rem 1rem; font-family: var(--font-baskerville); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--indigo); background: var(--gold); border: none; cursor: pointer; transition: background 0.25s ease, color 0.25s ease; }
.footer__newsletter-btn:hover { background: var(--parchment); color: var(--indigo); }
.footer__newsletter-thanks { font-family: var(--font-baskerville); font-size: 0.8125rem; color: rgba(250, 247, 240, 0.8); margin: 0; }
.footer__social { margin-top: 1rem; }
.footer__social-links { display: flex; gap: 1rem; }
.footer__social-link { font-family: var(--font-baskerville); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250, 247, 240, 0.5); text-decoration: none; transition: color 0.25s ease; }
.footer__social-link:hover { color: var(--gold); }

.footer__label {
  font-family: var(--font-im-fell);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__title {
  font-family: var(--font-cormorant);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--parchment);
  margin: 0 0 0.75rem;
}

.footer__tagline {
  font-family: var(--font-baskerville);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.65);
  margin: 0 0 1.25rem;
}

.footer__email {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__email:hover { color: var(--gold); }
.footer__email:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer__nav { gap: 0.625rem; }
}

.footer__nav a {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer__nav a:hover { color: var(--gold); }
.footer__nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 240, 0.08);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer__copy,
.footer__legal a {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.4);
  text-decoration: none;
}

.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a:hover { color: var(--gold); }
.footer__legal a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.footer__credit {
  font-family: var(--font-baskerville);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 240, 0.45);
  margin: 0;
}

.footer__credit a {
  color: rgba(250, 247, 240, 0.75);
  text-decoration: none;
}

.footer__credit a:hover { color: var(--gold); }
.footer__credit a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* Tour nav (gallery) */
.tour-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.tour-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--parchment);
  border-color: rgba(201, 166, 107, 0.5);
}

.tour-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.tour-nav-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.painting-card { position: relative; cursor: pointer; display: block; transition: transform 0.4s ease; }

.painting-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201, 166, 107, 0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.painting-card:hover { transform: scale(1.01); }
.painting-card:hover::after { opacity: 1; }

/* Hero */
.hero-full { position: relative; min-height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
@media (max-width: 767px) {
  .hero-full { min-height: 100dvh; min-height: 100vh; }
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero-bg .hero-img { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(36, 52, 71, 0.35) 0%, rgba(36, 52, 71, 0.28) 50%, rgba(36, 52, 71, 0.4) 100%);
}

/* Hero — single full-bleed image (light, bright) */
.hero-bg > .hero-bg__img--single {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero-overlay--light {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(36, 52, 71, 0.25) 100%);
}
.hero-tour--light .hero-tour__card {
  background: rgba(36, 52, 71, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .hero-tour--light .hero-tour__card {
    background: rgba(36, 52, 71, 0.5);
  }
}

/* Hero — collage (gallery-style multi-panel): 3 images, improved blend and depth */
.hero-bg--collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: #1a2332;
}
/* Mobile: 3 horizontal bands (rows) instead of 3 vertical strips */
@media (max-width: 767px) {
  .hero-bg--collage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0;
  }
}
.hero-bg--collage .hero-bg__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: #243447;
}
/* Soft inner glow between panels so the three images feel connected */
.hero-bg--collage .hero-bg__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px 0 rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 1;
}
.hero-bg--collage .hero-bg__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 2;
}
.hero-bg__panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0.92;
}
.hero-bg--collage .hero-bg__img { opacity: 1; }
.hero-bg--collage .hero-bg__panel:nth-child(1) .hero-bg__img { object-position: center 42%; }
.hero-bg--collage .hero-bg__panel:nth-child(2) .hero-bg__img { object-position: center center; }
.hero-bg--collage .hero-bg__panel:nth-child(3) .hero-bg__img { object-position: center 38%; }

/* Hero — multi-panel background (legacy grid) */
.hero-bg--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.hero-bg__panel:nth-child(1) .hero-bg__img { object-position: center 40%; }
.hero-bg__panel:nth-child(2) .hero-bg__img { object-position: center center; }
.hero-bg__panel:nth-child(3) .hero-bg__img { object-position: center 35%; }

/* Hero — gallery tour first stop (centered) */
.hero-tour { justify-content: center; align-items: center; padding-left: 0; padding-right: 0; }
.hero-tour .hero-overlay {
  background:
    linear-gradient(to bottom, rgba(36, 52, 71, 0.48) 0%, rgba(36, 52, 71, 0.38) 50%, rgba(36, 52, 71, 0.5) 100%);
}
.hero-tour--light .hero-overlay.hero-overlay--light {
  /* Vignette: lighter so the 3 hero images show through more */
  background:
    radial-gradient(ellipse 75% 80% at 50% 45%, rgba(36, 52, 71, 0.18) 0%, rgba(36, 52, 71, 0.34) 55%, rgba(18, 26, 36, 0.48) 100%);
}
.hero-tour__card {
  position: relative;
  z-index: 10;
  max-width: 24rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(28, 38, 52, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .hero-tour__card {
    margin-left: auto;
    margin-right: auto;
    max-width: 28rem;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: rgba(28, 38, 52, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}
.hero-tour__stop {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201, 166, 107, 0.98);
  display: block;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-tour__title {
  font-family: var(--font-cormorant);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: #FAF7F0;
  margin: 0 0 0.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media (min-width: 640px) { .hero-tour__title { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero-tour__title { font-size: 3.75rem; } }
.hero-tour__sub {
  font-family: var(--font-baskerville);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.95);
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.hero-tour__divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(201, 166, 107, 0.65);
  margin: 0 auto 1.25rem;
}
.hero-tour__text {
  font-family: var(--font-baskerville);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.97);
  margin: 0 0 1.75rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-tour__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.hero-tour__cta {
  font-family: var(--font-baskerville);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--gold);
  border: none;
  padding: 1rem 2.25rem;
  min-height: 52px;
  min-width: 12rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 166, 107, 0.35);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.hero-tour__cta:hover {
  background: #d4b57a;
  color: var(--indigo);
  box-shadow: 0 6px 28px rgba(201, 166, 107, 0.45);
  transform: translateY(-1px);
}
.hero-tour__cta:active { transform: translateY(0) scale(0.98); }
.hero-tour__cta:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }
.hero-tour__cta--secondary {
  background: transparent;
  color: var(--parchment);
  border: 2px solid rgba(250, 247, 240, 0.8);
  box-shadow: none;
}
.hero-tour__cta--secondary:hover {
  background: rgba(250, 247, 240, 0.15);
  border-color: var(--parchment);
  color: var(--parchment);
  transform: translateY(-1px);
}
.hero-tour__cta--secondary:active { transform: translateY(0) scale(0.98); }

/* Legacy hero classes (other pages may use) */
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 1.5rem; max-width: 32rem; }
.hero-label { font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.hero-title { font-size: 3rem; color: var(--parchment); line-height: 1; margin-bottom: 0; }
@media (min-width: 640px) { .hero-title { font-size: 4rem; } }
@media (min-width: 768px) { .hero-title { font-size: 5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title--smaller { font-size: 2rem; font-weight: 400; letter-spacing: 0.02em; color: var(--parchment); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); }
@media (min-width: 640px) { .hero-title--smaller { font-size: 2.5rem; } }
@media (min-width: 768px) { .hero-title--smaller { font-size: 2.75rem; } }
.hero-tagline { font-family: var(--font-baskerville); font-size: 0.9375rem; letter-spacing: 0.08em; color: rgba(250, 247, 240, 0.88); margin: 1rem 0 2rem; line-height: 1.5; }
.hero-sub { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250, 247, 240, 0.7); margin: 1rem 0 3rem; }
.hero-enter { font-family: var(--font-baskerville); font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--parchment); border: 1px solid rgba(250, 247, 240, 0.7); padding: 1rem 2.5rem; min-height: 48px; text-decoration: none; transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease; display: inline-flex; align-items: center; justify-content: center; }
.hero-enter:hover { background: var(--parchment); color: var(--indigo); border-color: var(--parchment); }
.hero-enter:active { transform: scale(0.98); }
.hero-enter:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.bg-parchment { background: var(--parchment); }
.bg-white { background: #fff; }

.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .grid-2-col { grid-template-columns: 1fr 2px 1fr; gap: 0; } }
/* Courses: two columns only (no divider), so text doesn't end up in the 2px column */
.courses-item.grid-2-col { grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .courses-item.grid-2-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.courses-item.grid-2-col > div { min-width: 0; }
.courses-item__caption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; background: rgba(36, 52, 71, 0.88); padding: 0.75rem 1rem; }
.courses-item__caption-text { margin: 0; font-family: var(--font-baskerville); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--parchment); }
.align-center { align-items: center; }

/* Room III — Teaching Studio (homepage): same gallery feel as Room II & IV */
#room-three {
  position: relative;
  background-color: #F2EDE6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, transparent 25%, transparent 75%, rgba(238, 234, 228, 0.6) 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}
#room-three::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
#room-three .site-container { max-width: 1200px; position: relative; z-index: 1; }
.teaching-studio { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 900px) {
  .teaching-studio { grid-template-columns: 0.95fr 1fr; gap: 4rem; align-items: center; }
}
.teaching-studio__artwork { order: 1; }
@media (min-width: 900px) { .teaching-studio__artwork { max-width: 380px; } }
.teaching-studio__content { order: 2; }
@media (max-width: 767px) {
  .teaching-studio__content { order: 1; }
  .teaching-studio__artwork { order: 2; }
}
@media (min-width: 900px) { .teaching-studio__artwork { order: 1; } .teaching-studio__content { order: 2; } }
/* Gallery-style frame: white mount, gold accent, shadow — image keeps aspect ratio */
.teaching-studio__frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.2),
    0 4px 12px rgba(36, 52, 71, 0.1),
    0 12px 32px rgba(36, 52, 71, 0.12);
  transition: box-shadow 0.3s ease;
}
.teaching-studio__frame:hover {
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.35),
    0 8px 20px rgba(36, 52, 71, 0.12),
    0 20px 48px rgba(36, 52, 71, 0.14);
}
.teaching-studio__img-wrap { overflow: hidden; position: relative; }
.teaching-studio__img { display: block; width: 100%; height: auto; vertical-align: middle; }
/* Gallery-style label under image */
.teaching-studio__caption { margin-top: 0.875rem; padding-left: 2px; }
.teaching-studio__caption-title {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.teaching-studio__caption-meta {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 52, 71, 0.65);
}
.teaching-studio__label { display: block; margin-bottom: 0.75rem; }
.teaching-studio__title {
  font-family: var(--font-cormorant);
  font-size: 2.25rem;
  line-height: 1.15;
  color: var(--indigo);
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .teaching-studio__title { font-size: 2.75rem; } }
.teaching-studio__title em { font-style: italic; font-weight: 400; }
.teaching-studio__divider { margin: 0 0 1.75rem; }
.teaching-studio__testimonial {
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 1.5rem 1.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 16px rgba(36, 52, 71, 0.06);
}
.teaching-studio__quote {
  font-family: var(--font-cormorant);
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--indigo);
  font-style: italic;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .teaching-studio__quote { font-size: 1.5rem; line-height: 1.55; } }
.teaching-studio__by {
  font-family: var(--font-baskerville);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.6);
  margin: 0;
}
.teaching-studio__cta { margin-top: 0; }

/* Room II — Recent Paintings (homepage): gallery feel */
#room-two {
  overflow-x: hidden;
  position: relative;
  /* Gallery wall: warm off-white with soft top-down light and very subtle centre glow */
  background-color: #F2EDE6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, transparent 25%, transparent 75%, rgba(238, 234, 228, 0.6) 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}
/* Optional: very subtle paper-like texture so the wall doesn’t look flat */
#room-two::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
#room-two .site-container { max-width: 1200px; position: relative; z-index: 1; }
.recent-paintings__empty { padding: 2rem 0; }
.recent-paintings__header { margin-bottom: 2rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-shrink: 0; }
.recent-paintings__label { display: block; margin-bottom: 0.5rem; width: 100%; }
.recent-paintings__heading { font-family: var(--font-cormorant); font-size: 2.25rem; line-height: 1.15; color: var(--indigo); margin: 0; }
@media (min-width: 768px) { .recent-paintings__heading { font-size: 2.75rem; } }
.recent-paintings__heading em { font-style: italic; font-weight: 400; }
.recent-paintings__divider { margin: 0.5rem 0 0; }
.recent-paintings__link { flex-shrink: 0; }
@media (max-width: 767px) { .recent-paintings__link { display: none; } }
.recent-paintings__cta-mobile { display: block; margin-top: 2.5rem; text-align: center; }
@media (min-width: 768px) { .recent-paintings__cta-mobile { display: none; } }
.recent-paintings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .recent-paintings__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
@media (min-width: 900px) {
  .recent-paintings__grid { gap: 2rem; }
}

/* Selected works: gallery wall — uniform grid, framed, stands out */
.recent-paintings__grid--selected {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .recent-paintings__grid--selected {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 900px) {
  .recent-paintings__grid--selected { gap: 2.5rem; }
}

.recent-paintings__grid--selected .recent-paintings__item {
  display: block;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.recent-paintings__grid--selected .recent-paintings__item:hover {
  opacity: 0.96;
  transform: none;
}
.recent-paintings__grid--selected .recent-paintings__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Gallery wall frame: white mount, gold accent, stronger shadow so works stand out */
.recent-paintings__work-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.2),
    0 4px 12px rgba(36, 52, 71, 0.1),
    0 12px 32px rgba(36, 52, 71, 0.12);
  transition: box-shadow 0.3s ease;
}
.recent-paintings__grid--selected .recent-paintings__item:hover .recent-paintings__work-frame {
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.35),
    0 8px 20px rgba(36, 52, 71, 0.12),
    0 20px 48px rgba(36, 52, 71, 0.14);
}
.recent-paintings__work-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Gallery wall label: title + artist — slightly bolder so they read clearly */
.recent-paintings__caption {
  margin-top: 0.875rem;
  padding-left: 2px;
}
.recent-paintings__caption-title {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.recent-paintings__caption-artist {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 52, 71, 0.65);
}

.recent-paintings__grid .recent-paintings__item { min-width: 0; }
.recent-paintings__grid .recent-paintings__frame { width: 100%; }
.recent-paintings__item { display: block; text-decoration: none; color: inherit; transition: transform 0.3s ease; }
.recent-paintings__item:hover { transform: translateY(-2px); }
.recent-paintings__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.recent-paintings__frame {
  background: #fff;
  padding: 0.875rem;
  box-shadow: 0 10px 36px rgba(36, 52, 71, 0.08), 0 0 0 1px rgba(201, 166, 107, 0.1);
  position: relative;
}
.recent-paintings__frame::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 166, 107, 0.18);
  pointer-events: none;
}
.recent-paintings__img-wrap { overflow: hidden; position: relative; }
.recent-paintings__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
  pointer-events: none;
}
.recent-paintings__caption { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid rgba(201, 166, 107, 0.15); }
.recent-paintings__title { font-family: var(--font-cormorant); color: var(--indigo); margin: 0 0 0.25rem; font-size: 1.25rem; }
.recent-paintings__title--lg { font-size: 1.6rem; }
@media (min-width: 768px) { .recent-paintings__title--lg { font-size: 1.75rem; } }
.recent-paintings__meta { font-family: var(--font-baskerville); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(36, 52, 71, 0.55); margin: 0 0 0.5rem; }
.recent-paintings__badge { font-family: var(--font-baskerville); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); border: 1px solid rgba(107, 139, 114, 0.4); padding: 0.25rem 0.5rem; display: inline-block; }

.rule-vertical { display: none; width: 2px; background: linear-gradient(to bottom, transparent, rgba(201, 166, 107, 0.25), transparent); margin: 0 auto; height: 100%; }
@media (min-width: 768px) { .rule-vertical { display: block; } }
.aspect-3-4 { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.gallery-frame.aspect-3-4 .img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* Room I: fills frame, no white bars, part of the design */
.gallery-frame.room-one__frame { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.gallery-frame.room-one__frame .room-one__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.placard { margin-top: 1.25rem; padding-left: 0.25rem; border-left: 2px solid rgba(201, 166, 107, 0.3); }
.placard-label { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.25rem; }
.placard-title { font-size: 0.875rem; color: rgba(36, 52, 71, 0.6); font-style: italic; }
.room-one-left { padding-right: 0; }
@media (min-width: 768px) { .room-one-left { padding-right: clamp(2rem, 4vw, 4rem); } }
.room-one-right { padding-left: 0; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .room-one-right { padding-left: clamp(2rem, 4vw, 4rem); } }
.text-ink-75 { color: rgba(28, 28, 28, 0.75); line-height: 1.95; font-size: 15px; margin-bottom: 1.25rem; }
.text-ink-50 { color: rgba(28, 28, 28, 0.5); }
.flex-end { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; }
.grid-featured { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .grid-featured { grid-template-columns: 3fr 2fr; gap: 1.5rem; } }
.mt-10 { margin-top: 2.5rem; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }
.show-mobile { display: block; }
@media (min-width: 768px) { .show-mobile { display: none; } }
/* Room IV — Art Courses (homepage): same gallery feel as Room II */
.room-four {
  position: relative;
  background-color: #F2EDE6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, transparent 25%, transparent 75%, rgba(238, 234, 228, 0.6) 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}
.room-four::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.room-four .site-container { position: relative; z-index: 1; }
.room-four__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) {
  .room-four__grid {
    grid-template-columns: 0.95fr 1fr;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    align-items: center;
  }
}
.room-four__main { }
.room-four__label { font-family: var(--font-im-fell); font-size: 10px; letter-spacing: 0.4em; color: var(--gold); margin-bottom: 0.5rem; display: block; }
.room-four__title { font-family: var(--font-cormorant); font-size: 2rem; line-height: 1.2; color: var(--indigo); margin: 0 0 1rem; }
@media (min-width: 768px) { .room-four__title { font-size: 2.5rem; } }
.room-four__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.room-four__divider { width: 3rem; height: 1px; background: rgba(201, 166, 107, 0.4); margin: 0 0 1.25rem; }
.room-four__text { font-family: var(--font-baskerville); font-size: 0.9375rem; line-height: 1.75; color: rgba(36, 52, 71, 0.82); margin: 0 0 1rem; }
.room-four__text:last-of-type { margin-bottom: 1.5rem; }
.room-four__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.room-four__btn:focus-visible,
.room-four__link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.room-four__link { color: var(--indigo); }
.room-four__link:hover { color: var(--sage); }
.room-four__gallery { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .room-four__gallery {
    grid-template-rows: auto auto;
    gap: 1.75rem;
    max-width: 380px;
  }
}
/* Gallery-style frames: white mount, gold accent, shadow — images keep aspect ratio */
.room-four__frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.2),
    0 4px 12px rgba(36, 52, 71, 0.1),
    0 12px 32px rgba(36, 52, 71, 0.12);
  transition: box-shadow 0.3s ease;
}
.room-four__frame:hover {
  box-shadow:
    0 0 0 1px rgba(201, 166, 107, 0.35),
    0 8px 20px rgba(36, 52, 71, 0.12),
    0 20px 48px rgba(36, 52, 71, 0.14);
}
.room-four__frame .room-four__img { width: 100%; display: block; height: auto; vertical-align: middle; }
.room-four__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (min-width: 900px) { .room-four__thumbs { gap: 1.5rem; } }
/* Gallery wall labels under Room IV images (when caption is present) */
.room-four__caption { margin-top: 0.875rem; padding-left: 2px; }
.room-four__caption-title {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.room-four__caption-artist {
  display: block;
  font-family: var(--font-baskerville);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 52, 71, 0.65);
}
.max-w-xl { max-width: 36rem; }
.text-gold-70 { color: rgba(201, 166, 107, 0.7); font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
@media (min-width: 768px) { .md-text-6xl { font-size: 3.75rem; } }
.text-parchment { color: var(--parchment); }
.text-parchment-70 { color: rgba(250, 247, 240, 0.7); line-height: 1.9; font-size: 15px; }
.text-parchment-60 { color: rgba(250, 247, 240, 0.6); }
.text-parchment-60:hover { color: var(--parchment); }
.bg-gold-50 { background: rgba(201, 166, 107, 0.5); }
.w-12 { width: 3rem; }
.h-px { height: 1px; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.flex { display: flex; flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.font-light { font-weight: 400; }
.text-gold { color: var(--gold); }
.text-indigo { color: var(--indigo); }
.text-5xl { font-size: 3rem; line-height: 1; }
@media (min-width: 768px) { .md-text-7xl { font-size: 4.5rem; } }
.md-text-5xl { font-size: 2.25rem; }
@media (min-width: 768px) { .md-text-5xl { font-size: 2.5rem; } }
.tracking-widest { letter-spacing: 0.2em; }
.text-parchment-50 { color: rgba(250, 247, 240, 0.5); }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }

.page-hero { position: relative; height: 55vh; min-height: 400px; display: flex; align-items: flex-end; padding-bottom: 3.5rem; overflow: hidden; }
@media (max-width: 767px) {
  .page-hero {
    height: 42vh;
    min-height: 240px;
    padding-bottom: 1.5rem;
  }
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(36,52,71,0.2), rgba(36,52,71,0.4), rgba(36,52,71,0.85)); }
/* Tour theme: consistent hero overlay so glass card reads well on all inner pages */
.tour-theme .page-hero .page-hero-overlay { background: linear-gradient(to bottom, rgba(36,52,71,0.25), rgba(36,52,71,0.4), rgba(36,52,71,0.88)); }
.page-hero-content { position: relative; z-index: 1; }

/* Tour theme: inner pages match gallery tour (glassy hero, consistent labels) */
.tour-theme .page-hero-content {
  background: rgba(36, 52, 71, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
}
@media (min-width: 768px) {
  .tour-theme .page-hero-content {
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 2rem;
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.tour-theme .page-hero .font-accent,
.tour-theme .section-header .section-label {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.tour-theme .section-header .section-label { display: block; margin-bottom: 0.5rem; }
.about-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.about-statement { display: flex; flex-direction: column; justify-content: center; }
.about-statement .text-ink-75 { margin-bottom: 1.25rem; }
.border-b {
  border-bottom: 1px solid rgba(201, 166, 107, 0.2);
  box-shadow: 0 1px 0 0 rgba(250, 247, 240, 0.4);
}
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.text-2xl { font-size: 1.5rem; }
.leading-relaxed { line-height: 1.625; }
.text-sm { font-size: 0.875rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.border-t {
  border-top: 1px solid rgba(201, 166, 107, 0.2);
  box-shadow: 0 -1px 0 0 rgba(250, 247, 240, 0.4);
}
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.mt-3 { margin-top: 0.75rem; }
.max-w-md { max-width: 28rem; }
.text-14 { font-size: 14px; }
.flex-shrink-0 { flex-shrink: 0; }
.leading-none { line-height: 1; }
.text-ink-55 { color: rgba(28, 28, 28, 0.55); }
.text-ink-60 { color: rgba(28, 28, 28, 0.6); }
.text-ink-80 { color: rgba(28, 28, 28, 0.8); }
.text-ink-35 { color: rgba(28, 28, 28, 0.35); }
.text-ink-40 { color: rgba(28, 28, 28, 0.4); }
.text-9 { font-size: 9px; }
.text-10 { font-size: 10px; }
.text-14 { font-size: 14px; }
.text-indigo-30 { color: rgba(36, 52, 71, 0.3); }
.tracking-wide { letter-spacing: 0.2em; }
.space-y-7 > * + * { margin-top: 1.75rem; }
.hover-sage:hover { color: var(--sage); }
.contact-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 2px 2fr; } }
.contact-details { padding-right: 0; }
@media (min-width: 768px) { .contact-details { padding-right: 3.5rem; } }
.contact-form-wrap { padding-left: 0; }
@media (min-width: 768px) { .contact-form-wrap { padding-left: 3.5rem; } }
.form-label { font-family: var(--font-baskerville); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(28,28,28,0.5); display: block; margin-bottom: 0.625rem; }
.form-input { width: 100%; border: 1px solid rgba(28,28,28,0.2); background: transparent; font-family: var(--font-baskerville); font-size: 0.875rem; color: var(--ink); padding: 0.75rem 1rem; margin-bottom: 1rem; transition: border-color 0.25s ease; }
.form-input:focus { outline: none; border-color: var(--indigo); }
.form-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  cursor: pointer;
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23243447' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: transparent;
}
.form-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23243447' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
.form-select:hover {
  border-color: rgba(28, 28, 28, 0.35);
}
.form-status { margin-top: 1rem; font-family: var(--font-baskerville); font-size: 0.875rem; }
.space-y-14 > * + * { margin-top: 3.5rem; }
.pb-4 { padding-bottom: 1rem; }
.faq-item { margin-bottom: 1.5rem; }
.text-xl { font-size: 1.25rem; }
.student-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; min-height: 20rem; }
@media (min-width: 768px) { .student-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .student-grid { grid-template-columns: repeat(3, 1fr); } }
.student-gallery__item { min-width: 0; }
.student-gallery__card { display: flex; flex-direction: column; height: 100%; }
.student-gallery__frame { aspect-ratio: 4/3; position: relative; overflow: hidden; margin-bottom: 1.25rem; }
.student-gallery__frame .img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.student-gallery__quote { margin: 0 0 1rem; padding-left: 1rem; border-left: 2px solid rgba(201,166,107,0.3); }
.commissions-list__item { margin-bottom: 1.25rem; padding-left: 1rem; border-left: 2px solid rgba(201,166,107,0.25); }
.commissions-list__item:last-child { margin-bottom: 0; }
.student-gallery__meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(201,166,107,0.15); }
.student-gallery__meta p { margin: 0 0 0.25rem; }
.student-gallery__meta p:last-child { margin-bottom: 0; }
.courses-hero .page-hero-overlay { background: linear-gradient(to bottom, rgba(36,52,71,0.15), rgba(36,52,71,0.3), rgba(36,52,71,0.85)); }

/* Exhibitions page — gallery theme */
/* Exhibitions intro: same gallery wall as list section, framed card */
.exhibitions-intro {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #F2EDE6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, transparent 25%, transparent 75%, rgba(238, 234, 228, 0.6) 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}
.exhibitions-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.exhibitions-intro .site-container { position: relative; z-index: 1; display: flex; justify-content: center; }
.exhibitions-intro__card {
  max-width: 40rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid rgba(201, 166, 107, 0.2);
  box-shadow: 0 2px 12px rgba(36, 52, 71, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8);
  padding: 2rem 2rem 2.25rem;
}
.exhibitions-intro__label {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.exhibitions-intro__divider { margin: 0 0 1.25rem; }
.exhibitions-intro__text {
  font-family: var(--font-baskerville);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(36, 52, 71, 0.82);
  margin: 0;
}

.exhibitions-list-section {
  position: relative;
  background-color: #F2EDE6;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95) 0%, transparent 25%, transparent 75%, rgba(238, 234, 228, 0.6) 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}
.exhibitions-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' /%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.exhibitions-list-section .site-container { position: relative; z-index: 1; }

.exhibitions-block { margin-bottom: 3.5rem; }
.exhibitions-block + .exhibitions-block { margin-top: 3rem; }
.exhibitions-block:last-child { margin-bottom: 0; }
.exhibitions-block__header { margin-bottom: 2rem; }
.exhibitions-block__label {
  font-family: var(--font-im-fell);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.exhibitions-block__heading {
  font-family: var(--font-cormorant);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--indigo);
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) { .exhibitions-block__heading { font-size: 2.25rem; } }
.exhibitions-block__divider { margin: 0 0 0; }

.exhibitions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .exhibitions-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .exhibitions-grid { gap: 1.5rem; }
}

.exhibition-card {
  background: #fff;
  border: 1px solid rgba(201, 166, 107, 0.2);
  box-shadow: 0 2px 12px rgba(36, 52, 71, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8);
  padding: 1.25rem 1.5rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.exhibition-card:hover {
  border-color: rgba(201, 166, 107, 0.35);
  box-shadow: 0 4px 20px rgba(36, 52, 71, 0.08), 0 0 0 1px rgba(201, 166, 107, 0.15);
}
.exhibition-card__title {
  font-family: var(--font-cormorant);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--indigo);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}
.exhibition-card__meta {
  font-family: var(--font-baskerville);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(36, 52, 71, 0.6);
  margin: 0 0 0.5rem;
}
.exhibition-card__desc {
  font-family: var(--font-baskerville);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(36, 52, 71, 0.75);
  margin: 0;
}

.exhibitions-press {
  background: var(--parchment);
  border-top: 1px solid rgba(201, 166, 107, 0.15);
}
.exhibitions-press .site-container { display: flex; justify-content: center; }
.exhibitions-press__card {
  max-width: 36rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid rgba(201, 166, 107, 0.2);
  box-shadow: 0 4px 20px rgba(36, 52, 71, 0.06);
  padding: 2rem 2rem 2.25rem;
}
.exhibitions-press__card .section-header { margin-bottom: 1.25rem; }
.exhibitions-press__card .font-body { margin-bottom: 1.5rem; }

.text-center { text-align: center; }
.w-full { width: 100%; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.bg-gold { background: var(--gold); }
.form-error { color: #b91c1c; font-size: 0.875rem; margin-bottom: 0.5rem; }
.admin-body { padding-top: 0; }
.admin-login-wrap { min-height: 100vh; background: var(--parchment); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.admin-login-box { width: 100%; max-width: 24rem; }
.admin-login-form .form-input { margin-bottom: 1rem; }
.admin-header { background: var(--indigo); color: var(--parchment); }
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.admin-header-actions { display: flex; align-items: center; gap: 1.5rem; }
.admin-header-link { font-family: var(--font-baskerville); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,247,240,0.6); background: none; border: none; cursor: pointer; text-decoration: none; padding: 0; }
.admin-header-link:hover { color: var(--gold); }
.admin-tabs { background: #fff; border-bottom: 1px solid rgba(201,166,107,0.2); }
.admin-tabs .site-container { padding-left: 0; padding-right: 0; max-width: none; }
@media (min-width: 900px) {
  .admin-tabs .site-container { padding-left: 2.5rem; padding-right: 2.5rem; max-width: var(--max-site); margin-left: auto; margin-right: auto; }
}
.admin-tab-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.admin-tab {
  flex-shrink: 0;
  white-space: nowrap;
  scroll-snap-align: start;
  font-family: var(--font-baskerville);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  color: rgba(28,28,28,0.4);
  transition: all 0.3s;
}
.admin-tab:hover { color: var(--ink); }
.admin-tab.active { border-bottom-color: var(--sage); color: var(--sage); }
.admin-content { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-guide { background: rgba(201,166,107,0.15); border-left: 4px solid var(--sage); padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-radius: 0 4px 4px 0; }
.admin-guide h4 { font-family: var(--font-baskerville); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; }
.admin-guide p { font-size: 0.9rem; line-height: 1.6; color: var(--ink); margin: 0; }
.admin-guide ol { margin: 0.5rem 0 0 1.25rem; padding: 0; font-size: 0.9rem; line-height: 1.7; }
.admin-guide li { margin-bottom: 0.25rem; }
.admin-guide strong { color: var(--indigo); }
.admin-slot-hint { font-size: 0.8rem; color: var(--ink); opacity: 0.7; margin-top: 0.25rem; }
.admin-field-hint { font-size: 0.75rem; color: var(--ink); opacity: 0.6; margin-top: 0.25rem; }
.admin-site-text-card {
  border: 1px solid rgba(201, 166, 107, 0.28);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
}
[data-site-content] { white-space: pre-wrap; }
.text-13 { font-size: 13px; }
