/* ===========================
   GLOW CHECK — BRAND THEME
   =========================== */

:root {
  --bg:           #0A0A0A;
  --surface:     #111111;
  --surface-2:    #1A1A1A;
  --gold:         #D4A853;
  --gold-dim:     rgba(212, 168, 83, 0.15);
  --gold-glow:    rgba(212, 168, 83, 0.08);
  --cream:        #F5E8D0;
  --cream-dim:    rgba(245, 232, 208, 0.55);
  --cream-muted:  rgba(245, 232, 208, 0.28);
  --border:       rgba(212, 168, 83, 0.12);
  --border-hover: rgba(212, 168, 83, 0.35);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.atmosphere__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 83, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
}

.atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float-orb 8s ease-in-out infinite;
}

.atmosphere__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.18) 0%, transparent 70%);
  top: 10%; left: 50%; transform: translateX(-50%);
  animation-delay: 0s;
}

.atmosphere__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  top: 30%; right: 10%;
  animation-delay: -3s;
  animation-duration: 11s;
}

.atmosphere__orb--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(180, 120, 40, 0.10) 0%, transparent 70%);
  bottom: 20%; left: 15%;
  animation-delay: -5s;
  animation-duration: 9s;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0px) scale(1); }
  33%       { transform: translateY(-20px) scale(1.03); }
  66%       { transform: translateY(12px) scale(0.98); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}

.hero__headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.8rem;
  line-height: 1.05;
  background: linear-gradient(160deg, var(--cream) 0%, rgba(245,232,208,0.75) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lede {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.scroll__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

/* ---- FEATURES ---- */
.features {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 4rem;
}

.features__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.features__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  font-weight: 500;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: var(--surface);
}

.feature-card:hover .feature-card__title {
  color: var(--gold);
}

.feature-card--accent {
  background: var(--surface);
  border-left: 2px solid var(--gold);
}

.feature-card__icon {
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 7rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.philosophy__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
}

.badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--gold); }
  50%       { opacity: 0.5; box-shadow: 0 0 12px var(--gold); }
}

.philosophy__headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.philosophy__body {
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.75;
  margin-bottom: 4rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: left;
}

.pillar {
  position: relative;
}

.pillar__line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0.6;
}

.pillar h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ---- MANIFESTO ---- */
.manifesto {
  padding: 8rem 2rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.manifesto__ornament {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  animation: slow-spin 20s linear infinite;
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.manifesto__quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  quotes: "\201C" "\201D";
}

.manifesto__quote::before { content: open-quote; }
.manifesto__quote::after  { content: close-quote; }

.manifesto__cta {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 4rem 2rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.site-footer__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.brand__mark {
  font-size: 1.1rem;
  color: var(--gold);
}

.brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.site-footer__tagline {
  font-size: 0.8rem;
  color: var(--cream-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.site-footer__links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.site-footer__links a:hover { color: var(--gold); }
.site-footer__links .sep { color: var(--cream-muted); font-size: 0.7rem; }

.site-footer__legal {
  font-size: 0.72rem;
  color: rgba(245,232,208,0.18);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .philosophy__pillars {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pillar__line {
    margin: 0 auto 1.2rem;
  }
  .hero__headline { font-size: 3.2rem; }
  .manifesto { padding: 5rem 2rem; }
}