/* ============================================================
   4Foto Studio – Premium Feminine CSS
   Palette: Blush #F5C6D0 | Rose Gold #C4915A | Mauve #8B4F6A | Champagne #FAF0E6 | Deep #2C1A2E
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --blush:      #F5C6D0;
  --rose-gold:  #C4915A;
  --mauve:      #8B4F6A;
  --deep:       #2C1A2E;
  --champagne:  #FAF0E6;
  --white:      #FFFFFF;
  --text:       #3D2535;
  --text-light: #7A5E6E;
  --accent:     #E8A0B4;
  --gradient:   linear-gradient(135deg, #F5C6D0 0%, #FAF0E6 50%, #E8D5C4 100%);
  --gradient-dark: linear-gradient(135deg, #2C1A2E 0%, #4A2040 100%);
  --shadow:     0 20px 60px rgba(44,26,46,0.12);
  --shadow-sm:  0 4px 20px rgba(44,26,46,0.08);
  --radius:     4px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--champagne);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 400; }
h4 { font-size: 1.3rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); margin-bottom: 1.2rem; font-weight: 300; }
a  { color: var(--mauve); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-gold); }
strong { color: var(--text); font-weight: 600; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.text-center { text-align: center; }
.text-italic { font-style: italic; }
.gold { color: var(--rose-gold); }
.mauve { color: var(--mauve); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Decorative Divider ── */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem auto; max-width: 300px;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--blush), transparent);
}
.divider-icon { color: var(--rose-gold); font-size: 1.2rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gradient-dark);
  color: var(--blush);
  box-shadow: 0 8px 30px rgba(44,26,46,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(44,26,46,0.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--mauve);
  border: 1.5px solid var(--mauve);
}
.btn-outline:hover {
  background: var(--mauve);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--rose-gold), #A97840);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(196,145,90,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(196,145,90,0.45);
  color: var(--white);
}

/* ── Floating Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-ring {
  width: 60px; height: 60px;
  border: 2px solid rgba(245,198,208,0.2);
  border-top-color: var(--blush);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Bar ── */
#topbar {
  background: var(--deep);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,198,208,0.1);
}
#topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.topbar-contact a {
  color: rgba(245,198,208,0.7);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-right: 1.5rem;
  transition: var(--transition);
}
.topbar-contact a:hover { color: var(--blush); }
.topbar-contact i { margin-right: 0.4rem; color: var(--rose-gold); }
.topbar-social a {
  color: rgba(245,198,208,0.5);
  font-size: 0.85rem;
  margin-left: 1rem;
  transition: var(--transition);
}
.topbar-social a:hover { color: var(--blush); }

/* ── Navigation ── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,240,230,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,145,90,0.15);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: 0.05em;
}
.navbar-brand span { color: var(--rose-gold); }
.navbar-menu ul {
  display: flex; gap: 0; list-style: none;
}
.navbar-menu ul li a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}
.navbar-menu ul li a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--rose-gold);
  transition: var(--transition);
}
.navbar-menu ul li a:hover,
.navbar-menu ul li.active a {
  color: var(--rose-gold);
}
.navbar-menu ul li a:hover::after,
.navbar-menu ul li.active a::after {
  left: 0.9rem; right: 0.9rem;
}
.navbar-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--deep);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ── */
#hero {
  min-height: 92vh;
  background: var(--gradient-dark);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5C6D0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(245,198,208,0.1);
  border: 1px solid rgba(245,198,208,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.5rem;
}
#hero h1 {
  color: var(--champagne);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
#hero h1 em {
  font-style: italic;
  color: var(--blush);
  display: block;
}
#hero p {
  font-size: 1.1rem;
  color: rgba(250,240,230,0.7);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 3rem;
  border-top: 1px solid rgba(245,198,208,0.15);
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--blush);
  line-height: 1;
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,198,208,0.5);
}
.hero-image-block {
  position: absolute; right: 0; bottom: 0; top: 0;
  width: 42%;
  overflow: hidden;
}
.hero-image-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 120px;
  background: linear-gradient(to right, var(--deep), transparent);
  z-index: 1;
}
.hero-image-block img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,198,208,0.4); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--blush), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Intro / Why Me ── */
#intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img {
  position: relative;
}
.intro-img img {
  width: 100%; border-radius: 2px;
  box-shadow: var(--shadow);
}
.intro-img::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1.5px solid var(--blush);
  border-radius: 2px;
  z-index: 0;
}
.intro-img img { position: relative; z-index: 1; }
.intro-quote {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--deep);
  color: var(--blush);
  padding: 1.5rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  max-width: 220px;
  z-index: 2;
  border-radius: 2px;
}
.intro-text .tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 1rem; }
.features-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2rem;
}
.feature-mini-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.feature-mini-item .icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--mauve);
}
.feature-mini-item h5 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--text); }
.feature-mini-item p { font-size: 0.82rem; margin: 0; }

/* ── Services / Sessions ── */
#services { background: var(--champagne); }
.section-header { margin-bottom: 3.5rem; }
.section-header .tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  background: var(--gradient-dark);
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,26,46,0.7), transparent 50%);
}
.service-card-img .placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--blush);
  opacity: 0.4;
}
.service-card-body { padding: 1.5rem 1.5rem 2rem; }
.service-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 0.5rem;
  display: block;
}
.service-card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--deep);
}
.service-card p { font-size: 0.9rem; margin: 0 0 1.5rem; }
.service-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-card-link::after { content: '→'; transition: var(--transition); }
.service-card:hover .service-card-link::after { transform: translateX(4px); }
.service-card .badge-new {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--mauve);
  color: var(--white);
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 50px; z-index: 1;
}

/* ── Benefits / Value Props ── */
#benefits { background: var(--deep); }
#benefits .section-header .tag { color: var(--blush); }
#benefits .section-header h2 { color: var(--champagne); }
#benefits .section-header p { color: rgba(250,240,230,0.6); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.benefit-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(245,198,208,0.1);
  border-radius: 2px;
  transition: var(--transition);
}
.benefit-item:hover {
  border-color: rgba(245,198,208,0.3);
  background: rgba(245,198,208,0.04);
  transform: translateY(-4px);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.benefit-item h4 {
  color: var(--blush);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.benefit-item p {
  font-size: 0.88rem;
  color: rgba(250,240,230,0.55);
  margin: 0;
}

/* ── Process ── */
#process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: calc(50%/4); right: calc(50%/4);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blush), transparent);
  z-index: 0;
}
.process-step {
  text-align: center; padding: 2rem 1.5rem;
  position: relative; z-index: 1;
}
.step-num {
  width: 50px; height: 50px;
  background: var(--gradient-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--blush);
  position: relative;
  box-shadow: 0 0 0 8px var(--white), 0 0 0 9px var(--blush);
}
.process-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.process-step p { font-size: 0.85rem; margin: 0; }

/* ── Testimonials ── */
#testimonials { background: var(--champagne); }
.testimonials-slider {
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.testimonial-track { overflow: hidden; }
.testimonial-slide {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.testimonial-slide.active { display: block; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.stars { color: var(--rose-gold); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1.5rem; display: block; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-author { font-size: 0.85rem; color: var(--rose-gold); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem;
}
.testimonial-btn {
  background: none; border: 1.5px solid var(--blush); border-radius: 50%;
  width: 40px; height: 40px;
  color: var(--mauve); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.testimonial-btn:hover { background: var(--mauve); border-color: var(--mauve); color: var(--white); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blush); cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--mauve); transform: scale(1.3); }

/* ── Gallery Teaser ── */
#gallery { background: var(--deep); }
#gallery .section-header h2 { color: var(--champagne); }
#gallery .section-header .tag { color: var(--blush); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.gallery-item {
  overflow: hidden; border-radius: 2px; cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 200px;
  background: rgba(245,198,208,0.05);
  border: 1px solid rgba(245,198,208,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  color: rgba(245,198,208,0.3);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.gallery-item:nth-child(1) .gallery-placeholder { height: 415px; }
.gallery-placeholder i { font-size: 2rem; opacity: 0.5; }
.gallery-item:hover .gallery-placeholder {
  background: rgba(245,198,208,0.08);
  border-color: rgba(245,198,208,0.25);
  color: rgba(245,198,208,0.7);
}

/* ── CTA Section ── */
#cta {
  background: linear-gradient(135deg, var(--mauve) 0%, #5A2A45 100%);
  text-align: center;
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '✦';
  position: absolute;
  font-size: 30vw; color: rgba(255,255,255,0.02);
  top: -5%; left: -5%;
  font-family: 'Cormorant Garamond', serif;
  pointer-events: none;
}
#cta h2 { color: var(--champagne); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
#cta p { color: rgba(250,240,230,0.7); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact Section ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mauve); font-size: 1rem;
}
.contact-item h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose-gold); margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { color: var(--text); font-size: 0.95rem; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--champagne);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--blush);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,198,208,0.2);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center; padding: 1.5rem;
  background: rgba(139,79,106,0.08);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  color: var(--mauve);
  font-size: 1rem;
}

/* ── Footer ── */
footer {
  background: var(--deep);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,198,208,0.1);
}
.footer-brand p { color: rgba(245,198,208,0.5); font-size: 0.88rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(245,198,208,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,198,208,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--blush); color: var(--blush); }
.footer-col h6 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--blush); font-weight: 500; margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(245,198,208,0.45);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blush); padding-left: 4px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(245,198,208,0.3); margin: 0; }
.footer-bottom a { color: rgba(245,198,208,0.4); }
.footer-bottom a:hover { color: var(--blush); }

/* ── Back to top ── */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: var(--gradient-dark);
  border: 1px solid rgba(245,198,208,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blush); font-size: 1rem;
  cursor: pointer; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--blush); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--deep);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(245,198,208,0.15);
  transform: translateY(100%);
  transition: var(--transition);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.83rem; color: rgba(245,198,208,0.6); margin: 0; }
#cookie-banner a { color: var(--blush); }

/* ── Animations ── */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-image-block { width: 38%; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-img { max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(1) .gallery-placeholder { height: 200px; }
  .hero-image-block { display: none; }
  .hero-content { max-width: 100%; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--champagne);
    border-top: 1px solid var(--blush);
    padding: 1rem 0;
    box-shadow: var(--shadow);
  }
  .navbar-menu.open { display: block; }
  .navbar-menu ul { flex-direction: column; }
  .navbar-menu ul li a { padding: 0.75rem 2rem; }
  .navbar-cta { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-mini { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .section-pad { padding: 3rem 0; }
}

/* ── Particle Canvas ── */
#particles-canvas {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}

/* ── Page Subheader ── */
.page-sub-header {
  background: var(--gradient-dark);
  padding: 5rem 0 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-sub-header h1 { color: var(--champagne); }
.page-sub-header p { color: rgba(250,240,230,0.6); }
.breadcrumb-nav { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.breadcrumb-nav a { font-size: 0.8rem; color: rgba(245,198,208,0.5); }
.breadcrumb-nav a:hover { color: var(--blush); }
.breadcrumb-nav span { color: rgba(245,198,208,0.3); font-size: 0.75rem; }
