:root {
  --bg: #0a0a0a;
  --fg: #e8e8e8;
  --muted: #8a8a8a;
  --soft: #c4c4c4;
  --ink: #111;
  --tile-a: #0e0e0e;
  --tile-b: #f2f2f2;
  --surface: #161616;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

body.lightbox-open { overflow: hidden; }

/* Black & white polka dots — up + down */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #0a0a0a;
}

.dots {
  position: absolute;
  inset: -25%;
  opacity: 0.55;
}

.dots-up {
  background-image:
    radial-gradient(circle, #f0f0f0 1.35px, transparent 1.55px),
    radial-gradient(circle, #2a2a2a 1.1px, transparent 1.3px);
  background-size: 28px 28px, 44px 44px;
  background-position: 0 0, 14px 10px;
  animation: drift-up 52s linear infinite;
}

.dots-down {
  background-image:
    radial-gradient(circle, #1a1a1a 1.5px, transparent 1.7px),
    radial-gradient(circle, #9a9a9a 1px, transparent 1.2px);
  background-size: 36px 36px, 22px 22px;
  background-position: 8px 0, 0 12px;
  opacity: 0.4;
  animation: drift-down 64s linear infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 30%, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes drift-up {
  from { background-position: 0 0, 14px 10px; }
  to { background-position: 0 -360px, 14px -350px; }
}

@keyframes drift-down {
  from { background-position: 8px 0, 0 12px; }
  to { background-position: 8px 360px, 0 372px; }
}

.page {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Bathroom floor tile frame */
.tile-frame {
  position: relative;
  padding: 10px;
  background:
    repeating-conic-gradient(#0e0e0e 0% 25%, #f2f2f2 0% 50%)
    0 0 / 14px 14px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tile-inner {
  background: var(--surface);
  padding: 1.15rem 1.2rem 1.25rem;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bio {
  max-width: 28rem;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.bio-text {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Title on 600×240 blurred plate */
.title-block {
  position: relative;
  display: inline-block;
  width: min(100%, 600px);
  margin: 0 auto;
  line-height: 0;
}

.title-plate {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  aspect-ratio: 600 / 240;
  object-fit: cover;
  filter: blur(0.6px) brightness(0.72) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.9),
    0 2px 0 #000,
    0 0 18px rgba(0, 0, 0, 0.85),
    0 0 36px rgba(20, 20, 20, 0.7),
    0 0 4px rgba(200, 200, 200, 0.25);
  line-height: 1.1;
  animation: eerie-glow 4.5s ease-in-out infinite;
}

@keyframes eerie-glow {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(0, 0, 0, 0.9),
      0 2px 0 #000,
      0 0 16px rgba(0, 0, 0, 0.8),
      0 0 4px rgba(180, 180, 180, 0.2);
  }
  50% {
    text-shadow:
      0 0 2px rgba(0, 0, 0, 0.95),
      0 2px 0 #000,
      0 0 22px rgba(255, 255, 255, 0.18),
      0 0 40px rgba(0, 0, 0, 0.9),
      0 0 8px rgba(220, 220, 220, 0.35);
  }
}

.lede {
  margin: 1.25rem auto 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.gallery-section {
  flex: 1 1 auto;
  min-width: 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr 1fr; }
}

.card {
  background: transparent;
}

.frame-wrap {
  padding: 8px;
  background:
    repeating-conic-gradient(#0e0e0e 0% 25%, #f2f2f2 0% 50%)
    0 0 / 12px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  width: 100%;
  padding: 0;
  border: none;
  background: #0c0c0c;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
  font: inherit;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.frame:hover { transform: scale(1.015); }
.frame:disabled { cursor: default; }
.frame:disabled:hover { transform: none; }

.frame img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.frame.has-image img { display: block; }
.frame.has-image .placeholder { display: none; }

.placeholder {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0.75rem;
}

.placeholder small {
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.7rem;
  opacity: 0.8;
}

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

.meta h2 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
}

.meta p {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.side {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .side {
    width: 20rem;
    position: sticky;
    top: 1rem;
  }
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: #f0f0f0;
  text-align: center;
}

.price-group {
  margin: 0.9rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d0d0d0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.7rem;
}

.price-group:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0.25rem;
}

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.32rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.price-list li:last-child { border-bottom: none; }

.price-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.price-note {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.tos-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--soft);
}

.tos-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.tos-list li:last-child { border-bottom: none; }

.tos-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Smooth lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0);
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    background 0.4s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox[hidden] {
  display: flex !important;
  pointer-events: none;
}

.lightbox:not([hidden]) { pointer-events: auto; }

.lightbox-img {
  max-width: min(94vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 24px 60px rgba(0, 0, 0, 0.65);
}

.lightbox.is-open .lightbox-img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: #eee;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease 0.05s, color 0.2s ease;
}

.lightbox.is-open .lightbox-close { opacity: 0.85; }
.lightbox-close:hover { opacity: 1; color: #fff; }

@media (max-width: 599px) {
  .page { padding: 1.25rem 0.75rem 3rem; }
  .title { letter-spacing: 0.14em; }
}

@media (prefers-reduced-motion: reduce) {
  .dots-up, .dots-down, .title { animation: none; }
  .lightbox, .lightbox-img, .lightbox-close, .frame { transition: none; }
}


/* Collapsible price panels */
.collapse-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.35rem 0.15rem 0.45rem;
  border: none;
  background: transparent;
  color: #f0f0f0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.collapse-btn:hover {
  color: #fff;
}

.collapse-icon {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: var(--soft);
  transition: transform 0.25s ease;
}

.collapse-btn[aria-expanded="true"] .collapse-icon {
  transform: rotate(45deg);
  color: #fff;
}

.collapse-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.collapse-body.is-open {
  max-height: 80rem;
  opacity: 1;
  margin-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.65rem;
}

.collapse-body[hidden] {
  display: block !important;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  pointer-events: none;
}

.collapse-body.is-open[hidden] {
  pointer-events: auto;
}
