/*
Theme Name: Maison Blanche
Theme URI: https://example.com/maison-blanche
Author: Your Name
Description: Classic, elegant & fully mobile-first WordPress theme for bridal boutiques with WP Booking Calendar.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: maison-blanche
Tags: bridal, elegant, classic, appointment-booking, mobile-first, responsive
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   DESIGN TOKENS — MOBILE FIRST
   ============================================================ */
:root {
  /* Brand */
  --pink: #EA569D;
  --pink-dark: #c93e84;
  --pink-light: #f480b8;
  --pink-pale: #fde8f3;
  --pink-ultra: #fff0f8;

  /* Neutrals */
  --ivory: #faf7f4;
  --cream: #f5ede4;
  --blush: #edd5c9;
  --charcoal: #2c2424;
  --dark: #1a0f0f;
  --mid: #5a4a4a;
  --light-text: #9a8585;
  --white: #ffffff;

  /* Gold accent */
  --gold: #c9a96e;
  --gold-light: #e0c898;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing scale — mobile base */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Section padding — mobile */
  --section-y: var(--space-16);

  /* Container */
  --container-px: var(--space-6);
  --container-max: 1320px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease);
  --transition-fast: 0.2s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(234, 86, 157, 0.08);
  --shadow-md: 0 8px 32px rgba(234, 86, 157, 0.12);
  --shadow-lg: 0 20px 60px rgba(234, 86, 157, 0.16);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY — FLUID SCALE
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}

/* Fluid type: min → max across viewport */
h1 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.8;
}

.display-serif {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: var(--space-3);
}

.extra-eyebrow {
  margin-top: var(--space-3)
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--mid);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--narrow {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.container--wide {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-y);
}

.section--sm {
  padding-block: var(--space-12);
}

.section--lg {
  padding-block: clamp(var(--space-16), 10vw, var(--space-32));
}

/* ============================================================
   FLEX & GRID UTILS
   ============================================================ */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-4 {
  gap: var(--space-4);
}

.text-center {
  text-align: center;
}

/* ============================================================
   BUTTONS — FULLY RESPONSIVE
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  min-height: 48px;
  /* touch target */
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 0 4px 20px rgba(234, 86, 157, 0.3);
}

.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  box-shadow: 0 8px 32px rgba(234, 86, 157, 0.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}

.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--pink);
  border-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn--lg {
  font-size: clamp(0.7rem, 1.8vw, 0.8rem);
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ============================================================
   ORNAMENT
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-block: var(--space-5);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), transparent);
  max-width: 80px;
}

.ornament--center {
  justify-content: center;
}

.ornament__symbol {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

/* ============================================================
   HEADER — MOBILE FIRST
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-4) 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) 0;
  box-shadow: 0 1px 0 rgba(234, 86, 157, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header.hero-mode {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
img.custom-logo {
  width: 80px;
}

.site-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.52rem, 1.5vw, 0.6rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
}

.hero-mode .logo-name {
  color: var(--white);
}

.hero-mode .logo-tagline {
  color: rgba(255, 255, 255, 0.7);
}

/* Desktop Nav — hidden on mobile */
.site-nav {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.site-nav a {
  font-size: clamp(0.62rem, 1.2vw, 0.7rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition-fast);
  padding-block: var(--space-2);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  border-radius: var(--radius-full);
  transition: width 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.current::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--pink);
}

.hero-mode .site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.hero-mode .site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  margin-left: var(--space-2);
}

/* Stop the nav underline + colour-change from bleeding into the CTA button */
.nav-cta .btn::after {
  display: none;
}

.nav-cta .btn:hover {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.hamburger:hover {
  background: var(--pink-pale);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero-mode .hamburger span {
  background: var(--white);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__logo {
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.1em;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 5vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--dark);
  position: relative;
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--pink);
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}

.mobile-nav a:hover::after {
  width: 100%;
}

.mobile-nav__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mid);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav__close:hover {
  background: var(--pink-pale);
  color: var(--pink);
}

.mobile-nav__divider {
  width: 40px;
  height: 1px;
  background: var(--blush);
}

.mobile-nav__social {
  display: flex;
  gap: var(--space-4);
  position: absolute;
  bottom: var(--space-8);
}

.mobile-nav__social a {
  font-size: 1rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--blush);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-family: inherit;
}

.mobile-nav__social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.mobile-nav__social a::after {
  display: none;
}

/* ============================================================
   HERO — CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
  isolation: isolate;
}

/* Slides */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  transition: transform 7s var(--ease);
  will-change: transform;
}

.hero-slide.active .hero-slide__bg {
  transform: scale(1);
}

/* Slide gradient overlays — layered for depth */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 15, 15, 0.75) 0%, transparent 55%),
    linear-gradient(to right, rgba(26, 15, 15, 0.6) 0%, transparent 65%);
}

/* Slide-specific background colours (used when real images not uploaded) */
.hero-slide--1 .hero-slide__bg {
  background-color: #3d1832;
  background-image: radial-gradient(ellipse at 60% 30%, #7a2b5a 0%, #3d1832 60%);
}

.hero-slide--2 .hero-slide__bg {
  background-color: #1a1025;
  background-image: radial-gradient(ellipse at 40% 40%, #4a1840 0%, #1a1025 60%);
}

.hero-slide--3 .hero-slide__bg {
  background-color: #2a1520;
  background-image: radial-gradient(ellipse at 70% 50%, #7a3560 0%, #2a1520 60%);
}

/* Pink shimmer accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--pink-light), var(--pink), transparent);
  z-index: 5;
}

/* Particle/petal animation layer */
.hero-petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: clamp(4px, 1vw, 8px);
  height: clamp(4px, 1vw, 8px);
  border-radius: 50% 0 50% 0;
  background: rgba(234, 86, 157, 0.25);
  animation: petalFall linear infinite;
}

.petal:nth-child(1) {
  left: 8%;
  animation-duration: 9s;
  animation-delay: 0s;
  width: 6px;
  height: 6px;
}

.petal:nth-child(2) {
  left: 18%;
  animation-duration: 12s;
  animation-delay: 2s;
  width: 4px;
  height: 4px;
}

.petal:nth-child(3) {
  left: 32%;
  animation-duration: 8s;
  animation-delay: 4s;
  width: 8px;
  height: 8px;
}

.petal:nth-child(4) {
  left: 48%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 5px;
  height: 5px;
}

.petal:nth-child(5) {
  left: 62%;
  animation-duration: 10s;
  animation-delay: 3s;
  width: 7px;
  height: 7px;
}

.petal:nth-child(6) {
  left: 76%;
  animation-duration: 11s;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
}

.petal:nth-child(7) {
  left: 88%;
  animation-duration: 9s;
  animation-delay: 0.5s;
  width: 6px;
  height: 6px;
}

.petal:nth-child(8) {
  left: 25%;
  animation-duration: 13s;
  animation-delay: 6s;
  width: 5px;
  height: 5px;
}

.petal:nth-child(9) {
  left: 55%;
  animation-duration: 7s;
  animation-delay: 2.5s;
  width: 8px;
  height: 8px;
}

.petal:nth-child(10) {
  left: 92%;
  animation-duration: 15s;
  animation-delay: 4.5s;
  width: 4px;
  height: 4px;
}

@keyframes petalFall {
  0% {
    top: -20px;
    transform: rotate(0deg) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    top: 110%;
    transform: rotate(720deg) translateX(40px);
    opacity: 0;
  }
}

/* Hero Content */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--container-px);
  padding-bottom: clamp(var(--space-12), 10vw, var(--space-20));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(234, 86, 157, 0.15);
  border: 1px solid rgba(234, 86, 157, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-5);
  width: fit-content;
  animation: fadeInUp 0.8s var(--ease) both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero__badge span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 4.75rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s 0.2s var(--ease) both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__title br {
  display: none;
}

.hero__title em {
  font-style: italic;
  color: var(--pink-light);
  display: block;
}

.hero__desc {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s 0.4s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  animation: fadeInUp 0.8s 0.6s var(--ease) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* Carousel Nav Dots */
.hero-dots {
  position: absolute;
  bottom: clamp(var(--space-6), 4vw, var(--space-10));
  right: var(--container-px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--pink);
  height: 24px;
  box-shadow: 0 0 12px rgba(234, 86, 157, 0.6);
}

/* Carousel Arrow Buttons */
.hero-arrows {
  position: absolute;
  bottom: clamp(var(--space-6), 4vw, var(--space-10));
  left: var(--container-px);
  z-index: 4;
  display: flex;
  gap: var(--space-2);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.05);
}

/* Slide counter */
.hero-counter {
  position: absolute;
  top: 50%;
  right: var(--container-px);
  transform: translateY(-50%);
  z-index: 4;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.hero-counter__current {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.hero-counter__line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-counter__total {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: clamp(var(--space-6), 4vw, var(--space-10));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollBounce 3s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scrollBounce {

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

  60% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--white);
  padding: var(--space-8) 0;
  border-top: 1px solid rgba(234, 86, 157, 0.12);
  border-bottom: 1px solid rgba(234, 86, 157, 0.12);
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-4);
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.intro-strip__icon {
  width: clamp(36px, 6vw, 48px);
  height: clamp(36px, 6vw, 48px);
  border: 1.5px solid var(--pink);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  flex-shrink: 0;
}

.intro-strip__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 2px;
}

.intro-strip__text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.about-images {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-images__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 88%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.about-images__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 58%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-images__badge {
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  background: var(--pink);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-style: italic;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.about-content h2 {
  margin-bottom: var(--space-5);
}

.about-content p {
  color: var(--mid);
  margin-bottom: var(--space-5);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(234, 86, 157, 0.12);
  border-bottom: 1px solid rgba(234, 86, 157, 0.12);
  margin: var(--space-6) 0;
}

.about-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
  display: block;
}

.about-stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  display: block;
  margin-top: var(--space-1);
}

/* ============================================================
   COLLECTIONS GALLERY
   ============================================================ */
.collections-section {
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--blush);
}

.collection-card:first-child {
  grid-column: span 2;
}

.collection-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.collection-card:first-child .collection-card__img {
  aspect-ratio: 16/9;
}

.collection-card:hover .collection-card__img {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 15, 0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.collection-card:hover .collection-card__overlay {
  opacity: 1;
}

.collection-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(var(--space-5), 4vw, var(--space-8));
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition);
}

.collection-card:hover .collection-card__info {
  transform: translateY(0);
  opacity: 1;
}

.collection-card__info h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  margin-bottom: var(--space-1);
}

.collection-card__info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Always-visible label for mobile */
.collection-card__label {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: rgba(234, 86, 157, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.booking-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(234, 86, 157, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(234, 86, 157, 0.1) 0%, transparent 55%);
}

.booking-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.booking-cta .eyebrow {
  color: var(--pink-light);
}

.booking-cta h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.booking-cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

.booking-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--space-10);
  position: relative;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  position: relative;
}

/* Connector line between steps */
.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(clamp(44px, 8vw, 56px) / 2);
  left: calc(50% + clamp(22px, 4vw, 28px));
  right: calc(-50% + clamp(22px, 4vw, 28px));
  height: 1px;
  background: linear-gradient(to right, rgba(234, 86, 157, 0.6), rgba(234, 86, 157, 0.2));
}

.booking-step__num {
  width: clamp(44px, 8vw, 56px);
  height: clamp(44px, 8vw, 56px);
  border: 1.5px solid rgba(234, 86, 157, 0.7);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #fff;
  background: rgba(234, 86, 157, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(234, 86, 157, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.booking-step__label {
  font-size: clamp(0.65rem, 1.6vw, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
  max-width: 100px;
}

/* ============================================================
   BOOKING CALENDAR WIDGET WRAPPER
   ============================================================ */
.booking-calendar-section {
  background: var(--ivory);
}

.booking-calendar-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-6), 5vw, var(--space-12));
  box-shadow: var(--shadow-md);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--pink-ultra);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--white);
  padding: clamp(var(--space-6), 4vw, var(--space-8));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--pink);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--pink);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--pink-pale);
  margin-bottom: var(--space-2);
}

.testimonial-card p {
  font-style: italic;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-author__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--pink-pale);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-author__name {
  font-weight: 500;
  font-size: 0.88rem;
  display: block;
  color: var(--dark);
}

.testimonial-author__date {
  font-size: 0.75rem;
  color: var(--pink);
  display: block;
}

/* ============================================================
   INSTAGRAM STRIP
   ============================================================ */
.instagram-strip {
  background: var(--ivory);
}

.instagram-strip__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--blush);
  position: relative;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(234, 86, 157, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 1.2rem;
}

.instagram-item:hover .instagram-item__overlay {
  opacity: 1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: clamp(6rem, 15vw, 10rem) 0 clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(234, 86, 157, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(234, 86, 157, 0.1) 0%, transparent 50%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.page-hero .eyebrow {
  color: var(--pink-light);
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: var(--space-5) auto 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
  background: var(--ivory);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding: var(--space-10) 0;
  border-bottom: 1px solid rgba(234, 86, 157, 0.1);
}

.service-item:last-child {
  border-bottom: none;
}

.service-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blush);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.service-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(234, 86, 157, 0.3);
  background: var(--pink-pale);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.service-content h2 {
  margin-bottom: var(--space-5);
}

.service-content p {
  color: var(--mid);
  margin-bottom: var(--space-5);
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.service-includes li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Service body (CPT content from editor) */
.service-body p {
  color: var(--mid);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.service-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.service-body ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.service-body ul li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.service-detail__content .ornament::before,
.service-detail__content .ornament::after {
  display: none;
}

.service-detail__body p {
  color: var(--mid);
  margin-bottom: var(--space-5);
  line-height: 1.8;
}

.service-detail__body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.service-detail__body ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.service-detail__body ul li::before {
  content: '✦';
  color: var(--pink);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

/* Sidebar cards */
.service-sidebar-card {
  background: var(--white);
  border: 1px solid rgba(234, 86, 157, 0.12);
  border-radius: var(--radius-lg, 6px);
  padding: var(--space-6);
  margin-bottom: var(--space-5);
  box-shadow: 0 2px 16px rgba(234, 86, 157, 0.06);
}

.service-sidebar-card--light {
  background: var(--cream, #faf7f4);
}

.service-sidebar-card h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--space-3);
  color: var(--dark);
}

.service-sidebar-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-sidebar-card a:not(.btn) {
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.service-sidebar-card a:not(.btn):hover {
  color: var(--pink);
}

/* page-hero with background image */
.page-hero--has-image {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 10, 18, 0.75) 0%, rgba(20, 10, 18, 0.3) 60%, transparent 100%);
}

.page-hero--has-image .eyebrow,
.page-hero--has-image h1,
.page-hero--has-image p {
  color: var(--white);
}

.page-hero--has-image .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}


.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.contact-info h2 {
  margin-bottom: var(--space-5);
}

.contact-info>p {
  color: var(--mid);
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(234, 86, 157, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  background: var(--pink-pale);
}

.contact-detail__label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: var(--space-1);
}

.contact-detail__value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(234, 86, 157, 0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: clamp(var(--space-6), 5vw, var(--space-10));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-2);
}

.contact-form-wrapper>p {
  color: var(--mid);
  font-size: 0.9rem;
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1.5px solid rgba(234, 86, 157, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(234, 86, 157, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23EA569D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right var(--space-5) center;
  background-color: var(--ivory);
  cursor: pointer;
  padding-right: calc(var(--space-5) * 2.5);
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  height: clamp(280px, 45vw, 450px);
  background: var(--cream);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(15%) contrast(96%) saturate(90%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  padding: clamp(var(--space-12), 8vw, var(--space-20)) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-tagline {
  color: var(--pink);
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.85;
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.45);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 86, 157, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.3s var(--ease);
}

.footer-col ul li a:hover {
  color: var(--pink-light);
}

.footer-col ul li a:hover::before {
  width: 12px;
}

.footer-newsletter input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.88rem;
  padding: var(--space-4) var(--space-5);
  outline: none;
  margin-bottom: var(--space-3);
  min-height: 48px;
  transition: border-color var(--transition-fast);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter input:focus {
  border-color: var(--pink);
}

.footer-newsletter .btn {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom .footer-bottom {
  border-top: none;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--pink-light);
}

.footer-bottom__links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE — TABLET 640px+
   ============================================================ */
@media (min-width: 640px) {
  :root {
    --container-px: var(--space-8);
    --section-y: var(--space-20);
  }

  .hero__title br {
    display: block;
  }

  .intro-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

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

  .collection-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .collection-card:first-child .collection-card__img {
    aspect-ratio: unset;
    height: 100%;
    min-height: 500px;
  }

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

  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .booking-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .instagram-strip__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================================
   RESPONSIVE — TABLET LANDSCAPE 768px+
   ============================================================ */
@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .hero__content {
    padding-inline: var(--space-12);
  }

  .hero-counter {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .service-item:nth-child(even) .service-img {
    order: 2;
  }

  .service-item:nth-child(even) .service-content {
    order: 1;
  }

  .service-detail__grid {
    grid-template-columns: 1fr 340px;
    gap: var(--space-12);
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-16);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --container-px: var(--space-10);
    --section-y: clamp(var(--space-20), 8vw, var(--space-32));
  }

  .hero__content {
    padding-inline: clamp(var(--space-12), 8vw, var(--space-20));
    /* max-width: 700px; */
  }

  .hero-scroll {
    display: flex;
  }

  .hero-arrows {
    display: flex;
  }

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

  .collections-grid {
    gap: var(--space-5);
  }

  .about-images {
    aspect-ratio: unset;
    height: 600px;
  }
}

/* ============================================================
   RESPONSIVE — LARGE 1280px+
   ============================================================ */
@media (min-width: 1280px) {
  :root {
    --container-px: var(--space-12);
  }

  .hero-counter {
    display: flex;
  }
}

/* ============================================================
   REDUCED MOTION ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-slide__bg {
    transform: scale(1) !important;
  }

  .petal {
    display: none;
  }
}

/* ============================================================
   FOCUS STYLES — ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2.5px solid var(--pink);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   SAFE AREA INSETS — iPhone notch / home indicator
   ============================================================ */
.site-footer {
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.hero {
  padding-top: env(safe-area-inset-top, 0);
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {

  .site-header,
  .hero-arrows,
  .hero-dots,
  .hero-petals,
  .mobile-nav,
  .hamburger,
  .site-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .hero {
    height: auto;
    min-height: unset;
    page-break-after: always;
  }
}

/* ============================================================
   HOME GALLERY GRID (homepage preview)
   ============================================================ */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: var(--space-3);
}

.home-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm, 3px);
  background: var(--blush);
  display: block;
  cursor: pointer;
}

.home-gallery-item--featured {
  grid-row: span 2;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
  display: block;
}

.home-gallery-item:hover img {
  transform: scale(1.05);
}

.home-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(234, 86, 157, 0);
  transition: background 0.35s var(--ease);
}

.home-gallery-item:hover .home-gallery-item__overlay {
  background: rgba(234, 86, 157, 0.12);
}

.home-gallery-item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush), var(--pink-pale));
}

.home-gallery-item--placeholder i {
  font-size: 2rem;
  color: var(--pink);
  opacity: 0.25;
}

/* ============================================================
   FULL GALLERY PAGE — MASONRY
   ============================================================ */
.gallery-section {
  background: var(--cream, #faf7f4);
}

.gallery-masonry {
  columns: 4;
  column-gap: var(--space-3);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-3);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm, 3px);
  cursor: pointer;
  background: var(--blush);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 15, 15, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease);
  color: var(--white);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(26, 15, 15, 0.42);
}

.gallery-item__overlay i {
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery-item:hover .gallery-item__overlay i {
  opacity: 1;
  transform: scale(1);
}

/* Empty state */
.gallery-empty {
  text-align: center;
  padding: var(--space-16) 0;
  color: var(--mid);
}

.gallery-empty i {
  font-size: 3.5rem;
  color: var(--pink);
  opacity: 0.25;
  margin-bottom: var(--space-5);
  display: block;
}

.gallery-empty h3 {
  margin-bottom: var(--space-3);
}

/* Pagination */
.gallery-pagination {
  text-align: center;
  margin-top: var(--space-12);
}

.gallery-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.gallery-pagination .page-numbers {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  border: 1.5px solid var(--blush);
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.gallery-pagination .page-numbers.current,
.gallery-pagination .page-numbers:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 3, 8, 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.gallery-lightbox__inner img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  display: block;
}

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: absolute;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  background: var(--pink);
  color: var(--white);
}

.gallery-lightbox__close {
  top: var(--space-5);
  right: var(--space-5);
}

.gallery-lightbox__prev {
  left: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__next {
  right: var(--space-5);
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   GALLERY RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .gallery-masonry {
    columns: 3;
  }
}

@media (max-width: 900px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .home-gallery-item--featured {
    grid-row: span 1;
  }

  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 540px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: var(--space-2);
  }

  .gallery-masonry {
    columns: 2;
    column-gap: var(--space-2);
  }

  .gallery-lightbox__prev {
    left: var(--space-2);
  }

  .gallery-lightbox__next {
    right: var(--space-2);
  }
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */

/* Step indicators */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-10);
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.booking-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--mid);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}

.booking-step--active .booking-step__num {
  background: var(--pink);
  color: #fff;
}

.booking-step--done .booking-step__num {
  background: #10b981;
  color: #fff;
}

.booking-step__label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  /* color: var(--mid); */
}

.booking-step--active .booking-step__label {
  color: var(--pink);
  font-weight: 600;
}

.booking-step__connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(234, 86, 157, 0.6), rgba(234, 86, 157, 0.2));
  max-width: 80px;
  margin: 0 8px;
  margin-bottom: 22px;
  align-self: center;
  margin-bottom: 28px; /* aligns with vertical centre of the circles */
}

/* The booking page already has connector divs — suppress the ::after pseudo-line there */
#bookingSteps .booking-step:not(:last-child)::after {
  display: none;
}

/* Calendar wrapper */
.booking-calendar {
  background: var(--white);
  border: 1px solid rgba(234, 86, 157, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(234, 86, 157, .07);
}

.booking-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, #3d1832, #7a2b5a);
}

.booking-calendar__month {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .05em;
}

.cal-nav-btn {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: rgba(255, 255, 255, .25);
}

/* Grid */
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: var(--space-4);
  background: rgba(234, 86, 157, .05);
}

.cal-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-10);
  color: var(--mid);
  font-size: .9rem;
}

.cal-head {
  text-align: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  padding: var(--space-2) 0;
}

.cal-day {
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-body);
  font-size: .85rem;
  transition: transform .15s, box-shadow .15s;
  position: relative;
  background: var(--white);
}

.cal-day:hover:not(:disabled) {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(234, 86, 157, .2);
  z-index: 2;
}

.cal-day--empty {
  background: transparent;
  pointer-events: none;
}

.cal-day--past {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.cal-day--closed {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.cal-day--available {
  background: #f0fdf4;
  color: #166534;
}

.cal-day--available:hover:not(:disabled) {
  background: #dcfce7;
}

.cal-day--partial {
  background: #fffbeb;
  color: #92400e;
}

.cal-day--partial:hover:not(:disabled) {
  background: #fef3c7;
}

.cal-day--full {
  background: #fff0f3;
  color: #9f1239;
  cursor: not-allowed;
}

.cal-day--today {
  box-shadow: inset 0 0 0 2px var(--pink);
}

.cal-day--selected {
  background: var(--pink) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(234, 86, 157, .4);
}

.cal-day__num {
  font-weight: 600;
  line-height: 1;
}

.cal-badge {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .8;
}

/* Legend */
.booking-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid rgba(234, 86, 157, .08);
  background: var(--white);
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--mid);
}

.cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cal-dot--available {
  background: #22c55e;
}

.cal-dot--partial {
  background: #f59e0b;
}

.cal-dot--full {
  background: #ef4444;
}

.cal-dot--closed {
  background: #d1d5db;
}

/* Pane & back button */
.booking-pane {
  animation: fadeSlideUp .3s ease;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.booking-back-btn {
  background: none;
  border: none;
  color: var(--pink);
  font-size: .85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  transition: opacity .2s;
}

.booking-back-btn:hover {
  opacity: .7;
}

.booking-pane__header {
  margin-bottom: var(--space-6);
}

/* Slot cards */
.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.slot-card {
  border: 2px solid rgba(234, 86, 157, .15);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.slot-card:hover:not(:disabled) {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(234, 86, 157, .15);
  transform: translateY(-2px);
}

.slot-card--full {
  background: #fafafa;
  opacity: .5;
  cursor: not-allowed;
}

.slot-card--low {
  border-color: #f59e0b55;
}

.slot-card--open {
  border-color: rgba(34, 197, 94, .3);
}

.slot-card__time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark);
}

.slot-card__avail {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.slot--open .slot-card__avail {
  color: #16a34a;
}

.slot--low .slot-card__avail {
  color: #d97706;
}

.slot--full .slot-card__avail {
  color: #dc2626;
}

/* Pips */
.slot-card__pips {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.pip {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pip--free {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
}

.pip--used {
  background: #ea569d;
}

/* Booking form */
.mb-booking-form .req {
  color: var(--pink);
}

/* Messages */
.booking-msg {
  padding: .85rem 1.1rem;
  border-radius: 8px;
  font-size: .9rem;
  margin-bottom: var(--space-4);
}

.booking-msg--error {
  background: #fff0f0;
  color: #7a0000;
  border: 1px solid #fca5a5;
}

.booking-msg--ok {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}

/* Success */
.booking-success {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}

.booking-success__icon {
  font-size: 3rem;
  color: var(--pink);
  margin-bottom: var(--space-5);
  animation: pulse 2s infinite;
}

.booking-success h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-4);
}

.booking-success p {
  color: var(--mid);
  max-width: 440px;
  margin: 0 auto var(--space-4);
  line-height: 1.8;
}

.booking-section {
  background: var(--ivory);
}

/* ═══════════════════════════════════════════════════════════════
   CANCELLATION RESULT SCREENS
   ═══════════════════════════════════════════════════════════════ */
.cancel-result-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3d1832 100%);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cancel-result-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(234,86,157,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cancel-result-hero .eyebrow {
  color: var(--pink-light);
}

.cancel-result-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 640px;
  margin: var(--space-3) auto 0;
  line-height: 1.2;
}

.cancel-result-panel {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: clamp(var(--space-10), 6vw, var(--space-16)) clamp(var(--space-8), 6vw, var(--space-16));
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.cancel-result__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-7);
}

.cancel-result__icon--success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.cancel-result__icon--expired {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.cancel-result__icon--already {
  background: var(--pink-ultra);
  color: var(--pink);
  border: 1px solid var(--pink-pale);
}

.cancel-result__icon--invalid {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.cancel-result__body {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 420px;
  margin: 0 auto var(--space-8);
}

.cancel-result__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .cancel-result__actions {
    flex-direction: row;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   EDITORIAL FEATURE SECTION
   ═══════════════════════════════════════════════════════════════ */
.editorial-feature {
  background: var(--cream);
  overflow: hidden;
}

.editorial-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.editorial-feature__visual {
  position: relative;
  flex-shrink: 0;
}

.editorial-feature__visual img,
.editorial-feature__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.editorial-feature__placeholder {
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink-pale) 100%);
}

.editorial-feature__accent-pill {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--blush);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-sm);
}

.editorial-feature__text {
  position: relative;
}

.editorial-feature__ghost-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8.5rem);
  line-height: 1;
  color: var(--blush);
  opacity: 0.5;
  position: absolute;
  top: -3.5rem;
  left: -1.5rem;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.editorial-feature__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.editorial-feature__text .eyebrow,
.editorial-feature__text .ornament,
.editorial-feature__text .lead,
.editorial-feature__text p,
.editorial-feature__text a {
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .editorial-feature__inner {
    grid-template-columns: 1fr;
  }
  .editorial-feature__visual {
    order: -1;
  }
  .editorial-feature__ghost-num {
    font-size: 5rem;
    top: -2.5rem;
    left: 0;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PARALLAX MOOD SECTION
   ═══════════════════════════════════════════════════════════════ */
.parallax-mood {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.parallax-mood__bg {
  position: absolute;
  inset: 0;
  background-color: var(--dark);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  z-index: 0;
  transition: none;
}

.parallax-mood__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 15, 15, 0.35) 0%,
    rgba(26, 15, 15, 0.65) 50%,
    rgba(26, 15, 15, 0.35) 100%
  );
  z-index: 1;
}

.parallax-mood__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding: var(--space-16) var(--space-6);
}

.parallax-mood__rule {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: var(--space-7) auto;
}

.parallax-mood__caption {
  color: var(--pink-light) !important;
  letter-spacing: 0.22em;
}

.parallax-mood__headline {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  line-height: 1.02;
  color: var(--white);
  margin: var(--space-4) 0 var(--space-5);
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.45);
}

.parallax-mood__headline em {
  color: var(--pink-light);
  font-style: italic;
}

.parallax-mood__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 auto var(--space-8);
  line-height: 1.85;
}

.parallax-mood__btn {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.parallax-mood__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* iOS doesn't support background-attachment: fixed — fall back to scroll */
@supports (-webkit-touch-callout: none) {
  .parallax-mood__bg {
    background-attachment: scroll;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PILLARS — Why Brides Choose Us
   ═══════════════════════════════════════════════════════════════ */
.pillars-section {
  background: var(--ivory);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-12);
  border: 1px solid var(--blush);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar-card {
  padding: clamp(var(--space-8), 4vw, var(--space-12)) var(--space-7);
  border-right: 1px solid var(--blush);
  text-align: center;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-card:hover {
  background: var(--pink-ultra);
}

.pillar-card__roman {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.pillar-card__icon {
  font-size: 1.7rem;
  color: var(--pink);
  margin-bottom: var(--space-5);
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 var(--space-3);
  color: var(--charcoal);
  line-height: 1.3;
}

.pillar-card__desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 860px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar-card:nth-child(2) { border-right: none; }
  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2) { border-bottom: 1px solid var(--blush); }
  .pillar-card:nth-child(3) { border-right: 1px solid var(--blush); }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    border-right: none !important;
    border-bottom: 1px solid var(--blush);
  }
  .pillar-card:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════════════
   VISIT US — Location & Hours
   ═══════════════════════════════════════════════════════════════ */
.visit-section {
  background: var(--charcoal);
}

.visit-section .eyebrow {
  color: var(--pink-light);
}

.visit-section h2 {
  color: var(--white);
}

.visit-section .ornament__symbol {
  color: var(--gold);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: stretch;
  min-height: 480px;
}

.visit-info {
  padding: var(--space-10) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.visit-info .ornament__symbol {
  color: var(--gold);
}

.visit-address {
  font-style: normal;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  border-left: 2px solid var(--pink);
  padding-left: var(--space-4);
  margin: 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.visit-detail i {
  color: var(--pink);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.visit-detail div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.visit-detail a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.visit-detail a:hover {
  color: var(--pink-light);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  align-self: stretch;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.visit-map__placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

.visit-map__placeholder i {
  font-size: 2.5rem;
}

@media (max-width: 800px) {
  .visit-grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .visit-info {
    padding-bottom: 0;
  }
  .visit-map {
    min-height: 300px;
  }
  .visit-map iframe {
    min-height: 300px;
  }
}