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

:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --primary-color: #8B4A6B;
  --primary-color-strong: #7a3f5e;
  --secondary-color: #E8B4CB;
  --accent-color: #F5E6D3;
  --text-dark: #2C2C2C;
  --text-light: #666;
  --white: #FFFFFF;
  --warm-gray: #F8F6F4;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   Header / Nav
   ============================================================ */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(135deg, var(--primary-color), #A05D73);
  color: var(--white);
  padding: 0.85rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--accent-color);
  opacity: 1;
}

.nav-links a:focus-visible,
.cta-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 230, 211, 0.9);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav { flex-wrap: wrap; }
  .logo { flex: 1; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 0.5rem;
    padding: 0.4rem 0 0.6rem;
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1rem;
    opacity: 1;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-color: var(--primary-color);
}

/* Gradient overlay sits above slides, below text */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(139, 74, 107, 0.80), rgba(122, 63, 94, 0.88));
  z-index: 10;
  pointer-events: none;
}


.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 2.2rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  line-height: 1.75;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  background: #f2ddc3;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--primary-color);
  letter-spacing: 0.3px;
}

.section h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
  margin: 0.55rem auto 0;
}

.section-alt {
  background: var(--warm-gray);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 2.2rem;
}

/* When a subtitle follows h2::after, push it below the decorative line */
.section h2 + .section-subtitle {
  margin-top: 1.4rem;
  margin-bottom: 2rem;
}

/* ============================================================
   Scroll animations
   ============================================================ */

.js [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger — service cards */
.services-grid [data-animate]:nth-child(2) { transition-delay: 0.12s; }
.services-grid [data-animate]:nth-child(3) { transition-delay: 0.24s; }

/* Stagger — process steps */
.process-steps [data-animate]:nth-child(2) { transition-delay: 0.10s; }
.process-steps [data-animate]:nth-child(3) { transition-delay: 0.20s; }
.process-steps [data-animate]:nth-child(4) { transition-delay: 0.30s; }

/* Stagger — testimonials */
.testimonials-grid [data-animate]:nth-child(2) { transition-delay: 0.12s; }
.testimonials-grid [data-animate]:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   About
   ============================================================ */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
  margin-top: 0;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-text p + p {
  margin-top: 1rem;
}

.about-highlights {
  background: linear-gradient(145deg, var(--primary-color), #A05D73);
  padding: 1.8rem;
  border-radius: 16px;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(139, 74, 107, 0.25);
}

.about-highlights h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.highlight-list { list-style: none; }

.highlight-list li {
  margin-bottom: 0.55rem;
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.95rem;
}

.highlight-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.5rem;
  top: 0.48em;
}

@media (max-width: 640px) {
  .about-content { grid-template-columns: 1fr; }
}

/* ============================================================
   Services
   ============================================================ */

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

.service-card {
  background: var(--white);
  padding: 2rem 1.6rem;
  border-radius: 16px;
  text-align: center;
  border: 1.5px solid #f0e8ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(139, 74, 107, 0.15);
  border-color: var(--secondary-color);
}

.icon-circle {
  width: 68px;
  height: 68px;
  background: rgba(139, 74, 107, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.25s ease;
}

.service-card:hover .icon-circle {
  background: rgba(139, 74, 107, 0.14);
}

.service-card i {
  font-size: 1.85rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--primary-color);
}

.service-card p {
  flex: 1;
}

.service-price {
  display: inline-block;
  background: rgba(139, 74, 107, 0.07);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-top: 1rem;
  border: 1px solid rgba(139, 74, 107, 0.15);
  letter-spacing: 0.1px;
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1.6rem;
}

.pricing-note a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* ============================================================
   Gallery / Carousel
   ============================================================ */

.carousel {
  max-width: 900px;
  margin: 0 auto;
}

/* Main image stage */
.carousel-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--secondary-color);
  box-shadow: 0 20px 52px rgba(139, 74, 107, 0.2);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.32);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(139, 74, 107, 0.85);
  transform: translateY(-50%) scale(1.1);
}

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

/* Slide counter */
.carousel-counter {
  position: absolute;
  bottom: 0.9rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  letter-spacing: 0.5px;
}

/* Thumbnail strip */
.carousel-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.carousel-thumbs::-webkit-scrollbar { display: none; }

.carousel-thumb {
  flex: 0 0 calc((100% - 2.5rem) / 6);
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  border: 2.5px solid transparent;
  cursor: pointer;
  background: none;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel-thumb:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.carousel-thumb.is-active {
  border-color: var(--primary-color);
  opacity: 1;
}

@media (max-width: 640px) {
  .carousel-thumb { flex: 0 0 calc((100% - 1.5rem) / 4); }
}

/* ============================================================
   Process
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.process-step {
  text-align: center;
  position: relative;
}

@media (min-width: 1000px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }

  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(232, 180, 203, 0.2));
    z-index: 0;
  }
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(139, 74, 107, 0.3);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(139, 74, 107, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.5;
  position: absolute;
  top: 0.6rem;
  left: 1.2rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #f0a500;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 0.97rem;
  padding-top: 1.6rem;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   Contact
   ============================================================ */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-bottom: 0;
}

.contact-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(139, 74, 107, 0.08);
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
  display: block;
}

.contact-card h3 {
  font-family: var(--font-display);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--primary-color-strong);
  text-decoration: underline;
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.footer-section:first-child h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 0.7rem;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-section a:hover { color: var(--secondary-color); }

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.copyright {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ============================================================
   Forms
   ============================================================ */

.form {
  margin-top: 2.4rem;
  background: var(--white);
  border: 1.5px solid rgba(139, 74, 107, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
}

.form__title {
  font-family: var(--font-display);
  margin-bottom: 1.4rem;
  color: var(--primary-color);
  font-size: 1.4rem;
}

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

.form__group { margin-bottom: 1rem; }

.form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.form__input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #e2d5dc;
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(139, 74, 107, 0.1);
}

.form__status {
  margin: 0.6rem 0;
  min-height: 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form__status--ok  { color: #0a7b47; }
.form__status--err { color: #a52439; }

.form__actions { margin-top: 0.8rem; }

@media (max-width: 640px) {
  .form { padding: 1.2rem; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 640px) {
  .hero { min-height: 60vh; }
  .section { padding: 3rem 0; }
}
