/* ===== Variables & Reset ===== */
:root {
  --primary: #58483b;
  --primary-light: #816a55;
  --primary-pale: #efe6dd;
  --primary-bg: #f7efe8;
  --accent: #c0894d;
  --accent-light: #e6c59f;
  --accent-bg: #fcf3e9;
  --cream: #f8f1ea;
  --text: #241c16;
  --text-light: #5f4d40;
  --text-lighter: #8e7662;
  --bg: #fdf9f5;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #e8ddd2;
  --shadow-sm: 0 2px 8px rgba(100, 88, 79, 0.06);
  --shadow-md: 0 4px 24px rgba(100, 88, 79, 0.1);
  --shadow-lg: 0 8px 40px rgba(100, 88, 79, 0.14);
  --shadow-xl: 0 16px 56px rgba(100, 88, 79, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }
.highlight { color: var(--primary); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light); border-color: var(--primary-light);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--primary);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 450; color: var(--text-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-pale); }
.nav-cta {
  background: var(--primary) !important; color: var(--white) !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== Hero Carousel ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: all;
}
.slide-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
}
.slide-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #4a4038 0%, var(--primary) 45%, var(--primary-light) 100%);
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 700px;
  z-index: 2;
}
.slide-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-light);
  text-shadow: 0 1px 10px rgba(36, 28, 22, 0.28);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.slide-content h1 {
  color: #fff9f2;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.highlight-light { color: var(--accent-light); }
.slide-description {
  font-size: 1.1rem;
  color: rgba(249, 238, 224, 0.9);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}
.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Carousel Controls */
.carousel-btn {
  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.2);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}
.dot:hover {
  border-color: #fff;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-tag {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; margin-top: 16px; line-height: 1.7; }

/* ===== About ===== */
.about { background: var(--white); padding-top: 60px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-lead {
  font-size: 1.1rem; font-weight: 450; color: var(--text);
  margin-bottom: 18px; line-height: 1.8;
}
.about-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-card {
  padding: 28px 22px; background: var(--primary-bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.value-icon { color: var(--primary); margin-bottom: 14px; }
.value-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== Services ===== */
.services { background: var(--cream); padding-top: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); padding: 34px 26px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 12px; color: var(--text); font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li {
  padding: 4px 14px; background: var(--primary-pale); color: var(--primary);
  border-radius: 50px; font-size: 0.75rem; font-weight: 500;
}

/* ===== How It Works ===== */
.how-it-works { background: var(--white); padding-top: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center; padding: 36px 24px; border-radius: var(--radius-lg);
  background: var(--primary-bg); border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--primary); opacity: 0.2; margin-bottom: 16px;
}
.step-card h3 { margin-bottom: 10px; color: var(--text); }
.step-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== Why Me ===== */
.why-me { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 36px 24px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.why-icon { color: var(--accent); margin-bottom: 18px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== Testimonials ===== */
.testimonials { background: var(--primary); color: var(--white); }
.testimonials .section-tag { color: var(--accent-light); }
.testimonials .highlight { color: var(--accent-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  padding: 34px 28px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition); position: relative;
}
.testimonial-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.quote-icon { margin-bottom: 14px; color: var(--accent-light); }
.testimonial-card > p {
  font-size: 0.95rem; color: rgba(250, 239, 226, 0.88);
  line-height: 1.8; font-style: italic; margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.9rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testimonial-author span { font-size: 0.78rem; color: rgba(230, 197, 159, 0.78); }

/* ===== Booking ===== */
.booking { background: var(--white); }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.booking-info h3 { font-size: 1.2rem; margin-bottom: 24px; color: var(--text); }
.booking-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.booking-step { display: flex; align-items: center; gap: 16px; }
.step-num {
  width: 34px; height: 34px; min-width: 34px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.82rem;
}
.booking-step p { font-size: 0.9rem; color: var(--text-light); }
.booking-note {
  padding: 20px 24px; background: var(--accent-bg); border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}
.booking-note p { font-size: 0.88rem; color: var(--text); margin-bottom: 6px; }
.booking-note p:last-child { margin-bottom: 0; }
.booking-form {
  background: var(--primary-bg); padding: 36px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.label-hint { font-weight: 400; color: var(--text-lighter); font-size: 0.8rem; }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(100,88,79,0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.day-selector { display: flex; flex-wrap: wrap; gap: 10px; }
.day-chip { cursor: pointer; }
.day-chip input { display: none; }
.day-chip span {
  display: block; padding: 10px 20px; border-radius: 50px;
  border: 1.5px solid var(--border); font-size: 0.86rem; font-weight: 500;
  color: var(--text-light); background: var(--white); transition: var(--transition);
}
.day-chip input:checked + span {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.day-chip:hover span { border-color: var(--primary-light); color: var(--primary); }

.time-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-chip { cursor: pointer; }
.time-chip input { display: none; }
.time-chip span {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 10px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); font-size: 0.86rem; font-weight: 500;
  color: var(--text-light); background: var(--white); transition: var(--transition);
}
.time-chip span small { font-size: 0.73rem; font-weight: 400; color: var(--text-lighter); margin-top: 2px; }
.time-chip input:checked + span {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.time-chip input:checked + span small { color: rgba(255,255,255,0.7); }
.time-chip:hover span { border-color: var(--primary-light); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.faq-item summary {
  padding: 20px 24px; font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 500; color: var(--text);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--primary); transition: var(--transition);
  min-width: 24px; text-align: center;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--primary); }
.faq-item p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

/* ===== Contact ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card {
  padding: 28px 22px; background: var(--primary-bg); border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition); text-align: center;
}
.contact-card:hover { border-color: var(--primary-light); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-icon-wrap {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--text); }
.contact-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; word-break: break-word; }
.contact-card small { display: block; margin-top: 8px; font-size: 0.75rem; color: var(--text-lighter); }

/* ===== Footer ===== */
.footer {
  background: var(--text);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(185,139,95,0.18) 0%, transparent 60%);
  color: rgba(244, 228, 208, 0.78);
  padding: 60px 0 0;
}
.footer-content {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(244, 228, 208, 0.78);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); }
.footer-links h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 18px; }
.footer-links a {
  display: block; font-size: 0.85rem; color: rgba(230, 197, 159, 0.72);
  padding: 5px 0; transition: var(--transition);
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.8rem; }
.footer-bottom p { margin-bottom: 4px; }
.footer-bottom p:last-child { color: rgba(230, 197, 159, 0.58); margin-bottom: 0; }

/* ===== Floating Icons ===== */
.floating-icons {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 14px;
}
.floating-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.floating-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: var(--shadow-lg); }
.floating-btn.whatsapp { background: #25D366; animation: pulseGreen 2s ease-in-out infinite; }
.floating-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ===== Workshops & Gallery ===== */
.workshops { background: var(--cream); }
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 1;
}
.gallery-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-pale);
  transition: transform 0.5s ease;
}
video.gallery-media.video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover .gallery-media { transform: scale(1.05); }
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--primary-bg) 100%);
  color: var(--text-lighter);
  font-size: 0.78rem;
}
.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}
.gallery-date {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}
.gallery-info h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}
.gallery-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.play-button svg { margin-left: 4px; }
.gallery-item:hover .play-button { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== Wave Dividers ===== */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.wave-hero-about { background: var(--primary); }
.wave-about-services { background: var(--white); }
.wave-services-how { background: var(--cream); }

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--primary);
  padding: 18px 0;
  position: relative;
  z-index: 2;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ===== Step Connectors ===== */
.step-connector {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0.3;
  z-index: 1;
}
.step-card { position: relative; }

/* ===== Star Rating ===== */
.star-rating {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--accent);
}

/* (Hero profile card removed - replaced by carousel) */

/* ===== Decorative Section Dots ===== */
.about::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px dashed rgba(100,88,79,0.08);
}
.about { position: relative; overflow: hidden; }

.services::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(201,169,110,0.06);
}
.services { position: relative; overflow: hidden; }

.faq::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed rgba(201,169,110,0.12);
}
.faq { position: relative; overflow: hidden; }

/* ===== Animations ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-carousel { max-height: 750px; }
  .slide-content { padding: 0 6%; max-width: 600px; }
  .workshop-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .gallery-item.gallery-large { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-items { gap: 24px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 80px 24px 24px; gap: 4px;
    box-shadow: var(--shadow-xl); transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero-carousel { min-height: 500px; max-height: 700px; }
  .slide-content { padding: 0 24px; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-description { font-size: 0.95rem; }
  .carousel-btn { display: none; }
  .carousel-dots { bottom: 20px; }
  .workshop-gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.gallery-large { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .time-selector { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .floating-icons { bottom: 20px; right: 20px; gap: 12px; }
  .floating-btn { width: 50px; height: 50px; }
  .back-to-top { bottom: 20px; left: 20px; width: 40px; height: 40px; }
  .booking-form { padding: 24px; }
  .section { padding: 70px 0; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: 0.82rem; gap: 6px; }
  .trust-item svg { width: 16px; height: 16px; }
  .wave-divider svg { height: 40px; }
  .about::before, .services::before, .faq::before { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-values { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .day-selector { gap: 8px; }
  .day-chip span { padding: 8px 16px; font-size: 0.8rem; }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
