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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: #f7f5f2; color: #2a2420; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Variables ── */
:root {
  --bg: #f7f5f2;
  --fg: #2a2420;
  --primary: #6b2230;
  --primary-fg: #f7f5f2;
  --secondary: #ece6df;
  --muted: #7a6f64;
  --accent: #b87a2b;
  --accent-fg: #f7f5f2;
  --border: #ddd5cc;
  --maroon-dark: #4e1722;
  --cream-dark: #e8e0d7;
  --radius: 0.75rem;
  --eco-green: #2e7d32;
  --eco-green-light: #e8f5e9;
}

/* ── Utilities ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.section { padding: 6rem 0; }
.section-alt { background: rgba(236,230,223,0.5); }
.text-center { text-align: center; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.section-title { font-size: 2rem; font-weight: 700; color: var(--fg); margin-top: 0.75rem; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-desc { color: var(--muted); margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── Navbar ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s, box-shadow 0.3s; }
.navbar.scrolled { background: rgba(247,245,242,0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-img { width: 2.5rem; height: 2.5rem; object-fit: contain; border-radius: 4px; }
@media (min-width: 768px) { .logo-img { width: 3rem; height: 3rem; } }
.logo-icon { width: 2rem; height: 2rem; background: var(--primary); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--primary-fg); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.875rem; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--fg); }
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.875rem; padding: 0.625rem 1.25rem; border-radius: var(--radius); transition: background 0.2s, opacity 0.2s, transform 0.2s; border: none; cursor: pointer; }
.btn-outline { border: 1px solid var(--border); color: var(--fg); background: transparent; }
.btn-outline:hover { background: var(--secondary); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--maroon-dark); }
.btn-accent { background: var(--accent); color: var(--accent-fg); }
.btn-accent:hover { opacity: 0.9; }
.btn-lg { padding: 0.875rem 1.75rem; }
.btn-block { width: 100%; justify-content: center; }

/* Mobile menu */
.mobile-toggle { display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--fg); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: var(--bg); border-top: 1px solid var(--border); padding: 1rem; }
.mobile-menu.open { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu a { font-size: 0.875rem; font-weight: 500; color: var(--muted); padding: 0.5rem 0; }
.mobile-menu a:hover { color: var(--primary); }

/* ── Hero ── */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--secondary); color: var(--muted); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 1rem; border-radius: 999px; }
.hero-badge svg { color: var(--accent); }
.hero h1 { font-size: 2.5rem; font-weight: 700; line-height: 1.15; color: var(--fg); margin-top: 2rem; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 span { color: var(--primary); font-style: italic; }
.hero-desc { font-size: 1.125rem; color: var(--muted); max-width: 32rem; line-height: 1.7; margin-top: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-stats { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(3, 1fr); } }
.stat-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.stat-icon { width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--secondary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { color: var(--accent); width: 18px; height: 18px; }
.stat-title { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.stat-sub { font-size: 0.75rem; color: var(--muted); }

/* Hero Images Container - Peekaboo Effect */
.hero-images-container { position: relative; }
.hero-img-wrap { position: relative; z-index: 2; }
.hero-img-wrap img { width: 100%; height: 450px; object-fit: cover; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
@media (min-width: 1024px) { .hero-img-wrap img { height: 550px; } }
.price-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: rgba(247,245,242,0.95); backdrop-filter: blur(8px); border-radius: 0.75rem; padding: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.price-badge .price { font-size: 1.5rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.price-badge .unit { font-size: 0.875rem; color: var(--muted); }
.hero-deco { position: absolute; top: -1rem; right: -1rem; width: 6rem; height: 6rem; border: 2px solid rgba(184,122,43,0.3); border-radius: 0.75rem; z-index: -1; }

/* Peekaboo Image */
.hero-peekaboo { 
  position: absolute; 
  bottom: -2rem; 
  right: -1rem; 
  width: 55%; 
  max-width: 280px;
  z-index: 3; 
  border-radius: 1rem; 
  overflow: hidden; 
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateX(30px) translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-peekaboo.visible { 
  opacity: 1; 
  transform: translateX(0) translateY(0); 
}
.hero-peekaboo img { 
  width: 100%; 
  height: 180px; 
  object-fit: cover; 
}
@media (min-width: 768px) { 
  .hero-peekaboo { 
    bottom: -3rem; 
    right: -2rem; 
    max-width: 320px; 
  }
  .hero-peekaboo img { height: 220px; }
}
@media (min-width: 1024px) { 
  .hero-peekaboo { 
    bottom: -3rem; 
    right: -3rem; 
    max-width: 350px; 
  }
  .hero-peekaboo img { height: 240px; }
}
.peekaboo-overlay { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: linear-gradient(to top, rgba(46,125,50,0.95), rgba(46,125,50,0.7), transparent);
  padding: 1.5rem 1rem 1rem; 
  color: white; 
}
.eco-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.375rem; 
  background: rgba(255,255,255,0.2); 
  backdrop-filter: blur(4px);
  font-size: 0.75rem; 
  font-weight: 600; 
  padding: 0.25rem 0.75rem; 
  border-radius: 999px; 
  margin-bottom: 0.5rem;
}
.eco-badge svg { width: 14px; height: 14px; }
.peekaboo-text { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.125rem; 
  font-weight: 700; 
}
@media (min-width: 768px) { .peekaboo-text { font-size: 1.25rem; } }

/* Mobile fallback - stacked layout */
@media (max-width: 639px) {
  .hero-peekaboo { 
    position: relative; 
    bottom: auto; 
    right: auto; 
    width: 100%; 
    max-width: 100%; 
    margin-top: 1.5rem;
    transform: translateY(20px);
  }
  .hero-peekaboo.visible { transform: translateY(0); }
  .hero-peekaboo img { height: 200px; }
}

/* ── Services ── */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card { background: var(--bg); border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.2s, transform 0.2s; }
.service-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transform: translateY(-4px); }
.service-icon { width: 3rem; height: 3rem; border-radius: 0.5rem; background: rgba(107,34,48,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-icon svg { color: var(--primary); width: 22px; height: 22px; }
.service-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── Packages ── */
.packages-grid { display: grid; gap: 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 640px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.package-card { position: relative; border-radius: 1rem; padding: 1.5rem; border: 1px solid var(--border); background: var(--bg); box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: box-shadow 0.3s, transform 0.3s; }
.package-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.12); transform: translateY(-6px); }
.package-card.highlighted { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15); transform: scale(1.02); }
.package-card.highlighted:hover { transform: scale(1.02) translateY(-4px); }
.package-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 0.25rem; background: var(--accent); color: var(--accent-fg); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 999px; white-space: nowrap; }
.package-tier { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.package-card.highlighted .package-tier { color: rgba(247,245,242,0.7); }
.package-card:not(.highlighted) .package-tier { color: var(--muted); }
.package-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-top: 0.25rem; }
.package-price { margin-top: 0.75rem; }
.package-price .amount { font-size: 1.75rem; font-weight: 700; }
.package-price .unit { font-size: 0.875rem; }
.package-card.highlighted .package-price .unit { color: rgba(247,245,242,0.7); }
.package-card:not(.highlighted) .package-price .unit { color: var(--muted); }
.package-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.package-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.package-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.package-card.highlighted .package-features li span { color: rgba(247,245,242,0.9); }
.package-card:not(.highlighted) .package-features li span { color: var(--fg); }
.package-cta { margin-top: 2rem; display: block; text-align: center; padding: 0.75rem; border-radius: 0.5rem; font-weight: 500; transition: background 0.2s, transform 0.2s; }
.package-cta:hover { transform: scale(1.02); }
.package-card.highlighted .package-cta { background: var(--bg); color: var(--primary); }
.package-card.highlighted .package-cta:hover { background: var(--cream-dark); }
.package-card:not(.highlighted) .package-cta { background: var(--primary); color: var(--primary-fg); }
.package-card:not(.highlighted) .package-cta:hover { background: var(--maroon-dark); }
.packages-note { text-align: center; font-size: 0.875rem; color: var(--muted); margin-top: 2rem; }

/* Eco-Friendly Package Special Styling */
.package-card.eco-package { 
  border-color: var(--eco-green); 
  background: linear-gradient(to bottom, var(--eco-green-light), var(--bg));
}
.package-card.eco-package:hover { 
  box-shadow: 0 8px 20px rgba(46,125,50,0.2); 
}
.eco-package-badge { 
  position: absolute; 
  top: -0.75rem; 
  left: 50%; 
  transform: translateX(-50%); 
  display: inline-flex; 
  align-items: center; 
  gap: 0.25rem; 
  background: var(--eco-green); 
  color: white; 
  font-size: 0.75rem; 
  font-weight: 600; 
  padding: 0.25rem 0.75rem; 
  border-radius: 999px; 
  white-space: nowrap; 
}
.eco-package-badge svg { width: 12px; height: 12px; }
.package-card.eco-package .package-features li svg { color: var(--eco-green); }
.package-card.eco-package .package-cta { background: var(--eco-green); color: white; }
.package-card.eco-package .package-cta:hover { background: #1b5e20; }

/* ── Process ── */
.process-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 2fr 1fr; } }
.process-img { display: none; }
@media (min-width: 1024px) { .process-img { display: block; } }
.process-img img { border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); width: 100%; height: 20rem; object-fit: cover; }
.process-img p { font-family: 'Playfair Display', serif; font-size: 1.125rem; text-align: center; margin-top: 1rem; color: var(--muted); font-style: italic; }
.process-stat { text-align: center; margin-top: 1rem; }
.process-stat .num { font-size: 1.875rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.process-stat .label { font-size: 0.875rem; color: var(--muted); }
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; background: var(--bg); border-radius: 0.75rem; padding: 1.25rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.step-num { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; padding-top: 0.25rem; }
.step h3 { font-size: 1.125rem; font-weight: 600; color: var(--fg); }
.step p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

/* ── About ── */
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text .section-label { display: block; }
.about-text p { color: var(--muted); margin-top: 1.5rem; line-height: 1.7; }
.about-text p strong { color: var(--fg); }
.about-text p.highlight { font-weight: 500; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.value-card { background: var(--secondary); border-radius: 0.75rem; padding: 1.25rem; transition: transform 0.2s; }
.value-card:hover { transform: translateY(-4px); }
.value-card svg { color: var(--primary); width: 24px; height: 24px; margin-bottom: 0.75rem; }
.value-card h4 { font-weight: 600; color: var(--fg); }
.value-card p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Testimonial ── */
.testimonial { padding: 6rem 0; background: var(--primary); }
.testimonial .section-label { color: rgba(247,245,242,0.6); }
.testimonial h2 { color: var(--primary-fg); }
.testimonial h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: rgba(247,245,242,0.8); margin-top: 0.5rem; }
.testimonial .desc { color: rgba(247,245,242,0.7); margin-top: 1rem; }
.quote-box { margin-top: 2.5rem; background: rgba(247,245,242,0.1); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.quote-box svg { color: var(--accent); margin: 0 auto 1rem; width: 32px; height: 32px; }
.quote-box blockquote { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-style: italic; color: var(--primary-fg); line-height: 1.7; }
.quote-box .author { color: rgba(247,245,242,0.6); margin-top: 1rem; font-size: 0.875rem; }
.testimonial .btn { margin-top: 2rem; background: var(--bg); color: var(--primary); }
.testimonial .btn:hover { background: var(--cream-dark); }

/* ── Projects ── */
.projects-grid { display: grid; gap: 2.5rem; max-width: 64rem; margin: 0 auto; align-items: center; }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
.project-img { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.project-img img { width: 100%; height: 18rem; object-fit: cover; }
.project-badge { position: absolute; top: 1rem; left: 1rem; background: var(--accent); color: var(--accent-fg); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 999px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.project-meta span { display: flex; align-items: center; gap: 0.25rem; }
.project-meta svg { width: 14px; height: 14px; }
.project-info h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--fg); }
.project-info h4 { font-weight: 600; color: var(--fg); margin-top: 1.5rem; }
.project-info > p { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }
.project-features { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.project-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--fg); }
.project-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }

/* ── FAQ ── */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--secondary); border-radius: 0.75rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Playfair Display', serif; font-weight: 600; color: var(--fg); font-size: 1rem; }
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; width: 20px; height: 20px; color: var(--muted); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease-out; }
.faq-answer-inner { padding: 0 1.25rem 1rem; color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── Contact ── */
.contact-grid { display: grid; gap: 2.5rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 1fr; } }
.contact-form { background: var(--bg); border-radius: 1rem; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-row + .form-row, .form-group + .form-group, .form-row + .form-group { margin-top: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--fg); margin-bottom: 0.25rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--border); background: var(--bg); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--fg); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107,34,48,0.1); }
.form-group textarea { resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--bg); border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
.contact-card h3 { font-weight: 600; color: var(--fg); margin-bottom: 0.5rem; }
.contact-card > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted); }
.contact-detail + .contact-detail { margin-top: 1rem; }
.contact-detail svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }

/* ── Toast ── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--primary); color: var(--primary-fg); padding: 1rem 1.5rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transform: translateY(100px); opacity: 0; transition: transform 0.4s, opacity 0.4s; z-index: 100; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Footer ── */
.footer { background: var(--fg); color: rgba(247,245,242,0.7); padding: 3rem 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer .logo-icon { background: var(--primary); }
.footer .logo-text { color: var(--primary-fg); }
.footer .logo-img { filter: brightness(1.2); }
.footer p { font-size: 0.875rem; color: rgba(247,245,242,0.5); }
