:root {
  --ink: #333333;
  --charcoal: #5a3b48;
  --ivory: #ffffff;
  --paper: #fce4ec;
  --rose: #e91e63;
  --rose-soft: #f8bbd0;
  --rose-pale: #fce4ec;
  --rose-dark: #ad1457;
  --gold: #c79a45;
  --warm: #fff7fa;
  --muted: #675c61;
  --line: rgba(233, 30, 99, 0.16);
  --shadow: 0 20px 55px rgba(173, 20, 87, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(252, 228, 236, 0.62), rgba(255, 255, 255, 0) 520px),
    var(--ivory);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(173, 20, 87, 0.1);
  backdrop-filter: blur(14px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 1.08rem;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.94;
  font-weight: 800;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.main-nav a:hover {
  color: var(--rose-soft);
  opacity: 1;
}

.site-header.is-scrolled .main-nav a,
.site-header.is-open .main-nav a {
  text-shadow: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  color: var(--rose);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--rose-pale);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.12) translateX(7%);
  transform-origin: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(233, 30, 99, 0.82), rgba(248, 187, 208, 0.32) 42%, rgba(0, 0, 0, 0.36) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 36px));
  margin: 0 0 clamp(70px, 10vw, 116px) clamp(18px, 7vw, 96px);
  color: white;
}

.hero-logo-frame {
  display: block;
  width: min(590px, 44vw);
  margin-bottom: 26px;
  overflow: hidden;
}

.hero-logo {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 20px rgba(173, 20, 87, 0.13));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: white;
  font-size: 6.4rem;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.48);
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.28rem;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.hero-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(233, 30, 99, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(233, 30, 99, 0.2);
}

.btn-primary {
  background: var(--rose);
  color: white;
}

.btn-light {
  border-color: rgba(233, 30, 99, 0.28);
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.76);
}

.btn-dark {
  background: var(--rose-dark);
  color: white;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(22px, 5vw, 58px);
  z-index: 2;
  width: min(260px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.hero-card strong {
  display: block;
  color: var(--rose);
  font-size: 2.1rem;
  line-height: 1;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.portrait-panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--rose-pale);
}

.portrait-panel img {
  width: 100%;
  height: min(560px, 68vw);
  object-fit: cover;
  object-position: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff, var(--rose-pale));
}

.stats article {
  min-height: 160px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.stats strong {
  display: block;
  max-width: 230px;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 2.05rem;
  line-height: 1.08;
  color: var(--rose-dark);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-section p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.class-grid,
.teacher-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.class-section-title {
  margin: 34px 0 18px;
}

.class-section-title h3 {
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
}

.additional-classes {
  padding-top: clamp(72px, 9vw, 110px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(252, 228, 236, 0.74)),
    white;
}

.class-card,
.teacher-card,
blockquote {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(173, 20, 87, 0.08);
}

.class-card {
  min-height: 220px;
  padding: 28px;
}

.level-card {
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.level-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: white;
  background: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
}

.level-card p {
  margin-bottom: 3px;
  color: var(--rose);
  font-weight: 800;
}

.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(173, 20, 87, 0.14);
}

.class-card h3 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: var(--rose-dark);
}

.class-card p,
.teacher-card p,
blockquote p {
  color: var(--muted);
}

.schedule {
  display: block;
}

.schedule-copy p {
  color: var(--muted);
}

.schedule-copy {
  margin-bottom: 34px;
}

.schedule-copy .btn {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.schedule-table-wrap {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.schedule-image-wrap {
  width: min(1280px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.schedule-image-wrap img {
  width: 100%;
  height: auto;
}

.weekly-schedule {
  min-width: 860px;
}

.weekly-schedule th,
.weekly-schedule td {
  text-align: center;
  vertical-align: middle;
}

.weekly-schedule td {
  color: var(--rose-dark);
  font-weight: 800;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--rose);
  font-size: 0.8rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.teacher-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.teacher-card:hover,
.teacher-card:focus {
  transform: translateY(-4px);
  outline: 0;
  box-shadow: 0 24px 54px rgba(173, 20, 87, 0.14);
}

.teacher-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(1.06) sepia(0.06) hue-rotate(305deg);
}

.teacher-card img.teacher-img-lower {
  object-position: center top;
}

.teacher-card div {
  padding: 24px;
}

.teacher-card span {
  display: block;
  margin: -4px 0 14px;
  color: var(--rose);
  font-weight: 800;
}

.teacher-modal-panel {
  width: min(1120px, 100%);
  max-height: min(820px, calc(100vh - 44px));
  grid-template-columns: 0.85fr 1.15fr;
}

.teacher-modal-image {
  min-height: 640px;
  object-position: center top;
}

.teacher-modal-content {
  padding: clamp(28px, 4vw, 54px);
}

.teacher-modal-text ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.teacher-modal-text li::marker {
  color: var(--rose);
}

.gallery {
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(252, 228, 236, 0.96), rgba(255, 255, 255, 0.88)),
    var(--rose-pale);
}

.gallery-annual-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 187, 208, 0.55)),
    white;
}

.gallery-title {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 42px;
}

.gallery-title h2 {
  max-width: 860px;
  color: var(--rose-dark);
}

.gallery-subtitle {
  margin: 8px 0 0;
  color: var(--rose);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  width: min(1400px, calc(100% - 20px));
  margin: 0 auto;
}

.gallery-grid-preview {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(173, 20, 87, 0.12);
  filter: saturate(1.08) sepia(0.06) hue-rotate(305deg);
}

.gallery-grid img:nth-child(2) {
  height: 360px;
  align-self: end;
}

.gallery-grid-preview img,
.gallery-grid-preview img:nth-child(2) {
  height: 420px;
  align-self: stretch;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.show-section-title {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 18px;
  color: var(--rose-dark);
  font-size: clamp(2rem, 4vw, 3rem);
}

.gallery-grid-annual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.annual-show-grid {
  align-items: stretch;
}

.annual-show-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--rose-dark);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(173, 20, 87, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.annual-show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(173, 20, 87, 0.18);
}

.annual-show-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.08) sepia(0.06) hue-rotate(305deg);
}

.annual-show-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(233, 30, 99, 0.9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.05;
}

.show-modal-panel {
  grid-template-columns: 1fr;
  width: min(1180px, 94vw);
  height: min(860px, 90vh);
  background: var(--rose-pale);
}

.show-modal-content {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
}

.show-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  width: 100%;
  min-height: 100%;
}

.show-gallery,
.show-video {
  width: 100%;
}

.show-description {
  width: 100%;
  padding: clamp(24px, 4vw, 44px);
  color: white;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose));
}

.show-description h3,
.show-description h4 {
  margin: 0 0 14px;
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

.show-description h4 {
  margin-top: 22px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.show-description p,
.show-description li {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.92);
}

.show-description ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 22px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.show-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.show-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
}

.video-placeholder {
  display: block;
  min-height: 520px;
  border: 0;
  border-radius: 0;
  color: var(--rose-dark);
  background: #000;
  font-weight: 800;
  line-height: 0;
}

.video-placeholder iframe {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: 0;
}

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

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 22px;
}

.modal.is-open {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.48);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 80px rgba(51, 51, 51, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--rose);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.level-modal-panel {
  grid-template-columns: minmax(300px, 0.82fr) 1.18fr;
}

.level-modal-image {
  padding: 18px;
  background: linear-gradient(135deg, var(--rose-pale), #fff);
  object-fit: contain;
}

.modal-content {
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: var(--rose-dark);
  font-size: 3rem;
}

.modal-text {
  color: var(--muted);
}

.modal-text p,
.modal-text ul {
  margin-bottom: 16px;
}

.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.offering {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, var(--rose-pale));
}

.offering.warm {
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}

.offering.warm .eyebrow,
.offering.warm p {
  color: rgba(255, 255, 255, 0.82);
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  font-size: 1.05rem;
}

cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.google-review-card {
  display: flex;
  width: min(760px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--rose-pale));
  box-shadow: var(--shadow);
}

.google-review-card p {
  max-width: 480px;
  margin: 8px 0 0;
  color: var(--muted);
}

.google-rating {
  display: block;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 0.9;
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 560px;
  background: linear-gradient(135deg, #ffffff, var(--rose-pale));
}

.contact-info {
  padding: clamp(40px, 7vw, 84px);
}

.contact-info ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.socials a {
  padding-bottom: 4px;
  color: var(--rose);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--rose);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 88px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    margin-right: 18px;
    margin-bottom: 190px;
  }

  .hero-card {
    right: auto;
    left: 18px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .intro-grid,
  .split-section,
  .schedule,
  .offerings,
  .contact {
    grid-template-columns: 1fr;
  }

  .stats,
  .class-grid,
  .teacher-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid-preview {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 340px;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 240px;
    max-height: 280px;
  }

  .level-modal-image {
    max-height: 420px;
  }

  .show-detail-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero {
    min-height: 800px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(252, 228, 236, 0.82), rgba(255, 255, 255, 0.94)),
      linear-gradient(90deg, rgba(233, 30, 99, 0.2), rgba(255, 255, 255, 0.2));
  }

  .hero-logo {
    width: 100%;
    height: auto;
  }

  .hero-logo-frame {
    width: min(460px, 70vw);
    margin-bottom: 14px;
  }

  .stats,
  .class-grid,
  .teacher-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 310px;
  }

  .google-review-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal {
    padding: 12px;
  }

  .modal-content h2 {
    font-size: 2.1rem;
  }

  .annual-show-card,
  .annual-show-card img {
    min-height: 320px;
  }

  .show-gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

.show-modal-panel {
  display: block;
  width: min(1180px, 94vw);
  height: min(860px, 90vh);
  max-height: min(860px, calc(100vh - 44px));
  overflow: hidden;
  background: #000;
}

.show-modal-content {
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  overflow-y: auto;
  background: #000;
}

.show-detail-grid {
  display: block;
  width: 100%;
  min-height: 100%;
  background: #000;
}

.show-gallery,
.show-video {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
}

.show-media-title {
  margin: 0;
  padding: 18px 22px;
  color: white;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.show-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.show-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: zoom-in;
}

.show-photo-button img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
  transition: opacity 160ms ease;
}

.show-photo-button:hover img {
  opacity: 0.82;
}

.video-placeholder {
  display: block;
  width: 100%;
  min-height: 560px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
  color: transparent;
}

.video-placeholder iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: 0;
}

.youtube-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  color: white;
  background: #000;
  text-decoration: none;
}

.youtube-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  opacity: 0.72;
}

.youtube-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding: 26px;
  background: #000;
}

.inline-video-grid {
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 8px;
}

.youtube-card-compact {
  min-height: 320px;
  border-radius: 8px;
}

.youtube-card-compact img {
  height: 320px;
}

.youtube-card-compact span {
  top: auto;
  right: 18px;
  bottom: 18px;
  left: 18px;
  min-height: 0;
  padding: 14px 18px;
  border-radius: 8px;
  line-height: 1.25;
  text-align: left;
  transform: none;
}

@media (max-width: 900px) {
  .show-description ul {
    grid-template-columns: 1fr;
  }

  .show-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .show-gallery-grid img {
    height: 240px;
  }

  .video-placeholder,
  .video-placeholder iframe {
    min-height: 320px;
    height: 320px;
  }

  .youtube-card,
  .youtube-card img {
    min-height: 320px;
    height: 320px;
  }

  .video-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
}

.photo-lightbox.is-open {
  display: grid;
}

.photo-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--rose);
  cursor: pointer;
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 1.7rem;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 900px) {
  .show-photo-button img {
    height: 240px;
  }

  .photo-lightbox {
    padding: 12px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }
}
