:root {
  --white: #FDFBF9;
  --purple: #6A3FA3;
  --purple-light: #9B6BC8;
  --purple-pale: #F0E8F8;
  --pink: #E8809B;
  --pink-light: #F5C6D5;
  --pink-pale: #FDF0F4;
  --charcoal: #1A1225;
  --mid: #4A3560;
  --text: #3B2D4F;
  --muted: #8B7BA0;
  --border: #E8DCF0;
  --gold: #C9A96E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 8px 0;
  text-align: center;
  letter-spacing: 1px;
}

.top-bar span { margin: 0 20px; }

.top-bar a { color: var(--pink-light); text-decoration: none; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 34px;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: top 0.3s ease;
}

header.scrolled { top: 0; box-shadow: 0 4px 30px rgba(106,63,163,0.08); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo span { display: block; font-size: 10px; letter-spacing: 6px; color: var(--purple); font-family: 'DM Sans', sans-serif; margin-top: 2px; }

.logo:hover { color: var(--charcoal); }

nav { display: flex; gap: 36px; align-items: center; }

nav a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav a:hover { color: var(--purple); }
nav a:hover::after { transform: scaleX(1); }

nav a.active { color: var(--purple); }
nav a.active::after { transform: scaleX(1); }

.btn-book {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: white;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-book:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 2px;
  transition: color 0.2s;
}

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

.mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  color: white;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--purple);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 106px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,107,200,0.15) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,128,155,0.1) 0%, transparent 70%);
}

/* Floating petals */
.petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50% 0 50% 0;
  opacity: 0.15;
  animation: floatPetal 12s infinite ease-in-out;
}

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.25; }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { color: white; }

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink-light);
  border: 1px solid rgba(245,198,213,0.3);
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}

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

.hero p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: white;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--pink-light); color: var(--pink-light); }

.hero-image {
  position: relative;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-image-wrap {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}

.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--purple);
  line-height: 1;
}

.hero-badge .label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Opening hours chip */
.hero-hours {
  position: absolute;
  top: 24px; right: -12px;
  background: var(--charcoal);
  color: white;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 1px;
}

.hero-hours strong { color: var(--pink-light); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--purple);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero.has-bg {
  background: linear-gradient(135deg, rgba(26,18,37,0.85) 0%, rgba(45,26,68,0.8) 50%, rgba(58,31,85,0.85) 100%);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,107,200,0.12) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: white;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--purple);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.ticker-inner span { margin: 0 40px; }
.ticker-inner .dot { color: var(--pink-light); }

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 580px;
}

/* ===== ABOUT ===== */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  background: linear-gradient(160deg, var(--purple-pale) 0%, var(--pink-pale) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 60%;
  background: linear-gradient(160deg, #9B6BC8 0%, #E8809B 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  user-select: none;
}

.about-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--purple);
  z-index: 2;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-mission {
  margin: 32px 0;
  padding: 24px;
  border-left: 3px solid var(--purple);
  background: var(--purple-pale);
}

.about-mission p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--mid);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--purple-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.value-item strong {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
#services {
  background: linear-gradient(180deg, var(--purple) 0%, #4A1F7A 100%);
  color: white;
}

#services .section-tag { color: var(--pink-light); }
#services .section-title { color: white; }
#services .section-sub { color: rgba(255,255,255,0.5); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, transform 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 16px;
}

.service-icon {
  width: 44px; height: 44px;
  background: rgba(155,107,200,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
  border-bottom: 1px solid rgba(232,128,155,0.3);
  padding-bottom: 2px;
}

.service-detail {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-detail h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.service-detail ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink-light);
}

/* ===== GALLERY ===== */
#gallery { background: var(--white); }

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--purple-pale);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:first-child .gallery-placeholder { min-height: 420px; }

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--purple-light);
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-pale) 0%, var(--pink-pale) 100%);
}

.gallery-item:nth-child(even) .gallery-placeholder {
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--purple-pale) 100%);
  color: var(--pink);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,37,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 2px;
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--purple-pale); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: white;
  padding: 36px;
  position: relative;
  border-bottom: 3px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(106,63,163,0.1);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: white;
  font-style: italic;
}

.author-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.author-service { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }

.quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  font-style: italic;
}

/* ===== FAQ ===== */
#faq { background: white; }

.faq-container {
  max-width: 760px;
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--purple); }

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--purple);
  min-width: 28px;
  transition: background 0.2s, transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--purple);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ===== BROCHURE / PRICE LIST ===== */
#pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--purple-pale);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s, transform 0.3s;
}

.pricing-card:hover {
  background: var(--pink-pale);
  transform: translateY(-2px);
}

.pricing-card .treat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--charcoal);
}

.pricing-card .price {
  font-size: 18px;
  color: var(--purple);
  font-weight: 500;
}

.pricing-card .desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== BOOKING ===== */
#booking {
  background: linear-gradient(135deg, var(--purple) 0%, #4A1F7A 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

#booking::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(232,128,155,0.15) 0%, transparent 60%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

#booking .section-tag { color: var(--pink-light); }
#booking .section-title { color: white; }

.booking-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.detail-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.booking-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
}

.booking-form h3 {
  font-size: 26px;
  color: white;
  margin-bottom: 32px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: span 2; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group select option { background: var(--charcoal); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink-light); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

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

.form-submit { margin-top: 24px; }

.form-submit button {
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: white;
  border: none;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.form-submit button:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== CONTACT ===== */
#contact { background: var(--white); }

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

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
}

.contact-icon-wrap {
  width: 48px; height: 48px;
  min-width: 48px;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-form-wrap { }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  background: white;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--purple); }

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== HOURS BADGE ===== */
.hours-badge {
  background: var(--charcoal);
  color: white;
  padding: 28px 32px;
  margin-top: 32px;
}

.hours-badge h4 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: rgba(255,255,255,0.55); }
.hours-row .time { color: var(--pink-light); font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--mid) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 32px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-logo span { display: block; font-size: 10px; letter-spacing: 6px; color: var(--pink-light); font-family: 'DM Sans', sans-serif; margin-top: 3px; }

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  margin: 20px 0 28px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--pink-light); color: var(--pink-light); }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== FLOATING BOOK ===== */
.float-book {
  position: fixed;
  bottom: 32px; right: 32px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: white;
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(106,63,163,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.float-book:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(106,63,163,0.5); }

/* ===== DIVIDER ===== */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 56px;
  max-width: 280px;
}

.ornament-divider span { flex: 1; height: 1px; background: var(--border); }
.ornament-divider .diamond {
  width: 8px; height: 8px;
  background: var(--purple);
  transform: rotate(45deg);
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .top-bar { display: none; }
  header { top: 0; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner,
  .page-hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { height: 340px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-form { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .pricing-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}
