/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2c2c2c;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== BRAND COLORS ========== */
:root {
  --teal: #0F8B8D;
  --teal-dark: #0a6e70;
  --teal-light: #e6f5f5;
  --teal-muted: #b8dede;
  --maroon: #5C1A1B;
  --maroon-light: #7a2e2f;
  --maroon-deep: #3a1011;
  --cream: #FAF8F5;
  --warm-gray: #f0ece6;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #6b6b7b;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #e8d9a0;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; }
p { color: var(--text-medium); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ========== LAYOUT ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--maroon);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--maroon-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 26, 27, 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--maroon);
  border-color: var(--white);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 139, 141, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
}

/* ========== NAVIGATION ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--maroon); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links .btn { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.nav-links a.btn-teal { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: all 0.3s; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--maroon);
  overflow: hidden;
  padding-top: 72px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.hero-content .section-label { color: var(--gold); }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-quilt-img {
  display: none;
}
.hero-quilt-overlay {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-quilt-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 3;
}

/* Subtle pattern on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(15,139,141,0.06) 0%, transparent 50%);
  z-index: 1;
}

/* ========== HOW IT WORKS ========== */
.how-it-works { background: var(--white); }
.how-it-works .intro { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.how-it-works h2 { margin-bottom: 1rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}
/* Connecting line behind steps */
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--teal-muted), var(--teal-light));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
  background: var(--white);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(15,139,141,0.25);
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.05rem; }
.step p { font-size: 0.85rem; line-height: 1.65; }

/* ========== ABOUT / WHY ========== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; font-size: 0.95rem; }
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--maroon);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.5;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  aspect-ratio: 16/10;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-visual {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.about-visual h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 1.25rem; }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.comparison-item .icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}
.icon-x { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
.icon-check { background: var(--gold); color: var(--maroon); font-weight: bold; }

/* ========== PRICING ========== */
.pricing { background: var(--white); }
.pricing .intro { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.pricing h2 { margin-bottom: 1rem; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid #e8e5e0;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  background: var(--maroon);
  color: var(--white);
  border: 2px solid var(--maroon);
  position: relative;
  padding-top: 3.5rem;
}
.pricing-card.featured h3,
.pricing-card.featured h4 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.8); }
.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1.4rem;
  border-radius: 0 0 8px 8px;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  margin: 0.75rem 0 0.15rem;
}
.pricing-card .price-note { font-size: 0.82rem; margin-bottom: 1.5rem; }
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card ul li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-card ul li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured ul li::before { color: var(--gold); }
.pricing-card .btn { width: 100%; text-align: center; }
.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--maroon);
}
.pricing-card.featured .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.pricing-savings {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.5rem;
}
.pricing-stripe-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 500;
  transition: color 0.2s;
}
.pricing-stripe-link:hover { color: var(--teal-dark); text-decoration: underline; }
.pricing-card.featured a.pricing-stripe-link,
.pricing-card.featured a.pricing-stripe-link:hover { color: var(--white); }

/* ========== CUSTOM SERVICES ========== */
.custom-services {
  background: var(--warm-gray);
  padding: 4rem 0;
}
.custom-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.custom-services-text h2 { margin-bottom: 1rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.custom-services-text p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.custom-services-list {
  list-style: none;
  margin-bottom: 2rem;
}
.custom-services-list li {
  padding: 0.6rem 0;
  font-size: 0.92rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.custom-services-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.custom-services-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.custom-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== TEAM ========== */
.team { background: var(--cream); }
.team .intro { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.team h2 { margin-bottom: 0.75rem; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 820px;
  margin: 0 auto;
}
.team-member { text-align: center; }
.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-member:hover .team-avatar img {
  transform: scale(1.05);
}
.team-member h3 { margin-bottom: 0.25rem; }
.team-member .role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.team-member p { font-size: 0.9rem; max-width: 340px; margin: 0 auto; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(160deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* Quilt texture overlay */
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/quilt-patchwork.jpg') center/cover;
  opacity: 0.04;
}
.testimonials .section-label { color: var(--gold); }
.testimonials h2 { color: var(--white); margin-bottom: 2.5rem; text-align: center; }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.testimonial-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author-info .name { font-weight: 600; font-size: 0.9rem; }
.testimonial-author-info .location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ========== GIFT SECTION ========== */
.gift {
  background: var(--white);
  text-align: center;
}
.gift-box {
  max-width: 740px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid #e8e5e0;
  border-radius: 20px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.gift-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--teal-light);
  border-radius: 50%;
  opacity: 0.5;
}
.gift-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
}
.gift-box > * { position: relative; z-index: 1; }
.gift-box h2 { margin-bottom: 1rem; }
.gift-box p {
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.gift-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gift-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}
.gift-feature .gf-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gift-feature .gf-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== FAQ ========== */
.faq { background: var(--cream); }
.faq .intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.faq h2 { margin-bottom: 1rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #ddd8d0;
  padding: 1.25rem 0;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  padding: 0.25rem 0;
}
.faq-question .faq-icon {
  font-size: 1.3rem;
  color: var(--teal);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0.75rem;
}
.faq-answer p { font-size: 0.9rem; line-height: 1.7; }

/* ========== CONTACT / CTA ========== */
.cta {
  background: var(--teal);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.cta h2 { color: var(--white); margin-bottom: 1rem; }
.cta > .container > p,
.cta .fade-up > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}
.contact-form h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.3rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafaf8;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,139,141,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; text-align: center; margin-top: 0.5rem; }

/* ========== FOOTER ========== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--teal); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-col { display: none; }
  .hero-content { max-width: 600px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before { display: none; }
}

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; }
  .custom-services-inner { grid-template-columns: 1fr; }
  .custom-services-image { max-width: 500px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 72px 0 0; }
  .hero-content { padding: 4rem 0 5rem; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gift-features { flex-direction: column; align-items: center; }
  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
  .contact-form { padding: 1.5rem; }
  .gift-box { padding: 2.5rem 1.5rem; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.fade-up-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }