/* REEF SPA - Premium Stylesheet */
:root {
  --background: #FAF6EF;
  --foreground: #1a1a1f;
  --card: #FFFFFF;
  --card-border: #e5dfd1;
  --primary: #C9A84C;
  --primary-foreground: #1a1a1a;
  --primary-soft: rgba(201, 168, 76, 0.1);
  --primary-mid: rgba(201, 168, 76, 0.3);
  --muted: #ece7da;
  --muted-foreground: #5c5c66;
  --border: #e5dfd1;
  --destructive: #ef4444;
  --green: #22c55e;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --radius: 0.25rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
@media (min-width: 768px) { body { padding-bottom: 96px; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ================ NAVBAR ================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 1.25rem 0; transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 40px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 48px; } }

.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-links { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; font-weight: 500; }
.nav-links a { color: rgba(26, 26, 31, 0.8); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; padding-left: 1.5rem; margin-left: 0.5rem; border-left: 1px solid var(--border); }

.nav-mobile-toggle { display: block; padding: 0.5rem; color: var(--foreground); }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }

.nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--background); border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); padding: 1rem; max-height: 80vh; overflow-y: auto;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.5rem; }
.nav-mobile a { display: block; padding: 0.75rem 1rem; border-radius: 6px; color: rgba(26,26,31,0.8); }
.nav-mobile a:hover { background: var(--muted); }
.nav-mobile a.active { background: var(--primary-soft); color: var(--primary); font-weight: 600; }
.nav-mobile-cta { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius); font-weight: 500;
  font-size: 0.875rem; transition: all 0.2s ease; line-height: 1; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; height: 56px; }
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: rgba(201, 168, 76, 0.9); }
.btn-outline {
  background: transparent; color: var(--foreground);
  border: 1px solid rgba(201, 168, 76, 0.5);
}
.btn-outline:hover { background: var(--primary-soft); }
.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.btn-outline-primary:hover { background: var(--primary-soft); }
.btn-link {
  background: none; padding: 0; color: var(--primary); font-weight: 500; gap: 0.25rem;
}
.btn-link:hover { color: rgba(201, 168, 76, 0.8); }
.btn-block { width: 100%; }
.btn svg { width: 16px; height: 16px; }
.btn-lg svg { width: 20px; height: 20px; }

/* ================ HERO ================ */
.hero {
  position: relative; width: 100%; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 80px;
}
.hero-tall { min-height: 90vh; }
@media (min-width: 768px) { .hero-tall { min-height: 100vh; } }
.hero-mid { min-height: 60vh; }
@media (min-width: 768px) { .hero-mid { min-height: 70vh; } }
.hero-page { padding: 5rem 0; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
@media (min-width: 768px) { .hero-page { padding: 7rem 0; } }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay-dark { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-overlay-darker { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.hero-overlay-light {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--background), rgba(250,246,239,0.3), transparent);
}
.hero-overlay-bg { position: absolute; inset: 0; background: rgba(250,246,239,0.75); }
.hero-overlay-bg-light { position: absolute; inset: 0; background: rgba(250,246,239,0.7); backdrop-filter: blur(1px); }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.hero-eyebrow {
  display: inline-block; font-size: 0.75rem; text-transform: uppercase; font-weight: 600;
  letter-spacing: 0.3em; color: var(--primary); margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.25rem, 6vw, 5rem); margin-bottom: 1.5rem; line-height: 1.05;
}
.hero-title-xl { font-size: clamp(3rem, 8vw, 6rem); }
.hero-title .accent { color: var(--primary); font-style: italic; }
.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 300;
  margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-text-muted { color: var(--muted-foreground); }
.text-on-dark { color: #fff; }
.text-on-dark-soft { color: rgba(255,255,255,0.95); }
.text-shadow-lg { text-shadow: 0 4px 20px rgba(0,0,0,0.7); }
.text-shadow-md { text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.text-shadow-sm { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem;
  background: rgba(0,0,0,0.4); border: 1px solid var(--primary-mid); border-radius: 999px;
  backdrop-filter: blur(10px); margin-bottom: 1.5rem;
}
.hero-badge span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
.hero-badge svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }

.hero-icon-circle {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
  border-radius: 999px; color: var(--primary); margin-bottom: 1.5rem;
  border: 1px solid var(--primary-mid);
}
.hero-icon-circle svg { width: 24px; height: 24px; }

.hero-meta { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { width: 16px; height: 16px; color: var(--primary); }

/* ================ SECTIONS ================ */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-sm { padding: 3rem 0; }
.section-bg { background: var(--background); }
.section-card { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cta { background: var(--primary-soft); border-top: 1px solid var(--border); text-align: center; }

.section-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; align-items: flex-start; justify-content: space-between; }
@media (min-width: 768px) { .section-header { flex-direction: row; align-items: flex-end; } }
.section-eyebrow { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); }
.section-text { color: var(--muted-foreground); font-size: 1.125rem; }

.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

/* ================ TRUST PILLARS ================ */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 0.5rem;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.125rem; }
.pillar p { font-size: 0.75rem; color: var(--muted-foreground); }

/* ================ CARDS ================ */
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 0.75rem;
  overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.card:hover { border-color: rgba(201,168,76,0.4); }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body-lg { padding: 2rem; }
.card-image {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.card:hover .card-image img { transform: scale(1.05); }
.card-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(250,246,239,0.9), transparent); }
.card-image-caption {
  position: absolute; bottom: 0; left: 0; padding: 1.5rem; width: 100%;
}
.card-tag {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.5rem;
}
.card-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.875rem; color: rgba(26,26,31,0.8); line-height: 1.5; }

.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.card-meta-text { color: var(--muted-foreground); font-size: 0.875rem; }
.card-meta-tag { font-family: var(--font-serif); font-size: 0.875rem; color: var(--primary); }
.card-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

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

.grid-gallery {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .grid-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.gallery-item:hover img { transform: scale(1.1); }

/* ================ MID CTA SECTION ================ */
.mid-cta {
  position: relative; padding: 6rem 0; overflow: hidden; text-align: center;
}
.mid-cta-bg { position: absolute; inset: 0; }
.mid-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.mid-cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(250,246,239,0.8); }
.mid-cta-content { position: relative; z-index: 10; max-width: 720px; margin: 0 auto; padding: 0 1rem; }
.mid-cta h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.mid-cta p { font-size: 1.125rem; color: rgba(26,26,31,0.8); margin-bottom: 2.5rem; }

/* ================ REVIEWS ================ */
.stars { display: inline-flex; gap: 0.25rem; }
.stars svg { width: 16px; height: 16px; fill: var(--primary); color: var(--primary); }
.stars-lg svg { width: 24px; height: 24px; }
.stars-xl svg { width: 32px; height: 32px; }

.review-card {
  background: var(--background); border: 1px solid var(--card-border); border-radius: 0.75rem;
  padding: 2rem; display: flex; flex-direction: column; transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(201,168,76,0.5); }
.review-quote { width: 32px; height: 32px; color: rgba(201,168,76,0.2); margin-bottom: 1rem; }
.review-text { font-style: italic; color: rgba(26,26,31,0.8); margin-bottom: 1.5rem; flex: 1; }
.review-author { font-family: var(--font-serif); color: var(--foreground); }
.review-date { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ================ MASSAGE ITEM ================ */
.massage-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.2s;
}
.massage-card:hover { border-color: rgba(201,168,76,0.4); }
.massage-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.massage-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.massage-card:hover .massage-card-image img { transform: scale(1.05); }
.massage-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(250,246,239,0.8), transparent); }
.massage-benefit {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  background: rgba(201,168,76,0.9); color: var(--primary-foreground);
  padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.massage-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 768px) { .massage-body { padding: 2rem; } }
.massage-body h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.massage-body > p { color: var(--muted-foreground); margin-bottom: 1.5rem; flex: 1; }
.massage-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.75rem; margin-bottom: 1.5rem; }
.massage-meta-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--background); padding: 0.375rem 0.75rem;
  border-radius: 6px; border: 1px solid var(--border);
}
.massage-meta-item svg { width: 14px; height: 14px; color: var(--primary); }
.massage-meta-item .label { font-weight: 600; }
.massage-meta-item .value { color: var(--muted-foreground); }

/* ================ COUPLE PACKAGE ================ */
.couple-icons { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; text-align: center; }
@media (min-width: 768px) { .couple-icons { grid-template-columns: repeat(3, 1fr); } }
.couple-icon { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.couple-icon-circle {
  width: 64px; height: 64px; border-radius: 999px; background: var(--card);
  border: 1px solid var(--border); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.couple-icon-circle svg { width: 32px; height: 32px; }
.couple-icon h3 { font-size: 1.25rem; }
.couple-icon p { font-size: 0.875rem; color: var(--muted-foreground); }

.package {
  display: grid; grid-template-columns: 1fr; background: var(--card);
  border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden;
}
@media (min-width: 768px) { .package { grid-template-columns: 1fr 1fr; } }
.package-image { aspect-ratio: 4/3; overflow: hidden; }
@media (min-width: 768px) { .package-image { aspect-ratio: auto; min-height: 360px; } }
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .package-body { padding: 2.5rem; } }
.package-duration { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.25em; color: var(--primary); margin-bottom: 0.75rem; }
.package h3 { font-size: 1.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .package h3 { font-size: 1.875rem; } }
.package > p { color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.package ul { display: grid; grid-template-columns: 1fr; gap: 0.5rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .package ul { grid-template-columns: 1fr 1fr; } }
.package li { display: flex; align-items: center; font-size: 0.875rem; }
.package li::before {
  content: ''; width: 6px; height: 6px; background: var(--primary);
  border-radius: 999px; margin-right: 0.75rem; flex-shrink: 0;
}
.package-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .package-buttons { flex-direction: row; } }
.package-reverse > div:first-child { order: 1; }
@media (min-width: 768px) { .package-reverse > div:first-child { order: 2; } }

/* ================ PREMIUM EXPERIENCE ================ */
.experience { display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .experience { flex-direction: row; gap: 4rem; } }
.experience-reverse { flex-direction: column-reverse; }
@media (min-width: 768px) { .experience-reverse { flex-direction: row-reverse; } }
.experience-content { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.experience-icon {
  width: 48px; height: 48px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
}
.experience-icon svg { width: 24px; height: 24px; }
.experience h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.experience p { color: var(--muted-foreground); font-size: 1.125rem; line-height: 1.7; }
.experience-meta {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.experience-meta-divider { width: 1px; height: 32px; background: var(--border); }
.experience-meta-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); margin-bottom: 0.25rem; }
.experience-meta-value { font-weight: 500; }
.experience-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .experience-buttons { flex-direction: row; } }
.experience-image {
  width: 100%; aspect-ratio: 1/1; border-radius: 0.75rem;
  overflow: hidden; background: var(--card); border: 1px solid var(--border);
}
@media (min-width: 768px) { .experience-image { width: 41.66%; aspect-ratio: 4/5; } }
.experience-image img { width: 100%; height: 100%; object-fit: cover; }

.experience-list { display: grid; gap: 4rem; }

/* ================ SERVICES CATEGORIES ================ */
.cat-card { height: 100%; display: flex; flex-direction: column; }
.cat-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.cat-card-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.cat-card-body > p { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.cat-list { margin-bottom: 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgba(26,26,31,0.8); }
.cat-list li { display: flex; align-items: center; }
.cat-list li::before { content: ''; width: 6px; height: 6px; background: var(--primary); border-radius: 999px; margin-right: 0.5rem; }

/* ================ ABOUT ================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-bottom: 6rem; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-grid h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1.5rem; }
.about-grid p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 1.5rem; line-height: 1.7; }
.about-image-wrap { aspect-ratio: 1/1; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; padding: 0.5rem; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 0.5rem; }
.about-pillar {
  background: var(--card); border: 1px solid var(--border); padding: 1.5rem; border-radius: 0.75rem;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.about-pillar-icon {
  width: 56px; height: 56px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.about-pillar-icon svg { width: 24px; height: 24px; }
.about-pillar h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.about-pillar p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ================ OFFERS ================ */
.offer-banner {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: 8px;
  padding: 1rem; margin-bottom: 3rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.offer-banner svg { color: var(--destructive); width: 20px; height: 20px; }
.offer-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  overflow: hidden; position: relative; display: flex; flex-direction: column;
}
.offer-card-icon {
  position: absolute; top: 0; right: 0; padding: 1.5rem; opacity: 0.1;
}
.offer-card-icon svg { width: 32px; height: 32px; }
.offer-card-body { padding: 2rem; display: flex; flex-direction: column; flex: 1; }
.offer-subtitle { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; }
.offer-card-body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.offer-card-body > p { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 2rem; flex: 1; }
.offer-tag {
  background: var(--primary-soft); border: 1px solid var(--primary-mid);
  border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; text-align: center;
}
.offer-tag span { font-family: var(--font-serif); font-size: 1.125rem; color: var(--primary); }

.offer-walkin {
  margin-top: 4rem; background: var(--primary-soft); border: 1px solid var(--primary-mid);
  border-radius: 0.75rem; padding: 2rem; text-align: center;
}
@media (min-width: 768px) { .offer-walkin { padding: 3rem; } }
.offer-walkin h2 { font-size: 1.875rem; margin-bottom: 1rem; }
.offer-walkin p { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto 2rem; }
.offer-walkin-buttons { display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .offer-walkin-buttons { flex-direction: row; } }
.offer-walkin-meta { margin-top: 1rem; font-size: 0.75rem; color: var(--muted-foreground); display: inline-flex; align-items: center; gap: 0.5rem; }

/* ================ BOOK PAGE ================ */
.book-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .book-grid { grid-template-columns: 1fr 1fr; } }
.book-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); position: relative; overflow: hidden;
  transition: box-shadow 0.2s;
}
.book-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.book-card-deco { position: absolute; top: 0; right: 0; width: 96px; height: 96px; background: var(--primary-soft); border-bottom-left-radius: 999px; }
.book-card-deco-green { background: rgba(34,197,94,0.05); }
.book-card-inner { display: flex; align-items: flex-start; gap: 1.5rem; position: relative; z-index: 1; }
.book-card-icon {
  width: 56px; height: 56px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-card-icon-green { background: rgba(34,197,94,0.1); color: var(--green); }
.book-card-icon svg { width: 28px; height: 28px; }
.book-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.book-card > div p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

.book-card-stack { display: flex; flex-direction: column; gap: 2rem; }

.quick-services { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.quick-service {
  display: inline-flex; align-items: center; padding: 0.5rem 1rem;
  background: var(--background); border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.875rem; font-weight: 500; color: var(--foreground); transition: all 0.2s;
}
.quick-service:hover { border-color: var(--primary); color: var(--primary); }

.book-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.book-walkin { display: flex; align-items: flex-start; gap: 1rem; }
.book-walkin-icon {
  width: 40px; height: 40px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.book-walkin-icon svg { width: 20px; height: 20px; }
.book-walkin h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.book-walkin p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }

.book-alert {
  margin-top: 1.5rem; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,0.1); color: var(--destructive); padding: 0.5rem 1rem;
  border-radius: 999px; font-size: 0.875rem; font-weight: 500;
}
.book-alert svg { width: 16px; height: 16px; margin-right: 0.5rem; }

/* ================ CONTACT ================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1.25rem; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 999px; background: var(--primary-soft);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-row h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-row p { color: var(--muted-foreground); }
.contact-row .phone { font-family: var(--font-serif); font-size: 1.25rem; color: var(--foreground); }
.contact-row a.email { color: var(--primary); }
.contact-row a.email:hover { color: rgba(201,168,76,0.8); }
.contact-map {
  position: relative; border: 1px solid var(--border); border-radius: 0.75rem;
  overflow: hidden; background: var(--card); min-height: 450px;
}
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-map .map-cta {
  position: absolute; bottom: 1rem; right: 1rem; background: var(--primary);
  color: var(--primary-foreground); padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.875rem; font-weight: 500; box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.contact-map .map-cta svg { width: 16px; height: 16px; }

/* ================ FAQ / ACCORDION ================ */
.accordion { display: flex; flex-direction: column; }
.accordion-item { border-bottom: 1px solid var(--border); padding: 0 0.5rem; }
.accordion-trigger {
  width: 100%; text-align: left; font-family: var(--font-serif); font-size: 1.25rem;
  padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between;
  color: var(--foreground); transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: var(--muted-foreground); line-height: 1.7;
}
.accordion-item.open .accordion-content { max-height: 500px; padding-bottom: 1.5rem; }

/* ================ FOOTER ================ */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@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-col h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-col a:hover { color: var(--primary); }
.footer-logo img { height: 56px; margin-bottom: 1rem; }
.footer-about { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; max-width: 320px; margin-bottom: 1rem; }
.footer-social { display: flex; align-items: center; gap: 1rem; padding-top: 0.5rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted-foreground);
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-social svg { width: 16px; height: 16px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact-list svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ================ STICKY CTA ================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(250,246,239,0.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.75rem 0.5rem; display: flex; align-items: center; justify-content: space-around;
}
@media (min-width: 768px) { .sticky-cta { padding: 0.75rem 1rem; justify-content: center; gap: 1.5rem; } }
.sticky-cta a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.25rem; flex: 1; transition: color 0.2s; position: relative;
  color: var(--foreground);
}
@media (min-width: 768px) { .sticky-cta a { flex-direction: row; gap: 0.5rem; flex: none; } }
.sticky-cta a:hover { color: var(--primary); }
.sticky-cta .icon-circle {
  background: var(--primary-soft); padding: 0.5rem; border-radius: 999px; color: var(--primary);
  display: inline-flex;
}
.sticky-cta .icon-circle svg { width: 20px; height: 20px; }
.sticky-cta .icon-circle.green { background: rgba(34,197,94,0.1); color: var(--green); }
.sticky-cta a:hover .icon-circle.green { color: var(--green); }
.sticky-cta a.whatsapp:hover { color: var(--green); }
.sticky-cta span.label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
@media (min-width: 768px) { .sticky-cta span.label { font-size: 14px; } }
.sticky-cta-divider { width: 1px; height: 32px; background: var(--border); display: none; }
@media (min-width: 768px) { .sticky-cta-divider { display: block; } }
.fast-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--destructive); color: #fff; font-size: 9px; font-weight: 700;
  padding: 0.125rem 0.375rem; border-radius: 999px;
  animation: pulse 2s infinite;
}
@media (min-width: 768px) { .fast-badge { top: -8px; right: -16px; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ================ EXIT POPUP ================ */
.exit-popup {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 1rem; background: rgba(250,246,239,0.8); backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}
.exit-popup.visible { display: flex; }
.exit-popup-card {
  position: relative; width: 100%; max-width: 28rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); padding: 2rem;
  animation: zoomIn 0.3s ease;
}
.exit-popup-close {
  position: absolute; top: 1rem; right: 1rem; color: var(--muted-foreground); transition: color 0.2s;
}
.exit-popup-close:hover { color: var(--foreground); }
.exit-popup-close svg { width: 20px; height: 20px; }
.exit-popup-content { text-align: center; display: flex; flex-direction: column; gap: 1rem; }
.exit-popup-eyebrow {
  display: inline-block; background: var(--primary-soft); color: var(--primary);
  padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.exit-popup h2 { font-size: 1.875rem; }
.exit-popup p { color: var(--muted-foreground); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

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

/* ================ UTILITY ================ */
.mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.bg-card { background: var(--card); }
