/* ============================================
   CONSCIOUSLYASH.CO — CINEMATIC DARK DESIGN
   Black + Warm Amber | Breath Mist Atmosphere
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  --black:       #080808;
  --black-soft:  #0d0d0d;
  --black-card:  #111111;
  --amber:       #C8853A;
  --amber-light: #E8B86D;
  --amber-glow:  rgba(200, 133, 58, 0.15);
  --text:        #F5F0E8;
  --text-muted:  #9A8878;
  --text-dim:    #5A4E44;
  --overlay:     rgba(8, 8, 8, 0.72);
  --overlay-heavy: rgba(8, 8, 8, 0.88);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Progress Bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 2px; left: 0; right: 0;
  z-index: 900;
  padding: 1.2rem 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--amber) !important; color: var(--black) !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--text); transition: all 0.3s; }
.mobile-nav { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    z-index: 800;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-size: 1.5rem; color: var(--text); text-decoration: none; }
  .mobile-nav a:hover { color: var(--amber); }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 4vw 8vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.5) 40%,
    rgba(8,8,8,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--text-dim), transparent);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-amber {
  background: var(--amber);
  color: var(--black);
  font-weight: 600;
}
.btn-amber:hover {
  background: var(--amber-light);
  box-shadow: 0 0 24px rgba(200, 133, 58, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 1px solid var(--amber);
}
.btn-outline:hover {
  background: var(--amber);
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--text-dim);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ── Sections ── */
section { padding: 7rem 4vw; }
.section-dark { background: var(--black); }
.section-soft { background: var(--black-soft); }
.section-card { background: var(--black-card); }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  font-weight: 300;
  line-height: 1.85;
}

/* ── Grid containers ── */
.container { max-width: 1200px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── Cards ── */
.card {
  background: var(--black-card);
  border: 1px solid rgba(200, 133, 58, 0.12);
  padding: 2.5rem;
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(200, 133, 58, 0.35);
  transform: translateY(-3px);
}
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  color: var(--amber);
}
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* ── Image section backgrounds ── */
.section-bg {
  position: relative;
  overflow: hidden;
}
.section-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.section-bg-content { position: relative; z-index: 1; }

/* ── Stats ── */
.stats-row { display: flex; gap: 4rem; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 0.4rem; text-transform: uppercase; }

/* ── Quote/Pullout ── */
.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border-left: 2px solid var(--amber);
  padding-left: 2rem;
  max-width: 680px;
}

/* ── Testimonials ── */
.testimonial {
  background: var(--black-card);
  border: 1px solid rgba(200,133,58,0.1);
  padding: 2rem;
  border-radius: 4px;
}
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.testimonial-author { font-size: 0.82rem; color: var(--amber); letter-spacing: 0.06em; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid rgba(200,133,58,0.12); margin: 0; }

/* ── Footer ── */
footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(200,133,58,0.1);
  padding: 4rem 4vw 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }
.footer-links h4 { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in.visible { opacity: 1; transform: none; transition: none; }
}

/* ── Photo ── */
.ash-photo {
  width: 100%;
  max-width: 480px;
  border-radius: 4px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

/* ── Offering cards ── */
.offering-card {
  background: var(--black-card);
  border: 1px solid rgba(200,133,58,0.12);
  padding: 3rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.offering-card:hover { border-color: rgba(200,133,58,0.4); }
.offering-tag {
  display: inline-block;
  background: var(--amber-glow);
  color: var(--amber);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.offering-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1rem;
}
.offering-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

/* ── Utilities ── */
.text-amber { color: var(--amber); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
