/* ============================================================
   elevate-shared.css — Elevate Ritual Design System
   Shared across index.html, about.html, services.html
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --beige:      #F4F3EF;
  --sage:       #9DA395;
  --sage-mid:   #7A8272;
  --sage-dark:  #505850;
  --charcoal:   #3A3530;
  --card-bg:    #EFEDE8;
  --white:      #FFFFFF;

  --px-desktop: clamp(48px, 7vw, 120px);
  --px-mobile:  24px;

  --space-xs:   12px;
  --space-sm:   24px;
  --space-md:   40px;
  --space-lg:   64px;
  --space-xl:   96px;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans:  'Jost', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* ── STICKY HEADER ── */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 1px solid rgba(157,163,149,0.25);
}

.strip {
  background: var(--sage);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--px-desktop);
  gap: 24px;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
nav a:hover,
nav a.active { opacity: 1; }

.btn-book-nav {
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage-mid);
  padding: 11px 22px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-book-nav:hover { background: var(--sage-dark); }

/* ── HAMBURGER (mobile) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--beige);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
  opacity: 0.6;
}

.mobile-menu-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: -12px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.85;
}
.mobile-nav a:hover { opacity: 1; }

.mobile-book-btn {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage-mid);
  padding: 14px 32px;
  text-decoration: none;
  margin-top: 8px;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--sage-dark);
  color: rgba(255,255,255,0.82);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px var(--px-desktop);
}

/* ── GENERIC SECTION ── */
.section {
  padding: var(--space-xl) var(--px-desktop);
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-mid);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(0.9rem, 1.7vw, 1.2rem);
  line-height: 1.85;
  color: var(--charcoal);
  opacity: 0.78;
  max-width: 600px;
  margin-bottom: 0;
}

.body-text {
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: var(--charcoal);
  opacity: 0.82;
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn-outline {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(35,35,35,0.95);
  border: 1.5px solid rgba(35,35,35,0.95);
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-sage {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--sage-mid);
  padding: 13px 26px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-sage:hover { background: var(--sage-dark); }

.btn-white-outline {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-white-filled {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  padding: 13px 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-white-filled:hover { opacity: 0.88; }

.cta-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ── CTA SECTION (index) ── */
.cta-section {
  background: var(--sage);
  padding: var(--space-xl) var(--px-desktop);
  text-align: center;
}
.cta-section .section-label { color: rgba(255,255,255,0.6); }
.cta-section .section-title { color: white; margin-bottom: 16px; }
.cta-section p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* ── FOOTER ── */
footer {
  background: var(--beige);
  color: #3A3530s;
  text-align: center;
  padding: 36px var(--px-desktop);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(157,163,149,0.3);
}


footer p {
  margin-bottom: 6px;
}

footer p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
footer a {
  color: #3A3530;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--white); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  opacity: 0.88;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  z-index: 150;
}
.back-to-top:hover {
  opacity: 1;
  background: var(--sage-dark);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 18px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.reveal-fade.visible { opacity: 1; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── MOBILE GLOBAL ── */
@media (max-width: 768px) {
.bio-body-title {
    display: none;
}
.hero-sub {
  display: block;
  font-size: 0.75rem !important;
  line-height: 1.4;
  max-width: 280px;
}
.section-sub {
  font-size: 1rem !important;
}
.section-title {
  font-size: 2.1rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}
.body-text {
  font-size: 0.85rem !important;
}
.cta-section p {
  font-size: 0.85rem !important;
}
  .intro-strip {
    display: none;
}
  .strip {
    display: none;
}
  header {
    padding: 14px var(--px-mobile);
  }

  .logo img {
  height: 56px;
}
  .header-right { display: none; }
  .hamburger { display: flex; }

  .intro-strip { padding: 14px var(--px-mobile); }

  .section {
    padding: var(--space-lg) var(--px-mobile);
  }

  .cta-section { padding: var(--space-lg) var(--px-mobile); }
  .cta-btn-row { display: flex !important; opacity: 1 !important; transform: none !important; }
  .cta-section .reveal { opacity: 1 !important; transform: none !important; }
.areas-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.area-tag {
  width: 220px;
  text-align: center;
}
.area-tag {
  width: 190px;
  padding: 14px 20px;
}
  footer { padding: 28px var(--px-mobile); }
  .area-tag {
    width: 190px;
    padding: 14px 20px;
}

footer {
    padding: 28px var(--px-mobile);
}

/* BLOG MOBILE FIXES */

.blog-hero__content {
    text-align: center;
    align-items: center;
    margin: 0 auto;
}

.blog-hero__intro {
    margin-left: auto;
    margin-right: auto;
}

.blog-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.blog-hero__bg {
    background-position: centre centre;
}

.area-tag {
    width: 260px;
    padding: 14px 20px;
    text-align: center;
    margin: 0 auto;
}
}
}
