/* ===== Variables ===== */
:root {
  --gold: #d4af37;
  --gold-light: #f0d78c;
  --gold-dark: #a8892a;
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --emerald: #0d4f3c;
  --emerald-light: #1a7a5e;
  --pink: #e8a0b4;
  --pink-dark: #8b2252;
  --maroon: #6b1d3a;
  --cream: #fdf6f0;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #666;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  overflow-wrap: break-word;
}

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-top: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-label.pink { color: var(--pink-dark); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

.btn-full { width: 100%; }

.btn-copy {
  background: var(--black-soft);
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--gold);
}

.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  min-width: 0;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content {
  min-width: 0;
  max-width: 100%;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 7vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 100%;
}

.hero h1 .script {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
}

.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.hero-image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 3px var(--gold-dark);
  transform: rotate(2deg);
  transition: transform var(--transition);
}

.hero-image-frame:hover { transform: rotate(0deg) scale(1.02); }

.hero-image-frame img {
  width: 100%;
  object-fit: cover;
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-width: 0;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.about-card:hover { transform: translateY(-6px); }

.about-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.75rem;
}

.about-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Jewellery ===== */
.jewellery {
  position: relative;
  background: var(--emerald);
  overflow: hidden;
}

.jewellery-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(240, 215, 140, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(240, 215, 140, 0.1) 0%, transparent 35%);
  pointer-events: none;
}

.jewellery .container { position: relative; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  min-width: 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 215, 140, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.product-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.product-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.product-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.product-link:hover { color: var(--gold-light); }

.gallery-row {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Errands ===== */
.errands {
  background: linear-gradient(135deg, #fdf0f4 0%, #fce4ec 50%, #f8e8ef 100%);
}

.errands-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.errands h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--maroon);
  margin: 0.5rem 0;
}

.errands-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--pink-dark);
  margin-bottom: 1rem;
}

.errands-content > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.errand-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}

.errand-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text);
}

.errand-list li span:first-child { font-size: 1.1rem; }

.value-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pill {
  background: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pink-dark);
}

.pill strong {
  display: block;
  color: var(--maroon);
  font-size: 0.9rem;
}

.pill span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.errands-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ===== Payment ===== */
.payment {
  background: var(--black-soft);
  color: var(--white);
}

.payment .section-header h2 { color: var(--white); }
.payment .section-header p { color: rgba(255, 255, 255, 0.6); }

.payment-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.payment-card {
  background: linear-gradient(145deg, #1e1e1e, #141414);
  border: 2px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  text-align: center;
  min-width: min(260px, 100%);
  max-width: 100%;
}

.payment-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.payment-number {
  display: block;
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
}

.payment-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ===== Book ===== */
.book {
  background: var(--cream);
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  min-width: 0;
}

.book-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0.5rem 0 1rem;
}

.book-info > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

a.contact-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.contact-icon { font-size: 1.3rem; }

.book-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.book-form input,
.book-form select,
.book-form textarea {
  padding: 0.85rem 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  min-width: 0;
}

.footer-brand .script {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-thanks { margin-top: 1rem; font-size: 0.9rem; }

.footer-links h4,
.footer-connect h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: var(--transition);
}

.social-links a svg { width: 22px; height: 22px; }

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform var(--transition);
}

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float:hover { transform: scale(1.1); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--gold-light);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1001;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid,
  .errands-grid,
  .book-grid,
  .about-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid > *,
  .about-grid > *,
  .product-grid > *,
  .errands-grid > *,
  .book-grid > *,
  .footer-grid > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-grid { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-actions .btn { flex: 1 1 auto; }

  .errand-list { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    max-width: 100%;
    background: var(--black);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .hero-image-frame { transform: none; }
  .hero-image-frame:hover { transform: none; }

  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .payment-card { padding: 2rem; min-width: auto; width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-eyebrow { letter-spacing: 0.12em; }
}
