@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --cream: #FFFAF5;
  --champagne: #F5E6D3;
  --blush: #F0D4D4;
  --rose-gold: #C9A96E;
  --gold: #B8956A;
  --dark: #2C1810;
  --text: #3D2B1F;
  --text-light: #7A6455;
  --white: #FFFFFF;
  --ivory: #FFF8F0;
  --petal: #F8E8E0;
  --shadow: rgba(44, 24, 16, 0.08);
  --shadow-md: rgba(44, 24, 16, 0.12);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Page Transition Overlay */
.page-transition {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--champagne);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.page-transition.active {
  animation: pageIn 0.6s var(--transition) forwards;
}
@keyframes pageIn {
  0% { transform: scaleY(0); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
  51% { transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 30px var(--shadow);
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 400;
  color: var(--dark); text-decoration: none;
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav__logo img {
  height: 36px; width: auto;
}
.nav__logo span { color: var(--rose-gold); }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--text); text-decoration: none;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--rose-gold);
  transition: width 0.4s var(--transition);
}
.nav__links a:hover { color: var(--rose-gold); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--rose-gold); }
.nav__links a.active::after { width: 100%; }

/* Mobile Menu */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.nav__hamburger span {
  width: 24px; height: 1.5px; background: var(--dark);
  transition: all 0.3s var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(255, 250, 245, 0.98);
  backdrop-filter: blur(30px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 300;
  color: var(--dark); text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--rose-gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 50%, var(--petal) 100%);
}
.hero__content { max-width: 600px; z-index: 2; }
.hero__badge {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--rose-gold);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem;
  position: relative; z-index: 3;
}
.hero__badge::before {
  content: ''; width: 40px; height: 1px; background: var(--rose-gold);
}
.hero__title {
  font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1; color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic; color: var(--rose-gold); font-weight: 400;
}
.hero__desc {
  font-size: 1rem; color: var(--text-light); max-width: 440px;
  margin-bottom: 2.5rem; line-height: 1.8;
}
.hero__buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero__image {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: 45%; max-width: 600px; z-index: 1;
}
.hero__image img {
  width: 100%; border-radius: 200px 200px 20px 20px;
  object-fit: cover; box-shadow: 0 40px 80px var(--shadow-md);
}

/* Floating Daisy Petals */
.petal {
  position: absolute; width: 12px; height: 12px;
  background: var(--petal); border-radius: 50% 0 50% 0;
  opacity: 0.4; animation: floatPetal 8s ease-in-out infinite;
}
@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-60px) rotate(180deg); opacity: 0.15; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  padding: 1rem 2.5rem; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.4s var(--transition);
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--dark); color: var(--cream);
}
.btn--primary:hover {
  background: var(--rose-gold); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}
.btn--outline {
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark);
}
.btn--outline:hover {
  background: var(--dark); color: var(--cream);
}
.btn--whatsapp {
  background: var(--rose-gold); color: var(--white);
}
.btn--whatsapp:hover {
  background: var(--gold); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* ===== SECTIONS ===== */
section { padding: 7rem 4rem; }

.section-header {
  text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.section-badge {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--rose-gold); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.section-badge::before, .section-badge::after {
  content: ''; width: 30px; height: 1px; background: var(--rose-gold);
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--dark); margin-bottom: 1rem;
}
.section-desc {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8;
}

/* ===== COLLECTIONS ===== */
.collections-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.collection-card {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 12px; aspect-ratio: 3/4;
  text-decoration: none; color: inherit;
  display: block;
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.collection-card:hover img { transform: scale(1.08); }
.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.7) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; transition: background 0.4s;
}
.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(44,24,16,0.85) 0%, rgba(44,24,16,0.2) 60%);
}
.collection-card__title {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 300;
  color: var(--white); margin-bottom: 0.3rem;
}
.collection-card__count {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.collection-card__arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  transform: translate(10px, -10px); opacity: 0;
  transition: all 0.4s var(--transition);
}
.collection-card:hover .collection-card__arrow {
  transform: translate(0, 0); opacity: 1;
}

/* ===== ABOUT / STORY ===== */
.story { background: var(--ivory); }
.story__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story__image { position: relative; }
.story__image img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 30px 60px var(--shadow-md);
}
.story__image::after {
  content: ''; position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid var(--rose-gold); border-radius: 12px;
  z-index: -1; opacity: 0.4;
}
.story__content { max-width: 500px; }
.story__content h2 {
  font-family: var(--font-heading); font-size: 2.5rem;
  font-weight: 300; color: var(--dark); margin-bottom: 1.5rem;
}
.story__content p {
  color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.8;
}

/* ===== TRUST / FEATURES ===== */
.trust {
  background: linear-gradient(135deg, var(--dark) 0%, #1A0F0A 100%);
  color: var(--cream);
}
.trust .section-badge { color: var(--rose-gold); }
.trust .section-badge::before, .trust .section-badge::after { background: var(--rose-gold); }
.trust .section-title { color: var(--cream); }
.trust .section-desc { color: rgba(255,250,245,0.6); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust__item {
  text-align: center; padding: 2.5rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.15); border-radius: 12px;
  transition: all 0.4s var(--transition);
}
.trust__item:hover {
  border-color: rgba(201,169,110,0.4);
  transform: translateY(-5px);
  background: rgba(201,169,110,0.05);
}
.trust__icon {
  font-size: 2rem; margin-bottom: 1.2rem; display: block;
}
.trust__item h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  font-weight: 400; margin-bottom: 0.8rem; color: var(--cream);
}
.trust__item p {
  font-size: 0.85rem; color: rgba(255,250,245,0.5); line-height: 1.7;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  text-align: center; padding: 8rem 4rem;
  background: var(--cream);
}
.testimonial__quote {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic; color: var(--dark);
  max-width: 700px; margin: 0 auto 2rem; line-height: 1.6;
}
.testimonial__author {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--text-light);
}

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--petal) 100%);
  text-align: center; padding: 8rem 4rem;
}
.cta h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--dark); margin-bottom: 1rem;
}
.cta p {
  color: var(--text-light); max-width: 500px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: var(--cream);
  padding: 5rem 4rem 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer__brand h3 {
  font-family: var(--font-heading); font-size: 1.6rem;
  font-weight: 400; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer__brand h3 img {
  height: 32px; width: auto;
}
.footer__brand h3 span { color: var(--rose-gold); }
.footer__brand p {
  font-size: 0.85rem; color: rgba(255,250,245,0.5);
  line-height: 1.8; max-width: 300px;
}
.footer h4 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 400; margin-bottom: 1.2rem; color: var(--cream);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  font-size: 0.85rem; color: rgba(255,250,245,0.5);
  text-decoration: none; transition: color 0.3s;
}
.footer ul a:hover { color: var(--rose-gold); }
.footer__bottom {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,250,245,0.35);
}
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none; font-size: 0.85rem;
  transition: all 0.3s;
}
.footer__social a:hover {
  background: var(--rose-gold); border-color: var(--rose-gold);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--transition);
  animation: pulse 2s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 28px; height: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s var(--transition);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: all 0.8s var(--transition);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: all 0.8s var(--transition);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== ABOUT PAGE ===== */
.page-hero {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 10rem 4rem 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--champagne) 50%, var(--petal) 100%);
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--dark);
}
.page-hero p {
  font-size: 1rem; color: var(--text-light); max-width: 500px;
  margin: 1rem auto 0;
}

/* Values Grid */
.values__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.value-card {
  padding: 2.5rem; border-radius: 12px;
  background: var(--white); border: 1px solid rgba(201,169,110,0.1);
  transition: all 0.4s var(--transition); text-align: center;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
  border-color: rgba(201,169,110,0.3);
}
.value-card__icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.value-card h3 {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 400; color: var(--dark); margin-bottom: 0.8rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-info__item {
  display: flex; gap: 1.2rem; margin-bottom: 2rem; align-items: flex-start;
}
.contact-info__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--champagne); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info__item h4 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 400; color: var(--dark); margin-bottom: 0.3rem;
}
.contact-info__item p { font-size: 0.9rem; color: var(--text-light); }
.contact-form {
  background: var(--white); padding: 3rem; border-radius: 12px;
  box-shadow: 0 20px 50px var(--shadow);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--text); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.9rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.2);
  background: var(--ivory); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--rose-gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== COLLECTIONS PAGE ===== */
.collections-page-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
.product-card {
  border-radius: 12px; overflow: hidden;
  background: var(--white); transition: all 0.4s var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-md);
}
.product-card__image {
  aspect-ratio: 1; overflow: hidden;
}
.product-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.product-card:hover .product-card__image img { transform: scale(1.06); }
.product-card__info { padding: 1.5rem; text-align: center; }
.product-card__name {
  font-family: var(--font-heading); font-size: 1.2rem;
  font-weight: 400; color: var(--dark); margin-bottom: 0.3rem;
}
.product-card__price {
  font-size: 0.85rem; color: var(--rose-gold); font-weight: 500;
}

/* ===== CONTACT WHY CARD ===== */
.contact-why__card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px var(--shadow);
  border: 1px solid rgba(201,169,110,0.08);
}
.contact-why__card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 2rem;
}
.contact-why__card h3 em {
  color: var(--rose-gold);
  font-style: italic;
}
.contact-why__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-why__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-why__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-why__list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.contact-why__list p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
  .nav { padding: 1.2rem 2rem; }
  .nav.scrolled { padding: 0.8rem 2rem; }
  section { padding: 5rem 2rem; }
  .hero { padding: 7rem 2rem 3rem; }
  .hero__image { width: 42%; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story__grid { gap: 3rem; }
  .testimonial { padding: 5rem 2rem; }
  .cta { padding: 5rem 2rem; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {
  /* Navigation */
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: 0.75rem 1.25rem; }
  .nav__logo { font-size: 1.5rem; }
  .nav__logo img { height: 30px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Global Sections */
  section { padding: 3.5rem 1.25rem; }
  .section-header { margin-bottom: 2.5rem; }
  .section-title { margin-bottom: 0.75rem; }

  /* Hero — stack vertically, no overlap */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6.5rem 1.25rem 2.5rem;
    min-height: auto;
    gap: 2rem;
  }
  .hero__content {
    max-width: 100%;
    order: 1;
  }
  .hero__badge { justify-content: center; }
  .hero__badge::before { width: 24px; }
  .hero__title { font-size: 2.8rem; margin-bottom: 1rem; }
  .hero__desc {
    margin: 0 auto 1.5rem;
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero__image {
    display: none;
  }

  /* Hero buttons */
  .hero__buttons {
    justify-content: center;
  }
  .hero .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.68rem;
  }

  /* Collections Grid — 2 columns on mobile */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .collection-card { border-radius: 10px; }
  .collection-card__overlay { padding: 1rem; }
  .collection-card__title { font-size: 1.1rem; }
  .collection-card__count { font-size: 0.6rem; letter-spacing: 0.12em; }
  .collection-card__arrow { display: none; }

  /* Story section */
  .story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story__content { max-width: 100%; }
  .story__content h2 { font-size: 2rem; margin-bottom: 1rem; }
  .story__image { display: none; }

  /* Trust section */
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .trust__item { padding: 1.5rem 1rem; border-radius: 10px; }
  .trust__icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
  .trust__item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
  .trust__item p { font-size: 0.78rem; }

  /* Testimonial */
  .testimonial { padding: 4rem 1.25rem; }
  .testimonial__quote { font-size: 1.3rem; }

  /* CTA */
  .cta { padding: 4rem 1.25rem; }
  .cta h2 { font-size: 1.8rem; }
  .cta p { font-size: 0.88rem; }
  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cta__buttons .btn {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  /* Footer */
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
  .footer h4 { font-size: 1rem; margin-bottom: 0.8rem; }
  .footer ul a { font-size: 0.8rem; }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Page Hero (subpages) */
  .page-hero {
    padding: 6.5rem 1.25rem 2.5rem;
    min-height: auto;
  }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero p { font-size: 0.9rem; }

  /* Collections Page Grid — 2 columns */
  .collections-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-card__info { padding: 1rem; }
  .product-card__name { font-size: 1rem; }
  .product-card__price { font-size: 0.78rem; }

  /* Values Grid */
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .value-card { padding: 1.5rem 1rem; }
  .value-card__icon { font-size: 2rem; margin-bottom: 0.8rem; }
  .value-card h3 { font-size: 1.15rem; }
  .value-card p { font-size: 0.82rem; }

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-why__card { padding: 1.5rem; }
  .contact-why__card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
  .contact-why__list { gap: 1.2rem; }
  .contact-info__icon { width: 40px; height: 40px; font-size: 1rem; }

  /* WhatsApp Float — smaller on mobile */
  .whatsapp-float {
    width: 48px; height: 48px;
    bottom: 1.25rem; right: 1.25rem;
  }
  .whatsapp-float svg {
    width: 24px; height: 24px;
  }

  /* Buttons global mobile sizing */
  .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }
}

/* --- Small Mobile (480px) --- */
@media (max-width: 480px) {
  .nav { padding: 0.85rem 1rem; }
  .nav.scrolled { padding: 0.65rem 1rem; }
  .nav__logo { font-size: 1.35rem; }
  .nav__logo img { height: 26px; }

  section { padding: 3rem 1rem; }

  .hero {
    padding: 6rem 1rem 2rem;
  }
  .hero__title { font-size: 2.3rem; }
  .hero__desc { font-size: 0.85rem; }
  .hero__image { width: 75%; max-width: 280px; }
  .hero__image img { border-radius: 100px 100px 14px 14px; }

  /* Collections still 2-col on small mobile */
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .collection-card__overlay { padding: 0.75rem; }
  .collection-card__title { font-size: 0.95rem; }
  .collection-card__count { font-size: 0.55rem; }

  /* Product cards 2-col */
  .collections-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .product-card__info { padding: 0.75rem; }
  .product-card__name { font-size: 0.9rem; }
  .product-card__price { font-size: 0.72rem; }

  /* Trust 2-col stays */
  .trust__grid { gap: 0.5rem; }
  .trust__item { padding: 1.2rem 0.75rem; }
  .trust__item h3 { font-size: 0.95rem; }
  .trust__item p { font-size: 0.72rem; }

  /* Values stays 2-col */
  .values__grid { gap: 0.5rem; }
  .value-card { padding: 1.25rem 0.75rem; }

  /* Page Hero */
  .page-hero {
    padding: 5.5rem 1rem 2rem;
  }
  .page-hero h1 { font-size: 1.9rem; }

  /* CTA */
  .cta { padding: 3rem 1rem; }
  .cta h2 { font-size: 1.6rem; }

  /* Testimonial */
  .testimonial { padding: 3rem 1rem; }
  .testimonial__quote { font-size: 1.15rem; }

  /* Story */
  .story__content h2 { font-size: 1.7rem; }

  /* Footer */
  .footer { padding: 2.5rem 1rem 1.5rem; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer__brand h3 { font-size: 1.3rem; }

  /* Contact card */
  .contact-why__card { padding: 1.25rem; }
  .contact-why__icon { width: 36px; height: 36px; font-size: 1.2rem; }

  /* WhatsApp float */
  .whatsapp-float {
    width: 44px; height: 44px;
    bottom: 1rem; right: 1rem;
  }
  .whatsapp-float svg {
    width: 22px; height: 22px;
  }

  /* Mobile menu */
  .mobile-menu a { font-size: 1.6rem; }
}
