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

:root {
  --bg: #0C0B0A;
  --bg-2: #131210;
  --bg-3: #1A1917;
  --fg: #E8E4DC;
  --fg-muted: #8A857A;
  --accent: #C8A96E;
  --accent-dim: rgba(200, 169, 110, 0.15);
  --accent-glow: rgba(200, 169, 110, 0.08);
  --border: rgba(200, 169, 110, 0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,169,110,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(200,169,110,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,169,110,0.25) 0%, rgba(200,169,110,0.05) 60%, transparent 80%);
  animation: orb-pulse 8s ease-in-out infinite;
}

.orb-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,169,110,0.4) 0%, transparent 70%);
  animation: orb-pulse 6s ease-in-out infinite 1s;
}

.orb-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,228,220,0.6) 0%, rgba(200,169,110,0.3) 100%);
  border-radius: 50%;
  filter: blur(20px);
  animation: orb-core 4s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes orb-core {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* === SECTION COMMON === */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--fg);
  max-width: 640px;
}

/* === CURATION === */
.curation {
  background: var(--bg-2);
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.curation-inner { max-width: 1100px; margin: 0 auto; }

.curation .section-heading { margin-bottom: 3rem; }

.curation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.curation-card {
  background: var(--bg-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}

.curation-card:hover { background: var(--bg-3); }

.card-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.curation-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  opacity: 0.7;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg);
}

.price-val.accent { color: var(--accent); }

.curation-footnote {
  font-size: 0.82rem;
  color: var(--fg-muted);
  opacity: 0.6;
  font-style: italic;
}

/* === ASSURANCE === */
.assurance {
  background: var(--bg);
  padding: 7rem 4rem;
}

.assurance-inner { max-width: 900px; margin: 0 auto; }

.assurance-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  margin-bottom: 3.5rem;
}

.badge-icon svg { width: 40px; height: 40px; }

.badge-text { display: flex; flex-direction: column; gap: 0.3rem; }

.badge-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
}

.badge-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.assurance-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.a-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.assurance-item h4 {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.assurance-item p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

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

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-text p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-top: 1.2rem;
}

.philosophy-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
}

.stat:hover { background: var(--bg-3); transition: background 0.3s; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  background: var(--bg);
  padding: 9rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(200,169,110,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

.closing-orb {
  width: 200px;
  height: 200px;
  margin: 0 auto 3rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.2) 0%, rgba(200,169,110,0.05) 50%, transparent 70%);
  filter: blur(40px);
}

.closing-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

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

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-brand { margin-bottom: 1.5rem; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.footer-links .sep { opacity: 0.3; }

.footer-bottom {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero, .curation, .assurance, .philosophy, .closing { padding: 5rem 1.75rem; }
  footer { padding: 3rem 1.75rem; }

  .hero-headline { font-size: 2.4rem; }
  .hero-orb { display: none; }

  .assurance-grid { grid-template-columns: 1fr; }

  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-stats { grid-template-columns: 1fr 1fr; }

  .curation-grid { grid-template-columns: 1fr; }

  .footer-links { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .footer-links .sep { display: none; }

  .assurance-badge { flex-direction: column; }
}
