/* ============================================================
   CORAL BEAUTY SALON — Stylesheet
   Palette: Deep Mauve #674D66 · Soft Pink Blush #EBD6DC
   Typography: Cormorant Garamond (display) · Jost (body)
   ============================================================ */

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

:root {
  --mauve: #674D66;
  --mauve-light: #896285;
  --mauve-dark: #4a3549;
  --blush: #EBD6DC;
  --blush-deep: #d9bfc8;
  --blush-pale: #f7f0f3;
  --white: #ffffff;
  --text-dark: #2d1f2c;
  --text-mid: #6b5068;
  --text-light: #a8899f;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;

  --section-pad: clamp(64px, 10vw, 120px);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--text-dark);
  cursor: none;
  overflow-x: hidden;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* ========================
   CURSOR
   ======================== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--mauve);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.3s, height 0.3s;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--mauve);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.2s;
  opacity: 0.5;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 18px; height: 18px;
  background: var(--blush-deep);
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.5);
}

/* ========================
   DEMO NOTICE
   ======================== */
.demo-notice {
  background: var(--mauve-dark);
  color: var(--blush);
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  position: relative;
  z-index: 100;
}

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(103,77,102,0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(103,77,102,0.12); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-coral {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.02em;
}

.logo-beauty {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--mauve);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--mauve); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--mauve) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--mauve-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--mauve);
  transition: transform 0.3s;
}

/* ========================
   HERO
   ======================== */
.hero {
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--blush-pale);
  padding: 80px clamp(24px, 6vw, 80px) 60px;
  gap: 40px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.shape-1 {
  width: 500px; height: 500px;
  background: var(--blush-deep);
  top: -100px; right: -100px;
  animation: driftA 12s ease-in-out infinite alternate;
}

.shape-2 {
  width: 300px; height: 300px;
  background: var(--mauve);
  bottom: -80px; left: -50px;
  opacity: 0.12;
  animation: driftB 16s ease-in-out infinite alternate;
}

.shape-3 {
  width: 200px; height: 200px;
  background: var(--blush);
  top: 40%; left: 30%;
  opacity: 0.25;
  animation: driftA 20s ease-in-out infinite alternate-reverse;
}

@keyframes driftA {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.05); }
}

@keyframes driftB {
  from { transform: translate(0,0) rotate(0deg); }
  to   { transform: translate(-20px, 30px) rotate(15deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--mauve);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================
   HERO VISUAL
   ======================== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.hero-blob {
  width: 380px;
  height: 380px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--mauve) 100%);
  animation: morph 10s ease-in-out infinite, float 7s ease-in-out infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob-inner {
  width: 85%;
  height: 85%;
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.blob-accent {
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}

@keyframes morph {
  0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  33%  { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  66%  { border-radius: 55% 45% 65% 35% / 40% 60% 45% 55%; }
  100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floater {
  position: absolute;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(103,77,102,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mauve);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(103,77,102,0.08);
  backdrop-filter: blur(8px);
  animation: floatChip 8s ease-in-out infinite;
}

.f1 { top: 10%;  left: 0;   animation-delay: 0s; }
.f2 { top: 25%;  right: 0;  animation-delay: 1.5s; }
.f3 { bottom: 25%; left: 2%; animation-delay: 3s; }
.f4 { bottom: 12%; right: 2%; animation-delay: 4.5s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--ff-sans);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--mauve-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mauve);
  color: var(--white);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(103,77,102,0.25);
}

.btn-primary:hover {
  background: var(--mauve-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(103,77,102,0.35);
}

.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--mauve);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--mauve);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-ghost:hover {
  background: var(--mauve);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  text-decoration: none;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
}

/* ========================
   CONTAINER + SECTION HELPERS
   ======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-label {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-light);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ========================
   ABOUT
   ======================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 60%, #c9a8b5 100%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-inner {
  text-align: center;
  color: var(--mauve);
  opacity: 0.6;
}

.img-inner svg { width: 120px; opacity: 0.5; }
.img-inner p {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.about-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--mauve);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border-radius: 50px;
}

.about-stat-card {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 30px rgba(103,77,102,0.1);
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 28px;
  color: var(--mauve);
  font-weight: 600;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feat-icon {
  color: var(--mauve);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-features strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.about-features span {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
}

/* ========================
   SERVICES
   ======================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--blush-pale);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(235,214,220,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  border-color: var(--blush-deep);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(103,77,102,0.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--blush-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg { width: 32px; height: 32px; }

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 24px;
}

.card-link {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--mauve);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: letter-spacing 0.25s;
}

.card-link:hover { letter-spacing: 0.1em; }

/* ========================
   USP STRIP
   ======================== */
.usp-strip {
  background: var(--mauve);
  padding: 32px 0;
}

.usp-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
}

.usp-num {
  color: var(--blush);
  font-size: 14px;
}

.usp-text {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  font-size: 12px;
}

.usp-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

/* ========================
   GALLERY
   ======================== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-bottom: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }

.gallery-placeholder span {
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  background: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 50px;
}

.gallery-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  margin-top: 16px;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--blush-pale) 0%, rgba(235,214,220,0.4) 100%);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(103,77,102,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(103,77,102,0.12);
}

.testi-stars {
  color: var(--mauve);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-card p {
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================
   CONTACT
   ======================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 36px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.info-item span {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form-wrap {
  background: var(--blush-pale);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--blush-deep);
}

.contact-form h3 {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mauve);
}

.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23674D66' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }

.form-success {
  display: none;
  margin-top: 14px;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--mauve);
  padding: 12px;
  background: rgba(103,77,102,0.06);
  border-radius: var(--radius-sm);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--mauve-dark);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.footer-brand {
  text-align: center;
  margin-bottom: 24px;
}

.footer-brand .logo-coral { font-size: 28px; }
.footer-brand .logo-beauty { display: block; color: rgba(235,214,220,0.6); }
.footer-brand p { color: rgba(235,214,220,0.5); font-size: 13px; margin-top: 8px; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(235,214,220,0.7);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blush); }

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(235,214,220,0.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(235,214,220,0.4);
  margin-bottom: 6px;
}

.footer-demo {
  font-style: italic;
  font-size: 11px !important;
  color: rgba(235,214,220,0.3) !important;
}

/* ========================
   REVEAL ANIMATION
   ======================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-img-placeholder { max-width: 340px; margin: 0 auto; aspect-ratio: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 90px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 20px; border-bottom: 1px solid var(--blush-deep); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall, .g-wide { grid-row: span 1; grid-column: span 1; }
  .gallery-item { height: 200px; }
  .usp-inner { gap: 4px; }
  .usp-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .contact-form-wrap { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .shape, .hero-blob, .floater, .scroll-line { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
