/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #c0152a;
  --primary-dark: #a01020;
  --primary-light: #fff0f2;
  --accent: #ff6b7a;
  --green: #6b8f71;
  --green-light: #f0f5f1;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --bg-light: #faf8f6;
  --bg-cream: #fdf6f0;
  --border: #ede8e3;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: all 0.35s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
em { font-family: 'Playfair Display', serif; font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(194,104,90,0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn--white-sm {
  background: var(--white);
  color: var(--primary);
  padding: 10px 24px;
  font-size: 0.88rem;
  border-radius: 50px;
}

.btn--white-sm:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ========== BADGE ========== */
.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.badge--white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ========== SECTION HEADER ========== */
.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__header p {
  color: var(--text-gray);
  font-size: 1.05rem;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__icon {
  font-size: 2rem;
  color: var(--primary);
  animation: spin-slow 8s linear infinite;
}

.logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo__text em {
  color: var(--primary);
  font-style: italic;
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 20s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,5,5,0.72) 0%,
    rgba(30,10,10,0.55) 50%,
    rgba(10,5,5,0.45) 100%
  );
}

/* ========== FLOATING PETALS ========== */
.petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.petal {
  position: absolute;
  font-size: 1.5rem;
  animation: float-petal linear infinite;
  opacity: 0.7;
}

.petal--1 { left: 5%;  animation-duration: 12s; animation-delay: 0s;   font-size: 1.2rem; }
.petal--2 { left: 15%; animation-duration: 15s; animation-delay: 2s;   font-size: 1.8rem; }
.petal--3 { left: 28%; animation-duration: 11s; animation-delay: 4s;   font-size: 1rem; }
.petal--4 { left: 42%; animation-duration: 14s; animation-delay: 1s;   font-size: 1.5rem; }
.petal--5 { left: 57%; animation-duration: 13s; animation-delay: 3s;   font-size: 1.3rem; }
.petal--6 { left: 68%; animation-duration: 16s; animation-delay: 5s;   font-size: 1.1rem; }
.petal--7 { left: 80%; animation-duration: 12s; animation-delay: 2.5s; font-size: 1.6rem; }
.petal--8 { left: 92%; animation-duration: 14s; animation-delay: 0.5s; font-size: 1rem; }

@keyframes float-petal {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__text { max-width: 680px; }

.hero__tagline {
  display: block;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero__text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__text h1 em {
  color: var(--accent);
  display: block;
}

.hero__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero__badge i {
  font-size: 1.2rem;
  color: var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 32px;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== COLLECTIONS ========== */
.collections { background: var(--bg-cream); }

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.collection-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.collection-card__img {
  position: relative;
  overflow: hidden;
}

.collection-card__img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__img img { transform: scale(1.08); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.collection-card:hover .collection-card__overlay { opacity: 1; }

.collection-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.collection-card__info { padding: 24px; }

.collection-card__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.collection-card__info p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.collection-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.link-arrow:hover { gap: 8px; }

/* ========== ABOUT ========== */
.about {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--primary-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__images { position: relative; }

.about__img-main img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about__img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about__img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about__exp-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about__exp-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.about__exp-badge span { font-size: 0.78rem; opacity: 0.9; }

.about__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about__content > p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 36px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 2px;
}

.about__value h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about__value p { color: var(--text-gray); font-size: 0.9rem; }

/* ========== SERVICES ========== */
.services { background: var(--white); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.service-card__icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list { display: flex; flex-direction: column; gap: 8px; }

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-gray);
}

.service-card__list i { color: var(--green); font-size: 1rem; }

/* ========== HOW IT WORKS ========== */
.how-it-works {
  position: relative;
  overflow: hidden;
}

.hiw__bg {
  position: absolute;
  inset: 0;
}

.hiw__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hiw__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194,104,90,0.92), rgba(30,10,10,0.88));
}

.how-it-works .container { position: relative; z-index: 1; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 44px 32px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--transition);
}

.step:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-6px);
}

.step__number {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step__icon { font-size: 3rem; margin-bottom: 20px; display: block; }

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }

/* ========== GALLERY ========== */
.gallery { background: var(--bg-cream); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item--tall img { height: 456px; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide img { height: 220px; }

.gallery__item:hover img { transform: scale(1.08); }

.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(194,104,90,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery__hover i {
  font-size: 2.5rem;
  color: var(--white);
}

.gallery__item:hover .gallery__hover { opacity: 1; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-card__author strong { display: block; font-size: 0.95rem; font-weight: 700; }
.testimonial-card__author span { font-size: 0.82rem; color: var(--text-light); }
.stars { color: #f59e0b; font-size: 0.85rem; margin-top: 2px; }

/* ========== CONTACT ========== */
.contact { background: var(--bg-light); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 24px; }

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-icon {
  font-size: 1.6rem;
  min-width: 40px;
}

.contact__info-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.contact__info-item p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.6; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

.contact__map iframe { display: block; width: 100%; height: 200px; }

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form__group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,104,90,0.12);
}

.form__group textarea { resize: vertical; }

/* ========== FOOTER ========== */
.footer__top {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.footer__top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__top-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194,104,90,0.9), rgba(30,10,10,0.85));
}

.footer__top-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer__top-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__top-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}

.footer__main {
  background: #1a0f0d;
  padding: 70px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.footer__brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social { display: flex; gap: 12px; }

.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer__links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 12px; }

.footer__links li,
.footer__links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--accent); padding-left: 4px; }

.footer__bottom {
  background: #120a08;
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p { color: #64748b; font-size: 0.88rem; }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav__menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav__menu.active { transform: translateY(0); }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }

  .hero__text h1 { font-size: 2.6rem; }
  .hero__badges { gap: 16px; }

  .section__header h2 { font-size: 2rem; }

  .collections__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__img-secondary { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall img { height: 220px; }
  .gallery__item--wide { grid-column: span 2; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top-content h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero__text h1 { font-size: 2rem; }
  .hero__btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .contact__form { padding: 24px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
}