/* ============================================================
   PBM JEWELLER'S — Sections CSS
   ============================================================ */

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Decorative vignette sides */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,8,5,0.5) 0%, transparent 35%, transparent 65%, rgba(13,8,5,0.5) 100%);
}

.hero-content {
  display: none;  /* Hero Text Hide and Show */
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--ivory-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(250, 245, 234, 0.8);
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Slider Controls */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,150,12,0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 3px;
}

.hero-arrows {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,150,12,0.4);
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-arrow:hover {
  border-color: var(--gold-primary);
  background: rgba(200,150,12,0.15);
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(200,150,12,0.6);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(200,150,12,0.5);
  border-radius: 11px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 2px;
  animation: scroll-bounce 2s ease infinite;
}

@keyframes scroll-bounce {
  0% { top: 6px; opacity: 1; }
  100% { top: 16px; opacity: 0; }
}

/* ============================================================
   COLLECTIONS SECTION
   ============================================================ */
.collections {
  padding: var(--section-pad);
  background: var(--ivory-light);
  position: relative;
}


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

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(200,150,12,0.15);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: block;
  text-decoration: none;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,150,12,0.4);
}

.collection-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-card:hover .collection-card-img img {
  transform: scale(1.08);
}

.collection-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,8,5,0.85) 100%);
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-card-img-overlay {
  background: linear-gradient(180deg, rgba(13,8,5,0.1) 0%, rgba(13,8,5,0.9) 100%);
}

.collection-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 1;
}

.collection-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.collection-card-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--ivory-white);
  margin-bottom: 6px;
  line-height: 1.15;
}

.collection-card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250,245,234,0.75);
  margin-bottom: 16px;
  font-style: italic;
  line-height: 1.6;
}

.collection-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  transform: translateY(8px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.collection-card:hover .collection-card-btn {
  transform: translateY(0);
  opacity: 1;
}

.collection-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-card-btn svg {
  transform: translateX(4px);
}

/* ============================================================
   ABOUT SECTION (Home preview)
   ============================================================ */
.about-preview {
  padding: var(--section-pad);
  background: var(--dark-section);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,12,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {}

.about-scroll-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
  display: block;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory-white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  color: var(--gold-light);
}

.about-text {
  color: rgba(242,234,216,0.8);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(200,150,12,0.2);
  border-bottom: 1px solid rgba(200,150,12,0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-silver, #C8C0B0);
  font-style: italic;
  line-height: 1.3;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(200,150,12,0.2);
  background: rgba(200,150,12,0.05);
  border-radius: 2px;
}

.trust-badge span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 2;
}

/* About right - photo gallery */
.about-right {
  position: relative;
}

.about-gallery {
  position: relative;
  height: 550px;
}

.gallery-main {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200,150,12,0.25);
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  background: rgba(13,8,5,0.7);
  border: 1px solid rgba(200,150,12,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(200,150,12,0.2);
  border-color: var(--gold-primary);
}

.gallery-prev svg,
.gallery-next svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(13,8,5,0.9));
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-light);
}

/* Old scroll letter effect on left */
.scroll-letter-bg {
  position: relative;
  padding: 40px;
}

.scroll-letter-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0,0 L60,60 M60,0 L0,60" stroke="rgba(200,150,12,0.03)" stroke-width="1"/></svg>');
  pointer-events: none;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: var(--section-pad);
  background: var(--ivory-light);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,150,12,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(107,26,26,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.testimonials-track-wrap.grabbing { cursor: grabbing; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1.0);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: var(--ivory-white);
  border: 1px solid rgba(200,150,12,0.15);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,150,12,0.1);
  font-style: italic;
}

.testimonial-card:hover {
  border-color: rgba(200,150,12,0.35);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-primary);
  stroke: none;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(200,150,12,0.12);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--maroon-deep);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon-deep);
  line-height: 1.2;
}

.testimonial-city {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.testimonials-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,150,12,0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonials-btn:hover {
  background: rgba(200,150,12,0.1);
  border-color: var(--gold-primary);
}

.testimonials-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 2;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,150,12,0.25);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.testimonials-dot.active {
  background: var(--gold-primary);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   BRIDAL SECTION
   ============================================================ */
.bridal-section {
  padding: var(--section-pad);
  background: var(--maroon-deep);
  position: relative;
  overflow: hidden;
}

.bridal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="80" height="80"><rect width="80" height="80" fill="none"/><circle cx="40" cy="40" r="1" fill="rgba(200,150,12,0.08)"/></svg>');
}

.bridal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bridal-img-wrap {
  position: relative;
}

.bridal-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(200,150,12,0.3);
}

.bridal-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maroon-deep);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  line-height: 1.3;
}

.bridal-content .section-title {
  color: var(--ivory-white);
}

.bridal-content .section-title em { color: var(--gold-light); }

.bridal-content .section-subtitle {
  color: rgba(220,210,195,0.9);
  max-width: none;
}

.bridal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.bridal-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bridal-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bridal-feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 2;
}

.bridal-feature-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--ivory-mid);
  line-height: 1.4;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview {
  padding: var(--section-pad);
  background: var(--dark-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,8,5,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(13,8,5,0.5);
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.section-title {
color: #C0C0C0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 120px 0;
  background: var(--ivory-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,12,0.06) 0%, transparent 65%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--maroon-deep);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-title em { color: var(--gold-deep); font-style: italic; }

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(200,150,12,0.4));
}

.footer-logo-text .logo-name {
  font-size: 1rem;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232,220,200,0.6);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,150,12,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: rgba(200,150,12,0.15);
  border-color: var(--gold-primary);
}

.social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 2;
}

.social-link.whatsapp:hover { border-color: #25D366; }
.social-link.facebook:hover { border-color: #1877F2; }
.social-link.instagram:hover { border-color: #E4405F; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232,220,200,0.6);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(232,220,200,0.7);
  line-height: 1.5;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-map {
  width: 100%;
  height: 150px;
  border: 1px solid rgba(200,150,12,0.3);
  overflow: hidden;
  margin-top: 16px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: box-shadow 0.3s ease;
}
.footer-map:hover {
  box-shadow: 0 6px 28px rgba(200,150,12,0.2);
  border-color: rgba(200,150,12,0.5);
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) sepia(0.4) brightness(0.85);
  transition: filter 0.4s ease;
}
.footer-map:hover iframe {
  filter: grayscale(0.2) sepia(0.2) brightness(0.95);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--ivory-mid);
  text-transform: uppercase;
}

.footer-note {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  color: rgba(232,185,35,0.85);
  letter-spacing: 0.04em;
}
.footer-note a {
  color: var(--gold-bright);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 600;
}
.footer-note a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   RESPONSIVE — SECTIONS
   ============================================================ */
@media (max-width: 1200px) {
  .collections-grid { gap: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .bridal-grid { gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 160px); }
  .gallery-item:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }
  .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .testimonial-card { width: calc(50% - 12px); }
}

@media (max-width: 900px) {
  .collections-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-gallery { height: 380px; }
  .bridal-grid { grid-template-columns: 1fr; }
  .bridal-img-wrap { max-width: 380px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .testimonial-card { width: calc(100% - 0px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 140px); }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bridal-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 120px); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ── OPENING HOURS ─── */
.opening-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4px;
  border: 1px solid rgba(200,150,12,0.15);
}
.oh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  border-bottom: 1px solid rgba(200,150,12,0.08);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.oh-row:last-child { border-bottom: none; }
.oh-row:nth-child(odd) { background: rgba(200,150,12,0.03); }
.oh-day { color: var(--text-muted); }
.oh-time { color: var(--gold-primary); font-weight: 600; }

/* ── SOCIAL ICONS YouTube ─── */
.social-link.youtube:hover { border-color: #FF0000; }

/* ── OVERFLOW FIX all sections ─── */
section, .footer, .hero, .collections, .about-preview,
.testimonials, .bridal-section, .cta-section, .gallery-preview {
  max-width: 100vw;
  overflow-x: hidden;
}