/* ============================================
   AMOR BEAUTY LOUNGE
   Luxury beauty salon stylesheet
   ============================================ */

:root {
  --rose-deep: #b76e79;
  --rose: #d4998c;
  --blush: #f5d8d2;
  --blush-soft: #fbeae5;
  --cream: #fdf6f1;
  --gold: #c9a36a;
  --gold-soft: #e6c79c;
  --charcoal: #2d2424;
  --charcoal-soft: #4a3a3a;
  --muted: #8a7575;
  --white: #ffffff;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Great Vibes', cursive;

  --shadow-sm: 0 4px 14px rgba(183, 110, 121, 0.08);
  --shadow-md: 0 10px 30px rgba(183, 110, 121, 0.12);
  --shadow-lg: 0 25px 60px rgba(45, 36, 36, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.5px;
}
h2 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-head.light .eyebrow,
.section-head.light h2 { color: var(--white); }
.section-head.light h2 em { color: var(--gold-soft); }
.section-sub {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--rose) 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(183, 110, 121, 0.35);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn.full { width: 100%; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(253, 246, 241, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 110;
}
.nav-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.nav-logo:hover img { transform: rotate(-8deg) scale(1.05); }
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-amor {
  font-family: var(--script);
  font-size: 1.9rem;
  color: var(--rose-deep);
  line-height: 0.9;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 2px;
}
.nav.scrolled .brand-sub,
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--rose-deep);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta {
  background: var(--rose-deep);
  color: var(--white) !important;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(45, 36, 36, 0.55) 0%, rgba(183, 110, 121, 0.45) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
  max-width: 900px;
  animation: fadeUp 1.2s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.hero-title .script {
  font-family: var(--script);
  font-size: clamp(4.5rem, 12vw, 9rem);
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-title .serif {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.3; }
}

/* ============ ABOUT ============ */
.about {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-soft) 0%, transparent 70%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s var(--ease);
}
.about-image:hover img { transform: scale(1.03); }
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 70%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.about-text p {
  color: var(--charcoal-soft);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text strong { color: var(--rose-deep); font-weight: 500; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--blush);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--rose-deep);
  font-weight: 500;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ============ SERVICES ============ */
.services {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(160deg, var(--rose-deep) 0%, var(--rose) 100%);
  color: var(--white);
}
.service-card.featured h3,
.service-card.featured .service-icon { color: var(--white); }
.service-card.featured p { color: rgba(255, 255, 255, 0.9); }
.service-card.featured .service-price { color: var(--gold-soft); }
.service-icon {
  width: 64px;
  height: 64px;
  color: var(--rose-deep);
  margin: 0 auto 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush-soft);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}
.service-icon svg { width: 36px; height: 36px; }
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-6deg);
  background: var(--blush);
}
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.service-price {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

/* ============ PRICING ============ */
.pricing {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--blush);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.price-card h3 {
  font-size: 1.4rem;
  color: var(--rose-deep);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--blush);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-card h3 small {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.price-card.highlight {
  background: linear-gradient(160deg, var(--charcoal) 0%, #3a2929 100%);
  color: var(--white);
  border-color: var(--gold);
}
.price-card.highlight h3 {
  color: var(--gold-soft);
  border-bottom-color: rgba(230, 199, 156, 0.25);
}
.price-card.highlight .price-list li { border-bottom-color: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.92); }
.price-card.highlight .price { color: var(--gold-soft); }
.price-list {
  list-style: none;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--blush);
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.price-list li:last-child { border-bottom: none; }
.price-list li > span:first-child { flex: 1; }
.price-list li em {
  font-style: italic;
  color: var(--muted);
  font-size: 0.82rem;
}
.price-list li strong {
  color: var(--rose-deep);
  font-weight: 600;
}
.price {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.price small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 400;
  display: block;
  text-align: right;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush-soft) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  padding: 0;
  border: none;
  background: var(--blush-soft);
  display: block;
  width: 100%;
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45, 36, 36, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.08); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}
.gallery-zoom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  font-family: var(--serif);
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 14, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: lbZoom 0.4s var(--ease);
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  transform: scale(1.08);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }
body.lb-open { overflow: hidden; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3a2929 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 30rem;
  color: rgba(201, 163, 106, 0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
}
.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(230, 199, 156, 0.2);
  padding: 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
}
.testimonial footer {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ============ CONTACT ============ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-soft) 0%, transparent 70%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-lead {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.contact-list {
  list-style: none;
  margin-bottom: 2.5rem;
}
.contact-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--blush);
  font-size: 0.95rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--rose-deep);
  font-weight: 500;
}
.contact-list a:hover { color: var(--rose-deep); }
.contact-ic {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-soft);
  border-radius: 50%;
  flex-shrink: 0;
}
.socials {
  display: flex;
  gap: 1rem;
}
.socials a {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--rose-deep);
  border-radius: 50px;
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--blush);
}
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--rose-deep);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--blush);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin: 0;
}
.footer-tag {
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
}
.footer-copy {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 600px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img { height: 480px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--charcoal); font-size: 1rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about { padding: 5rem 0; }
  .services { padding: 5rem 0; }
  .gallery { padding: 5rem 0; }
  .testimonials { padding: 5rem 0; }
  .contact { padding: 5rem 0; }

  .section-head { margin-bottom: 3rem; }
  .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16 / 9; }

  .contact-form { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; }

  .nav-logo img { width: 44px; height: 44px; }
  .brand-amor { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  h2 { font-size: 2rem; }
  .hero-title .serif { letter-spacing: 5px; }
  .service-card { padding: 2rem 1.5rem; }
  .testimonial { padding: 2rem; }
  .contact-list li { flex-direction: row; }
  .socials { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { animation: none; }
}
