/* ============================================================
   DIVINE M HERITAGE — style.css
   Premium Spiritual Website
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #f8f5ef;
  --cream-dark: #f0ebe1;
  --gold: #c9a75d;
  --gold-light: #e0c47e;
  --gold-dark: #a8863c;
  --olive: #a3b18a;
  --olive-dark: #7d9468;
  --white: #ffffff;
  --text-dark: #2c2416;
  --text-mid: #5a4e3a;
  --text-light: #8c7c62;
  --shadow-sm: 0 4px 20px rgba(44, 36, 22, 0.07);
  --shadow-md: 0 8px 40px rgba(44, 36, 22, 0.12);
  --shadow-lg: 0 20px 60px rgba(44, 36, 22, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}
em {
  font-style: italic;
  color: var(--gold);
}

/* ===== SCROLL REVEAL ===== */
.reveal-up {
   opacity: 0; 
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
   opacity: 0; 
  transform: translateX(-48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
   opacity: 0; 
  transform: translateX(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201, 167, 93, 0.4);
}
.btn-primary:hover {
  box-shadow: 0 10px 36px rgba(201, 167, 93, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(44, 36, 22, 0.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-product {
  background: transparent;
  color: var(--gold);
  border: none;
  padding: 8px 0;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--gold);
  border-radius: 0;
}
.btn-product:hover {
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Lotus Spinner */
.lotus-spinner {
  width: 80px;
  height: 80px;
  position: relative;
  animation: rotateLotus 4s linear infinite;
}
.petal {
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50% 50% 0 50%;
  top: 50%;
  left: 50%;
  transform-origin: -6px -6px;
  opacity: 0.85;
}
.p1 { transform: rotate(0deg); }
.p2 { transform: rotate(60deg); }
.p3 { transform: rotate(120deg); }
.p4 { transform: rotate(180deg); }
.p5 { transform: rotate(240deg); }
.p6 { transform: rotate(300deg); }
/*.petal-center {*/
/*  position: absolute;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background: var(--gold);*/
/*  border-radius: 50%;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*}*/
@keyframes rotateLotus { to { transform: rotate(360deg); } }

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.6} 50%{opacity:1} }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(248, 245, 239, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 14px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(201,167,93,0.35);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { box-shadow: 0 6px 24px rgba(201,167,93,0.5); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

.mobile-menu {
  display: none;
  background: rgba(248,245,239,0.97);
  backdrop-filter: blur(12px);
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--cream-dark); color: var(--gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,167,93,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(163,177,138,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,167,93,0.15);
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(163,177,138,0.12);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Hero Text Animation */
.hero-text {
  opacity: 0;
  transform: translateX(-60px);
  animation: heroTextIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}
@keyframes heroTextIn {
  to { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(201,167,93,0.1);
  border-radius: 50px;
  border: 1px solid rgba(201,167,93,0.25);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { text-align: left; }
.stat span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.stat em { color: var(--gold); font-style: normal; font-size: 1.5rem; }
.stat p { font-size: 0.78rem; color: var(--text-light); font-weight: 500; margin-top: 2px; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(44, 36, 22, 0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  animation: heroVisualIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
@keyframes heroVisualIn {
  to { opacity: 1; transform: scale(1); }
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-img-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--olive) 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  opacity: 0.25;
  animation: blobMorph 8s ease-in-out infinite alternate;
}
@keyframes blobMorph {
  0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-img {
  width: 100%;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  object-fit: cover;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  z-index: 2;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-icon { color: var(--gold); font-size: 1rem; }
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(201,167,93,0.4);
  animation: floatBadge 4s ease-in-out infinite 2s;
}
.hero-float-card i { font-size: 1.2rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d3020 100%);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,167,93,0.85);
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 120px 0 0;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.about-block.reverse { direction: rtl; }
.about-block.reverse > * { direction: ltr; }

.about-visual { position: relative; display: flex; justify-content: center; }

.about-img-ring {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 6px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
}
.about-img-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(201,167,93,0.35);
  animation: rotateSlow 20s linear infinite;
}
.about-img-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-block:hover .about-img-ring img { transform: scale(1.05); }

@keyframes rotateSlow { to { transform: rotate(360deg); } }

.about-icon-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(201,167,93,0.4);
  animation: floatBadge 3s ease-in-out infinite;
}
.about-icon-float.right { right: auto; left: 20px; bottom: 20px; }

.content-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.85;
}

/* Values Strip */
.values-strip {
  background: linear-gradient(135deg, #2c2416 0%, #3d3020 100%);
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  text-align: center;
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(201,167,93,0.08); }

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,167,93,0.15);
  border: 1.5px solid rgba(201,167,93,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.value-item:hover .value-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.value-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.value-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
}

/* ============================================================
   OFFERINGS / PRODUCTS SECTION
   ============================================================ */
.offerings {
  padding: 120px 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.1); }

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.product-body {
  padding: 24px 24px 28px;
}
.product-body h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.product-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Coming Soon Card */
.product-card.coming-soon {
  background: linear-gradient(135deg, #2c2416 0%, #3d3020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  cursor: default;
}
.product-card.coming-soon:hover { transform: translateY(-4px); }

.coming-soon-inner {
  text-align: center;
  padding: 40px 28px;
}
.cs-icon {
  width: 72px;
  height: 72px;
  background: rgba(201,167,93,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  animation: pulse 3s ease-in-out infinite;
}
.coming-soon-inner h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.coming-soon-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,167,93,0.15);
  border: 1px solid rgba(201,167,93,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.cs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.testimonial-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,93,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-slider {
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
}

.testimonial-slide {
  /*display: none;*/
  animation: fadeSlide 0.6s ease;
}
.testimonial-slide.active { display: flex; justify-content: center; }
@keyframes fadeSlide {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.testi-card {
  background: var(--white);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 100%;
  width: 100%;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0;
  position: absolute;
  top: 40px;
  left: 40px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-light);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.97rem; font-weight: 600; color: var(--text-dark); }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }

.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testi-prev, .testi-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testi-prev:hover, .testi-next:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,167,93,0.4);
}

.testi-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,167,93,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 22, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--cream-dark);
}

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

.contact-info .section-eyebrow { display: block; text-align: left; }
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-eyebrow::after { display: none; }

.contact-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.contact-info > p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,167,93,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-item strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.contact-detail-item span { font-size: 0.87rem; color: var(--text-light); }

.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201,167,93,0.4);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(44, 36, 22, 0.18);
  padding: 12px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group textarea { resize: none; }

.form-group label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  pointer-events: none;
  transition: all 0.3s ease;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -14px;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line { width: 100%; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(163,177,138,0.15);
  border: 1px solid var(--olive);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}
.form-success i { color: var(--olive-dark); font-size: 1.2rem; }
.form-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--text-dark); }

.footer-top { padding: 80px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon { color: var(--gold); }

.brand-col p {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  transition: color 0.3s ease;
}
.footer-col ul a:hover { color: var(--gold); }

.newsletter-col p {
  color: rgba(255,255,255,0.45);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

.nl-note { color: rgba(255,255,255,0.25) !important; font-size: 0.75rem !important; margin-bottom: 0 !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.heart { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201,167,93,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover { transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { gap: 48px; }
  .about-block { gap: 48px; }
  .about-img-ring { width: 320px; height: 320px; }
  .values-strip { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

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

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-text { animation: heroTextInMobile 1s ease 0.3s forwards; }
  @keyframes heroTextInMobile {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { left: 0; }
  .hero-float-card { right: 0; }

  .about-block,
  .about-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }
  .about-img-ring { width: 280px; height: 280px; }
  .about-content .btn { margin: 0 auto; display: inline-flex; }

  .values-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 24px;
  }

  .products-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px 28px; }

  .testi-card { padding: 40px 28px; }

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
  .values-strip { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 48px; height: 1px; }
}
