:root {
  --bg: #fcf5f0;
  --text: #4a2431;
  --muted: #755560;
  --accent: #b43f6d;
  --accent-dark: #7f2148;
  --accent-soft: #f6e3e8;
  --card: #fffaf7;
  --border: #ead2c4;
  --gold: #c89a4a;
  --magenta: #b43f6d;
  --rose-gold: #d3898a;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmerSoft {
  0%,
  100% {
    opacity: 0.35;
    filter: blur(0px);
  }
  50% {
    opacity: 0.7;
    filter: blur(0.2px);
  }
}

@keyframes fallPetal {
  0% {
    opacity: 1;
    transform: translateY(-10vh) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(80px) rotate(90deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50vh) translateX(30px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(-60px) rotate(270deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(20px) rotate(360deg);
  }
}

@keyframes fallPetal2 {
  0% {
    opacity: 1;
    transform: translateY(-10vh) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(-70px) rotate(90deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50vh) translateX(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(50px) rotate(270deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(-40px) rotate(360deg);
  }
}

@keyframes fallPetal3 {
  0% {
    opacity: 1;
    transform: translateY(-10vh) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(120px) rotate(85deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50vh) translateX(60px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(-30px) rotate(280deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(15px) rotate(360deg);
  }
}

@keyframes fallPetal4 {
  0% {
    opacity: 1;
    transform: translateY(-10vh) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(25vh) translateX(-100px) rotate(95deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50vh) translateX(-45px) rotate(180deg);
  }
  75% {
    transform: translateY(75vh) translateX(70px) rotate(260deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) translateX(-55px) rotate(360deg);
  }
}

@keyframes floatGarland {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.12;
  }
  25% {
    transform: translateY(-15px) translateX(30px);
    opacity: 0.18;
  }
  50% {
    transform: translateY(-25px) translateX(0px);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-15px) translateX(-30px);
    opacity: 0.18;
  }
}

@keyframes sway {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(211, 137, 138, 0.12), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(200, 154, 74, 0.1), transparent 22%),
    linear-gradient(180deg, #fffaf7 0%, #fdf2ea 54%, #f6e5dc 100%);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.28), transparent 65%);
  opacity: 0.45;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 154, 74, 0.06), transparent 22%),
    radial-gradient(circle at 78% 82%, rgba(180, 63, 109, 0.05), transparent 20%);
  opacity: 0.26;
  animation: glowPulse 8s ease-in-out infinite;
}

html {
  scroll-behavior: smooth;
}

/* Animated Petals & Garland Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.petal-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50% 0;
  opacity: 0.9;
  pointer-events: none;
  box-shadow: 0 3px 12px rgba(180, 63, 109, 0.28);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.petal:nth-child(1) { left: -2%; animation: fallPetal 9.2s linear infinite; background: radial-gradient(circle, #d3898a 0%, #f3c2c8 56%, #f9e1d4 100%); animation-delay: 0s; }
.petal:nth-child(2) { left: 5%; animation: fallPetal2 10.8s linear infinite; background: radial-gradient(circle, #c89a4a 0%, #e7c47f 50%, #f5e1b3 100%); animation-delay: 0.4s; }
.petal:nth-child(3) { left: 10%; animation: fallPetal3 9.5s linear infinite; background: radial-gradient(circle, #b43f6d 0%, #d57b96 50%, #f6cbd7 100%); animation-delay: 0.8s; }
.petal:nth-child(4) { left: 15%; animation: fallPetal4 11.2s linear infinite; background: radial-gradient(circle, #f1d3b5 0%, #e7bca2 50%, #fff4ec 100%); animation-delay: 1.2s; }
.petal:nth-child(5) { left: 20%; animation: fallPetal 8.8s linear infinite; background: radial-gradient(circle, #d3898a 0%, #efbcc3 50%, #fae8dc 100%); animation-delay: 1.6s; }
.petal:nth-child(6) { left: 25%; animation: fallPetal2 10.1s linear infinite; background: radial-gradient(circle, #c89a4a 0%, #e3ca8f 50%, #faf0d2 100%); animation-delay: 2s; }
.petal:nth-child(7) { left: 30%; animation: fallPetal3 9.7s linear infinite; background: radial-gradient(circle, #b43f6d 0%, #d67a92 50%, #f8d8df 100%); animation-delay: 2.4s; }
.petal:nth-child(8) { left: 35%; animation: fallPetal4 10.9s linear infinite; background: radial-gradient(circle, #f6dfcb 0%, #eabfa8 50%, #fff7f2 100%); animation-delay: 2.8s; }
.petal:nth-child(9) { left: 40%; animation: fallPetal 9.3s linear infinite; background: radial-gradient(circle, #d3898a 0%, #f4d1d5 50%, #fdeee5 100%); animation-delay: 3.2s; }
.petal:nth-child(10) { left: 45%; animation: fallPetal2 10.4s linear infinite; background: radial-gradient(circle, #c89a4a 0%, #edd6a4 50%, #fcf2cf 100%); animation-delay: 3.6s; }
.petal:nth-child(11) { left: 50%; animation: fallPetal3 9.1s linear infinite; background: radial-gradient(circle, #b43f6d 0%, #d88aa1 50%, #f8dce4 100%); animation-delay: 4s; }
.petal:nth-child(12) { left: 55%; animation: fallPetal4 10.6s linear infinite; background: radial-gradient(circle, #f4d9c4 0%, #e4b8a0 50%, #fff6ef 100%); animation-delay: 4.4s; }
.petal:nth-child(13) { left: 60%; animation: fallPetal 8.9s linear infinite; background: radial-gradient(circle, #d3898a 0%, #efc1c7 50%, #fbede1 100%); animation-delay: 4.8s; }
.petal:nth-child(14) { left: 65%; animation: fallPetal2 10.3s linear infinite; background: radial-gradient(circle, #c89a4a 0%, #e8cd93 50%, #fbf0cf 100%); animation-delay: 5.2s; }
.petal:nth-child(15) { left: 70%; animation: fallPetal3 9.6s linear infinite; background: radial-gradient(circle, #b43f6d 0%, #d98ba7 50%, #f6dce2 100%); animation-delay: 5.6s; }
.petal:nth-child(16) { left: 75%; animation: fallPetal4 11.1s linear infinite; background: radial-gradient(circle, #f6e1cd 0%, #eabca4 50%, #fff8f3 100%); animation-delay: 6s; }
.petal:nth-child(17) { left: 80%; animation: fallPetal 9.4s linear infinite; background: radial-gradient(circle, #d3898a 0%, #f0c6ce 50%, #fdeee4 100%); animation-delay: 6.4s; }
.petal:nth-child(18) { left: 85%; animation: fallPetal2 10.7s linear infinite; background: radial-gradient(circle, #c89a4a 0%, #e5ca92 50%, #faf0d1 100%); animation-delay: 6.8s; }
.petal:nth-child(19) { left: 90%; animation: fallPetal3 9.2s linear infinite; background: radial-gradient(circle, #b43f6d 0%, #d98aa3 50%, #f8dee6 100%); animation-delay: 7.2s; }
.petal:nth-child(20) { left: 95%; animation: fallPetal4 10.5s linear infinite; background: radial-gradient(circle, #f2dbc5 0%, #e9bfa8 50%, #fff7f1 100%); animation-delay: 7.6s; }

.garland {
  position: absolute;
  width: 150px;
  height: 80px;
  opacity: 0.28;
  pointer-events: none;
  background: 
    radial-gradient(circle at 20% 50%, #f0d49a 8px, transparent 8px),
    radial-gradient(circle at 35% 35%, #f8cbd7 6px, transparent 6px),
    radial-gradient(circle at 50% 50%, #fff2d6 7px, transparent 7px),
    radial-gradient(circle at 65% 35%, #d3898a 6px, transparent 6px),
    radial-gradient(circle at 80% 50%, #c89a4a 8px, transparent 8px),
    linear-gradient(90deg, transparent, rgba(200, 154, 74, 0.28) 30%, rgba(180, 63, 109, 0.22) 70%, transparent);
}

.garland:nth-child(1) {
  top: 5%;
  left: 5%;
  animation: floatGarland 15s ease-in-out infinite;
}

.garland:nth-child(2) {
  top: 60%;
  right: 8%;
  animation: floatGarland 18s ease-in-out infinite;
  animation-delay: 2s;
  opacity: 0.1;
}

.garland:nth-child(3) {
  top: 30%;
  right: 5%;
  animation: floatGarland 16s ease-in-out infinite;
  animation-delay: 4s;
  opacity: 0.08;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 0.85rem 4.5%;
  min-height: 118px;
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 248, 244, 0.96), rgba(252, 236, 228, 0.95), rgba(248, 226, 217, 0.94), rgba(252, 236, 228, 0.95), rgba(255, 248, 244, 0.96));
  backdrop-filter: blur(18px);
  z-index: 10;
  border-bottom: 1px solid rgba(200, 154, 74, 0.18);
  box-shadow: 0 10px 30px rgba(120, 69, 74, 0.08);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.topbar::before,
.topbar::after {
  content: none;
}

.topbar::before {
}

.topbar::after {
  content: none;
}

.topbar .brand {
  filter: none;
  flex-direction: row;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.topbar .brand-logo {
  background: linear-gradient(135deg, #fffefb, #f3dfcb);
  border: 1px solid rgba(200, 154, 74, 0.18);
  box-shadow: 0 10px 22px rgba(120, 69, 74, 0.08);
  padding: 0.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  position: relative;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.02;
  padding-top: 0.05rem;
  text-align: left;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #7f2148, #b43f6d, #c89a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  margin-top: 0.18rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #8b6472;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--magenta), var(--gold), transparent);
  transform: scaleX(0.85);
  transform-origin: center;
  opacity: 0.9;
}

.topbar .brand::after {
  background: linear-gradient(90deg, transparent, rgba(180, 63, 109, 0.38), rgba(200, 154, 74, 0.92), rgba(180, 63, 109, 0.38), transparent);
}

.brand-logo {
  width: 92px;
  height: 112px;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0.75rem;
  padding: 0.08rem;
  background: linear-gradient(135deg, #fffdfb, #f5e1d7);
  box-shadow: 0 10px 18px rgba(120, 69, 74, 0.08);
  border: 1px solid rgba(200, 154, 74, 0.24);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-top: 0.35rem;
}

.nav-links a {
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.28s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.topbar-socials {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b88940);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(43, 43, 43, 0.08);
  border: 1px solid rgba(200, 163, 90, 0.25);
}

.topbar-social:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(180, 63, 109, 0.22);
  border-color: var(--accent);
}

.topbar-social.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.topbar-social.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 39, 67, 0.22);
}

.topbar-social.facebook-btn {
  background: #1877f2;
}

.topbar-social.facebook-btn:hover {
  background: #0a66c2;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(24, 119, 242, 0.22);
}

.topbar-social.whatsapp-btn {
  background: #25d366;
}

.topbar-social.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.22);
}

.menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: var(--accent-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.page-hero,
.section {
  padding: 4.8rem 5%;
}

.page-hero {
  position: relative;
  padding: 0;
  background:
    transparent;
  min-height: 84vh;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.home-slideshow::before,
.home-slideshow::after {
  content: none;
}

.home-slideshow .hero-slider {
  position: relative;
  width: 100%;
  height: 84vh;
  min-height: 620px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 220px;
  height: 220px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg opacity='0.95'%3E%3Cg transform='translate(110 110)'%3E%3Cellipse cx='0' cy='-24' rx='12' ry='30' fill='%23f5cfd8'/%3E%3Cellipse cx='22' cy='-10' rx='12' ry='30' fill='%23f2d59b' transform='rotate(72 22 -10)'/%3E%3Cellipse cx='18' cy='18' rx='12' ry='30' fill='%23f7e5d6' transform='rotate(144 18 18)'/%3E%3Cellipse cx='-18' cy='18' rx='12' ry='30' fill='%23edd0d4' transform='rotate(216 -18 18)'/%3E%3Cellipse cx='-22' cy='-10' rx='12' ry='30' fill='%23ffdfe8' transform='rotate(288 -22 -10)'/%3E%3Ccircle cx='0' cy='0' r='11' fill='%23fff3d6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.78;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 154, 74, 0.15), rgba(180, 63, 109, 0.06), transparent 70%);
  pointer-events: none;
}

.home-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  background-size: cover;
  background-position: center;
}

.home-slideshow .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide-1 {
  background-image: url('https://images.pexels.com/photos/1055691/pexels-photo-1055691.jpeg?auto=compress&cs=tinysrgb&w=1800');
}

.home-slide-2 {
  background-image: url('https://images.pexels.com/photos/1926769/pexels-photo-1926769.jpeg?auto=compress&cs=tinysrgb&w=1800');
}

.home-slide-3 {
  background-image: url('https://images.pexels.com/photos/2897215/pexels-photo-2897215.jpeg?auto=compress&cs=tinysrgb&w=1800');
}

.home-slideshow .slider-controls {
  right: 1.2rem;
  bottom: 1.2rem;
}

.home-slideshow .slider-dots {
  bottom: 1.25rem;
}

.home-intro {
  padding-top: 3rem;
}

.home-intro-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.home-logo-feature {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, rgba(255, 251, 247, 0.74), rgba(255, 244, 238, 0.52));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 154, 74, 0.14);
  border-radius: 1.8rem;
  box-shadow: 0 18px 40px rgba(120, 69, 74, 0.08);
  overflow: hidden;
}

.home-logo-feature-image {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: drop-shadow(0 18px 26px rgba(120, 69, 74, 0.12));
}

.home-intro .hero-copy {
  max-width: none;
  margin: 0;
  padding: 2rem 2.2rem 2.1rem;
  background: linear-gradient(135deg, rgba(255, 251, 247, 0.74), rgba(255, 244, 238, 0.52));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 154, 74, 0.14);
  border-radius: 1.8rem;
  box-shadow: 0 18px 40px rgba(120, 69, 74, 0.08);
  min-height: 100%;
}

.home-intro .hero-copy .stat-grid {
  margin-top: 1.3rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  gap: 0.9rem;
  display: flex;
  flex-wrap: wrap;
}

.home-intro .hero-copy .stat-card {
  flex: 1 1 160px;
  min-height: 110px;
  padding: 1rem 1rem 0.9rem;
  background: rgba(255, 252, 249, 0.74);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 154, 74, 0.18);
  box-shadow: 0 16px 32px rgba(120, 69, 74, 0.08);
}

.home-intro .hero-copy .stat-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.home-intro .hero-copy .stat-card p {
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .home-intro-top {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-logo-feature {
    min-height: 0;
  }

  .home-logo-feature-image {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
}

@media (max-width: 720px) {
  .page-hero {
    min-height: auto;
    padding: 2.2rem 4% 2rem;
  }

  .home-intro {
    padding-top: 2rem;
  }

  .home-intro-top {
    gap: 0.8rem;
  }

  .home-logo-feature {
    border-radius: 1.35rem;
  }

  .home-logo-feature-image {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .home-intro .hero-copy {
    padding: 1.15rem 1rem 1.05rem;
  }

  .home-intro .hero-copy h1 {
    font-size: 2.05rem;
  }

  .home-intro .hero-copy p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 0.7rem;
    margin: 1.2rem 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .home-intro .hero-copy .stat-grid {
    gap: 0.6rem;
    margin-top: 0.95rem;
  }

  .home-intro .hero-copy .stat-card {
    min-height: auto;
    padding: 0.8rem 0.85rem;
  }

  .home-intro .hero-copy .stat-card h3 {
    font-size: 1.1rem;
  }

  .home-intro .hero-copy .stat-card p {
    font-size: 0.85rem;
    line-height: 1.35;
  }
}

.section {
  position: relative;
  isolation: isolate;
}

.section::before,
.section::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.section::before {
  top: 1rem;
  right: 1.1rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg opacity='0.9'%3E%3Cg transform='translate(60 60)'%3E%3Cellipse cx='0' cy='-12' rx='6' ry='15' fill='%23ffd9e3'/%3E%3Cellipse cx='11' cy='-5' rx='6' ry='15' fill='%23fff2a6' transform='rotate(72 11 -5)'/%3E%3Cellipse cx='9' cy='9' rx='6' ry='15' fill='%23b3dcf4' transform='rotate(144 9 9)'/%3E%3Cellipse cx='-9' cy='9' rx='6' ry='15' fill='%23b8e5d6' transform='rotate(216 -9 9)'/%3E%3Cellipse cx='-11' cy='-5' rx='6' ry='15' fill='%23f8cddd' transform='rotate(288 -11 -5)'/%3E%3Ccircle cx='0' cy='0' r='5' fill='%23fff6d4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.section::after {
  bottom: 1rem;
  left: 1.1rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg opacity='0.9'%3E%3Cg transform='translate(60 60)'%3E%3Cellipse cx='0' cy='-12' rx='6' ry='15' fill='%23b8e5d6'/%3E%3Cellipse cx='11' cy='-5' rx='6' ry='15' fill='%23f8cddd' transform='rotate(72 11 -5)'/%3E%3Cellipse cx='9' cy='9' rx='6' ry='15' fill='%23fff2a6' transform='rotate(144 9 9)'/%3E%3Cellipse cx='-9' cy='9' rx='6' ry='15' fill='%23b3dcf4' transform='rotate(216 -9 9)'/%3E%3Cellipse cx='-11' cy='-5' rx='6' ry='15' fill='%23ffd9e3' transform='rotate(288 -11 -5)'/%3E%3Ccircle cx='0' cy='0' r='5' fill='%23fff6d4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.section > * {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(6px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy h1,
.section h2,
.about-section h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  max-width: 760px;
}

.hero-copy p,
.section p,
.card p,
.testimonial p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.16);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(43, 43, 43, 0.12);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 10px 22px rgba(111, 44, 70, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #43172d);
  box-shadow: 0 14px 28px rgba(111, 44, 70, 0.28);
}

.btn-secondary {
  background: rgba(239, 232, 222, 0.95);
  border: 1px solid var(--gold);
  color: var(--accent-dark);
  font-weight: 600;
}

.btn-secondary:hover {
  background: rgba(200, 163, 90, 0.14);
  color: var(--accent-dark);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.gallery-saree {
  background-image: url('https://images.pexels.com/photos/1055691/pexels-photo-1055691.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.gallery-korean {
  background-image: url('https://images.pexels.com/photos/1536619/pexels-photo-1536619.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.gallery-western {
  background-image: url('https://images.pexels.com/photos/2769274/pexels-photo-2769274.jpeg?auto=compress&cs=tinysrgb&w=800');
}

.product-saree-1 {
  background-image: url('https://images.pexels.com/photos/1055691/pexels-photo-1055691.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-saree-2 {
  background-image: url('https://images.pexels.com/photos/1926769/pexels-photo-1926769.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-saree-3 {
  background-image: url('https://images.pexels.com/photos/2897215/pexels-photo-2897215.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-korean-1 {
  background-image: url('https://images.pexels.com/photos/1536619/pexels-photo-1536619.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-korean-2 {
  background-image: url('https://images.pexels.com/photos/3552996/pexels-photo-3552996.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-korean-3 {
  background-image: url('https://images.pexels.com/photos/3622622/pexels-photo-3622622.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-western-1 {
  background-image: url('https://images.pexels.com/photos/2769274/pexels-photo-2769274.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-western-2 {
  background-image: url('https://images.pexels.com/photos/1181690/pexels-photo-1181690.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.product-western-3 {
  background-image: url('https://images.pexels.com/photos/1580487/pexels-photo-1580487.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.showroom-thumb-1 {
  background-image: url('https://images.pexels.com/photos/1092730/pexels-photo-1092730.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.showroom-thumb-2 {
  background-image: url('https://images.pexels.com/photos/2291345/pexels-photo-2291345.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.showroom-thumb-3 {
  background-image: url('https://images.pexels.com/photos/3262673/pexels-photo-3262673.jpeg?auto=compress&cs=tinysrgb&w=700');
}

.hero-figure {
  display: flex;
  justify-content: center;
  align-self: start;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(43, 43, 43, 0.12);
  border: 1px solid rgba(255,255,255,0.55);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide:nth-child(1) {
  background-image: linear-gradient(135deg, rgba(36,27,25,0.3), rgba(154,106,69,0.5)), url('https://images.pexels.com/photos/1055691/pexels-photo-1055691.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
}

.slide:nth-child(2) {
  background-image: linear-gradient(135deg, rgba(36,27,25,0.3), rgba(154,106,69,0.45)), url('https://images.pexels.com/photos/1536619/pexels-photo-1536619.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
}

.slide:nth-child(3) {
  background-image: linear-gradient(135deg, rgba(36,27,25,0.32), rgba(154,106,69,0.42)), url('https://images.pexels.com/photos/2769274/pexels-photo-2769274.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
}

.slide-content {
  max-width: 420px;
  color: white;
  background: rgba(43, 43, 43, 0.42);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.16);
}

.slide-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 0.25rem 0 0.55rem;
}

.slide-content p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.slider-controls {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  gap: 0.6rem;
  z-index: 20;
}

.slider-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 163, 90, 0.6);
}

.dot.active {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  width: 28px;
  border-radius: 4px;
  border: 1px solid var(--gold);
}

.slider-btn {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b88940);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(43, 43, 43, 0.08);
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(111, 44, 70, 0.22);
}

.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(250, 245, 239, 0.96));
  border: 1px solid rgba(111, 44, 70, 0.08);
  border-radius: 1.35rem;
  padding: 2.4rem;
  box-shadow: 0 12px 28px rgba(43, 43, 43, 0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.02em;
}

.hero-card p {
  color: var(--muted);
  margin: 0.8rem 0;
  line-height: 1.8;
}

.stat-grid,
.intro-grid,
.cards,
.gallery-grid,
.testimonial-grid,
.contact-grid,
.showcase-grid {
  display: grid;
  gap: 1.15rem;
  padding: 1rem 2rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(111, 44, 70, 0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), 0 16px 44px rgba(43, 43, 43, 0.06);
}

#collections {
  background: linear-gradient(120deg, rgba(255, 249, 246, 0.98), rgba(247, 232, 225, 0.96));
  border-radius: 2rem;
  margin: 1rem 2.5% 0;
}

#about {
  background: linear-gradient(110deg, rgba(255, 248, 244, 0.98), rgba(246, 229, 221, 0.96));
  border-radius: 2rem;
  margin: 1rem 2.5% 0;
}

.showcase-grid {
  background: linear-gradient(115deg, rgba(255, 248, 245, 0.98), rgba(247, 231, 223, 0.96));
}

.featured-section {
  background: linear-gradient(120deg, rgba(255, 250, 246, 0.98), rgba(244, 236, 227, 0.96));
  border-radius: 2rem;
  margin: 1rem 2.5% 0;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

#testimonials {
  background: linear-gradient(135deg, rgba(255, 249, 246, 0.99), rgba(246, 233, 225, 0.97));
  border-radius: 2rem;
  margin: 1rem 2.5% 0;
}

#contact {
  background: linear-gradient(110deg, rgba(255, 249, 246, 0.99), rgba(247, 233, 226, 0.97));
  border-radius: 2rem;
  margin: 1rem 2.5% 0;
}

.product-grid,
.showroom-gallery,
.step-grid {
  display: grid;
  gap: 1rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  background: linear-gradient(125deg, rgba(255, 248, 241, 0.96), rgba(243, 234, 224, 0.94));
}

.intro-card {
  min-height: 240px;
  padding: 2rem;
}

.about-section {
  grid-template-columns: 1.1fr 0.9fr;
  background: linear-gradient(110deg, rgba(251, 246, 240, 0.98), rgba(241, 231, 221, 0.95));
  border-radius: 2rem;
  padding: 3.2rem 3.2rem !important;
  margin: 1rem 2.5% 0;
  border: 1px solid rgba(111, 44, 70, 0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 20px 60px rgba(43,43,43,0.08);
}

.card,
.testimonial,
.contact-card,
.product-card,
.showroom-card,
.stat-card,
.step-card,
.selection-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(251, 240, 236, 0.96));
  border: 1px solid rgba(200, 154, 74, 0.1);
  border-radius: 1.35rem;
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(120, 69, 74, 0.08);
}

.intro-card {
  min-height: 220px;
}

.section-heading {
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.gallery-card,
.product-card,
.showroom-card {
  overflow: hidden;
}

.card:hover,
.testimonial:hover,
.contact-card:hover,
.product-card:hover,
.showroom-card:hover,
.stat-card:hover,
.step-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(120, 69, 74, 0.12);
}

.card,
.testimonial,
.contact-card,
.product-card,
.showroom-card,
.stat-card,
.step-card,
.selection-panel,
.filter-btn,
.nav-links a,
.contact-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.gallery-image,
.product-image,
.showroom-image {
  height: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 1.1rem;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-image:hover,
.product-image:hover,
.showroom-image:hover {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.product-image {
  min-height: 320px;
}

.product-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.search-box input,
.sort-select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1.1rem;
  background: white;
  color: var(--text);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  border: 1px solid var(--border);
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(111, 44, 70, 0.18);
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

.selection-panel {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
}
.metric-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.8rem;
  margin-right: 0.6rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.12), rgba(111, 44, 70, 0.08));
  color: var(--accent);
  font-weight: 600;
  font-size: 0.86rem;
  border: 1px solid rgba(111, 44, 70, 0.14);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
}

.product-card h3,
.product-card p,
.showroom-card h3,
.showroom-card p,
.step-card h3,
.step-card p,
.stat-card h3,
.stat-card p {
  margin: 0;
}

.product-card h3,
.showroom-card h3,
.step-card h3,
.stat-card h3 {
  margin-bottom: 0.8rem;
}

.product-tag {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(111, 44, 70, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(111, 44, 70, 0.16);
}

.showcase-card {
  min-height: 360px;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showroom-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showroom-grid,
.step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 380px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 250, 246, 0.98), rgba(243, 234, 224, 0.92));
  border: 2px dashed rgba(111, 44, 70, 0.25);
  position: relative;
  overflow: hidden;
}

.placeholder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(111, 44, 70, 0.02) 10px,
      rgba(111, 44, 70, 0.02) 20px
    );
  pointer-events: none;
}

.placeholder-card * {
  position: relative;
  z-index: 1;
}

.placeholder-card .placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(111, 44, 70, 0.15), rgba(200, 163, 90, 0.22));
  position: relative;
  border: 2px solid rgba(111, 44, 70, 0.15);
}

.placeholder-card .placeholder-icon::before,
.placeholder-card .placeholder-icon::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: rgba(111, 44, 70, 0.6);
}

.placeholder-card .placeholder-icon::before {
  width: 30px;
  height: 2px;
}

.placeholder-card .placeholder-icon::after {
  width: 2px;
  height: 30px;
}

.placeholder-card h3 {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-weight: 700;
}

.placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.coming-soon {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, rgba(111, 44, 70, 0.12), rgba(200, 163, 90, 0.15));
  border: 1px solid rgba(111, 44, 70, 0.2);
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.map-card iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 1rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 5% 3.2rem;
  border-top: 1px solid rgba(200, 154, 74, 0.14);
  background:
    radial-gradient(circle at 10% 12%, rgba(200, 154, 74, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 249, 246, 0.99), rgba(246, 232, 224, 0.98));
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.footer::before,
.footer::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.1;
}

.footer::before {
  top: 0.8rem;
  right: 4%;
  width: 160px;
  height: 160px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg opacity='0.9'%3E%3Cg transform='translate(80 80)'%3E%3Cellipse cx='0' cy='-16' rx='8' ry='20' fill='%23f5e0c6'/%3E%3Cellipse cx='15' cy='-7' rx='8' ry='20' fill='%23fff2db' transform='rotate(72 15 -7)'/%3E%3Cellipse cx='12' cy='12' rx='8' ry='20' fill='%23dcc4a4' transform='rotate(144 12 12)'/%3E%3Cellipse cx='-12' cy='12' rx='8' ry='20' fill='%23ead8c6' transform='rotate(216 -12 12)'/%3E%3Cellipse cx='-15' cy='-7' rx='8' ry='20' fill='%23f1d8df' transform='rotate(288 -15 -7)'/%3E%3Ccircle cx='0' cy='0' r='7' fill='%23fff5e5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.footer::after {
  bottom: 0.8rem;
  left: 4%;
  width: 120px;
  height: 120px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg opacity='0.88'%3E%3Cg transform='translate(60 60)'%3E%3Cellipse cx='0' cy='-12' rx='6' ry='15' fill='%23f5e0c6'/%3E%3Cellipse cx='11' cy='-5' rx='6' ry='15' fill='%23e8d0b6' transform='rotate(72 11 -5)'/%3E%3Cellipse cx='9' cy='9' rx='6' ry='15' fill='%23dcc4a4' transform='rotate(144 9 9)'/%3E%3Cellipse cx='-9' cy='9' rx='6' ry='15' fill='%23ead8c6' transform='rotate(216 -9 9)'/%3E%3Cellipse cx='-11' cy='-5' rx='6' ry='15' fill='%23f1d8df' transform='rotate(288 -11 -5)'/%3E%3Ccircle cx='0' cy='0' r='5' fill='%23fff5e5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.footer h3 {
  margin-top: 0;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.02em;
}

.footer-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
  max-width: 320px;
}

.contact-card p,
.footer-column p {
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9b15d, #c48a39);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(43, 43, 43, 0.08);
  border: 1px solid rgba(200, 163, 90, 0.28);
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 24px rgba(180, 63, 109, 0.22);
  border-color: var(--accent);
}

.social-btn.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram-btn:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(220, 39, 67, 0.26);
}

.social-btn.facebook-btn {
  background: #1877f2;
}

.social-btn.facebook-btn:hover {
  background: #0a66c2;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.26);
}

.social-btn.youtube-btn {
  background: #ff0000;
}

.social-btn.youtube-btn:hover {
  background: #cc0000;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(255, 0, 0, 0.26);
}

.social-btn.pinterest-btn {
  background: #e60023;
}

.social-btn.pinterest-btn:hover {
  background: #ad081b;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(230, 0, 35, 0.26);
}

.social-btn.whatsapp-btn {
  background: #25d366;
}

.social-btn.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.26);
}

.social-btn.email-btn {
  background: #666666;
}

.social-btn.email-btn:hover {
  background: #333333;
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 28px rgba(51, 51, 51, 0.26);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible,
.filter-btn:focus-visible,
.slider-btn:focus-visible,
.topbar-social:focus-visible,
.social-btn:focus-visible,
.nav-links a:focus-visible,
.contact-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(200, 154, 74, 0.18);
}

@media (max-width: 940px) {
  .intro-grid,
  .cards,
  .showcase-grid,
  .showroom-gallery,
  .product-grid,
  .page-hero,
  .about-section,
  .step-grid,
  .showroom-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding: 3.4rem 5% 3rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0.9rem;
  }

  .hero-copy .stat-card {
    flex: 1 1 100%;
  }

  .panoramic-figure {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 5%;
    background: rgba(255, 249, 246, 0.98);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(200, 154, 74, 0.14);
    box-shadow: 0 18px 36px rgba(120, 69, 74, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: inline-block;
  }

  .topbar-socials {
    display: flex;
    gap: 0.6rem;
  }

  .topbar-social {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 64px;
    height: 78px;
    border-radius: 0.68rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .page-hero {
    padding-top: 2.8rem;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .footer {
    flex-direction: column;
  }

  .footer-columns {
    gap: 1.4rem;
  }
}
