/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D1F36;
  background: #FFFAF5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Colors ── */
:root {
  --plum: #7B2D8E;
  --plum-dark: #5A1D68;
  --plum-light: #9B4DB8;
  --amber: #F5A623;
  --amber-dark: #D4891A;
  --amber-light: #FFD080;
  --cream: #FFFAF5;
  --cream-dark: #FFF0E0;
  --text: #2D1F36;
  --text-light: #6B5A70;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(123,45,142,0.08);
  --shadow-md: 0 8px 30px rgba(123,45,142,0.12);
  --shadow-lg: 0 20px 60px rgba(123,45,142,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--text-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--amber);
  color: var(--text);
  border-color: var(--amber);
}
.btn-nav:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
}
.btn-amber {
  background: var(--amber);
  color: var(--text);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Section helpers ── */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum);
  background: rgba(123,45,142,0.08);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.1rem; max-width: 600px; }
.center { text-align: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,250,245,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,45,142,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--plum);
  line-height: 1.2;
}
.logo-icon { flex-shrink: 0; }
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
#main-nav a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: all 0.2s ease;
}
#main-nav a:hover { color: var(--plum); background: rgba(123,45,142,0.06); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #7B2D8E 0%, #5A1D68 30%, #3D1247 60%, #2A0A35 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245,166,35,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(155,77,184,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--amber-light);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-headline em { color: var(--amber); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 500px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-float img { width: 300px; height: 380px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.about-text .section-tag { margin-bottom: 1rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text > p { margin-bottom: 1rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

/* ── What We Offer ── */
.what-we-offer { background: var(--white); }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.offer-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.offer-card-img {
  height: 200px;
  overflow: hidden;
}
.offer-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-card-img img { transform: scale(1.08); }
.offer-card-body {
  padding: 1.75rem;
}
.offer-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,166,35,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.offer-card-body h3 { margin-bottom: 0.5rem; }
.offer-card-body p { font-size: 0.95rem; }

/* ── Vendors ── */
.vendors { background: var(--cream); }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.vendor-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.vendor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vendor-img { overflow: hidden; height: 100%; }
.vendor-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.vendor-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vendor-info h3 { margin-bottom: 0.5rem; }
.vendor-info p { font-size: 0.9rem; margin-bottom: 1rem; flex-grow: 1; }
.vendor-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  background: rgba(123,45,142,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  align-self: flex-start;
}

/* ── Testimonials ── */
.testimonials { background: linear-gradient(135deg, #7B2D8E 0%, #5A1D68 100%); }
.testimonials .section-tag { background: rgba(245,166,35,0.2); color: var(--amber-light); }
.testimonials .section-title { color: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.quote-mark { margin-bottom: 1rem; opacity: 0.6; }
.testimonial-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,166,35,0.5);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Visit ── */
.visit { background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.visit-desc { font-size: 1.05rem; margin-bottom: 2rem; }
.visit-details { display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(123,45,142,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--plum);
  margin-bottom: 0.2rem;
}
.detail-item span, .detail-item a {
  color: var(--text-light);
  font-size: 0.95rem;
}
.detail-item a:hover { color: var(--plum); }
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ── Newsletter ── */
.newsletter { background: var(--cream); }
.newsletter-inner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.newsletter-form { display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.input-group {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}
.nl-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.nl-input::placeholder { color: rgba(255,255,255,0.5); }
.nl-input:focus { border-color: var(--amber); background: rgba(255,255,255,0.15); }
.nl-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.nl-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber-light);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Footer ── */
.site-footer {
  background: #1A0A22;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--amber); }

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { min-height: 400px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,250,245,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(123,45,142,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  #main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  #main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  #main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
  }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; }
  .about-images { min-height: 350px; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-img-float img { width: 200px; height: 260px; }
  .about-highlights { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .vendor-grid { grid-template-columns: 1fr; }
  .vendor-card { grid-template-columns: 1fr; }
  .vendor-img img { height: 200px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
  .newsletter-inner { grid-template-columns: 1fr; padding: 2.5rem 2rem; text-align: center; }
  .newsletter-form { align-items: center; }
  .input-group { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
}
