/* ─── COMPONENTS.CSS ─────────────────────────────────────────
   Reusable UI pieces: nav, buttons, cards, dividers, sections
   ──────────────────────────────────────────────────────────── */

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.5rem 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 500;
  backdrop-filter: blur(20px);
  background: rgba(13, 11, 9, 0.7);
  border-bottom: 1px solid rgba(200, 149, 106, 0.1);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.nav-logo em { color: var(--amber); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--amber); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.4s ease;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  transition: transform 0.4s ease;
}

.btn:hover::before  { transform: translateX(0); }
.btn:hover          { color: var(--obsidian); }
.btn span           { position: relative; z-index: 1; }

.btn-primary            { color: var(--ivory); border-color: var(--amber); }
.btn-primary::before    { background: var(--amber); }

.btn-ghost              { color: var(--muted); border-color: rgba(138, 125, 110, 0.3); }
.btn-ghost::before      { background: var(--muted); }
.btn-ghost:hover        { color: var(--obsidian); }

.btn-arrow { margin-left: auto; font-size: 1rem; transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--amber); }

.section-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── DIVIDER ─── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 8vw;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 106, 0.3), transparent);
}

.divider-glyph {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--amber);
  opacity: 0.6;
}

/* ─── PILLAR CARD ─── */
.pillar {
  padding: 2rem;
  border: 1px solid rgba(200, 149, 106, 0.15);
  background: var(--smoke);
  transition: border-color 0.3s ease;
}

.pillar:hover { border-color: rgba(200, 149, 106, 0.4); }

.pillar-icon {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 0.8rem;
  opacity: 0.7;
}

.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.pillar p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ─── TOOL CARD ─── */
.tool-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.tool-card:hover { background: rgba(200, 149, 106, 0.05); }

.tool-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(200, 149, 106, 0.1);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.tool-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}

.tool-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; position: relative; }

.tool-accent { width: 30px; height: 1px; background: var(--amber); margin-bottom: 1.5rem; }

/* ─── PROMISE / QUOTE BLOCK ─── */
.promise-block {
  border: 1px solid rgba(200, 149, 106, 0.2);
  padding: 3rem;
  position: relative;
  background: linear-gradient(135deg, var(--smoke), transparent);
}

.promise-block::before {
  content: '❝';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(200, 149, 106, 0.15);
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  line-height: 1;
}

.promise-block p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(240, 234, 216, 0.8);
}

.promise-sig {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: normal;
}

/* ─── REVIEW CARD ─── */
.review-card {
  background: rgba(200, 149, 106, 0.05);
  border: 1px solid rgba(200, 149, 106, 0.12);
  padding: 2rem 2.5rem;
  width: 320px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.review-card:hover { border-color: rgba(200, 149, 106, 0.3); }

.review-card p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(240, 234, 216, 0.7);
  line-height: 1.7;
}

/* ─── REVIEWS MARQUEE ─── */
.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.reviews-track:hover { animation-play-state: paused; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
}