:root {
  --pink: #E6007E;
  --pink-soft: #FF4FA8;
  --pink-deep: #B0005F;
  --black: #0A0A0A;
  --ink: #1A1A1A;
  --cream: #FFF8FB;
  --rose: #FCE6F0;
  --gray: #6B6B6B;
  --line: #EAD4DF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ------- NAV ------- */
nav.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(230, 0, 126, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: white;
}
.brand .nv {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  color: var(--pink);
  line-height: 1;
}
.brand .ds {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  font-size: 13px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink-soft); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--pink);
  color: white !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.nav-cta:hover {
  background: var(--pink-soft);
  transform: translateY(-1px);
}

/* mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  font-size: 22px;
}

/* ------- HERO ------- */
.hero {
  min-height: 100vh;
  background: var(--black);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink-deep) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--pink-soft);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--pink);
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.95;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 + .sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 32px;
}
.hero p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--pink);
  color: white;
}
.btn-primary:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--pink);
}
.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--pink-soft);
  color: var(--pink-soft);
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 240px 240px 16px 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a0a1a 0%, #4a0a2a 100%);
  border: 1px solid rgba(230,0,126,0.3);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  mix-blend-mode: luminosity;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(230,0,126,0.25) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  color: var(--ink);
  padding: 18px 26px;
  border-radius: 12px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
  z-index: 3;
}
.hero-badge .stars { color: var(--pink); letter-spacing: 2px; font-size: 14px; }
.hero-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; }
.hero-badge .lab { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }

/* ------- PAGE HEADER (sub-pages) ------- */
.page-header {
  background: var(--black);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: 0.18;
  border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink-deep) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.page-header > .container { position: relative; z-index: 2; }
.page-header .eyebrow {
  color: var(--pink-soft);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-header h1 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--pink);
  font-size: 1.3em;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumbs {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.breadcrumbs a { color: var(--pink-soft); }
.breadcrumbs .sep { margin: 0 10px; opacity: 0.4; }

/* ------- TRUST BAR ------- */
.trust {
  background: white;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-pill {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gray);
  text-transform: uppercase;
  font-weight: 400;
}
.brand-pill strong {
  color: var(--pink);
  font-weight: 600;
}

/* ------- SECTION ------- */
section.block {
  padding: 120px 0;
}
section.block.tight { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title .eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title h2 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--pink);
  font-size: 1.3em;
  line-height: 0.6;
}
.section-title p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

/* ------- SERVICES ------- */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  border: 1px solid var(--line);
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -25px rgba(230, 0, 126, 0.35);
  border-color: var(--pink-soft);
}
.service-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--rose) 0%, var(--pink-soft) 100%);
  position: relative;
  overflow: hidden;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-image img { transform: scale(1.06); }
.service-image .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,10,10,0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.service-body { padding: 28px 24px; }
.service-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}
.service-body p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 18px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--pink);
}
.service-price small {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-left: 4px;
}
.service-link {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.service-card:hover .service-link { color: var(--pink); }

/* ------- ABOUT (split) ------- */
.about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #2a0a1a 0%, #4a0a2a 100%);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-wrap { position: relative; }
.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--pink);
  border-radius: 16px;
  transform: translate(20px, 20px);
  z-index: -1;
}
.about-text .eyebrow {
  color: var(--pink);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text h2 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--pink);
  font-size: 1.4em;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stats .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--pink);
  font-weight: 500;
  line-height: 1;
}
.about-stats .lab {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ------- FEATURE LIST (process / steps) ------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  background: white;
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .2s, transform .2s;
}
.feature:hover {
  border-color: var(--pink-soft);
  transform: translateY(-4px);
}
.feature .num {
  font-family: 'Great Vibes', cursive;
  font-size: 56px;
  color: var(--pink);
  line-height: 0.7;
  margin-bottom: 16px;
}
.feature h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.feature p {
  color: var(--gray);
  font-size: 14px;
}

/* ------- PROMO STRIP ------- */
.promo {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink) 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.promo-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.promo h3 {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 8px;
}
.promo p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
}
.promo .btn {
  background: white;
  color: var(--pink);
  justify-self: end;
}
.promo .btn:hover {
  background: var(--ink);
  color: white;
}

/* ------- TESTIMONIALS ------- */
.testimonials { background: var(--cream); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.test-card {
  background: white;
  padding: 36px 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  position: relative;
}
.test-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  color: var(--pink-soft);
  opacity: 0.25;
  line-height: 1;
}
.test-card .stars {
  color: var(--pink);
  letter-spacing: 3px;
  margin-bottom: 18px;
  font-size: 14px;
  position: relative;
}
.test-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 400;
}
.test-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
.author-info .name { font-weight: 500; font-size: 14px; }
.author-info .role { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* ------- GALLERY ------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery .item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: var(--rose);
}
.gallery .item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery .item:hover img { transform: scale(1.08); }

/* ------- PRICE TABLE ------- */
.price-section { background: white; }
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.price-card:hover {
  border-color: var(--pink-soft);
  box-shadow: 0 20px 40px -20px rgba(230,0,126,0.2);
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 6px;
}
.price-card .desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 24px;
}
.price-list {
  list-style: none;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  gap: 20px;
}
.price-list li:last-child { border-bottom: none; }
.price-list .name {
  font-size: 15px;
  color: var(--ink);
  flex: 1;
}
.price-list .name small {
  display: block;
  color: var(--gray);
  font-size: 12px;
  margin-top: 2px;
}
.price-list .dots {
  flex: 0 0 auto;
  border-bottom: 1px dotted var(--line);
  flex: 1;
  margin: 0 12px;
  align-self: end;
  margin-bottom: 6px;
}
.price-list .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--pink);
  white-space: nowrap;
}

/* ------- CONTACT ------- */
.contact {
  background: var(--black);
  color: white;
}
.contact .section-title h2 { color: white; }
.contact .section-title p { color: rgba(255,255,255,0.6); }

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

.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(230,0,126,0.15);
  color: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-row .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 4px;
}
.contact-row .val {
  font-size: 16px;
  color: white;
  word-break: break-word;
}
.contact-row .val a:hover { color: var(--pink-soft); }
.contact-row .val small { display: block; color: rgba(255,255,255,0.55); font-size: 13px; margin-top: 2px; }

.booking-card {
  background: white;
  color: var(--ink);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 30px 80px -20px rgba(230,0,126,0.4);
}
.booking-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}
.booking-card .sub {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--cream);
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: white;
}
.booking-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* map */
.map-wrap {
  margin-top: 80px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 21/9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg); }

/* ------- DETAIL CONTENT (rich text pages) ------- */
.rich {
  background: white;
}
.rich-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.rich-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.rich-content h2:first-child { margin-top: 0; }
.rich-content h2 em {
  font-family: 'Great Vibes', cursive;
  font-style: normal;
  color: var(--pink);
  font-size: 1.3em;
}
.rich-content p {
  color: #444;
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.75;
}
.rich-content ul {
  list-style: none;
  margin: 8px 0 24px;
}
.rich-content ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #444;
  font-size: 15px;
}
.rich-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 14px;
  top: 12px;
}
.rich-content img {
  border-radius: 16px;
  margin: 24px 0;
  width: 100%;
}
.rich-content blockquote {
  border-left: 3px solid var(--pink);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  background: var(--rose);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
}

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.sidebar-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.sidebar-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
}
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
.sidebar-card .quick {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.sidebar-card .quick span:first-child { color: var(--pink); }

/* ------- FOOTER ------- */
footer.site-foot {
  background: #050505;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(230,0,126,0.15);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-grid h4 {
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.foot-grid ul { list-style: none; }
.foot-grid li {
  margin-bottom: 10px;
  font-size: 14px;
}
.foot-grid a:hover { color: var(--pink-soft); }
.foot-grid li a { transition: color .2s; }

.foot-brand .nv {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 4px;
}
.foot-brand .ds {
  letter-spacing: 6px;
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  font-size: 14px;
  color: white;
}
.socials a:hover { background: var(--pink); }
.copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ------- RESPONSIVE ------- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    padding: 20px 32px;
    gap: 16px;
    border-bottom: 1px solid rgba(230,0,126,0.2);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-grid, .about-grid, .contact-grid, .promo-inner, .rich-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 100px; padding-bottom: 60px; }
  .promo .btn { justify-self: start; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section.block { padding: 80px 0; }
  .page-header { padding: 130px 0 70px; }
  .sidebar-card { position: static; }
}
@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .foot-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badge { left: 0; right: 0; margin: 0 auto; max-width: 80%; }
  .booking-card, .price-card { padding: 28px 22px; }
}
