:root {
  --rose: #C8847A;
  --rose-light: #F2DDD9;
  --rose-dark: #8B4A44;
  --gold: #C9A96E;
  --gold-light: #F5EDD9;
  --cream: #FAF7F3;
  --dark: #1C1713;
  --mid: #4A3F35;
  --muted: #8A7D72;
  --white: #FFFFFF;
  --border: rgba(200,132,122,0.2);
  --shadow: 0 4px 40px rgba(28,23,19,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: default;
}

/* ── CUSTOM CURSOR ── */
.cursor { width:12px; height:12px; background:var(--rose); border-radius:50%; position:fixed; pointer-events:none; z-index:9999; transform:translate(-50%,-50%); transition:transform 0.1s; mix-blend-mode:multiply; }
.cursor-ring { width:32px; height:32px; border:1px solid var(--rose); border-radius:50%; position:fixed; pointer-events:none; z-index:9998; transform:translate(-50%,-50%); transition:all 0.2s ease; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(250,247,243,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 1rem 4rem; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; letter-spacing: 0.02em; color: var(--dark); text-decoration: none; }
.nav-logo span { color: var(--rose); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose); color: #fff; border: none; padding: 0.6rem 1.6rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.nav-cta:hover { background: var(--rose-dark); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 6rem;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose);
  margin-bottom: 2rem;
}
.hero-eyebrow::before { content:''; width:40px; height:1px; background:var(--rose); }
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300; line-height: 1.1;
  color: var(--dark); margin-bottom: 1.5rem;
}
h1 em { color: var(--rose); font-style: italic; }
.hero-desc { font-size: 1rem; color: var(--muted); line-height: 1.8; max-width: 420px; margin-bottom: 3rem; }
.hero-btns { display: flex; gap: 1.2rem; align-items: center; }
.btn-primary {
  background: var(--dark); color: #fff; border: none;
  padding: 0.9rem 2.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.25s;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.9rem 2.4rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--dark); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }
.hero-right {
  position: relative; overflow: hidden; background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-frame {
  width: 65%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--rose-light) 0%, #E8C4BE 100%);
  border-radius: 4px;
  position: relative; overflow: hidden;
  box-shadow: 20px 20px 60px rgba(28,23,19,0.15);
}
.hero-img-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='30' r='22' fill='%23C8847A' opacity='0.3'/%3E%3Cellipse cx='50' cy='75' rx='35' ry='28' fill='%23C8847A' opacity='0.2'/%3E%3C/svg%3E") center/cover;
}
.hero-badge {
  position: absolute; bottom: -1.5rem; left: -2rem;
  background: var(--white); padding: 1.2rem 1.8rem;
  border-radius: 4px; box-shadow: var(--shadow);
  border-left: 3px solid var(--rose);
}
.badge-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); }
.badge-sub { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hero-floater {
  position: absolute; top: 2rem; right: 2rem;
  background: var(--white); border-radius: 50%; width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow); animation: float 4s ease-in-out infinite;
}
.floater-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--rose); }
.floater-text { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--dark); color: var(--cream); padding: 1rem 0;
  overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.marquee-track span { color: var(--rose); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION SHARED ── */
section { padding: 6rem 6rem; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose);
  margin-bottom: 1.2rem;
}
.section-tag::before { content:''; width:30px; height:1px; background:var(--rose); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--dark); line-height: 1.15;
}
h2 em { color: var(--rose); font-style: italic; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); }
.service-card {
  background: var(--cream); padding: 2.5rem;
  transition: all 0.3s ease; position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--rose);
  transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--white); transform: translateY(-4px); }
.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.service-price { font-size: 1.2rem; color: var(--rose); font-family: 'Cormorant Garamond', serif; }
.service-price span { font-size: 0.78rem; color: var(--muted); font-family: 'DM Sans', sans-serif; }

/* ── AI SKIN ANALYZER ── */
#ai-analyzer { background: var(--dark); color: var(--cream); }
.ai-header { text-align: center; margin-bottom: 3.5rem; }
.ai-header h2 { color: var(--cream); }
.ai-header h2 em { color: var(--gold); }
.ai-header p { color: rgba(250,247,243,0.6); max-width: 540px; margin: 1rem auto 0; font-size: 0.95rem; line-height: 1.7; }
.ai-container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.ai-left {}
.ai-upload-zone {
  border: 1px dashed rgba(201,169,110,0.4); border-radius: 4px;
  padding: 3rem 2rem; text-align: center; cursor: pointer;
  transition: all 0.3s; margin-bottom: 1.5rem;
}
.ai-upload-zone:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.upload-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.ai-upload-zone p { color: rgba(250,247,243,0.5); font-size: 0.88rem; }
.ai-upload-zone strong { color: var(--gold); }
.ai-or { text-align: center; color: rgba(250,247,243,0.3); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 1rem 0; }
.tone-selector { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; }
.tone-btn {
  height: 40px; border-radius: 2px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s;
}
.tone-btn:hover, .tone-btn.active { border-color: var(--gold); transform: scale(1.1); }
.ai-analyze-btn {
  width: 100%; margin-top: 1.5rem; background: var(--gold); color: var(--dark);
  border: none; padding: 1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: all 0.2s; font-weight: 500;
}
.ai-analyze-btn:hover { background: #B8924A; }
.ai-results { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,169,110,0.2); border-radius: 4px; padding: 2rem; }
.ai-results h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--gold); margin-bottom: 1.5rem; }
.result-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.result-label { font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(250,247,243,0.5); }
.result-value { font-size: 0.92rem; color: var(--cream); }
.result-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; margin-bottom: 1.5rem; overflow: hidden; }
.result-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width 1.5s ease; }
.product-recs { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.product-recs h5 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,243,0.4); margin-bottom: 1rem; }
.rec-chip {
  display: inline-block; background: rgba(201,169,110,0.15); color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3); padding: 0.3rem 0.9rem;
  border-radius: 20px; font-size: 0.78rem; margin: 0.2rem;
}
.ai-loading { display: none; text-align: center; padding: 3rem; }
.ai-spinner {
  width: 40px; height: 40px; border: 2px solid rgba(201,169,110,0.2);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 1s linear infinite; margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── ACADEMY ── */
#academy { background: var(--rose-light); }
.academy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.academy-courses { display: flex; flex-direction: column; gap: 1rem; }
.course-card {
  background: var(--white); border-radius: 4px;
  padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: all 0.25s; border: 1px solid transparent;
}
.course-card:hover { border-color: var(--rose); transform: translateX(6px); }
.course-info h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.3rem; }
.course-info p { font-size: 0.8rem; color: var(--muted); }
.course-meta { text-align: right; }
.course-duration { font-size: 0.78rem; color: var(--muted); }
.course-fee { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--rose); }
.course-badge {
  display: inline-block; background: var(--rose); color: #fff;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 2px; margin-left: 0.5rem;
}
.enroll-btn {
  margin-top: 2rem; background: var(--rose); color: #fff; border: none;
  padding: 1rem 2.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 2px;
  transition: all 0.2s;
}
.enroll-btn:hover { background: var(--rose-dark); }

/* ── PORTFOLIO / GALLERY ── */
#gallery { background: var(--white); }
.gallery-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.gallery-filters { display: flex; gap: 0.5rem; }
.filter-btn {
  background: transparent; border: 1px solid var(--border); color: var(--muted);
  padding: 0.5rem 1.2rem; font-size: 0.8rem; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: 4px; overflow: hidden; cursor: pointer;
  background: var(--rose-light);
}
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item-inner {
  width: 100%; height: 100%; min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; transition: transform 0.4s;
}
.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,23,19,0); 
  display: flex; align-items: flex-end; padding: 1.2rem;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(28,23,19,0.5); }
.gallery-overlay-text { color: #fff; opacity: 0; transform: translateY(8px); transition: all 0.3s; }
.gallery-item:hover .gallery-overlay-text { opacity: 1; transform: translateY(0); }
.gallery-overlay-text h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.gallery-overlay-text p { font-size: 0.75rem; opacity: 0.7; }
/* Gallery color themes */
.gi-1 { background: linear-gradient(135deg, #F2DDD9, #E8B4B0); }
.gi-2 { background: linear-gradient(135deg, #E8D5D0, #D4A098); }
.gi-3 { background: linear-gradient(135deg, #F5EDD9, #E8D4A8); }
.gi-4 { background: linear-gradient(135deg, #F0E8E0, #D8C4B8); }
.gi-5 { background: linear-gradient(135deg, #EAD8D4, #C8A4A0); }
.gi-6 { background: linear-gradient(135deg, #F8E8E4, #E4C0B8); }
.gi-7 { background: linear-gradient(135deg, #F0DDD8, #D4B4AE); }
.gi-8 { background: linear-gradient(135deg, #E4D0CC, #C8A4A0); }

/* ── AI LOOK GENERATOR ── */
#look-generator { background: var(--cream); }
.look-gen-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; }
.look-form { }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.form-group select, .form-group input {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid var(--border); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--dark);
  border-radius: 2px; outline: none; transition: border 0.2s;
}
.form-group select:focus, .form-group input:focus { border-color: var(--rose); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.generate-btn {
  width: 100%; background: var(--dark); color: var(--cream); border: none;
  padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; transition: all 0.25s; margin-top: 1rem;
}
.generate-btn:hover { background: var(--rose); }
.look-result { background: var(--white); border-radius: 4px; padding: 2.5rem; min-height: 400px; }
.look-placeholder { text-align: center; padding: 4rem 2rem; }
.look-placeholder-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.3; }
.look-placeholder p { color: var(--muted); font-size: 0.9rem; }
.look-output { display: none; }
.look-output h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 0.5rem; }
.look-output .look-subtitle { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
.look-steps { list-style: none; }
.look-steps li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.step-num {
  width: 28px; height: 28px; background: var(--rose-light); color: var(--rose);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500; flex-shrink: 0;
}
.step-content h5 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.2rem; }
.step-content p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.product-tags { margin-top: 1.5rem; }
.product-tags h5 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--dark); color: var(--cream); }
.test-header { text-align: center; margin-bottom: 4rem; }
.test-header h2 { color: var(--cream); }
.test-header h2 em { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.test-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 2rem;
  transition: all 0.3s;
}
.test-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.test-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 0.2em; }
.test-text { font-size: 0.92rem; color: rgba(250,247,243,0.7); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; }
.test-author { display: flex; align-items: center; gap: 0.8rem; }
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 500; color: #fff; flex-shrink: 0;
}
.test-name { font-size: 0.9rem; font-weight: 500; }
.test-occasion { font-size: 0.75rem; color: rgba(250,247,243,0.4); }

/* ── BOOKING ── */
#booking { background: var(--rose-light); }
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.booking-info h2 { margin-bottom: 1rem; }
.booking-info p { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--mid); }
.contact-icon { color: var(--rose); font-size: 1.1rem; }
.booking-form-card {
  background: var(--white); border-radius: 4px; padding: 2.5rem;
  box-shadow: var(--shadow);
}
.booking-form-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; margin-bottom: 2rem; color: var(--dark); }
.submit-btn {
  width: 100%; background: var(--rose); color: #fff; border: none;
  padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  border-radius: 2px; transition: all 0.25s; margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--rose-dark); }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--rose-light) 0%, #D4A098 100%);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.about-cert {
  position: absolute; bottom: -1.5rem; right: -2rem;
  background: var(--white); border-radius: 4px; padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow); border-top: 3px solid var(--gold);
  display: flex; gap: 1rem; align-items: center;
}
.cert-icon { font-size: 1.5rem; }
.cert-label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.cert-val { font-size: 0.92rem; font-weight: 500; color: var(--dark); }
.about-content {}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { font-size: 0.93rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.2rem; }
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.skill-item { display: flex; flex-direction: column; gap: 0.5rem; }
.skill-name { font-size: 0.8rem; letter-spacing: 0.05em; display: flex; justify-content: space-between; }
.skill-name span { color: var(--rose); }
.skill-bar { height: 2px; background: var(--rose-light); border-radius: 1px; overflow: hidden; }
.skill-progress { height: 100%; background: var(--rose); border-radius: 1px; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: var(--cream);
  padding: 4rem 6rem 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--cream); margin-bottom: 0.8rem; }
.footer-brand h3 span { color: var(--rose); }
.footer-brand p { font-size: 0.85rem; color: rgba(250,247,243,0.5); line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--cream);
}
.social-btn:hover { border-color: var(--rose); color: var(--rose); }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,247,243,0.4); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(250,247,243,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(250,247,243,0.3); }

/* ── NOTIFICATION / TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 5000;
  background: var(--dark); color: var(--cream); padding: 1rem 1.5rem;
  border-radius: 4px; border-left: 3px solid var(--rose);
  font-size: 0.88rem; transform: translateY(100px); opacity: 0;
  transition: all 0.4s; max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
.wa-btn {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 4000;
  background: #25D366; color: #fff; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: all 0.25s; animation: pulse 2.5s infinite;
}
.wa-btn:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)} }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(28,23,19,0.7);
  z-index: 8000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 4px; padding: 2.5rem;
  max-width: 500px; width: 90%; position: relative;
  animation: slideUp 0.35s ease;
}
@keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:translateY(0);opacity:1} }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--muted);
}
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; margin-bottom: 0.5rem; }
.modal p { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* Responsive */
@media(max-width:900px){
  section{padding:4rem 2rem;}
  nav{padding:1.2rem 2rem;}
  nav.scrolled{padding:0.8rem 2rem;}
  #hero{grid-template-columns:1fr;min-height:auto;}
  .hero-left{padding:5rem 2rem 3rem;}
  .hero-right{height:60vw;}
  .services-grid{grid-template-columns:1fr;}
  .ai-container,.academy-grid,.look-gen-grid,.booking-grid,.about-grid{grid-template-columns:1fr;}
  .testimonials-grid{grid-template-columns:1fr;}
  .gallery-masonry{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
