:root {
  --midnight: #1c1440;
  --indigo: #3a2472;
  --violet: #6b3aa0;
  --magenta: #b83f9c;
  --pink: #d162a8;
  --clay: var(--magenta);
  --terracotta: var(--pink);
  --deep-brown: var(--midnight);
  --brown: var(--violet);
  --gold: var(--magenta);
  --cream: #f7f2fc;
  --cream-dark: #e9dcf3;
  --text: #2a1f45;
  --white: #ffffff;
}

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

body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--midnight);
}

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

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 3px solid var(--magenta);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span { color: var(--magenta); }

.nav-logo { height: 64px; width: auto; display: block; border-radius: 10px; }

.footer-logo { height: 100px; width: auto; margin: 0 auto 10px; border-radius: 10px; }

.hero-banner-img { width: 100%; display: block; }

.hero-logo { width: 280px; max-width: 65%; margin: 0 auto 20px; border-radius: 16px; box-shadow: 0 12px 34px rgba(0,0,0,0.35); }

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--violet);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

.menu-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(165deg, var(--midnight) 0%, var(--indigo) 30%, var(--violet) 60%, var(--magenta) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.hero .motto {
  font-size: 1.2rem;
  font-style: italic;
  color: #f0d9ec;
  margin-bottom: 24px;
}

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: #f3eaf7;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: transform 0.15s, background 0.2s;
  cursor: pointer;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover { background: var(--white); color: var(--violet); }

/* Sections */
section { padding: 72px 0; }

.section-alt { background: var(--cream-dark); }

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--violet);
  font-style: italic;
  margin-bottom: 40px;
}

/* Cards / grids */
.grid {
  display: grid;
  gap: 28px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(58,36,114,0.1);
}

.card h3 { margin-bottom: 10px; }

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

.value-icon { font-size: 1.8rem; margin-bottom: 10px; }

/* Statement blocks */
.statement {
  background: var(--white);
  border-left: 5px solid var(--magenta);
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 32px;
}

.statement h2 { margin-bottom: 14px; }

.verse {
  text-align: center;
  font-style: italic;
  color: var(--violet);
  max-width: 620px;
  margin: 0 auto;
  padding: 32px 0;
  font-size: 1.1rem;
}

.verse cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--magenta);
}

/* Taglines marquee-ish list */
.taglines {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.taglines li {
  background: var(--white);
  border: 1px solid var(--magenta);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--violet);
}

/* Services */
.price-tag {
  color: var(--magenta);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 10px 0;
}

.placeholder-note {
  text-align: center;
  background: #f3e6f7;
  border: 1px dashed var(--violet);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.9rem;
  color: var(--violet);
  margin-bottom: 32px;
}

/* Gallery */
.gallery-item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--indigo), var(--violet), var(--magenta));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

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

/* Slideshow */
.slideshow {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.slideshow-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--midnight);
  box-shadow: 0 14px 36px rgba(28,20,64,0.28);
}

.slideshow-frame img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slideshow-frame img.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 18px 14px;
  background: linear-gradient(to top, rgba(20,12,42,0.85), rgba(20,12,42,0));
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  z-index: 2;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  color: var(--midnight);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.slide-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-counter {
  text-align: center;
  margin-top: 14px;
  color: var(--violet);
  font-weight: 600;
  font-size: 0.9rem;
}

.slide-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 16px;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.slide-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: opacity 0.2s, border-color 0.2s;
}

.slide-thumbs img.active {
  opacity: 1;
  border-color: var(--magenta);
}

/* Contact / booking */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-list { list-style: none; }

.info-list li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.info-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--magenta);
}

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

label { font-weight: 600; font-size: 0.9rem; }

input, textarea {
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}

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

/* Footer */
footer {
  background: var(--midnight);
  color: var(--cream);
  padding: 48px 0 24px;
  text-align: center;
}

footer .brand { color: var(--white); }
footer .brand span { color: var(--pink); }

footer .foot-verse {
  font-style: italic;
  color: #d9c6ec;
  margin: 16px 0 24px;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.foot-links a { color: var(--cream); font-weight: 600; }
.foot-links a:hover { color: var(--pink); }

.copyright { font-size: 0.85rem; color: #b8a3cf; }

@media (max-width: 800px) {
  .grid-3, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .hero h1 { font-size: 2rem; }
}
