:root {
  --purple: #9B7EBD;
  --purple-deep: #4A2C7A;
  --purple-light: #B89FD4;
  --purple-pale: #F0E8FA;
  --pink: #E8A0BF;
  --pink-deep: #C4608A;
  --pink-pale: #FDF0F6;
  --cream: #FDFAF6;
  --cream-dark: #F5EDE0;
  --gold: #C9A84C;
  --gold-pale: #FFFCF0;
  --text: #2D1F3D;
  --text-light: #6B5780;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(74,44,122,0.10);
  --shadow-hover: 0 8px 32px rgba(74,44,122,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 72px;
}

/* ═══ TYPOGRAPHY ═══ */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
p { line-height: 1.75; color: var(--text-light); }
em { font-style: italic; color: var(--pink-deep); }
a { color: inherit; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,246,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,159,212,0.2);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(74,44,122,0.10); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-deep);
  text-decoration: none;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--pink-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--purple); border-bottom-color: var(--purple); }

.btn-nav {
  background: var(--purple-deep) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-nav:hover {
  background: var(--purple) !important;
  transform: scale(1.04);
  border-bottom: none !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(14px);
  padding: 1.5rem 2rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(184,159,212,0.2);
  box-shadow: 0 8px 24px rgba(74,44,122,0.10);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--purple-pale);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-nav-mobile {
  background: var(--purple-deep);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-align: center;
  margin-top: 0.5rem;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--purple-deep); color: var(--white); }
.btn-primary:hover { background: var(--purple); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-pink { background: var(--pink-deep); color: var(--white); }
.btn-pink:hover { background: var(--pink); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* ═══ PAGE HERO ═══ */
.page-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #6B3A9A 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ═══ CARDS ═══ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ═══ TRUST STRIP ═══ */
.trust-strip {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--purple-pale);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--purple-pale);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.trust-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--purple-deep); margin-bottom: 0.25rem; }
.trust-card span { font-size: 0.9rem; color: var(--text-light); font-weight: 600; }
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } }

/* ═══ SERVICE PREVIEW CARDS ═══ */
.services-preview { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
  position: absolute;
  top: 0; left: 0; right: 0;
}
.service-card.rabbit::before { background: linear-gradient(90deg, var(--gold), #E8C86A); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card .emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.service-card h3 { color: var(--purple-deep); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1rem; }
.service-card .link { color: var(--purple); font-weight: 700; font-size: 0.9rem; }
.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #E8C86A);
  color: #5A3A00;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ═══ JUDGMENT-FREE BANNER ═══ */
.judgment-banner {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--pink-deep) 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white);
}
.judgment-banner h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.25rem; }
.judgment-banner p { color: rgba(255,255,255,0.88); max-width: 680px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ═══ ABOUT PREVIEW ═══ */
.about-preview { background: var(--white); }
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-preview-img {
  position: relative;
}
.about-preview-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 1;
}
.about-preview-img::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 3px solid var(--purple-light);
  border-radius: var(--radius);
  z-index: 0;
}
.about-preview-text h2 { color: var(--purple-deep); margin-bottom: 1.25rem; }
.about-preview-text p { margin-bottom: 1.5rem; }
@media (max-width: 768px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-preview-img::before { display: none; }
}

/* ═══ HOME CTA ═══ */
.home-cta {
  background: var(--cream);
  padding: 4rem 0;
  text-align: center;
}
.home-cta h2 { color: var(--purple-deep); margin-bottom: 1.5rem; }
.home-cta .sub-link { display: block; margin-top: 1.2rem; color: var(--text-light); font-weight: 600; font-size: 0.95rem; }
.home-cta .sub-link a { color: var(--purple); text-decoration: underline; }

/* ═══ SERVICES PAGE ═══ */
.services-intro {
  background: var(--white);
  padding: 2.5rem 0 0;
  text-align: center;
}
.services-intro p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.pricing-section { padding: 3.5rem 0; }
.pricing-section h2 {
  color: var(--purple-deep);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-section .section-intro { margin-bottom: 1.5rem; max-width: 600px; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table thead { background: var(--purple-deep); color: var(--white); }
.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--purple-pale);
  font-size: 0.95rem;
}
.pricing-table td:not(:first-child) { text-align: center; font-weight: 700; color: var(--purple-deep); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) { background: var(--purple-pale); }
.pricing-table .note { font-size: 0.82rem; color: var(--text-light); font-weight: 400; display: block; }
@media (max-width: 640px) {
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 0.7rem 0.75rem; }
}

/* Rabbit section */
.rabbit-section {
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin: 3.5rem 0;
}
.rabbit-section h2 { color: #5A3A00; margin-bottom: 0.5rem; }
.rabbit-section .section-intro { margin-bottom: 1.5rem; }
.rabbit-section .pricing-table thead { background: #8B6914; }
.rabbit-section .pricing-table tr:nth-child(even) { background: #FFF8E0; }

/* Dematting card */
.dematting-card {
  background: var(--pink-pale);
  border-left: 4px solid var(--pink-deep);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}
.dematting-card h3 { color: var(--pink-deep); margin-bottom: 0.75rem; }
.dematting-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.dematting-table td { padding: 0.6rem 0; border-bottom: 1px solid rgba(196,96,138,0.15); font-size: 0.95rem; }
.dematting-table td:last-child { font-weight: 700; color: var(--pink-deep); text-align: right; }
.dematting-table tr:last-child td { border-bottom: none; }

/* Add-ons */
.addons { margin: 2rem 0; }
.addons h3 { color: var(--purple-deep); margin-bottom: 1rem; }
.addon-chips { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.addon-chip {
  background: var(--purple-pale);
  color: var(--purple-deep);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--purple-light);
}

/* Payment line */
.payment-line {
  text-align: center;
  padding: 1.5rem 0 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
}
.payment-line span { color: var(--purple-deep); }

/* Editorial sections */
.editorial { background: var(--white); }
.editorial-inner { max-width: 780px; margin: 0 auto; }
.editorial-block { padding: 3.5rem 0; border-bottom: 1px solid var(--purple-pale); }
.editorial-block:last-child { border-bottom: none; }
.editorial-block h2 { color: var(--purple-deep); margin-bottom: 1.5rem; }
.editorial-block p { margin-bottom: 1rem; font-size: 1.02rem; }
.editorial-block p:last-child { margin-bottom: 0; }
.editorial-block ul { margin: 1rem 0 1rem 1.5rem; }
.editorial-block li { margin-bottom: 0.5rem; color: var(--text-light); line-height: 1.7; }

/* ═══ ABOUT PAGE ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 1;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 3px solid var(--purple-light);
  border-radius: var(--radius);
  z-index: 0;
}
.about-bio h2 { color: var(--purple-deep); margin-bottom: 0.4rem; }
.about-bio .subtitle { color: var(--pink-deep); font-style: italic; font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; display: block; }
.about-bio p { margin-bottom: 1rem; }
.about-quote {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--purple-deep);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-location { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img::before { display: none; }
}

/* ═══ GALLERY PAGE ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.featured { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--purple-pale);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder .ph-icon { font-size: 2rem; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ═══ CONTACT PAGE ═══ */
.contact-section { background: var(--white); }
.contact-cta { text-align: center; padding: 3rem 0 2rem; }
.contact-cta .btn-large { font-size: 1.15rem; padding: 1.2rem 3rem; }
.divider-text {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 2rem 0;
  letter-spacing: 0.05em;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  background: var(--purple-pale);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .icon { font-size: 2rem; margin-bottom: 1rem; }
.contact-card strong { display: block; font-size: 1.05rem; color: var(--purple-deep); margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.92rem; margin-bottom: 0.75rem; }
.contact-card a {
  display: inline-block;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  margin-top: 0.5rem;
}
.contact-note {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  padding-bottom: 3rem;
}
@media (max-width: 768px) { .contact-cards { grid-template-columns: 1fr; } }

/* ═══ FOOTER ═══ */
footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col .btn-pink-sm {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.footer-col .btn-pink-sm:hover { background: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══ HERO (homepage only) ═══ */
.hero {
  min-height: calc(100vh - 72px);
  background-image: url('../images/van.jpg');
  background-size: cover;
  background-position: center 40%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,20,80,0.72) 0%, rgba(196,96,138,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  max-width: 700px;
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}
