/* ================================================
   Adrienne's Beauty Salon — Stylesheet
   ================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-rose-gold: #B76E79;
  --color-rose-gold-light: #c9878f;
  --color-blush: #F2D7D9;
  --color-cream: #FFF8F0;
  --color-white: #FFFFFF;
  --color-burgundy: #6B2737;
  --color-mauve: #9B4D6A;
  --color-deep-plum: #3D1026;
  --color-gold: #D4A853;
  --color-glass-bg: rgba(255, 248, 240, 0.55);
  --color-glass-border: rgba(255, 255, 255, 0.35);
  --color-glass-dark-bg: rgba(255, 255, 255, 0.08);
  --color-glass-dark-border: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Raleway', 'Segoe UI', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  --fs-hero: clamp(2.8rem, 7vw, 5.5rem);
  --fs-h2: clamp(1.8rem, 4vw, 3rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --line-height-body: 1.75;
  --line-height-heading: 1.15;

  /* Spacing */
  --section-padding: 6rem 2rem;
  --container-max: 1200px;

  /* Effects */
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 8px 32px rgba(109, 39, 55, 0.08);
  --shadow-medium: 0 12px 40px rgba(109, 39, 55, 0.12);
  --shadow-strong: 0 20px 60px rgba(109, 39, 55, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--line-height-body);
  color: var(--color-deep-plum);
  background: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: var(--section-padding);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: var(--line-height-heading);
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title.centered {
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rose-gold), var(--color-mauve));
  margin-top: 0.75rem;
  border-radius: 2px;
}

.section-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

.section-title.light {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--color-mauve);
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle.light {
  color: var(--color-blush);
}

.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.btn-pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(61, 16, 38, 0.08);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--color-white);
  transition: color var(--transition-base);
}

#navbar.scrolled .logo {
  color: var(--color-burgundy);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-rose-gold);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-white);
}

#navbar.scrolled .nav-links a {
  color: var(--color-deep-plum);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--color-rose-gold);
}

.nav-cta {
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

#navbar.scrolled .hamburger span {
  background: var(--color-deep-plum);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    var(--color-burgundy) 0%,
    var(--color-mauve) 30%,
    var(--color-rose-gold) 60%,
    var(--color-burgundy) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242, 215, 217, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(61, 16, 38, 0.2) 0%, transparent 50%);
  z-index: 1;
}

/* Floating decorative shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-blush);
  top: -10%;
  right: -5%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--color-gold);
  bottom: 10%;
  left: -3%;
  animation: float 6s ease-in-out infinite 2s;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: var(--color-white);
  top: 30%;
  left: 10%;
  animation: float 7s ease-in-out infinite 1s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: var(--color-rose-gold-light);
  bottom: 25%;
  right: 15%;
  animation: float 5s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--color-white);
  line-height: var(--line-height-heading);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(61, 16, 38, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.rating-text {
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
}

.rating-count {
  font-weight: 300;
  opacity: 0.8;
  font-size: 0.9rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  animation: bounceDown 1.5s ease-in-out infinite;
  transition: color var(--transition-base);
}

.scroll-indicator:hover {
  color: var(--color-white);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  background: var(--color-cream);
  position: relative;
}

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

.about-text p {
  margin-bottom: 1rem;
  color: rgba(61, 16, 38, 0.8);
}

.about-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--color-deep-plum) !important;
  line-height: 1.8;
}

.about-text em {
  color: var(--color-rose-gold);
  font-style: italic;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-blush);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rose-gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-mauve);
  font-weight: 500;
}

/* About visual / decorative side */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-deco {
  position: relative;
  width: 320px;
  height: 380px;
}

.deco-shape {
  position: absolute;
  border-radius: var(--radius);
}

.deco-shape-1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-blush), var(--color-rose-gold-light));
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.deco-shape-2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  top: 0;
  left: 0;
  transform: rotate(3deg);
  opacity: 0.6;
}

.about-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  padding: 2.5rem 2rem;
  text-align: center;
  z-index: 2;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.about-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-burgundy);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.about-card cite {
  font-size: 0.85rem;
  color: var(--color-mauve);
  font-style: normal;
  font-weight: 500;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  background:
    linear-gradient(135deg, rgba(242, 215, 217, 0.3) 0%, transparent 50%),
    var(--color-white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
  background: var(--color-glass-bg);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  color: var(--color-white);
  font-size: 1.5rem;
  transition: transform var(--transition-base);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--color-burgundy);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(61, 16, 38, 0.7);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery {
  background: var(--color-cream);
  overflow: hidden;
}

/* Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--color-blush);
  background: transparent;
  color: var(--color-mauve);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(183, 110, 121, 0.05);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.gallery-item.showing {
  animation: galleryFadeIn 0.5s ease forwards;
}

.gallery-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(61, 16, 38, 0.85) 0%,
    rgba(61, 16, 38, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-img:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}

.gallery-img:hover .gallery-overlay h4 {
  transform: translateY(0);
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  transform: translateY(10px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-img:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 16, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(61, 16, 38, 0.9), transparent);
  color: var(--color-white);
}

.lightbox-info h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.lightbox-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 2001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  background: linear-gradient(135deg,
    var(--color-deep-plum) 0%,
    var(--color-burgundy) 50%,
    var(--color-mauve) 100%
  );
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(183, 110, 121, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(212, 168, 83, 0.1) 0%, transparent 40%);
  z-index: 0;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.carousel {
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem 2rem;
  background: var(--color-glass-dark-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-dark-border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
  color: var(--color-rose-gold);
  opacity: 0.25;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--color-blush);
  opacity: 0.8;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.dot.active {
  background: var(--color-rose-gold);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(183, 110, 121, 0.5);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  background: var(--color-cream);
}

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

.contact-map iframe {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-rose-gold), var(--color-mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.2);
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-burgundy);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: rgba(61, 16, 38, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--color-rose-gold);
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-link:hover {
  color: var(--color-mauve);
}

.hours-table {
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table td {
  padding: 0.3rem 0;
  color: rgba(61, 16, 38, 0.7);
}

.hours-table td:first-child {
  padding-right: 1.5rem;
  font-weight: 500;
  color: var(--color-deep-plum);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--color-deep-plum);
  padding: 4rem 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--color-rose-gold);
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

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

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact a {
  color: var(--color-rose-gold);
  transition: color var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-rose-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ================================================
   ANIMATIONS / KEYFRAMES
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  50% { transform: translateY(-25px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3), 0 0 0 0 rgba(183, 110, 121, 0.3); }
  50% { box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3), 0 0 0 12px rgba(183, 110, 121, 0); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Scroll Animation States ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.25rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(61, 16, 38, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition-base);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--color-white);
  }

  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
  }

  .about-card-deco {
    width: 260px;
    height: 310px;
  }

  .about-stats {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 1rem;
  }

  .gallery-overlay h4 {
    font-size: 0.95rem;
    transform: translateY(0);
  }

  .gallery-overlay p {
    display: none;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Hide floating shapes on mobile for performance */
  .hero-bg-shapes .shape {
    display: none;
  }

  .shape-1, .shape-2 {
    display: block !important;
    width: 200px;
    height: 200px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 2rem 1.25rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    padding: 0;
  }

  .carousel-controls {
    gap: 1rem;
  }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
