@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --bg: #faf8f5;
  --bg-muted: #f3efe9;
  --card-bg: #ffffff;
  --border: #e8e2d9;
  --foreground: #2d2d2d;
  --foreground-80: rgba(45,45,45,0.8);
  --muted-fg: #7a746b;
  --primary: #b08d57;
  --primary-10: rgba(176,141,87,0.1);
  --primary-20: rgba(176,141,87,0.2);
  --moss: hsl(150, 10%, 28%);
  --moss-dark: hsl(150, 10%, 22%);
  --moss-mid: hsl(150, 10%, 25%);
  --whatsapp: #25D366;
  --whatsapp-hover: #128c7e;
  --amber: #f59e0b;
  --destructive: #ef4444;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--foreground);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: 'Cormorant Garamond', serif;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-md { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1.125rem; }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--moss); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-hover); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); backdrop-filter: blur(4px); }
.btn-outline-dark { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.btn-ghost { background: transparent; color: var(--primary); padding: 0; }
.btn-ghost:hover { opacity: 0.7; transform: none; }

.btn-icon { width: 2.25rem; height: 2.25rem; padding: 0; justify-content: center; border-radius: 0.375rem; }

/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,226,217,0.4);
}
.nav-inner {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--moss);
  transition: color 0.2s;
}
.nav-logo:hover .nav-logo-text { color: var(--primary); }
.nav-logo-sub { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-fg); }

.nav-links { display: none; align-items: center; gap: 1.25rem; flex-wrap: nowrap; }
@media (min-width: 1280px) { .nav-links { display: flex; } }
.nav { overflow: visible; }
.nav-inner { overflow: visible; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-80);
  transition: color 0.2s;
  padding-bottom: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link.active { border-bottom: 2px solid var(--primary); }

/* Salon dropdown – overlay only, never in layout */
.nav-dropdown-wrap { position: relative; display: inline-block; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 0.2rem; }
.nav-dropdown-arrow { font-size: 0.6rem; opacity: 0.8; transition: transform 0.2s; }
.nav-dropdown-wrap:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 11rem;
  padding: 0.5rem 0;
  padding-top: 0.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  display: block;
  pointer-events: auto;
}
.nav-dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-link:hover { background: var(--primary-10); color: var(--primary); }
.nav-dropdown-link.active { background: var(--primary-10); color: var(--primary); }

.nav-cta-group { display: flex; align-items: center; gap: 0.5rem; }
.nav-call-wrap { display: flex; flex-direction: column; align-items: center; }
.nav-call-sub { font-size: 0.55rem; color: var(--primary); font-weight: 600; margin-top: 2px; }

.nav-mobile-icons { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1280px) { .nav-mobile-icons { display: none; } }

.nav-mobile-icon { color: var(--primary); }
.nav-mobile-icon.wa { color: var(--whatsapp); }

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}
.mobile-menu-btn:hover { color: var(--primary); }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }

.mobile-menu-link {
  display: block;
  padding: 1rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(232,226,217,0.5);
  color: var(--foreground);
}
.mobile-menu-link:hover, .mobile-menu-link.active { color: var(--primary); background: rgba(176,141,87,0.05); }
.mobile-menu-sublink { padding-left: 1.5rem; font-size: 0.9375rem; border-bottom-color: rgba(232,226,217,0.35); }

.mobile-call-cta {
  display: block;
  padding: 1rem 0.75rem;
  background: var(--primary-10);
  border-radius: 0.375rem;
  margin-top: 0.5rem;
}
.mobile-call-cta-inner { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; }
.mobile-call-cta-sub { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; margin-left: 1.75rem; }

/* SOFT OFFER STRIP */
.offer-strip {
  background: var(--primary-10);
  border-top: 1px solid var(--primary-20);
  border-bottom: 1px solid var(--primary-20);
}
.offer-strip-inner {
  padding: 0.625rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
@media (min-width: 640px) { .offer-strip-inner { gap: 1.5rem; } }
.offer-strip-text { font-size: 0.875rem; font-weight: 500; color: var(--moss); }
.offer-strip-text em { font-family: 'Cormorant Garamond', serif; }
.offer-strip-links { display: flex; gap: 0.75rem; }
.offer-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid;
  transition: opacity 0.2s;
}
.offer-strip-link:hover { opacity: 0.8; }
.offer-strip-link.call { color: var(--primary); border-color: var(--primary); }
.offer-strip-link.wa { color: var(--whatsapp); border-color: var(--whatsapp); border-width: 1px; }

/* HERO SECTIONS */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-home { height: 85vh; }
.hero-hub { height: 50vh; min-height: 350px; }
.hero-service { height: 55vh; min-height: 400px; align-items: flex-end; }
.hero-short { height: 45vh; min-height: 300px; }
.hero-shorter { height: 40vh; min-height: 280px; }

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}
.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
.hero-content-left {
  position: relative;
  z-index: 10;
  padding: 0 1rem 3rem;
  max-width: 48rem;
}
.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
@media (min-width: 768px) { .hero-content h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-content h1, .hero-content-left h1 { font-size: 3.5rem; } }
.hero-content-left h1 { font-size: 2.25rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-content-left h1 { font-size: 3rem; } }

.hero-subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-desc { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.5rem; max-width: 42rem; }

.hero-ctas { display: flex; flex-direction: column; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-discount-note {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.hero-discount-note-left { justify-content: flex-start; margin-top: 1rem; font-size: 0.75rem; }

/* PULSE ANIMATION */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }

/* SPIN ANIMATION */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-sm { padding: 4rem 0; }
.section-muted { background: rgba(243,239,233,0.3); }

.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--moss);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-heading { font-size: 2.25rem; } }

.section-heading-center { text-align: center; }
.section-heading-bar {
  width: 6rem;
  height: 0.25rem;
  background: var(--primary);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

/* CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(232,226,217,0.5);
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: var(--shadow-md); }

.card-img-wrap { height: 13rem; position: relative; overflow: hidden; }
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.card:hover .card-img { transform: scale(1.05); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); z-index: 1; }
.card-img-label { position: absolute; bottom: 0.75rem; left: 1rem; z-index: 2; color: var(--white); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.9; }
.card-img-price { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; background: rgba(176,141,87,0.9); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 0.375rem; }

.card-body { padding: 1.25rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600; color: var(--moss); margin-bottom: 0.5rem; transition: color 0.2s; }
.card:hover .card-title { color: var(--primary); }
.card-desc { color: var(--muted-fg); font-size: 0.875rem; margin-bottom: 1rem; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(232,226,217,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.card-call-link { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.card-call-link:hover { text-decoration: underline; }
.card-details { display: flex; align-items: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--moss); transition: transform 0.2s; }
.card:hover .card-details { transform: translateX(4px); }

/* GRID LAYOUTS */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* CATEGORY CARD */
.cat-card {
  background: var(--card-bg);
  border: 1px solid rgba(232,226,217,0.5);
  border-radius: 0.375rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  height: 100%;
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-card-icon { width: 2rem; height: 2rem; color: var(--primary); margin: 0 auto 0.75rem; }
.cat-card-title { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem; color: var(--moss); margin-bottom: 0.25rem; }
.cat-card-desc { color: var(--muted-fg); font-size: 0.75rem; }

/* WHY SECTION */
.why-section { background: var(--moss-mid); color: var(--white); position: relative; overflow: hidden; }
.why-bg-circle1 { position: absolute; top: 0; left: 0; width: 16rem; height: 16rem; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(48px); transform: translate(-50%, -50%); }
.why-bg-circle2 { position: absolute; bottom: 0; right: 0; width: 24rem; height: 24rem; background: rgba(176,141,87,0.1); border-radius: 50%; filter: blur(48px); transform: translate(50%, 50%); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 10; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-item-icon { height: 2.5rem; width: 2.5rem; border-radius: 50%; background: var(--primary-20); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-item-title { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--white); margin-bottom: 0.25rem; }
.why-item-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; }
.why-img { border-radius: 0.375rem; box-shadow: var(--shadow-xl); opacity: 0.9; display: none; }
@media (min-width: 1024px) { .why-img { display: block; } }

/* REVIEW CARD */
.review-card {
  background: var(--card-bg);
  padding: 1.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(232,226,217,0.5);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--amber); }
.review-content { color: var(--foreground-80); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; font-size: 0.875rem; }
.review-footer { margin-top: auto; border-top: 1px solid rgba(232,226,217,0.4); padding-top: 0.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.review-author { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 0.875rem; color: var(--moss); }
.review-source { font-size: 0.75rem; color: var(--muted-fg); background: var(--bg-muted); padding: 0.125rem 0.5rem; border-radius: 0.25rem; }
.review-quote { position: absolute; top: 1.25rem; right: 1.25rem; color: var(--primary-10); font-size: 2.5rem; font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1; }

/* MID PAGE CTA */
.mid-cta {
  background: rgba(243,239,233,0.3);
  padding: 2.5rem;
  border-radius: 0.375rem;
  text-align: center;
}
.mid-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--moss); margin-bottom: 0.75rem; }
.mid-cta p.sub { color: var(--muted-fg); margin-bottom: 1rem; font-size: 0.875rem; }
.mid-cta .discount-note { color: var(--primary); font-weight: 700; font-size: 0.875rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.mid-cta .cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* EXIT POINT */
.exit-point { width: 100%; background: var(--moss-mid); color: var(--white); padding: 2.5rem 0; }
@media (min-width: 640px) { .exit-point { padding: 3.5rem 0; } }
.exit-header { text-align: center; margin-bottom: 2rem; }
.exit-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.exit-header .discount { color: var(--primary); font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.exit-header .avail { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.exit-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; text-align: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .exit-grid { grid-template-columns: repeat(3, 1fr); } }
.exit-col { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.exit-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem; }
.exit-col .exit-sub { font-size: 0.75rem; margin-bottom: 0.75rem; }
.exit-col .exit-sub.primary { color: var(--primary); font-weight: 600; }
.exit-col .exit-sub.muted { color: rgba(255,255,255,0.6); }
.exit-col .exit-time { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--moss-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
}
.sticky-inner {
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sticky-text { color: var(--white); font-size: 0.875rem; font-weight: 500; flex-shrink: 0; }
.sticky-text em { font-family: 'Cormorant Garamond', serif; }
.sticky-text-mobile { display: block; font-size: 0.75rem; }
.sticky-text-desktop { display: none; }
@media (min-width: 640px) { .sticky-text-mobile { display: none; } .sticky-text-desktop { display: block; } }
.sticky-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.sticky-btn-call {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--white);
  color: var(--moss-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-md);
  transition: background 0.2s;
}
@media (min-width: 640px) { .sticky-btn-call { font-size: 0.875rem; padding: 0.625rem 1.25rem; } }
.sticky-btn-call:hover { background: rgba(255,255,255,0.9); }
.sticky-btn-wa {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
}
@media (min-width: 640px) { .sticky-btn-wa { font-size: 0.875rem; padding: 0.5rem 1rem; } }
.sticky-btn-wa:hover { background: var(--whatsapp-hover); }

/* FOOTER */
.footer { background: var(--moss-dark); color: var(--white); }
.footer-inner { padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15em; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1rem; }
.footer-brand-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer-link { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.6); padding: 0.3rem 0; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-text { font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-contact-text a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-text a:hover { color: var(--white); }

.footer-ctas { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--moss-dark);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  box-shadow: var(--shadow-md);
  width: fit-content;
  transition: background 0.2s;
}
.footer-call-btn:hover { background: rgba(255,255,255,0.9); }
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  width: fit-content;
  transition: background 0.2s;
}
.footer-wa-btn:hover { background: var(--whatsapp-hover); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* SERVICE DETAIL */
.service-content { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
@media (min-width: 1024px) { .service-content { grid-template-columns: 2fr 1fr; padding: 5rem 0; } }

.service-section { margin-bottom: 3rem; }
.service-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--moss); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.service-section-icon { color: var(--primary); width: 1.5rem; height: 1.5rem; }

.service-variants { background: var(--bg-muted); padding: 1.5rem; border-radius: 0.5rem; margin-bottom: 3rem; }
.service-variants-intro { color: var(--muted-fg); margin-bottom: 1.25rem; font-size: 0.9375rem; }
.variants-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .variants-grid { grid-template-columns: repeat(2, 1fr); } }
.variant-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 0.375rem; padding: 1.25rem; }
.variant-title { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600; color: var(--moss); margin-bottom: 0.5rem; }
.variant-desc { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.5; margin: 0; }

.who-for-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .who-for-grid { grid-template-columns: repeat(2, 1fr); } }
.who-for-item { display: flex; gap: 0.75rem; align-items: flex-start; background: rgba(243,239,233,0.3); padding: 1rem; border-radius: 0.375rem; }
.who-for-check { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; width: 1.25rem; height: 1.25rem; }
.who-for-text { color: var(--foreground-80); }

.flow-timeline { border-left: 2px solid var(--primary-20); margin-left: 0.75rem; padding-left: 2rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.flow-step { position: relative; }
.flow-step-number { position: absolute; left: -2.5rem; top: 0; height: 1.5rem; width: 1.5rem; border-radius: 50%; background: var(--bg); border: 2px solid var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.flow-step-title { font-weight: 700; color: var(--moss); margin-bottom: 0.25rem; }
.flow-step-desc { color: var(--muted-fg); }

.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem 2rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
.benefit-item { display: flex; align-items: center; gap: 0.75rem; }
.benefit-dot { height: 0.5rem; width: 0.5rem; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.benefit-text { color: var(--foreground-80); font-weight: 500; }

/* SIDEBAR */
.sidebar-sticky { position: sticky; top: 6rem; }
.sidebar-card { background: var(--card-bg); padding: 1.75rem; border-radius: 0.375rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(232,226,217,0.5); }
.sidebar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--moss); margin-bottom: 1.25rem; }
.sidebar-reason { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; }
.sidebar-reason-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }
.sidebar-cta-box { background: rgba(243,239,233,0.5); padding: 1.25rem; border-radius: 0.375rem; margin: 1.5rem 0 1.25rem; text-align: center; }
.sidebar-cta-title { font-size: 0.875rem; font-weight: 600; color: var(--moss); margin-bottom: 0.25rem; }
.sidebar-cta-discount { color: var(--primary); font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.25rem; }
.sidebar-cta-buttons { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-cta-buttons .btn { width: 100%; justify-content: center; }
.sidebar-contact { text-align: center; }
.sidebar-contact-hours { font-size: 0.75rem; color: var(--muted-fg); }
.sidebar-contact-phone { font-size: 1rem; font-weight: 700; color: var(--moss); transition: color 0.2s; }
.sidebar-contact-phone:hover { color: var(--primary); }

/* FAQ ACCORDION */
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--moss);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-chevron { width: 1rem; height: 1rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { color: var(--muted-fg); padding-bottom: 1rem; display: none; }
.faq-item.open .faq-answer { display: block; }

/* LOCATION PAGE */
.map-frame { width: 100%; height: 45vh; border: 0; filter: grayscale(20%) contrast(1.1); }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
.directions-step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.directions-number { height: 2rem; width: 2rem; border-radius: 50%; background: var(--primary-20); display: flex; align-items: center; justify-content: center; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* OFFER CARD */
.offer-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 0.375rem; overflow: hidden; box-shadow: var(--shadow-md); }
.offer-card-header { background: var(--primary-10); padding: 1rem; border-bottom: 1px solid var(--primary-10); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.offer-badge { background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.25rem; }
.offer-limited { color: var(--destructive); font-size: 0.75rem; font-weight: 700; }
.offer-body { padding: 2rem; }
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--moss); margin-bottom: 0.5rem; }
.offer-desc { color: var(--muted-fg); margin-bottom: 1.5rem; }
.offer-list-title { font-size: 0.875rem; font-weight: 700; color: var(--moss); margin-bottom: 0.75rem; }
.offer-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.offer-list-item { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--foreground-80); }
.offer-list-check { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }
.offer-list-check.green { color: var(--whatsapp); }
.offer-footer { background: rgba(243,239,233,0.3); padding: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 640px) { .offer-footer { flex-direction: row; } }
.offer-price-label { font-size: 0.875rem; color: var(--muted-fg); }
.offer-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }

/* BOOKING PAGE */
.book-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .book-grid { grid-template-columns: repeat(2, 1fr); } }
.book-fast { background: var(--moss-mid); color: var(--white); padding: 2rem; border-radius: 0.375rem; box-shadow: var(--shadow-lg); }
.book-fast-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.book-fast-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 0.375rem; transition: background 0.2s; }
.book-fast-item:hover { background: rgba(255,255,255,0.1); }
.book-fast-icon { padding: 0.75rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.book-fast-icon.wa { background: var(--whatsapp); color: var(--white); }
.book-fast-icon.call { background: var(--white); color: var(--moss-mid); }
.book-fast-label { font-weight: 700; font-size: 1.125rem; }
.book-fast-sublabel { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

.book-info { background: var(--bg-muted); padding: 1.5rem; border-radius: 0.375rem; border: 1px solid var(--border); }
.book-info-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.book-info-icon { color: var(--primary); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
.book-info-text { font-size: 0.875rem; color: var(--foreground-80); }

.form-card { background: var(--card-bg); padding: 2rem; border-radius: 0.375rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(232,226,217,0.5); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--moss); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--foreground);
  background: var(--bg);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-10); }
.form-textarea { min-height: 100px; resize: vertical; }

/* LEGAL PAGES */
.legal-content { max-width: 48rem; margin: 0 auto; }
.legal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; font-weight: 700; color: var(--moss); margin-bottom: 2rem; }
@media (min-width: 768px) { .legal-title { font-size: 2.25rem; } }
.legal-text { color: var(--foreground-80); line-height: 1.8; margin-bottom: 1rem; }

/* VISIT SECTION */
.visit-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .visit-grid { grid-template-columns: repeat(3, 1fr); } }
.visit-card { padding: 2rem; background: rgba(243,239,233,0.3); border-radius: 0.375rem; text-align: center; }
.visit-icon { width: 2.5rem; height: 2.5rem; color: var(--primary); margin: 0 auto 1rem; }
.visit-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--moss); margin-bottom: 0.5rem; }
.visit-card-text { font-size: 0.875rem; color: var(--muted-fg); }

/* PRICE TAG */
.price-tag { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); padding: 0.625rem 1.25rem; border-radius: 0.375rem; border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-weight: 600; }

/* UTILITY */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.pb-14 { padding-bottom: 3.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }

/* SVG ICONS */
.icon { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-2xl { width: 2.5rem; height: 2.5rem; }
