/* ============================================================
   DESIGN DNA — Desert Bloom Spa
   Vibe      : Luxury desert serenity, botanical elegance
   Palette   : --accent #c9a88a (rose gold) · --bg #f5efe6 (sand)
               --deep #2c3e35 (olive) · --sage #7d9b8a
   Typography: "Cormorant Garamond" (display) · "Outfit" (body)
   Hero      : Full-bleed cinematic photo + dark gradient overlay
               with oversized serif headline
   Header    : Always-solid deep-olive bar, elegant horizontal nav
   Cookie    : Floating bottom-right card
   Layout    : 1200px max, generous whitespace, soft shadows
   ============================================================ */

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

:root {
  --bg: #f5efe6;
  --text: #2c3e35;
  --muted: #6b7c74;
  --accent: #c9a88a;
  --sage: #7d9b8a;
  --deep: #2c3e35;
  --sand: #f5efe6;
  --line: #e2d6c8;
  --radius: 4px;
  --radius-lg: 16px;
  --maxw: 1200px;
  --hh: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-weight: 300; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; }

/* ── LAYOUT ── */
.db-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem; }
.db-section { padding: 6rem 0; }

/* ── HEADER ── */
.db-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--deep);
  height: var(--hh);
}
.db-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 2.5rem;
}
.db-logo { display: flex; align-items: center; gap: 0.8rem; }
.db-logo-flower {
  width: 36px; height: 36px; border: 1.5px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1rem;
}
.db-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #fff; letter-spacing: 0.08em; font-style: italic; }
.db-logo-name span { color: var(--accent); font-style: normal; }

.db-nav { display: flex; align-items: center; gap: 2rem; }
.db-nav a { color: rgba(255,255,255,0.75); font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.db-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transition: transform 0.2s; }
.db-nav a:hover, .db-nav a.db-active { color: #fff; }
.db-nav a:hover::after, .db-nav a.db-active::after { transform: scaleX(1); }
.db-nav-book {
  background: var(--accent); color: var(--deep) !important; padding: 0.5rem 1.4rem;
  border-radius: 2px; font-weight: 500 !important; letter-spacing: 0.06em;
}
.db-nav-book::after { display: none !important; }

.db-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.db-burger span { display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.8); }

.db-mnav {
  display: none; position: fixed; top: var(--hh); left: 0; right: 0; z-index: 199;
  background: var(--deep); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 2.5rem; flex-direction: column; gap: 0.3rem;
}
.db-mnav.open { display: flex; }
.db-mnav a { padding: 0.7rem 0; color: rgba(255,255,255,0.8); font-size: 0.92rem; letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,255,255,0.08); }
.db-mnav a:last-child { border-bottom: none; }

/* ── HERO CINEMATIC ── */
.db-hero {
  position: relative; height: 92vh; min-height: 580px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.db-hero-bg { position: absolute; inset: 0; }
.db-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.db-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,36,32,0.88) 0%, rgba(28,36,32,0.4) 50%, rgba(28,36,32,0.15) 100%);
}
.db-hero-content { position: relative; z-index: 2; padding: 0 2.5rem 6rem; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.db-hero-pre { font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; font-weight: 400; }
.db-hero-content h1 { color: #fff; max-width: 680px; margin-bottom: 1.5rem; font-style: italic; }
.db-hero-content p { color: rgba(255,255,255,0.8); max-width: 480px; margin-bottom: 2.5rem; font-size: 1.05rem; }
.db-hero-btns { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.db-btn-primary {
  display: inline-block; background: var(--accent); color: var(--deep);
  padding: 0.9rem 2.5rem; border-radius: 2px; font-weight: 500; font-size: 0.92rem; letter-spacing: 0.06em;
  transition: opacity 0.2s;
}
.db-btn-primary:hover { opacity: 0.88; }
.db-btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,0.5); color: #fff;
  padding: 0.9rem 2.5rem; border-radius: 2px; font-size: 0.92rem; letter-spacing: 0.06em;
  transition: border-color 0.2s;
}
.db-btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── WELCOME STRIP ── */
.db-welcome { background: var(--deep); padding: 3rem 0; }
.db-welcome-inner { display: flex; gap: 3rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.db-welcome-text { max-width: 560px; }
.db-welcome-text h2 { color: #fff; margin-bottom: 0.8rem; font-style: italic; }
.db-welcome-text p { color: rgba(255,255,255,0.7); }
.db-welcome-badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.db-wb { text-align: center; }
.db-wb-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--accent); font-weight: 600; }
.db-wb-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── TREATMENTS PREVIEW ── */
.db-treatments-prev { background: var(--bg); }
.db-section-eyebrow { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: 0.8rem; }
.db-treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.db-treat-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,62,53,0.07); transition: box-shadow 0.3s, transform 0.3s;
}
.db-treat-card:hover { box-shadow: 0 12px 44px rgba(44,62,53,0.13); transform: translateY(-4px); }
.db-treat-img { height: 240px; overflow: hidden; }
.db-treat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.db-treat-card:hover .db-treat-img img { transform: scale(1.04); }
.db-treat-body { padding: 1.8rem; }
.db-treat-cat { font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.4rem; font-weight: 400; }
.db-treat-body h3 { margin-bottom: 0.6rem; }
.db-treat-body p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; }
.db-treat-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.db-duration { font-size: 0.82rem; color: var(--muted); }
.db-treat-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--accent); }

/* ── PHILOSOPHY SECTION ── */
.db-philosophy { background: var(--deep); }
.db-phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.db-phil-img { border-radius: var(--radius-lg); overflow: hidden; }
.db-phil-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.db-phil-text .db-section-eyebrow { color: var(--accent); }
.db-phil-text h2 { color: #fff; margin: 0.8rem 0 1.5rem; font-style: italic; }
.db-phil-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.db-phil-text .db-btn-primary { margin-top: 1rem; }

/* ── RITUALS PREVIEW ── */
.db-rituals-prev { background: var(--bg); }
.db-rituals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3.5rem; }
.db-ritual-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 340px; }
.db-ritual-card img { width: 100%; height: 100%; object-fit: cover; }
.db-ritual-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,36,32,0.82) 0%, rgba(28,36,32,0.1) 60%);
}
.db-ritual-card:first-child { grid-row: span 2; height: 100%; }
.db-ritual-text { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; z-index: 2; }
.db-ritual-text h3 { color: #fff; margin-bottom: 0.4rem; }
.db-ritual-text p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ── TESTIMONIAL ── */
.db-testimonials { background: var(--deep); }
.db-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.db-test-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; }
.db-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.2em; }
.db-test-card p { color: rgba(255,255,255,0.75); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.2rem; }
.db-test-author { font-size: 0.82rem; color: var(--accent); letter-spacing: 0.08em; font-weight: 400; }

/* ── BOOKING CTA ── */
.db-book-cta { background: var(--accent); padding: 5rem 0; text-align: center; }
.db-book-cta h2 { color: var(--deep); margin-bottom: 0.8rem; }
.db-book-cta p { color: rgba(44,62,53,0.78); max-width: 500px; margin: 0 auto 2.5rem; }
.db-btn-dark { display: inline-block; background: var(--deep); color: #fff; padding: 0.95rem 2.8rem; border-radius: 2px; font-weight: 500; font-size: 0.92rem; letter-spacing: 0.06em; transition: opacity 0.2s; }
.db-btn-dark:hover { opacity: 0.88; }

/* ── FOOTER ── */
.db-footer { background: #1a2820; color: rgba(255,255,255,0.65); padding: 5rem 0 2.5rem; }
.db-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.db-ft-brand p { font-size: 0.9rem; line-height: 1.8; margin: 1.2rem 0; }
.db-ft-brand .db-logo-flower { border-color: var(--accent); color: var(--accent); }
.db-ft-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; letter-spacing: 0.08em; margin-bottom: 1.4rem; font-weight: 600; }
.db-ft-col li { margin-bottom: 0.7rem; }
.db-ft-col li a { font-size: 0.88rem; transition: color 0.2s; }
.db-ft-col li a:hover { color: var(--accent); }
.db-ft-addr { font-size: 0.88rem; line-height: 2; }
.db-ft-addr strong { color: #fff; display: block; margin-bottom: 0.5rem; }
.db-ft-addr a { color: var(--accent); }
.db-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem; }
.db-footer-bottom a:hover { color: var(--accent); }

/* ── COOKIE CARD ── */
.db-cookie {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(44,62,53,0.18);
  padding: 1.8rem; max-width: 340px;
  border-top: 3px solid var(--accent);
  transition: opacity 0.3s, transform 0.3s;
}
.db-cookie.db-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.db-cookie h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--deep); }
.db-cookie p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.4rem; }
.db-cookie a { color: var(--accent); text-decoration: underline; }
.db-cookie-btns { display: flex; gap: 0.8rem; }
.db-ck-yes {
  flex: 1; background: var(--accent); color: var(--deep); border: none; cursor: pointer;
  padding: 0.55rem 0; border-radius: 2px; font-weight: 500; font-size: 0.88rem;
  font-family: 'Outfit', sans-serif; letter-spacing: 0.04em;
}
.db-ck-no {
  flex: 1; background: transparent; color: var(--muted); border: 1px solid var(--line);
  cursor: pointer; padding: 0.55rem 0; border-radius: 2px; font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
}

/* ── PAGE HERO ── */
.db-page-hero { background: var(--deep); padding: 4rem 0 3.5rem; }
.db-page-hero .db-bc { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; letter-spacing: 0.06em; }
.db-page-hero .db-bc a:hover { color: var(--accent); }
.db-page-hero h1 { color: #fff; font-style: italic; }
.db-page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.7rem; font-size: 1.05rem; max-width: 560px; }

/* ── INNER PAGES ── */
.db-about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.db-about-intro img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.db-about-intro p { color: var(--muted); margin-bottom: 1rem; }
.db-about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.db-av-card { padding: 1.4rem; background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.db-av-card h4 { margin-bottom: 0.4rem; color: var(--deep); }
.db-av-card p { font-size: 0.88rem; color: var(--muted); }
.db-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.db-team-card img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 1rem; }
.db-team-card h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.db-team-card .db-role { font-size: 0.82rem; color: var(--sage); letter-spacing: 0.08em; }
.db-treat-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.db-rituals-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.db-ritual-item { border-radius: var(--radius-lg); overflow: hidden; }
.db-ritual-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.4s; }
.db-ritual-item:hover img { transform: scale(1.04); }
.db-ritual-item-body { padding: 1.2rem 0; }
.db-ritual-item-body h4 { margin-bottom: 0.3rem; }
.db-ritual-item-body p { color: var(--muted); font-size: 0.88rem; }

/* ── CONTACT ── */
.db-contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; }
.db-form-group { margin-bottom: 1.5rem; }
.db-form-group label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--muted); }
.db-form-group input, .db-form-group textarea, .db-form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; font-family: 'Outfit', sans-serif; font-size: 0.97rem; color: var(--text);
  transition: border-color 0.2s;
}
.db-form-group input:focus, .db-form-group textarea:focus { outline: none; border-color: var(--accent); }
.db-form-group textarea { resize: vertical; min-height: 150px; }
.db-contact-aside h3 { font-style: italic; margin-bottom: 1.5rem; }
.db-aside-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.db-aside-ico { width: 40px; height: 40px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--deep); font-size: 1rem; flex-shrink: 0; }
.db-aside-body strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.db-aside-body p { color: var(--muted); font-size: 0.88rem; }

/* ── PRIVACY ── */
.db-prose { max-width: 800px; }
.db-prose h2 { font-size: 1.8rem; margin: 2.5rem 0 0.8rem; color: var(--deep); font-style: italic; }
.db-prose h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; font-family: 'Outfit', sans-serif; font-weight: 600; }
.db-prose p, .db-prose li { font-size: 0.97rem; color: var(--muted); line-height: 1.9; }
.db-prose ul { padding-left: 1.5rem; list-style: disc; margin: 0.8rem 0; }
.db-prose li { margin-bottom: 0.4rem; }
.db-prose a { color: var(--accent); text-decoration: underline; }

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .db-treatments-grid, .db-treat-full-grid { grid-template-columns: repeat(2, 1fr); }
  .db-test-grid { grid-template-columns: repeat(2, 1fr); }
  .db-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .db-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .db-about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .db-about-values { grid-template-columns: 1fr; }
  .db-team-grid { grid-template-columns: repeat(2, 1fr); }
  .db-rituals-gallery { grid-template-columns: repeat(2, 1fr); }
  .db-phil-grid { grid-template-columns: 1fr; gap: 3rem; }
  .db-rituals-grid { grid-template-columns: 1fr; }
  .db-ritual-card { height: 280px; }
  .db-ritual-card:first-child { grid-row: auto; height: 280px; }
}

/* ── RESPONSIVE 560px ── */
@media (max-width: 560px) {
  .db-nav { display: none; }
  .db-burger { display: flex; }
  .db-hero { height: 75vh; }
  .db-treatments-grid, .db-treat-full-grid { grid-template-columns: 1fr; }
  .db-test-grid { grid-template-columns: 1fr; }
  .db-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .db-section { padding: 4rem 0; }
  .db-team-grid { grid-template-columns: 1fr 1fr; }
  .db-cookie { right: 1rem; left: 1rem; max-width: none; }
  .db-footer-bottom { flex-direction: column; text-align: center; }
  .db-rituals-gallery { grid-template-columns: 1fr; }
}
