:root {
  --bg: #fbf4f6;
  --bg-soft: #f8e8ee;
  --surface: #ffffff;
  --ink: #1a1014;
  --text: #6a4a55;
  --muted: #8e6d79;
  --line: #ead4dc;
  --accent: #d81e5b;
  --accent-dark: #3d1b3d;
  --champagne: #e8c07a;
  --radius: 22px;
  --container: 1220px;
  --shadow: 0 20px 50px rgba(61, 27, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 244, 246, 0.88);
  border-bottom: 1px solid rgba(234, 212, 220, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.7rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.brand {
  display: grid;
  gap: 0.05rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 3.85rem;
  width: auto;
  display: block;
  transition: transform 0.5s ease;
}

.brand-logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.brand-mark {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.main-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(58, 51, 56, 0.78);
  transition: color 0.35s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7c7d0;
  border-radius: 999px;
  padding: 0.2rem;
  background: #fff;
}

.lang-switch span {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.lang-switch .active {
  background: var(--accent-dark);
  color: #fff;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #d62b67, #cb2f5f 55%, #d83476);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 43, 103, 0.32);
}

.btn-outline {
  border: 1.2px solid rgba(74, 29, 79, 0.7);
  color: var(--accent-dark);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.btn-outline:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #3d1b3d, #4a2049 55%, #3d1b3d);
  box-shadow: 0 12px 28px rgba(61, 27, 61, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--accent-dark);
  color: #fff;
}

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

  50% {
    background-position: 100% 50%;
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 30% 70% 55%;
    transform: translate(0, 0) rotate(0);
  }

  33% {
    border-radius: 70% 30% 46% 54% / 30% 60% 40% 70%;
    transform: translate(20px, -10px) rotate(20deg);
  }

  66% {
    border-radius: 30% 70% 60% 40% / 60% 40% 60% 40%;
    transform: translate(-15px, 10px) rotate(-15deg);
  }
}

@keyframes shimmer-sweep {
  0% {
    transform: translateX(-150%) skewX(-12deg);
  }

  100% {
    transform: translateX(250%) skewX(-12deg);
  }
}

@keyframes ken-burns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 30, 91, 0.45);
  }

  70% {
    box-shadow: 0 0 0 18px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  animation: reveal-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.testimonial-grid .reveal {
  opacity: 1;
  transform: none;
}

.testimonial-grid .reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

.testimonial-grid .reveal.is-visible {
  animation: reveal-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay-1.is-visible {
  animation-delay: 0.1s;
}

.reveal-delay-2.is-visible {
  animation-delay: 0.2s;
}

.reveal-delay-3.is-visible {
  animation-delay: 0.3s;
}

.reveal-delay-4.is-visible {
  animation-delay: 0.4s;
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

main {
  overflow: hidden;
}

.section-inner {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
}

.section-band {
  width: 100%;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.section-band--blush {
  background: var(--bg-soft);
}

.section-band--plum {
  background: #3c1843;
  color: #fdf6f8;
}

.section-band--accent {
  background: var(--accent);
  color: #fff;
}

.hero {
  width: 100%;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 34%, rgba(227, 64, 126, 0.14), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(227, 64, 126, 0.11), transparent 33%),
    var(--bg);
}

.hero-inner {
  width: min(var(--container), calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  width: clamp(220px, 30vw, 370px);
  height: clamp(220px, 30vw, 370px);
  filter: blur(46px);
  opacity: 0.32;
  pointer-events: none;
  animation: blob 14s ease-in-out infinite;
}

.brand-gradient {
  background: linear-gradient(135deg, #3d1b3d 0%, #d81e5b 50%, #e8c07a 100%);
  background-size: 200% 200%;
  animation: gradient-shift 12s ease infinite;
}

.orb-left {
  left: -120px;
  top: 24px;
  background: linear-gradient(145deg, #d81e5b, #e8c07a);
  background-size: 200% 200%;
  animation: blob 14s ease-in-out infinite, gradient-shift 12s ease infinite;
}

.orb-right {
  right: -140px;
  bottom: -48px;
  background: linear-gradient(145deg, #3d1b3d, #d81e5b);
  animation-delay: -5s;
}

.hero-text,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  line-height: 1.02;
  margin: 1.1rem 0 1.3rem;
  max-width: 700px;
}

.hero-text h1 span {
  color: #d33671;
  font-style: italic;
}

.hero-text p {
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media-glow {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: linear-gradient(135deg, #3d1b3d 0%, #d81e5b 50%, #e8c07a 100%);
  background-size: 200% 200%;
  opacity: 0.32;
  filter: blur(22px);
  z-index: -1;
  animation: gradient-shift 12s ease infinite;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
}

.section-head--split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-head--split > p {
    max-width: 20rem;
    margin: 0;
  }
}

.section-head p {
  max-width: 540px;
  font-size: 1.05rem;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.section-head--services h2 {
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  max-width: none;
  width: 100%;
  letter-spacing: 0.02em;
}

.section-head.narrow {
  margin-bottom: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-weight: 700;
  font-size: 0.66rem;
  color: var(--accent);
}

.eyebrow.light {
  color: var(--champagne);
}

.section-band--plum .eyebrow.light {
  color: var(--champagne);
}

.section-band--plum h2 {
  color: #fff;
}

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

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-150%) skewX(-12deg);
  animation: shimmer-sweep 3.2s ease-in-out infinite;
  pointer-events: none;
}

.pulse-ring {
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ken-burns {
  animation: ken-burns 16s ease-in-out infinite alternate;
}

.animate-float {
  animation: float-y 7s ease-in-out infinite;
}

.brand-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #2f1432 0%, var(--accent-dark) 50%, #2f1432 100%);
  padding: 2.25rem 0;
  overflow: hidden;
}

.marquee-viewport {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track img {
  height: 2.52rem;
  width: auto;
  flex-shrink: 0;
  max-width: 9rem;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(1) brightness(1.08);
  transition: opacity 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1.08);
  transform: scale(1.05);
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img,
img.hover-zoom {
  transition: transform 0.7s ease;
}

.hover-zoom:hover img,
img.hover-zoom:hover {
  transform: scale(1.06);
}

.service-card:nth-child(even) {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .service-card:nth-child(even) {
    margin-top: 2.5rem;
  }
}

.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ebd8e1;
  padding: 1.35rem 1.35rem 1.5rem;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #3d1b3d, #d81e5b, #e8c07a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 28px rgba(61, 27, 61, 0.15);
  border-color: rgba(216, 30, 91, 0.45);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card span {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.4s ease;
}

.service-card:hover span {
  transform: scale(1.08) rotate(6deg);
}

.service-card h3 {
  margin-top: 1rem;
  font-size: 2rem;
  font-style: italic;
}

.service-card p {
  margin-top: 0.7rem;
  font-size: 1.01rem;
  line-height: 1.5;
}

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

.package-card ul {
  list-style: none;
  padding-left: 0;
}

.package-card ul li {
  display: flex;
  gap: 0.5rem;
}

.package-card ul li::before {
  content: '✓';
  color: var(--accent);
  flex-shrink: 0;
}

.package-tagline {
  font-style: italic;
  color: var(--muted);
}

.package-motto {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent);
  margin-top: 0.25rem;
}

.package-cta {
  display: inline-flex;
  align-self: start;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  transition: background 0.35s ease, transform 0.35s ease;
}

.package-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.package-card {
  background: #fff;
  border: 1px solid #e8d8e2;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(61, 27, 61, 0.14);
  border-color: rgba(216, 30, 91, 0.35);
}

.package-media {
  overflow: hidden;
  margin: 1rem 1rem 0;
  border-radius: 18px;
  background: #fff;
}

.package-media img {
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}

.package-card div {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.package-card h3 {
  font-size: 2rem;
  font-style: italic;
}

.package-card p {
  line-height: 1.5;
}

.package-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  line-height: 1.45;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.about-media {
  width: 100%;
  min-width: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.about h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.about p {
  line-height: 1.65;
  margin-bottom: 1rem;
}

.showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.showcase-head h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.showcase-link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--champagne);
  font-weight: 700;
  transition: color 0.35s ease;
}

.showcase-link:hover {
  color: #fff;
}

.showcase-link::after {
  background: var(--champagne);
}

.showcase-link.mobile-only {
  display: none;
  margin-top: 1.2rem;
}

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

.showcase-grid > div {
  border-radius: 12px;
  overflow: hidden;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

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

.testimonial-grid article {
  background: #fff;
  border: 1px solid #ebd8e1;
  border-radius: 12px;
  padding: 1.2rem;
  line-height: 1.56;
  font-size: 0.96rem;
  display: grid;
  gap: 0.8rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-grid blockquote {
  margin: 0;
  font-style: italic;
  color: rgba(26, 16, 20, 0.85);
}

.testimonial-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 22px rgba(61, 27, 61, 0.11);
}

.testimonial-credit {
  display: block;
  text-align: center;
  margin-top: 0.15rem;
  color: var(--accent-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-grid--centered {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid--centered .contact-blocks {
  justify-items: center;
}

.contact-blocks {
  display: grid;
  gap: 1.5rem;
}

.contact-block h3 {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  color: var(--accent);
  margin-bottom: 0.45rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.contact-block p {
  line-height: 1.55;
  color: rgba(26, 16, 20, 0.8);
}

.contact-block a:hover {
  color: var(--accent);
}

.contact-map {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-map iframe {
  width: 100%;
  aspect-ratio: 1;
  min-height: 360px;
  border: 0;
  display: block;
}

.booking-band {
  margin-top: 0;
}

.booking-orb {
  position: absolute;
  z-index: 0;
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  filter: blur(52px);
  opacity: 0.35;
  pointer-events: none;
  animation: blob 14s ease-in-out infinite;
}

.booking-orb.orb-left {
  left: -5rem;
  top: 1rem;
  background: var(--champagne);
}

.booking-orb.orb-right {
  right: -3rem;
  bottom: 0;
  background: var(--accent-dark);
  animation-delay: -4s;
}

.booking-band .section-inner,
.booking-wrap {
  position: relative;
  z-index: 1;
}

.booking-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  color: #ffe7f2;
}

.booking-wrap h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0.8rem 0;
}

.booking-wrap > p {
  max-width: 580px;
  margin: 0 auto 1.3rem;
}

.booking-form.refined {
  margin-top: 1.1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0cfde;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  text-align: left;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  color: #705f68;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.booking-form input,
.booking-form textarea {
  border: 1px solid #eccddc;
  border-radius: 7px;
  padding: 0.62rem 0.66rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.booking-form .full {
  grid-column: 1 / -1;
}

.status {
  min-height: 1.3rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  color: rgba(26, 16, 20, 0.85);
}

.footer-inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  height: 9.75rem;
  width: auto;
  display: block;
  transition: transform 0.35s ease;
}

.footer-logo:hover img {
  transform: scale(1.03);
}

.footer-col h3 {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.33em;
  color: var(--accent);
  margin-bottom: 0.65rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  line-height: 1.6;
  color: rgba(26, 16, 20, 0.8);
}

.footer-col a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 30, 91, 0.22);
  color: var(--accent);
  background: #fff;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.social-links svg {
  width: 2.3rem;
  height: 2.3rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 2rem 1.35rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(26, 16, 20, 0.55);
}

.footer-credit {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: inherit;
}

.footer-credit a:hover {
  color: var(--accent);
}

.chat-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border: 0;
  border-radius: 999px;
  min-width: 60px;
  height: 60px;
  padding: 0 1rem;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 29, 104, 0.35);
  animation: pulse-ring 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  z-index: 40;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.chat-toggle-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px #fff;
}

.chat-toggle-dot.is-online {
  background: #4ade80;
}

.chat-toggle-dot.is-offline {
  background: #a1a1aa;
}

.chat-toggle:hover {
  transform: scale(1.05);
}

.chat-toggle:active {
  transform: scale(0.95);
}

.chat-panel {
  position: fixed;
  right: 1rem;
  bottom: 5.3rem;
  width: min(380px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 40;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.9rem 1rem;
}

.chat-header h3 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
}

.chat-status {
  margin: 0.2rem 0 0;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.78);
}

.chat-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 35;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, #d62b67, #cb2f5f 55%, #d83476);
  color: #fff;
  padding: 0.9rem 1.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: 0 14px 32px rgba(214, 43, 103, 0.38);
  border: 1px solid rgba(216, 30, 91, 0.4);
  transition: transform 0.3s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.floating-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  background: linear-gradient(135deg, #3d1b3d, #4a2049 55%, #3d1b3d);
  box-shadow: 0 16px 34px rgba(61, 27, 61, 0.35);
}

.floating-cta:active {
  transform: translateX(-50%) scale(0.97);
}

.chat-messages {
  height: min(52vh, 320px);
  overflow: auto;
  padding: 0.85rem;
  background: #fffbfd;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.chat-message {
  max-width: 88%;
  padding: 0.62rem 0.8rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-message-user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-message-assistant {
  align-self: flex-start;
  background: var(--bg-soft);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

[data-chat-form] {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.chat-captcha {
  grid-column: 1 / -1;
  background: #fff7fa;
  border: 1px solid #f0cfde;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.chat-captcha-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.78rem;
  color: rgba(26, 16, 20, 0.78);
}

.chat-captcha-label input {
  width: 4.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  text-align: center;
  font: inherit;
}

.chat-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

[data-chat-form] input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.6rem;
}

[data-chat-form] button {
  border: 0;
  border-radius: 10px;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.6rem 0.8rem;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
  background: #3c1843;
  color: #fdf6f8;
  padding: 4rem 2rem 5rem;
}

.gallery-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  animation: blob 14s ease-in-out infinite;
}

.gallery-hero-orb.orb-accent {
  right: -6rem;
  top: -2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--accent);
  opacity: 0.3;
}

.gallery-hero-orb.orb-gold {
  left: -5rem;
  bottom: 0;
  width: 16rem;
  height: 16rem;
  background: var(--champagne);
  opacity: 0.25;
  animation-delay: -5s;
}

.gallery-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
}

.gallery-hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-style: italic;
}

.gallery-hero p {
  margin-top: 1.2rem;
  max-width: 40rem;
  line-height: 1.6;
  color: rgba(253, 246, 248, 0.82);
}

.gallery-page {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 0.75rem;
}

.gallery-masonry figure {
  margin: 0 0 0.75rem;
  break-inside: avoid;
}

.gallery-masonry img {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-masonry figure:hover img {
  transform: scale(1.04);
}

section[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

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

  .package-grid,
  .about,
  .contact-grid,
  .showcase-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .showcase-link:not(.mobile-only) {
    display: none;
  }

  .showcase-link.mobile-only {
    display: inline-flex;
  }

  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .section-inner,
  .gallery-page {
    width: min(var(--container), calc(100% - 1rem));
  }

  .hero-text h1 {
    font-size: 2.7rem;
  }

  .service-cards,
  .testimonial-grid,
  .booking-form.refined {
    grid-template-columns: 1fr;
  }

  .section-band {
    padding: 3.5rem 0;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-social .social-links {
    justify-content: center;
  }
}

.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 16, 20, 0.42);
  z-index: 60;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 1.5rem));
  z-index: 61;
}

.cookie-banner-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(26, 16, 20, 0.16);
  padding: clamp(1rem, 2.2vw, 1.25rem);
}

.cookie-banner-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.5rem;
  align-items: center;
}

.cookie-banner-copy h2,
.cookie-banner h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  margin-bottom: 0.4rem;
}

.cookie-banner-text {
  line-height: 1.5;
  color: rgba(26, 16, 20, 0.78);
  margin: 0;
  font-size: 0.88rem;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 10.5rem;
}

.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 0.62rem 0.9rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-primary {
  background: var(--accent);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: var(--accent-dark);
}

.cookie-btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.cookie-btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-btn-link {
  background: transparent;
  color: rgba(26, 16, 20, 0.62);
  padding: 0.35rem 0.2rem;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cookie-btn-link:hover {
  color: var(--accent);
}

.cookie-banner-settings h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cookie-category {
  border-top: 1px solid var(--line);
  padding: 0.75rem 0;
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.cookie-category-head label {
  font-weight: 600;
  font-size: 0.92rem;
}

.cookie-category p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(26, 16, 20, 0.72);
}

.cookie-always {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
}

.cookie-category input[type='checkbox'] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent);
}

.cookie-manage {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 35;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: rgba(26, 16, 20, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.cookie-manage:hover {
  color: var(--accent);
  border-color: rgba(216, 30, 91, 0.35);
}

body.cookie-banner-open {
  overflow: hidden;
}

body.cookie-banner-open .chat-toggle,
body.cookie-banner-open .floating-cta,
body.cookie-banner-open .cookie-manage {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.legal-page {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.legal-page h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 16, 20, 0.55);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin: 2rem 0 0.65rem;
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.45rem;
}

.legal-page p,
.legal-page li {
  line-height: 1.65;
  color: rgba(26, 16, 20, 0.82);
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.2rem;
}

.legal-page a {
  color: var(--accent);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: var(--bg-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-legal {
  margin-top: 0.45rem;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: 0.65rem;
    width: calc(100% - 1rem);
  }

  .cookie-banner-main {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .cookie-banner-actions {
    min-width: 0;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-manage {
    bottom: 4.75rem;
  }

  body:has(.floating-cta) .cookie-manage {
    bottom: 8.5rem;
  }

  body:has(.floating-cta) .chat-toggle {
    bottom: 4.75rem;
  }
}

@media (min-width: 761px) {
  .floating-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  body:has(.floating-cta) .chat-toggle {
    bottom: 4.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
  }
}
