:root {
  --ink: #2f2430;
  --muted: #7c6574;
  --pink: #f06aa6;
  --pink-soft: #ffe4ef;
  --pink-pale: #fff6fa;
  --gold: #d7a840;
  --gold-light: #ffe5a3;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(107, 60, 83, 0.18);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: "Comfortaa", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 198, 221, 0.72), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(255, 229, 163, 0.8), transparent 24rem),
    linear-gradient(135deg, #fff9fc 0%, #fff4f8 42%, #fffaf0 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 168, 64, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 168, 64, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  z-index: -1;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 5px;
  background: rgba(47, 36, 48, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), #171016);
  box-shadow: 0 0 16px rgba(240, 106, 166, 0.58);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 72px) 18px;
  background: rgba(255, 249, 252, 0.78);
  border-bottom: 1px solid rgba(215, 168, 64, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--gold));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(240, 106, 166, 0.3);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), #2a1c28);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(240, 106, 166, 0.34);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(70px, 10vw, 128px) clamp(18px, 6vw, 92px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a66f16;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1;
}

h1 {
  font-size: clamp(4rem, 12vw, 10rem);
}

.hero-logo {
  width: min(100%, 620px);
  max-height: 260px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 16px 24px rgba(107, 60, 83, 0.14));
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.9rem);
}

h3 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.hero-text,
.about p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.hero-text {
  max-width: 630px;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 16px 34px rgba(240, 106, 166, 0.28);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(215, 168, 64, 0.42);
  background: rgba(255, 255, 255, 0.52);
}

.gallery-root {
  padding-top: clamp(20px, 4vw, 44px);
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.art-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 228, 239, 0.58)),
    linear-gradient(45deg, transparent 30%, rgba(215, 168, 64, 0.45));
  box-shadow: var(--shadow);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-main-image {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(107, 60, 83, 0.2));
  animation: heroImageFloat 7s ease-in-out infinite;
}

.card-one {
  inset: 24px 12% auto auto;
  width: 62%;
  aspect-ratio: 0.76;
}

.card-two {
  left: 0;
  bottom: 44px;
  width: 52%;
  aspect-ratio: 0.9;
  animation-delay: -1.7s;
}

.card-three {
  right: 4%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1.1;
  background:
    repeating-linear-gradient(135deg, rgba(240, 106, 166, 0.22) 0 16px, rgba(215, 168, 64, 0.18) 16px 32px),
    rgba(255, 255, 255, 0.7);
  animation-delay: -3.2s;
}

.gallery-section,
.about {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 92px);
}

.gallery-section {
  position: relative;
}

.gallery-section:nth-child(even) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 228, 239, 0.42));
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-head p {
  max-width: 570px;
  color: var(--muted);
  line-height: 1.7;
}

.rail-actions {
  display: flex;
  gap: 10px;
}

.rail-button,
.modal-close,
.modal-nav {
  border: 0;
  cursor: pointer;
}

.rail-button {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 168, 64, 0.26);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(107, 60, 83, 0.11);
  transition: transform 160ms ease, background 160ms ease;
}

.rail-button:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 32vw);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pink) rgba(255, 228, 239, 0.72);
  scrollbar-width: auto;
}

.gallery-rail::-webkit-scrollbar {
  height: 12px;
}

.gallery-rail::-webkit-scrollbar-track {
  background: rgba(255, 228, 239, 0.72);
  border: 1px solid rgba(215, 168, 64, 0.2);
  border-radius: 999px;
}

.gallery-rail::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border: 2px solid rgba(255, 246, 250, 0.95);
  border-radius: 999px;
}

.gallery-rail::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #df4f91, #c49124);
}

.gallery-card {
  position: relative;
  height: 360px;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(107, 60, 83, 0.12);
  cursor: zoom-in;
  scroll-snap-align: start;
  isolation: isolate;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-card:hover img,
.gallery-card:hover video {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.gallery-card::after {
  content: "View Full Size";
  position: absolute;
  inset: auto 14px 14px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  background: rgba(47, 36, 48, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(12px);
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.empty-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 32vw);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pink) rgba(255, 228, 239, 0.72);
  scrollbar-width: auto;
}

.empty-gallery::-webkit-scrollbar {
  height: 12px;
}

.empty-gallery::-webkit-scrollbar-track {
  background: rgba(255, 228, 239, 0.72);
  border: 1px solid rgba(215, 168, 64, 0.2);
  border-radius: 999px;
}

.empty-gallery::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border: 2px solid rgba(255, 246, 250, 0.95);
  border-radius: 999px;
}

.empty-gallery::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #df4f91, #c49124);
}

.about {
  padding-top: clamp(50px, 7vw, 84px);
  padding-bottom: clamp(50px, 7vw, 84px);
}

.about-panel {
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(215, 168, 64, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image-wrap {
  display: grid;
  place-items: end center;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 229, 163, 0.6), transparent 48%),
    linear-gradient(135deg, rgba(255, 228, 239, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(215, 168, 64, 0.2);
  border-radius: 8px;
}

.about-image-wrap img {
  width: min(100%, 390px);
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(107, 60, 83, 0.18));
}

.about-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-facts span {
  padding: 10px 13px;
  color: #6c4d10;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 228, 239, 0.9), rgba(255, 229, 163, 0.64));
  border-radius: 999px;
}

.coming-soon-card {
  position: relative;
  display: grid;
  height: 360px;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(240, 106, 166, 0.18), rgba(255, 229, 163, 0.72), rgba(47, 36, 48, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 228, 239, 0.7));
  background-size: 220% 220%;
  box-shadow: 0 18px 44px rgba(107, 60, 83, 0.12);
  scroll-snap-align: start;
  animation: comingSoonGradient 4.8s ease-in-out infinite, placeholderFloat 5.6s ease-in-out infinite;
}

.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
}

.coming-soon-card::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.72) 50%, transparent 65%);
  transform: translateX(-45%) rotate(8deg);
  animation: placeholderShine 3.2s ease-in-out infinite;
}

.coming-soon-card span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: placeholderTextPulse 2.4s ease-in-out infinite;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 10px;
  padding: 72px 20px 26px;
  background: rgba(31, 21, 30, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  backdrop-filter: blur(12px);
}

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

.modal-frame {
  margin: 0;
  min-width: 0;
}

.modal-media-wrap {
  display: grid;
  place-items: center;
  min-height: 62vh;
}

.modal-media-wrap img,
.modal-media-wrap video {
  max-height: 78vh;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

#modal-caption {
  min-height: 24px;
  margin-top: 14px;
  color: var(--white);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  color: var(--white);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.modal-nav {
  width: 56px;
  height: 56px;
  color: var(--ink);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--pink-soft), var(--gold-light));
  border-radius: 50%;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), #2a1c28);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(240, 106, 166, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.back-to-top:hover {
  filter: saturate(1.12);
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(240, 106, 166, 0.36);
}

.section-reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes heroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes comingSoonGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes placeholderShine {
  0% {
    transform: translateX(-45%) rotate(8deg);
  }
  55%,
  100% {
    transform: translateX(45%) rotate(8deg);
  }
}

@keyframes placeholderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes placeholderTextPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-logo {
    width: min(100%, 460px);
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-rail {
    grid-auto-columns: minmax(230px, 78vw);
  }

  .empty-gallery {
    grid-auto-columns: minmax(230px, 78vw);
  }

  .modal {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding-inline: 8px;
  }

  .modal-nav {
    width: 44px;
    height: 44px;
  }

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

  .about-image-wrap {
    min-height: 320px;
    order: 2;
  }

  .about-image-wrap img {
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-nav a {
    padding: 8px 9px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-logo {
    max-height: 190px;
  }

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

  .gallery-card,
  .gallery-card img,
  .gallery-card video,
  .coming-soon-card {
    height: 310px;
    min-height: 310px;
  }

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

  .modal-frame {
    grid-column: 1 / -1;
    order: 1;
  }

  .modal-prev,
  .modal-next {
    order: 2;
    justify-self: center;
  }
}
