@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --clr-bg: #FBF6EE;
  --clr-bg-alt: #F3E9D8;
  --clr-ink: #2B2420;
  --clr-ink-soft: #524840;
  --clr-primary: #7A4B33;
  --clr-primary-dark: #5B3624;
  --clr-primary-light: #C98C5B;
  --clr-accent: #A9714F;
  --clr-accent-2: #6B8068;
  --clr-accent-3: #C0A570;
  --clr-card: #FFFDF9;
  --clr-border: #E4D7C2;
  --clr-white: #FFFCF7;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --shadow-sm: 0 1px 2px rgba(43,36,32,0.06), 0 2px 6px rgba(43,36,32,0.05);
  --shadow-md: 0 4px 10px rgba(90,54,36,0.08), 0 12px 28px rgba(90,54,36,0.10);
  --shadow-lg: 0 10px 24px rgba(90,54,36,0.12), 0 24px 56px rgba(90,54,36,0.14);
  --shadow-inset: inset 0 1px 0 rgba(255,255,255,0.4);

  --font-head: 'Clash Display', 'DM Sans', sans-serif;
  --font-body: 'Satoshi', 'DM Sans', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--clr-ink);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; margin: 0; color: var(--clr-ink); font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.canvas { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }


.stage-noise, .gallery-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.stage-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  padding: 1.1rem 1.25rem 0;
  transition: transform 0.4s var(--ease);
}
.stage-nav.nav-hidden { transform: translateY(-130%); }
.stage-nav-box {
  width: 100%;
  max-width: 1180px;
  background: rgba(255,252,247,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
}
.stage-nav-logo img { display: block; }
.stage-nav-links { display: flex; align-items: center; gap: 0.4rem; }
.stage-nav-links a {
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--clr-ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}
.stage-nav-links a:hover, .stage-nav-links a.active {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.stage-nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: none; background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.stage-nav-toggle:hover { transform: scale(1.06); }


.stage-curtain {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.stage-curtain.open { visibility: visible; opacity: 1; }
.drawer {
  height: 100%;
  background: linear-gradient(155deg, #5B3624 0%, #7A4B33 55%, #6B8068 130%);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 3rem;
  position: relative;
}
.drawer::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-logo img { filter: brightness(0) invert(1); }
.drawer-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease);
}
.drawer-close:hover { background: rgba(255,255,255,0.2); }
.drawer-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.drawer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.2rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 600;
  font-size: 1.02rem;
  text-align: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.drawer-item i { font-size: 1.6rem; }
.drawer-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }


.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 44px;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm), 0 8px 20px rgba(90,54,36,0.25);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md), 0 14px 30px rgba(90,54,36,0.3); background: var(--clr-primary-dark); }
.btn-ghost {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.btn-ghost:hover { background: var(--clr-primary); color: var(--clr-white); transform: translateY(-3px); }
.btn-ghost-light { color: var(--clr-white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: var(--clr-white); color: var(--clr-primary-dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-small { padding: 0.6rem 1.1rem; font-size: 0.85rem; }


.stage {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 9rem) 1.5rem clamp(3rem, 6vw, 5rem);
  background: linear-gradient(150deg, #F3E9D8 0%, #EADFC9 55%, #E4D5BC 100%);
}
.stage-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.stage-inner-reverse { grid-template-columns: 0.95fr 1.05fr; }
.stage-inner-reverse .stage-visual { order: -1; }
.stage-inner-page { grid-template-columns: 1.1fr 0.9fr; }
.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(122,75,51,0.1);
  border: 1px solid rgba(122,75,51,0.25);
  color: var(--clr-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.stage-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.stage-content h1 span { color: var(--clr-primary); }
.stage-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--clr-ink-soft);
  max-width: 560px;
  margin-bottom: 2rem;
}
.stage-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.stage-actions-center { justify-content: center; }
.stage-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.stage-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--clr-ink-soft); font-size: 0.98rem; }
.stage-list i { color: var(--clr-accent-2); margin-top: 0.2rem; }

.stage-visual { position: relative; }
.stage-visual-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
  border: 6px solid var(--clr-white);
}
.stage-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.stage-visual-frame-alt { aspect-ratio: 5/4; }
.stage-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.stage-shape-1 { width: 160px; height: 160px; background: radial-gradient(circle, var(--clr-accent-3), transparent 70%); top: -40px; right: -50px; opacity: 0.6; }
.stage-shape-2 { width: 220px; height: 220px; background: radial-gradient(circle, var(--clr-accent-2), transparent 70%); bottom: -60px; left: -60px; opacity: 0.5; }
.stage-shape-3 { width: 180px; height: 180px; background: radial-gradient(circle, var(--clr-primary-light), transparent 70%); top: 20%; left: -40px; opacity: 0.5; }
.stage-badge {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.stage-badge i { color: var(--clr-accent); }

.stage-secondary { background: linear-gradient(150deg, #EFE4D0 0%, #E9DDC4 60%, #E4D9C6 100%); }
.stage-page { padding-bottom: clamp(3.5rem, 6vw, 5.5rem); }
.stage-page-short { padding-bottom: 2rem; }

.stage-cta {
  background: linear-gradient(140deg, #5B3624 0%, #7A4B33 60%, #6B8068 130%);
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}
.stage-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.stage-cta h2 { color: var(--clr-white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.25rem; }
.stage-cta p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }


.gallery { padding: var(--space-2xl) 1.5rem; position: relative; }
.gallery-inner { max-width: 1180px; margin: 0 auto; }
.gallery-head { max-width: 680px; margin-bottom: var(--space-lg); }
.gallery-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.spotlight-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.gallery-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.gallery-sub { color: var(--clr-ink-soft); font-size: 1.05rem; }

.gallery-grid { display: grid; gap: 1.75rem; }
.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid-4 { grid-template-columns: repeat(4, 1fr); }

.shelf-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.shelf-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem;
  width: 44px; height: 4px;
  border-radius: var(--radius-pill);
  background: var(--clr-accent-3);
}
.shelf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shelf-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, var(--clr-primary), var(--clr-accent));
  color: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.shelf-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.shelf-card p { color: var(--clr-ink-soft); font-size: 0.98rem; }

.gallery-stats { background: var(--clr-bg-alt); border-radius: var(--radius-xl); margin: 0 1rem; }
.gallery-stats-grid { margin-top: 1rem; }
.spotlight-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--clr-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.spotlight-count { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.2rem); color: var(--clr-primary); font-weight: 700; }
.spotlight-plus { font-family: var(--font-head); font-size: 2rem; color: var(--clr-primary); }
.spotlight-stat p { color: var(--clr-ink-soft); font-size: 0.92rem; margin-top: 0.5rem; }


.drawer-timeline { position: relative; padding-left: 2.5rem; }
.drawer-timeline-line {
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 3px;
  background: linear-gradient(var(--clr-accent-3), var(--clr-primary));
  border-radius: var(--radius-pill);
}
.drawer-timeline-item { position: relative; padding-bottom: 2.75rem; }
.drawer-timeline-item:last-child { padding-bottom: 0; }
.drawer-timeline-dot {
  position: absolute;
  left: -2.5rem; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--clr-primary);
  border: 4px solid var(--clr-bg);
  box-shadow: 0 0 0 2px var(--clr-accent-3);
}
.drawer-timeline-date { font-family: var(--font-head); font-weight: 600; color: var(--clr-accent); margin-bottom: 0.4rem; }
.drawer-timeline-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.drawer-timeline-content h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.drawer-timeline-content p { color: var(--clr-ink-soft); font-size: 0.96rem; }


.gallery-split-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gallery-split-reverse .gallery-split-inner { grid-template-columns: 1.1fr 0.9fr; }
.gallery-split-reverse .gallery-split-content { order: -1; }
.gallery-split-visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--clr-white); }
.gallery-split-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-split-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 0.75rem 0 1.25rem; }
.gallery-split-content p { color: var(--clr-ink-soft); margin-bottom: 1rem; font-size: 1.02rem; }
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-top: 0.5rem;
  position: relative;
  padding-bottom: 2px;
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--clr-primary);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }


.shelf-wide {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.shelf-wide:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.shelf-wide-img img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.shelf-wide-text { padding: 1.5rem 1.75rem 1.5rem 0; display: flex; flex-direction: column; justify-content: center; }
.shelf-wide-text h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.shelf-wide-text p { color: var(--clr-ink-soft); font-size: 0.96rem; }
.shelf-wide-simple { grid-template-columns: 1fr; }
.shelf-wide-simple .shelf-wide-text { padding: 1.75rem 2rem; }


.gallery-articles-alt { background: var(--clr-bg-alt); border-radius: var(--radius-xl); margin: 0 1rem var(--space-lg); padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.shelf-article {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.shelf-article:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.shelf-article-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(122,75,51,0.12);
  color: var(--clr-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.shelf-article-tag-alt { background: rgba(169,113,79,0.15); color: var(--clr-accent); }
.shelf-article-tag-green { background: rgba(107,128,104,0.15); color: var(--clr-accent-2); }
.shelf-article h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.shelf-article p { color: var(--clr-ink-soft); font-size: 0.95rem; }


.shelf-audience {
  display: grid;
  grid-template-columns: 60px 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--clr-border);
}
.shelf-audience:last-child { border-bottom: none; }
.shelf-audience-reverse { grid-template-columns: 60px 1.2fr 1fr; }
.shelf-audience-reverse .shelf-audience-img { order: 2; }
.shelf-audience-reverse .shelf-audience-text { order: 1; }
.shelf-audience-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--clr-accent-3);
  font-weight: 700;
}
.shelf-audience-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.shelf-audience-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.shelf-audience-text h3 { font-size: 1.4rem; margin-bottom: 0.85rem; }
.shelf-audience-text p { color: var(--clr-ink-soft); font-size: 1rem; }


.gallery-contact-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.gallery-contact-form {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
.gallery-contact-form h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.gallery-contact-note { color: var(--clr-ink-soft); margin-bottom: 1.75rem; font-size: 0.95rem; }
.shelf-field { margin-bottom: 1.4rem; }
.shelf-field label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 0.95rem; }
.shelf-field input[type="text"],
.shelf-field input[type="email"],
.shelf-field input[type="tel"],
.shelf-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--clr-ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 44px;
}
.shelf-field textarea { min-height: 120px; resize: vertical; }
.shelf-field input:focus, .shelf-field textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(122,75,51,0.15);
}
.shelf-field-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.shelf-field-checkbox input { width: 20px; height: 20px; margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--clr-primary); }
.shelf-field-checkbox label { font-weight: 400; font-size: 0.9rem; color: var(--clr-ink-soft); }
.shelf-field-checkbox a { color: var(--clr-primary); font-weight: 600; }

.gallery-contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.spotlight-info-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.spotlight-info-card h3 { font-size: 1rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; color: var(--clr-primary); }
.spotlight-info-card p { color: var(--clr-ink-soft); font-size: 0.98rem; }
.spotlight-info-card a { color: var(--clr-ink); font-weight: 600; }
.spotlight-info-card a:hover { color: var(--clr-primary); }
.spotlight-info-card-hours ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.spotlight-info-card-hours li { display: flex; justify-content: space-between; font-size: 0.92rem; border-bottom: 1px dashed var(--clr-border); padding-bottom: 0.4rem; }
.spotlight-info-note { font-size: 0.85rem; font-style: italic; color: var(--clr-ink-soft); }

.gallery-map { padding-top: 0; }
.spotlight-map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--clr-white); }
.spotlight-map-frame iframe { display: block; width: 100%; }


.stage-thanks { text-align: center; }
.stage-thanks-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.spotlight-check {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--clr-accent-2), var(--clr-primary));
  color: var(--clr-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 1.75rem;
  box-shadow: var(--shadow-lg);
}
.stage-thanks h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.stage-thanks-grid { margin: 2.5rem 0; text-align: left; }


.stage-legal { text-align: left; padding-bottom: 3rem; }
.stage-legal-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.stage-legal-inner h1 { font-size: clamp(2.2rem, 4.5vw, 3rem); margin: 0.75rem 0; }
.stage-legal-date { color: var(--clr-ink-soft); font-size: 0.95rem; }
.gallery-legal { padding-top: var(--space-lg); }
.gallery-legal-inner { max-width: 800px; display: flex; flex-direction: column; gap: 2.25rem; }
.drawer-legal-block h2 { font-size: 1.4rem; margin-bottom: 0.9rem; }
.drawer-legal-block p:not(.drawer-legal-summary) { color: var(--clr-ink-soft); font-size: 1rem; }
.drawer-legal-summary {
  display: inline-block;
  font-weight: 700;
  background: rgba(122,75,51,0.1);
  border-left: 4px solid var(--clr-primary);
  padding: 0.85rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-primary-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}


.canvas-footer {
  background: linear-gradient(150deg, #3E2A1D 0%, #5B3624 100%);
  color: rgba(255,255,255,0.85);
  padding: var(--space-xl) 1.5rem var(--space-md);
  margin-top: auto;
}
.canvas-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.canvas-footer-brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }
.canvas-footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.65); max-width: 280px; }
.canvas-footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.canvas-footer-col a, .canvas-footer-col p {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s var(--ease);
}
.canvas-footer-col a:hover { color: var(--clr-accent-3); }
.canvas-footer-col p i { margin-right: 0.5rem; color: var(--clr-accent-3); }
.canvas-footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 1.5rem; text-align: center; }
.canvas-footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }


.drawer-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--clr-card);
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -10px 30px rgba(43,36,32,0.15);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.drawer-cookie.visible { transform: translateY(0); }
.drawer-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
}
.drawer-cookie-left h4 { font-size: 1.05rem; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; color: var(--clr-primary); }
.drawer-cookie-left p { font-size: 0.9rem; color: var(--clr-ink-soft); }
.drawer-cookie-left a { color: var(--clr-primary); font-weight: 600; }
.drawer-cookie-right { display: flex; flex-direction: column; gap: 1rem; border-left: 1px solid var(--clr-border); padding-left: 2rem; }
.drawer-cookie-toggles { display: flex; flex-wrap: wrap; gap: 1rem; }
.drawer-toggle { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; }
.drawer-toggle input { width: 18px; height: 18px; accent-color: var(--clr-primary); }
.drawer-cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }


@media (max-width: 1024px) {
  .stage-inner, .stage-inner-page, .gallery-split-inner, .gallery-split-reverse .gallery-split-inner {
    grid-template-columns: 1fr;
  }
  .stage-inner-reverse .stage-visual, .gallery-split-reverse .gallery-split-content { order: 0; }
  .gallery-grid-3, .gallery-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-contact-inner { grid-template-columns: 1fr; }
  .shelf-audience, .shelf-audience-reverse { grid-template-columns: 50px 1fr; }
  .shelf-audience-img, .shelf-audience-reverse .shelf-audience-img { order: 0; grid-column: 2; grid-row: 1; }
  .shelf-audience-text, .shelf-audience-reverse .shelf-audience-text { order: 0; grid-column: 1 / -1; grid-row: 2; }
  .shelf-wide { grid-template-columns: 1fr; }
  .shelf-wide-img img { min-height: 200px; }
  .canvas-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .stage-nav-links { display: none; }
  .stage-nav-toggle { display: flex; }
  .gallery-grid-2, .gallery-grid-3, .gallery-grid-4 { grid-template-columns: 1fr; }
  .stage-actions { flex-direction: column; align-items: stretch; }
  .stage-actions .btn-primary, .stage-actions .btn-ghost { justify-content: center; }
  .stage-actions-center { flex-direction: column; align-items: center; }
  .drawer-cookie-inner { grid-template-columns: 1fr; padding: 1.5rem; }
  .drawer-cookie-right { border-left: none; padding-left: 0; border-top: 1px solid var(--clr-border); padding-top: 1.25rem; }
  .canvas-footer-inner { grid-template-columns: 1fr; text-align: left; }
  .stage-visual-frame { aspect-ratio: 4/4; }
  .shelf-audience-num { display: none; }
  .shelf-audience, .shelf-audience-reverse { grid-template-columns: 1fr; }
  .shelf-audience-img, .shelf-audience-reverse .shelf-audience-img { grid-column: 1; grid-row: 1; }
  .shelf-audience-text, .shelf-audience-reverse .shelf-audience-text { grid-column: 1; grid-row: 2; }
  .stage-badge { display: none; }
}

@media (max-width: 420px) {
  .drawer-grid { gap: 0.75rem; }
  .drawer-item { padding: 1.5rem 0.75rem; }
}