:root {
  --paper: #efe6d8;
  --sheet: #f7f0e6;
  --ink: #2b221f;
  --muted: #6d6259;
  --lavender: #6a5568;
  --petal: #b48eab;
  --sage: #5a6a56;
  --clay: #c2785c;
  --line: rgba(43, 34, 31, 0.14);
  --shadow: 0 18px 50px rgba(43, 34, 31, 0.12);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.55 var(--sans);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(180, 142, 171, 0.16), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(90, 106, 86, 0.1), transparent 24%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 230, 216, 0.94);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.04em;
}
.brand svg { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { opacity: 0.78; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 10px 16px;
  background: var(--ink);
  color: #f7f0e6;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  background: var(--ink);
  color: var(--sheet);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 28px 0 12px;
  align-items: stretch;
}
.hero-photo {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background: #c9b7a6;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(43, 34, 31, 0.38));
}
.ticket {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  background: var(--sheet);
  padding: 16px 18px;
  width: min(280px, calc(100% - 44px));
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.ticket strong { display: block; font-size: 22px; font-family: var(--serif); }
.ticket span { color: var(--muted); font-size: 13px; }
.stamp {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(247, 240, 230, 0.85);
  border-radius: 50%;
  color: #f7f0e6;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  background: rgba(43, 34, 31, 0.28);
}
.hero-copy {
  padding: 18px 8px 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lavender);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 14px 0 18px;
}
.hero h1 em {
  display: block;
  font-style: italic;
  color: var(--lavender);
}
.lede {
  font-size: 18px;
  max-width: 460px;
  color: #433933;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  font-size: 14px;
}
.btn.solid { background: var(--ink); color: var(--sheet); }
.btn.ghost { background: transparent; }
.btn.sage { background: var(--sage); color: #f4f6f1; border-color: var(--sage); }
.btn:hover { transform: translateY(-1px); }
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.facts div { padding-right: 16px; }
.facts b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.facts span { font-size: 13px; color: var(--muted); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  margin: 18px 0 8px;
  background: rgba(247, 240, 230, 0.55);
}
.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: slide 28s linear infinite;
  padding: 13px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}
@keyframes slide {
  to { transform: translateX(-50%); }
}

.section { padding: 86px 0; }
.section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 10px 0 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head p { margin: 0; color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-photos figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
}
.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photos figure:first-child {
  grid-row: span 2;
  min-height: 420px;
  transform: rotate(-1deg);
}
.about-photos figure:nth-child(2),
.about-photos figure:nth-child(3) { min-height: 200px; }
.about-copy p { font-size: 17px; }
.teachers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.teacher {
  border: 1px solid var(--line);
  padding: 16px;
  background: rgba(247, 240, 230, 0.7);
}
.teacher small {
  display: block;
  color: var(--lavender);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 6px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.filter.active,
.filter:hover {
  background: var(--ink);
  color: var(--sheet);
  border-color: var(--ink);
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.course {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 230, 0.45);
  display: flex;
  flex-direction: column;
}
.course:hover { background: #fffaf3; }
.course .num {
  font-size: 12px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.08em;
}
.course h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin: 18px 0 10px;
  letter-spacing: -0.03em;
}
.course p { margin: 0 0 18px; color: var(--muted); }
.course .ask {
  margin-top: auto;
  background: none;
  border: 0;
  padding: 0;
  color: var(--lavender);
  font-weight: 600;
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #cfc3b4;
  cursor: zoom-in;
}
.shot:first-child { grid-row: span 2; }
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.ig-banner {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--sheet);
  border-radius: 16px;
}
.ig-banner p { margin: 0; max-width: 640px; color: rgba(247,240,230,.78); }
.ig-banner strong { display: block; color: #fff; margin-bottom: 4px; }

.party {
  background: #2b221f;
  color: #f4ece1;
}
.party .kicker { color: #d7b4cf; }
.party .section-head p { color: rgba(244, 236, 225, 0.68); }
.party-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}
.party-card {
  padding: 26px;
  border: 1px solid rgba(244, 236, 225, 0.16);
  min-height: 220px;
}
.party-card:first-child {
  background: url("../images/lavender.jpg") center/cover;
  position: relative;
  overflow: hidden;
}
.party-card:first-child:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,34,31,.15), rgba(43,34,31,.78));
}
.party-card:first-child > * { position: relative; z-index: 1; }
.party-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin: 40px 0 10px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}
.review-lead, .review {
  background: rgba(247, 240, 230, 0.7);
  border: 1px solid var(--line);
  padding: 24px;
}
.review-lead { min-height: 100%; }
.review-lead q, .review q {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  font-style: italic;
  display: block;
  margin: 0 0 18px;
}
.review-meta { color: var(--muted); font-size: 13px; }
.review-stack { display: grid; gap: 12px; }

.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.map {
  min-height: 460px;
  border: 0;
  border-radius: 22px;
  width: 100%;
  filter: saturate(0.85) contrast(0.95);
}
.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  margin: 8px 0 22px;
  font-size: 15px;
}
.hours b { font-weight: 500; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 18px;
}
.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.status.closed i { background: var(--clay); }
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 4px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 96px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dock {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  background: #2b221f;
  color: #f7f0e6;
  border-radius: 18px;
  padding: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.dock a {
  text-align: center;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
}
.dock a.wa { background: #5a6a56; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(43, 34, 31, 0.46);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.sheet {
  width: min(520px, 100%);
  background: var(--sheet);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.sheet h3 {
  font-family: var(--serif);
  font-size: 32px;
  margin: 0 0 8px;
  font-weight: 500;
}
.sheet p { color: var(--muted); margin-top: 0; }
.field {
  display: block;
  margin: 12px 0;
}
.field span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px;
  border-radius: 12px;
}
.sheet-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(20, 16, 14, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
}

@media (max-width: 980px) {
  .hero, .about, .section-head, .reviews-grid, .visit, .party-grid {
    grid-template-columns: 1fr;
  }
  .hero-photo { min-height: 420px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }
  .shot:first-child { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #f7f0e6;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 25;
  }
  .nav { padding-right: 84px; }
  .hero { padding-top: 16px; padding-bottom: 12px; }
  .hero h1 { font-size: 40px; }
  .hero-copy { padding: 8px 0 96px; }
  .hero-photo { min-height: 230px; border-radius: 20px; }
  .stamp { width: 72px; height: 72px; right: 14px; top: 14px; font-size: 10px; }
  .ticket { left: 14px; bottom: 14px; padding: 12px 14px; }
  .facts { grid-template-columns: 1fr 1fr 1fr; }
  .facts b { font-size: 22px; }
  .course-grid, .teachers, .about-photos { grid-template-columns: 1fr; }
  .about-photos figure:first-child { min-height: 260px; grid-row: auto; }
  .section { padding: 64px 0; }
  .dock { display: grid; }
  .site-footer { padding-bottom: 110px; flex-direction: column; }
  .ig-banner, .sheet-actions { flex-direction: column; align-items: stretch; }
}
