:root {
  --bg: #f7f4ff;
  --bg-deep: #ece4ff;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #2d2043;
  --muted: #4c3a77;
  --border: rgba(85, 55, 145, 0.24);
  --shadow: 0 22px 60px rgba(77, 49, 136, 0.18);
  --lavender: #7a5fc0;
  --lavender-deep: #553791;
  --lavender-soft: #cbbcf1;
  --lavender-glow: rgba(122, 95, 192, 0.18);
  --white: #ffffff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --cursor-x: 50%;
  --cursor-y: 18%;
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(179, 157, 219, 0.35), transparent 26%),
    radial-gradient(circle at right center, rgba(228, 219, 248, 0.75), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, var(--bg-deep) 100%);
  animation: pageFadeIn 900ms ease both;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 255, 255, 0.55), transparent 13rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(circle at 20% 15%, rgba(179, 157, 219, 0.18), transparent 18%);
  transition: background 180ms ease;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, rgba(122, 95, 192, 0.08), transparent 20%),
    radial-gradient(circle at 12% 76%, rgba(85, 55, 145, 0.08), transparent 17%);
  animation: ambientDrift 14s ease-in-out infinite alternate;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(46px);
  pointer-events: none;
  opacity: 0.55;
}

.page-shell::before {
  width: 220px;
  height: 220px;
  right: 6%;
  top: 8%;
  background: rgba(122, 95, 192, 0.15);
}

.page-shell::after {
  width: 180px;
  height: 180px;
  left: 2%;
  top: 38%;
  background: rgba(242, 164, 205, 0.16);
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambientDrift {
  from {
    transform: translate3d(-1.2rem, -0.6rem, 0) scale(1);
  }

  to {
    transform: translate3d(1.4rem, 1rem, 0) scale(1.04);
  }
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #ffffff;
  clip-path: inset(0 0 0 0);
  transition: clip-path 850ms cubic-bezier(0.76, 0, 0.24, 1), visibility 850ms ease;
}

.loading-mark {
  color: var(--lavender-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(14px);
  animation: loadingMark 900ms ease 100ms both;
}

body.is-loaded .loading-screen {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

@keyframes loadingMark {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--lavender-deep), var(--lavender), #c8b4ff);
  box-shadow: 0 0 16px rgba(122, 95, 192, 0.28);
  pointer-events: none;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(77, 49, 136, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  animation: headerSlideIn 700ms ease 120ms both;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.2rem;
  height: 5.35rem;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
}

.header-logo img {
  display: block;
  width: 112%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: contrast(1.16) saturate(1.08);
}

@keyframes headerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--lavender-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: calc(1rem + 4px);
  text-align: center;
  white-space: nowrap;
}

.brand img {
  width: 1.35em;
  height: 1.35em;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  grid-column: 2;
  transform: translateX(calc(1rem + 2cm));
}

.site-nav a {
  color: var(--muted);
  font-size: calc(0.95rem + 3px);
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lavender-deep), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--lavender-deep);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

section {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 241, 255, 0.74)),
    var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 45%);
  opacity: 0.9;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: clamp(1.1rem, 2.2vw, 2rem);
  min-height: 66vh;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.contact-panel,
.service-grid article,
.services-photo-card,
.benefit-card,
.benefit-photo-card,
.booking-form,
.about-card,
.about-photo-card,
.about-highlights article,
.review-card,
.credential-card,
.newspaper-panel,
.achievement-panel {
  border-radius: var(--radius-lg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) 0;
  min-width: 0;
  margin-left: -0.5rem;
  margin-top: -1.1rem;
}

.eyebrow {
  width: fit-content;
  margin: -1.9rem 0 0.85rem;
  padding: 0.28rem 0.72rem;
  color: var(--lavender-deep);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid rgba(85, 55, 145, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

h3 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.18;
}

h1,
.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(2.45rem, 5.8vw, 4.4rem);
  line-height: 0.92;
  margin-bottom: 1rem;
  max-width: none;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

h1 span {
  color: inherit;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line-accent {
  color: var(--lavender-deep);
}

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-actions .button:nth-child(1) {
  animation: buttonRise 700ms ease 260ms both;
}

.hero-actions .button:nth-child(2) {
  animation: buttonRise 700ms ease 360ms both;
}

@keyframes buttonRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(77, 49, 136, 0.12);
}

.button-primary {
  background: linear-gradient(135deg, #4d317f, var(--lavender-deep) 52%, #8f74ce);
  color: var(--white);
}

.button-secondary {
  color: var(--lavender-deep);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 255, 0.72));
  border-color: var(--border);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(122, 95, 192, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 236, 253, 0.96)),
    linear-gradient(135deg, rgba(179, 157, 219, 0.18), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(124, 97, 173, 0.1);
  min-width: 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(124, 97, 173, 0.1);
  color: var(--muted);
}

.stat-row strong {
  color: var(--lavender-deep);
}

.hero-poster {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(77, 49, 136, 0.14);
  background: #ffffff;
}

.hero-poster img {
  display: block;
  width: calc(100% + 1cm);
  max-width: none;
  margin-left: -0.5cm;
  height: calc(520px - 4cm);
  object-fit: cover;
  object-position: center top;
}

.feature-grid,
.service-grid,
.benefit-grid,
.review-grid,
.gallery-grid,
.credentials-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  margin-top: 1rem;
}

.feature-grid article,
.benefit-card,
.about-card,
.about-photo-card,
.about-highlights article,
.review-card,
.gallery-card,
.credential-card,
.newspaper-panel,
.achievement-panel {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.82));
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-grid h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature-grid article:nth-child(1) {
  background: linear-gradient(180deg, rgba(237, 227, 255, 0.98), rgba(216, 196, 255, 0.9));
}

.feature-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 234, 245, 0.98), rgba(242, 208, 228, 0.9));
}

.benefit-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(236, 226, 255, 0.98), rgba(212, 192, 255, 0.9));
}

.benefit-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 234, 245, 0.98), rgba(242, 208, 228, 0.9));
}

.benefit-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98), rgba(203, 222, 250, 0.9));
}

.feature-grid article:hover,
.benefit-card:hover,
.about-card:hover,
.about-highlights article:hover,
.review-card:hover,
.credential-card:hover,
.newspaper-panel:hover,
.achievement-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(77, 49, 136, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.feature-grid p,
.service-grid p,
.booking-copy p,
.about-list,
.contact-panel p,
.benefit-card p,
.workshop-list {
  color: var(--muted);
  line-height: 1.7;
}

.services,
.workshops,
.about,
.benefits,
.gallery,
.reviews,
.booking,
.contact {
  padding: clamp(1.35rem, 3vw, 2.5rem);
}



.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.55rem;
  position: relative;
}

.section-heading h2 {
  font-size: clamp(1.95rem, 4.1vw, 3.3rem);
  line-height: 0.96;
  max-width: 14ch;
  color: var(--ink);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.reviews .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  max-width: none;
  white-space: nowrap;
}

.gallery .section-heading h2 {
  font-size: clamp(1.95rem, 4.1vw, 3.3rem);
  max-width: none;
}

.reviews .eyebrow {
  font-size: 1.055rem;
}

.booking .eyebrow {
  font-size: 1.055rem;
}

.benefits .eyebrow {
  font-size: 1.055rem;
}

.services .eyebrow,
.about .eyebrow {
  font-size: 1.055rem;
}

.hero .eyebrow {
  font-size: 16.27px;
}

.contact .eyebrow {
  font-size: 1.055rem;
}

.workshops .eyebrow {
  font-size: 1.055rem;
}

.workshops .section-heading h2 {
  max-width: none;
  line-height: 1.08;
}

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

.gallery-card {
  min-height: 13rem;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(85, 55, 145, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffffff, #ece2ff);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease;
}

.gallery-card::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 300;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 28%),
    rgba(45, 32, 67, 0.38);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(85, 55, 145, 0.42);
  transform: translateY(-4px);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: brightness(1.08) saturate(1.08);
  transform: scale(1.08);
}

.gallery-video-card {
  cursor: default;
}

.gallery-video-card::after {
  display: none;
}

.gallery-video-card:hover,
.gallery-video-card:focus-visible {
  transform: none;
  border-color: rgba(85, 55, 145, 0.16);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.photo-modal {
  position: fixed;
  inset: 0 !important;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.photo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.photo-modal-backdrop {
  position: fixed;
  inset: 0 !important;
  padding: 0;
  border: 0;
  background: rgba(26, 18, 45, 0.82);
  cursor: pointer;
}

body.gallery-modal-open {
  overflow: hidden;
}

.photo-modal-content {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1001 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 2rem 2rem;
  pointer-events: none;
}

.photo-modal-content img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 94vw !important;
  max-height: 82vh !important;
  object-fit: contain !important;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.photo-modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1002;
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--lavender-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  pointer-events: auto;
}

.gallery-dialog {
  width: min(94vw, 1100px);
  max-width: 94vw;
  max-height: 90vh;
  padding: 4.25rem 1rem 1rem;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  overflow: visible;
}

.gallery-dialog::backdrop {
  background: rgba(26, 18, 45, 0.88);
}

.gallery-dialog img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.gallery-page {
  min-height: 100vh;
  padding-top: 1.25rem;
}

.gallery-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 2.8rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--lavender-deep);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.gallery-page h1 {
  max-width: none;
  font-size: clamp(2.275rem, 5.4vw, 4.475rem);
  white-space: nowrap;
}

.gallery-note {
  margin: 1.35rem auto 0;
  color: var(--lavender-deep);
  font-size: calc(1.15rem + 2px);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.gallery-page-shell {
  display: grid;
  grid-template-columns: 0 1fr;
  gap: 0;
  align-items: start;
  transform: translateX(3cm);
}

.gallery-sidebar {
  position: sticky;
  top: 50vh;
  z-index: 2;
  width: max-content;
  display: grid;
  gap: 0.85rem;
  padding-top: 0;
  transform: translate(calc(-11rem - 2cm), -50%);
}

.gallery-sidebar-title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: calc(clamp(1rem, 1.5vw, 1.3rem) + 9px);
  font-weight: 900;
  line-height: 1.2;
}

.gallery-sidebar a {
  display: inline-flex;
  color: var(--lavender-deep);
  font-size: clamp(0.9875rem, 1.45vw, 1.2875rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.gallery-sidebar a:visited {
  color: var(--lavender-deep);
}

.gallery-sidebar a:hover,
.gallery-sidebar a:active,
.gallery-sidebar a:focus-visible {
  color: var(--lavender-deep);
  transform: translateX(4px);
}

.gallery-content {
  display: grid;
  gap: 1.5rem;
}

.gallery-category-section {
  scroll-margin-top: 1rem;
}

.gallery-section-title {
  margin: 0;
  color: var(--lavender-deep);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
}

.booking .section-heading h2 {
  max-width: none;
  line-height: 1.08;
  white-space: nowrap;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

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

.services-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.services-heading .section-heading {
  margin-bottom: 0;
}

.services-photo-card {
  padding: 0.55rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.82));
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.services-photo-card img {
  display: block;
  width: 19.33cm;
  height: 10.08cm;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

.service-grid article {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.84));
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-grid article:nth-child(1) {
  background: linear-gradient(180deg, rgba(236, 226, 255, 0.98), rgba(212, 192, 255, 0.9));
}

.service-grid article:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 233, 242, 0.98), rgba(242, 204, 224, 0.9));
}

.service-grid article:nth-child(3) {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98), rgba(203, 222, 250, 0.9));
}

.service-grid article:nth-child(4) {
  background: linear-gradient(180deg, rgba(238, 251, 242, 0.98), rgba(205, 233, 214, 0.9));
}

.service-grid article:nth-child(5) {
  background: linear-gradient(180deg, rgba(255, 241, 225, 0.98), rgba(243, 223, 186, 0.9));
}

.service-grid article:nth-child(6) {
  background: linear-gradient(180deg, rgba(234, 242, 255, 0.98), rgba(205, 219, 245, 0.9));
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(77, 49, 136, 0.12);
  border-color: rgba(85, 55, 145, 0.16);
}

.service-number {
  color: var(--lavender-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.workshop-card {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.84));
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.workshop-card:nth-child(1),
.review-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(236, 226, 255, 0.98), rgba(212, 192, 255, 0.9));
}

.workshop-card:nth-child(2),
.review-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 234, 245, 0.98), rgba(242, 208, 228, 0.9));
}

.workshop-card:nth-child(3),
.review-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98), rgba(203, 222, 250, 0.9));
}

.workshop-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(238, 251, 242, 0.98), rgba(205, 233, 214, 0.9));
}

.workshop-card:nth-child(5),
.review-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 241, 225, 0.98), rgba(243, 223, 186, 0.9));
}

.workshop-card:nth-child(6),
.review-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(234, 242, 255, 0.98), rgba(205, 219, 245, 0.9));
}

.workshop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(77, 49, 136, 0.1);
}

.workshop-card h3 {
  margin-bottom: 0.8rem;
}

.workshop-list {
  margin: 0;
  padding-left: 1.15rem;
}

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

.benefits-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.benefits-heading .section-heading {
  margin-bottom: 0;
}

.benefit-photo-card {
  padding: 0.55rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.benefit-photo-card img {
  display: block;
  width: 16.8cm;
  height: 8.9cm;
  max-width: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.about-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.35rem;
}

.about-heading .section-heading {
  margin-bottom: 0;
}

.about-heading .section-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  max-width: none;
}

.about-heading .heading-line {
  display: block !important;
  white-space: nowrap !important;
}

.about-profile {
  display: grid;
}

.about-photo-card {
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  transition: none;
}

.about-photo-card img {
  display: block;
  width: 16.3cm;
  height: 9.5cm;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
}

.photo-caption {
  margin: 0.75rem 0 0.15rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card {
  background: linear-gradient(180deg, rgba(255, 236, 245, 0.98), rgba(242, 210, 228, 0.9));
}

.about-highlights article:nth-child(1) {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98), rgba(203, 222, 250, 0.9));
}

.about-highlights article:nth-child(2) {
  background: linear-gradient(180deg, rgba(238, 251, 242, 0.98), rgba(205, 233, 214, 0.9));
}

.about-highlights article:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 241, 225, 0.98), rgba(243, 223, 186, 0.9));
}

.about-highlights {
  display: grid;
  gap: 1rem;
}

.credentials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.credential-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(236, 226, 255, 0.98), rgba(212, 192, 255, 0.9));
}

.credential-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 234, 245, 0.98), rgba(242, 208, 228, 0.9));
}

.credential-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(235, 244, 255, 0.98), rgba(203, 222, 250, 0.9));
}

.achievement-panel {
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(238, 251, 242, 0.98), rgba(205, 233, 214, 0.9));
}

.newspaper-panel {
  margin-top: 1rem;
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.98), rgba(246, 224, 176, 0.9));
}

.newspaper-panel h3 {
  margin-bottom: 0.85rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.press-link {
  display: grid;
  gap: 0.35rem;
  min-height: 5.2rem;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(100, 60, 175, 0.16);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(100, 60, 175, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.press-link span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-link strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.press-link:hover,
.press-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(100, 60, 175, 0.36);
  box-shadow: 0 18px 42px rgba(100, 60, 175, 0.32), 0 0 28px rgba(143, 116, 206, 0.28);
}

.achievement-panel h3 {
  margin-bottom: 0.8rem;
}

.achievement-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.card-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-list li {
  color: var(--muted);
  line-height: 1.65;
  padding-left: 0.75rem;
  position: relative;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 0.85rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(100, 60, 175, 0.34);
}

.card-link-group {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.card-link-group .card-link {
  margin-top: 0;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--lavender-deep);
  border-bottom-color: currentColor;
}

.credential-card:nth-child(2) .card-list {
  margin-left: -0.65rem;
}

.credential-card:nth-child(2) .card-list li {
  padding-left: 0.6rem;
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-meta h3 {
  margin-bottom: 0.2rem;
}

.review-tag {
  margin-bottom: 0.85rem;
  color: var(--lavender-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.review-text {
  font-size: 1.02rem;
  line-height: 1.75;
}

.review-name {
  margin-bottom: 0;
  color: var(--lavender-deep);
  font-weight: 800;
}

.review-reply {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(124, 97, 173, 0.14);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(247, 244, 255, 0.92), rgba(239, 233, 255, 0.72));
}

.review-reply strong {
  display: block;
  margin-bottom: 0.35rem;
}

.review-reply p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.booking-copy {
  padding: 0.4rem 0.2rem;
}

.about-list {
  margin: 0;
  padding-left: 1.15rem;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(236, 226, 255, 0.98), rgba(212, 192, 255, 0.9));
  border: 1px solid rgba(124, 97, 173, 0.1);
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(124, 97, 173, 0.18);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fcfbff;
}

.booking-form input[type="file"] {
  padding: 0.75rem;
  background: #ffffff;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(134, 105, 191, 0.22);
  border-color: var(--lavender-deep);
}

.full-width,
.booking-form button,
.form-note {
  grid-column: 1 / -1;
}

.service-field.is-hidden {
  display: none;
}

.form-note {
  margin-bottom: 0;
  min-height: 1.5rem;
  color: var(--lavender-deep);
  font-weight: 700;
}

.honeypot {
  display: none;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at top right, rgba(122, 95, 192, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 255, 0.86));
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 95, 192, 0.14), transparent 68%);
  pointer-events: none;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-actions .button {
  width: max-content;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 20;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(85, 55, 145, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #4d317f, var(--lavender-deep) 52%, #8f74ce);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(77, 49, 136, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.feature-grid article,
.service-grid article,
.workshop-card,
.benefit-card,
.about-card,
.about-highlights article,
.review-card,
.credential-card,
.newspaper-panel,
.achievement-panel {
  box-shadow: none !important;
}

.feature-grid article:hover,
.service-grid article:hover,
.workshop-card:hover,
.benefit-card:hover,
.about-card:hover,
.about-highlights article:hover,
.review-card:hover,
.gallery-card:hover,
.credential-card:hover,
.newspaper-panel:hover,
.achievement-panel:hover {
  transform: none;
  box-shadow: none !important;
}

.press-link {
  box-shadow: 0 10px 24px rgba(100, 60, 175, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.press-link:hover,
.press-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(100, 60, 175, 0.32), 0 0 28px rgba(143, 116, 206, 0.28) !important;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.thank-you-panel {
  min-height: 60vh;
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(70px) rotateX(7deg) scale(0.96);
  filter: blur(9px);
  transition: opacity 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), filter 1050ms ease var(--reveal-delay, 0ms);
}

.reveal-delay {
  transition-delay: 140ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-header,
  .loading-screen,
  .loading-mark,
  .scroll-progress,
  .hero-actions .button,
  .reveal,
  .press-link,
  .button,
  .site-nav a::after,
  .service-grid article,
  .workshop-card,
  .feature-grid article,
  .benefit-card,
  .about-card,
  .about-highlights article,
  .review-card,
  .credential-card,
  .achievement-panel {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

}

@media (max-width: 960px) {
  .hero,
  .services-heading,
  .service-grid,
  .workshop-grid,
  .benefits-heading,
  .benefit-grid,
  .gallery-grid,
  .review-grid,
  .credentials-grid,
  .press-grid,
  .about-heading,
  .about-layout,
  .booking-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .gallery-page-shell {
    grid-template-columns: 1fr;
    transform: none;
  }

  .gallery-sidebar {
    position: static;
    padding-top: 0;
    transform: none;
    margin-bottom: 1.25rem;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.6rem;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: 30px;
    box-shadow: 0 12px 28px rgba(77, 49, 136, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .header-logo {
    align-self: center;
  }

  .header-logo img {
    max-width: 88px;
    height: auto;
  }

  .site-nav {
    justify-content: center;
    gap: 0.5rem 0.55rem;
    width: 100%;
    transform: none;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.92rem;
    border-radius: 999px;
    background: rgba(244, 238, 255, 0.92);
    border: 1px solid rgba(122, 95, 192, 0.14);
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.8rem);
    line-height: 0.96;
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(2rem, 9.5vw, 2.9rem);
    line-height: 0.97;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }

  .hero,
  .services,
  .workshops,
  .about,
  .benefits,
  .gallery,
  .reviews,
  .booking,
  .contact {
    padding: 1.25rem;
    border-radius: 28px;
  }

  .hero-copy,
  .hero-card,
  .about-card,
  .about-photo-card,
  .contact-panel,
  .booking-form,
  .about-highlights article {
    padding: 1.15rem;
  }

  .hero-copy {
    gap: 0.7rem;
    margin-left: 0;
    margin-top: 0;
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .hero .eyebrow,
  .about .eyebrow,
  .contact .eyebrow,
  .booking .eyebrow,
  .services .eyebrow,
  .reviews .eyebrow,
  .gallery .eyebrow,
  .benefits .eyebrow,
  .workshops .eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    margin: 0 0 0.55rem;
    white-space: normal;
    text-align: center;
  }

  .hero .eyebrow {
    font-size: 16.27px;
  }

  .hero-text,
  .booking-copy p,
  .contact-panel p,
  .about-card p,
  .about-highlights p,
  .service-grid p,
  .benefit-grid p,
  .review-card p,
  .workshop-list {
    font-size: 0.98rem;
  }

  .hero-text {
    margin-bottom: 1rem;
    line-height: 1.65;
    max-width: 32rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    gap: 0.35rem;
    text-align: center;
    justify-items: center;
  }

  .services-heading .section-heading,
  .benefits-heading .section-heading,
  .about-heading .section-heading {
    text-align: center;
    justify-items: center;
  }

  .section-heading::after {
    content: none;
  }

  .feature-grid,
  .service-grid,
  .benefit-grid,
  .review-grid,
  .credentials-grid,
  .press-grid,
  .workshop-grid {
    gap: 1rem;
  }

  .hero-poster {
    min-height: 0;
  }

  .hero-poster img,
  .services-photo-card img,
  .about-photo-card img {
    width: 100%;
    height: auto;
  }

  .photo-caption {
    font-size: 0.9rem;
  }

  .about-heading .section-heading h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .review-grid,
  .booking-layout {
    gap: 1rem;
  }

  .reviews .section-heading,
  .booking .section-heading {
    margin-inline: auto;
  }

  .booking .section-heading {
    width: 100%;
    text-align: center;
    justify-items: center;
    margin-bottom: 0.35rem;
  }

  .booking .section-heading h2 {
    max-width: 16ch;
    margin-inline: auto;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
    line-height: 1.02;
  }

  .booking-copy {
    padding: 0;
    text-align: center;
  }

  .about-list {
    display: grid;
    gap: 0.5rem;
    padding-left: 1.1rem;
    text-align: left;
  }

  .contact-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }

  .contact-panel > div:first-child {
    display: grid;
    gap: 0.5rem;
    justify-items: center;
  }

  .contact-actions,
  .contact-action-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .gallery-page {
    padding-top: 0.6rem;
  }

  .gallery-page h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    white-space: normal;
  }

  .gallery-sidebar {
    gap: 0.7rem;
    justify-items: start;
  }

  .gallery-sidebar-title {
    font-size: 1.25rem;
  }

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

  .gallery-note {
    max-width: 24rem;
    font-size: calc(1.05rem + 2px);
  }

  .booking-form {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 0.7rem), var(--max-width));
    padding-top: 0.45rem;
  }

  .site-header {
    padding: 0.9rem 0.8rem 1rem;
    border-radius: 26px;
  }

  .site-nav {
    gap: 0.42rem 0.5rem;
  }

  .site-nav a {
    min-height: 2rem;
    padding: 0.26rem 0.72rem;
    font-size: 0.84rem;
  }

  .hero,
  .services,
  .workshops,
  .about,
  .benefits,
  .gallery,
  .reviews,
  .booking,
  .contact {
    padding: 1rem;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
    line-height: 0.94;
  }

  .section-heading h2,
  .reviews .section-heading h2,
  .gallery .section-heading h2,
  .workshops .section-heading h2,
  .booking .section-heading h2,
  .about-heading .section-heading h2 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
    line-height: 0.98;
  }

  .hero-copy,
  .hero-card,
  .about-card,
  .about-photo-card,
  .contact-panel,
  .booking-form,
  .about-highlights article {
    padding: 1rem;
  }

  .button {
    min-height: 3.2rem;
    padding-inline: 1rem;
    font-size: 0.96rem;
  }

  .booking .section-heading h2 {
    max-width: 15ch;
    font-size: clamp(1.6rem, 8.6vw, 2.15rem);
  }

  .review-card,
  .booking-form,
  .contact-panel {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }

  .back-to-top {
    display: none;
  }

  .hero .eyebrow,
  .about .eyebrow,
  .contact .eyebrow,
  .booking .eyebrow,
  .services .eyebrow,
  .reviews .eyebrow,
  .gallery .eyebrow,
  .benefits .eyebrow,
  .workshops .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.11em;
  }

  .hero .eyebrow {
    font-size: 16.27px;
  }

  .section-heading::after {
    content: none;
  }

  .gallery-card {
    min-height: 11rem;
  }
}
