/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #FFF5F7;
  color: #3D2A2E;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input {
  font-family: inherit;
  font-size: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFF5F7; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #E8A4B8, #D4849C);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #D4AF37, #B8960C);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.overflow-hidden { overflow: hidden; }

/* ===== TEXT STYLES ===== */
.gold-text {
  background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 50%, #B8960C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pink-gradient-text {
  background: linear-gradient(135deg, #E8A4B8 0%, #D4849C 50%, #C46480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: visible;
}

.btn-pink {
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(232, 164, 184, 0.3);
}
.btn-pink:hover {
  background: linear-gradient(135deg, #F4C4D4, #E8A4B8);
  box-shadow: 0 8px 30px rgba(232, 164, 184, 0.5);
  transform: translateY(-2px) scale(1.03);
}
.btn-pink:active {
  transform: scale(0.98);
}

.btn-gold {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #F4E4BC, #D4AF37);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px) scale(1.03);
}
.btn-gold:active {
  transform: scale(0.98);
}

.btn-outline-pink {
  background: transparent;
  color: #D4849C;
  border: 2px solid #E8A4B8;
}
.btn-outline-pink:hover {
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  color: #FFF;
  box-shadow: 0 8px 30px rgba(232, 164, 184, 0.4);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-pink:active {
  transform: scale(0.98);
}

.btn-outline-gold {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  color: #FFF;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-gold:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== SECTIONS ===== */
.section-pink {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFF5F7 0%, #FCE8EC 50%, #F5D9E0 100%);
}

.section-cream {
  padding: 5rem 0;
  background: linear-gradient(180deg, #FFF9F5 0%, #FDF2EA 100%);
}

.section-mint {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F0FAF8 0%, #E0F5F1 100%);
}

.hero-gradient {
  background: linear-gradient(135deg, #FFF5F7 0%, #FCE8EC 30%, #F0E8F5 60%, #E8F4F8 100%);
}

@media (min-width: 768px) {
  .section-pink,
  .section-cream,
  .section-mint {
    padding: 7rem 0;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(232, 164, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.02);
}

/* Logo sparkle wrapper with wobble effect */
.logo-sparkle-wrap {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  overflow: visible;
}

@media (min-width: 768px) {
  .header-inner .logo-sparkle-wrap {
    width: 4rem;
    height: 4rem;
  }
}

.logo-sparkle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.header-logo:hover .logo-sparkle-wrap {
  animation: logoWobble 0.5s ease;
}

@keyframes logoWobble {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(-10deg) scale(1.05); }
  40%  { transform: rotate(10deg) scale(1.05); }
  60%  { transform: rotate(-5deg) scale(1.03); }
  80%  { transform: rotate(5deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1.05); }
}

.logo-sparkle-wrap .logo-particle-container {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  overflow: visible;
  z-index: 30;
}

.header-logo img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-logo img {
    width: 4rem;
    height: 4rem;
  }
}

.header-logo-text {
  display: none;
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(to right, #E8A4B8, #D4849C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 640px) {
  .header-logo-text { display: block; }
}

@media (min-width: 768px) {
  .header-logo-text { font-size: 1.25rem; }
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(61, 42, 46, 0.7);
  transition: color 0.3s;
  padding-bottom: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: #D4849C;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #E8A4B8, #D4849C);
  border-radius: 1px;
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta { display: block; }
}

/* Mobile Toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  color: #3D2A2E;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(232, 164, 184, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
  font-weight: 500;
  color: rgba(61, 42, 46, 0.7);
  transition: all 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: linear-gradient(to right, rgba(232, 164, 184, 0.2), rgba(212, 132, 156, 0.2));
  color: #D4849C;
}

.mobile-menu-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #FCE8EC 0%, #F5D9E0 100%);
  border-top: 1px solid rgba(232, 164, 184, 0.3);
}

.footer-inner {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4849C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  color: #FFF;
  transform: scale(1.1);
}

.footer-social a svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-nav-title {
  color: #D4849C;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-nav a {
  display: block;
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #D4849C;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #D4849C;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: #D4849C;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 164, 184, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(61, 42, 46, 0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .heart {
  color: #D4849C;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
}

.hero-content {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-content { padding: 6rem 0; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-text { text-align: left; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(232, 164, 184, 0.3);
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  color: #D4849C;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: #D4849C;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

.hero-subtitle {
  color: rgba(61, 42, 46, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero-buttons { justify-content: flex-start; }
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 1.5rem;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
  box-shadow: 0 25px 80px rgba(232, 164, 184, 0.3), 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.hero-image .blur-circle-1 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 12rem;
  height: 12rem;
  background: rgba(232, 164, 184, 0.25);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-image .blur-circle-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 14rem;
  height: 14rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.6s ease-out 1s both;
}

.scroll-indicator .mouse {
  width: 1.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(212, 132, 156, 0.5);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator .mouse-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: #D4849C;
  border-radius: 9999px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ===== SPARKLE DECORATIONS ===== */
.sparkle {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #D4AF37;
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
  pointer-events: none;
}

/* ===== SECTION TITLES ===== */
.section-label {
  color: #D4849C;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3D2A2E;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

/* ===== ADVANTAGE CARDS ===== */
.advantages-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}

.advantage-card {
  background: #FFF;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(232, 164, 184, 0.2);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.advantage-card .icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF5F7, #FCE8EC);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.advantage-card:hover .icon-wrap {
  animation: iconWobble 0.5s ease;
}

@keyframes iconWobble {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(-10deg) scale(1.1); }
  50%  { transform: rotate(10deg) scale(1.1); }
  75%  { transform: rotate(-5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1.1); }
}

.advantage-card .icon-wrap svg {
  width: 2rem;
  height: 2rem;
  color: #D4849C;
}

.advantage-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3D2A2E;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.advantage-card p {
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.products-grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .products-grid-3 { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  background: #FFF;
  border-radius: 1rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.product-card .image-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .image-wrap img {
  transform: scale(1.1);
}

.product-card .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 42, 46, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}

.product-card:hover .image-overlay {
  opacity: 1;
}

.product-card .popular-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(to right, #E8A4B8, #D4849C);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-card .popular-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .category-label {
  font-size: 0.75rem;
  color: #D4849C;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.product-card h3 {
  font-weight: 600;
  color: #3D2A2E;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
}

.product-card .description {
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .price {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: auto;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
}

.page-hero-short {
  min-height: 50vh;
}

.page-hero .text-center {
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 3rem; }
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 3.75rem; }
}

.page-hero p {
  color: rgba(61, 42, 46, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero p { font-size: 1.25rem; }
}

/* Two-column layout */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.story-text .drop-cap {
  color: #D4849C;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  float: left;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
  line-height: 1;
}

.story-text p {
  color: rgba(61, 42, 46, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Polaroid Photos */
.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .polaroid-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.polaroid {
  position: relative;
  background: #FFF;
  padding: 0.75rem;
  padding-bottom: 4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(232, 164, 184, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.polaroid:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.25);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.polaroid .caption {
  margin-top: 0.75rem;
  text-align: center;
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

.stat-label {
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
}

/* Quote */
.quote-section {
  text-align: center;
}

.quote-section svg {
  width: 3rem;
  height: 3rem;
  color: #D4849C;
  margin: 0 auto 1.5rem;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #3D2A2E;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .quote-section blockquote { font-size: 1.875rem; }
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.quote-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 700;
}

.quote-author-info {
  text-align: left;
}

.quote-author-name {
  font-weight: 600;
  color: #3D2A2E;
}

.quote-author-role {
  font-size: 0.875rem;
  color: rgba(61, 42, 46, 0.6);
}

/* ===== PRODUCTS PAGE ===== */
.filters {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}

.search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(61, 42, 46, 0.4);
}

.search-wrap input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: 9999px;
  background: #FFF;
  border: 1px solid rgba(232, 164, 184, 0.3);
  color: #3D2A2E;
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.search-wrap input::placeholder {
  color: rgba(61, 42, 46, 0.4);
}

.search-wrap input:focus {
  border-color: #D4849C;
  box-shadow: 0 0 0 3px rgba(232, 164, 184, 0.2);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  background: #FFF;
  color: rgba(61, 42, 46, 0.7);
  border: 1px solid rgba(232, 164, 184, 0.3);
  cursor: pointer;
}

.category-btn:hover {
  background: #FFF5F7;
  color: #D4849C;
  transform: scale(1.02);
}

.category-btn.active {
  background: linear-gradient(to right, #E8A4B8, #D4849C);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(232, 164, 184, 0.4);
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
}

.empty-state .icon-circle {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.empty-state .icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(61, 42, 46, 0.3);
}

.empty-state h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3D2A2E;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: rgba(61, 42, 46, 0.6);
}

.results-count {
  margin-top: 2rem;
  text-align: center;
  color: rgba(61, 42, 46, 0.4);
  font-size: 0.875rem;
}

/* ===== CONTACTS PAGE ===== */
.contact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-box {
  background: #FFF;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(232, 164, 184, 0.2);
}

.contact-box .space-y > * + * {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: opacity 0.3s;
}

a.contact-item:hover {
  opacity: 0.8;
}

.contact-item .icon-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover .icon-circle {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transform: scale(1.1);
}

.contact-item .icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #D4849C;
}

.contact-item .label {
  color: rgba(61, 42, 46, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-item .value {
  color: #3D2A2E;
  font-weight: 500;
  font-size: 1.125rem;
}

.divider {
  height: 1px;
  background: rgba(232, 164, 184, 0.2);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.social-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4849C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  color: #FFF;
  transform: scale(1.1);
}

.social-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Decorative Image */
.deco-image-wrap {
  position: relative;
  max-width: 28rem;
  margin: 2rem auto;
}

.deco-image-wrap img {
  border-radius: 1.5rem;
  width: 100%;
  box-shadow: 0 15px 50px rgba(232, 164, 184, 0.25);
  animation: float 4s ease-in-out infinite;
}

.deco-image-wrap .border-deco {
  position: absolute;
  z-index: -1;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(232, 164, 184, 0.3);
  border-radius: 1.5rem;
}

/* Map Placeholder */
.map-section {
  position: relative;
  height: 20rem;
  background: linear-gradient(180deg, #F0FAF8, #E0F5F1);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .map-section { height: 24rem; }
}

.map-section .map-placeholder {
  text-align: center;
}

.map-section svg {
  width: 3rem;
  height: 3rem;
  color: #D4849C;
  margin: 0 auto 1rem;
}

.map-section p {
  color: rgba(61, 42, 46, 0.6);
}

.map-section .brand-name {
  color: #D4849C;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* FAQ */
.faq-list > * + * {
  margin-top: 1rem;
}

.faq-item {
  background: #FFF;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(232, 164, 184, 0.2);
}

.faq-item h3 {
  font-weight: 600;
  color: #3D2A2E;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.faq-item p {
  color: rgba(61, 42, 46, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== ABOUT PAGE - Two images grid ===== */
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.about-images-grid img {
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-images-grid img:nth-child(2) {
  margin-top: 2rem;
}

.about-images-grid .bg-deco {
  position: absolute;
  z-index: -1;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 1rem;
}

/* About page story image */
.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  border-radius: 1.5rem;
  width: 100%;
  box-shadow: 0 25px 80px rgba(232, 164, 184, 0.25), 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: float 4s ease-in-out infinite;
}

.story-image-wrap .border-deco {
  position: absolute;
  z-index: -1;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(232, 164, 184, 0.3);
  border-radius: 1.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-section { padding: 7rem 0; }
}

.cta-section .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 { font-size: 3rem; }
}

.cta-section p {
  color: rgba(61, 42, 46, 0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HELPERS ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ===== PARTICLE EFFECTS ===== */

/* Ensure buttons can hold the particle container */
.btn {
  position: relative;
  overflow: visible;
}

.particle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  border-radius: inherit;
  z-index: 20;
}

.sparkle-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 1rem;
  z-index: 20;
}

/* Button particle burst */
.particle {
  position: absolute;
  pointer-events: none;
  animation: particleBurst 0.8s ease-out forwards;
  z-index: 20;
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0) rotate(0deg);
  }
  30% {
    opacity: 1;
    transform: translate(
      calc((var(--tx) - var(--start-x, 0px)) * 0.3),
      calc((var(--ty) - var(--start-y, 0px)) * 0.3)
    ) scale(1.2) rotate(calc(var(--rot) * 0.3));
  }
  100% {
    opacity: 0;
    left: var(--tx);
    top: var(--ty);
    transform: scale(0.6) rotate(var(--rot));
  }
}

/* Using a simpler approach — JS sets left/top inline as start, CSS animates to end */
.particle {
  will-change: transform, opacity;
  animation: particleFly 0.8s ease-out forwards;
}

@keyframes particleFly {
  0% {
    opacity: 1;
    transform: scale(0) rotate(0deg);
  }
  25% {
    opacity: 1;
    transform: scale(1.2) rotate(calc(var(--rot) * 0.25));
  }
  100% {
    opacity: 0;
    left: var(--tx);
    top: var(--ty);
    transform: scale(0.6) rotate(var(--rot));
  }
}

/* Product card sparkle */
.sparkle-particle {
  position: absolute;
  pointer-events: none;
  will-change: transform, opacity;
  animation: sparklePop 1s ease-out forwards;
  z-index: 20;
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
  }
  60% {
    opacity: 1;
    transform: scale(0.8) rotate(180deg);
  }
  100% {
    opacity: 0;
    left: var(--drift-x);
    top: var(--drift-y);
    transform: scale(0) rotate(360deg);
  }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8A4B8, #D4849C);
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 164, 184, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #D4AF37, #B8960C);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px) scale(1.08);
}

.scroll-top-btn:active {
  transform: scale(0.95);
}

.scroll-top-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 42, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.35s ease;
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.lightbox-caption {
  text-align: center;
  margin-top: 1.25rem;
  max-width: 600px;
}

.lightbox-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.lightbox-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Zoom hint on image overlays */
.zoom-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #D4849C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.zoom-hint:hover {
  background: #FFF;
  transform: scale(1.1);
}

.lightbox-trigger {
  cursor: pointer;
}

/* ===== MOBILE RESPONSIVENESS FIXES ===== */

/* Prevent horizontal overflow from decorative elements */
.hero-image {
  overflow: hidden;
}

.deco-image-wrap,
.story-image-wrap {
  overflow: visible;
}

/* About images grid — stack on small screens */
@media (max-width: 640px) {
  .about-images-grid {
    grid-template-columns: 1fr;
  }

  .about-images-grid img:nth-child(2) {
    margin-top: 1rem;
  }
}

/* Touch hint: subtle zoom icon always visible on touch devices */
@media (hover: none) and (pointer: coarse) {
  .product-card .image-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(61, 42, 46, 0.35), transparent 50%);
  }

  .zoom-hint {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.85);
  }

  .story-image-wrap.lightbox-trigger::after,
  .polaroid.lightbox-trigger::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D4849C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") center / 14px no-repeat;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 5;
    pointer-events: none;
  }

  .polaroid.lightbox-trigger::after {
    bottom: auto;
    top: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .polaroid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .polaroid {
    padding: 0.5rem;
    padding-bottom: 2.5rem;
  }

  .polaroid .caption {
    font-size: 0.7rem;
    padding: 0.4rem 0;
  }

  .filters {
    gap: 0.75rem;
  }

  .categories {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .category-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .search-wrap input {
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .lightbox-img {
    max-height: 55vh;
    border-radius: 0.75rem;
  }

  .lightbox-title {
    font-size: 1.15rem;
  }

  .lightbox-desc {
    font-size: 0.85rem;
  }

  .lightbox-close {
    top: -2.5rem;
    right: 0.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-pink,
  .section-cream,
  .section-mint {
    padding: 3rem 0;
  }

  .page-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: auto;
  }

  .page-hero-short {
    min-height: auto;
  }

  .advantage-card {
    padding: 1.25rem 1rem;
  }

  .contact-item .value {
    font-size: 1rem;
  }

  .faq-item {
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-two-col .hero-buttons {
    justify-content: center;
  }

  /* Prevent border-deco overflow */
  .story-image-wrap .border-deco,
  .deco-image-wrap .border-deco {
    display: none;
  }

  .quote-section blockquote {
    font-size: 1.25rem;
  }
}
