:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --fg: #2A2119;
  --fg-muted: #8A7D6B;
  --accent: #C4956A;
  --accent-dark: #A87B52;
  --cream: #FFF8F0;
  --gold: #D4A96A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw;
  position: relative;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-warm) 50%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.hero h1 .ampersand {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
  display: inline-block;
  padding: 0 0.1em;
}

.hero-tagline {
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 380px;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  min-height: 300px;
}

.hero-accent-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--accent);
  border-radius: 0;
}

.accent-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.accent-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* PHILOSOPHY */
.philosophy {
  padding: 8rem 6vw;
  background: var(--fg);
  color: var(--cream);
}

.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
}

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

.philosophy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #B8AFA3;
  max-width: 600px;
}

/* FEATURES */
.features {
  padding: 8rem 6vw;
  background: var(--bg);
}

.features-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  padding: 3rem;
  background: var(--cream);
  transition: background 0.3s ease;
}

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

.feature-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* EDITORIAL */
.editorial {
  padding: 8rem 6vw;
  background: var(--bg-warm);
}

.editorial-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 2rem;
}

.editorial-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
}

.editorial-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-style: normal;
}

.editorial-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* CLOSING */
.closing {
  padding: 10rem 6vw;
  background: var(--fg);
  color: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #B8AFA3;
}

/* FOOTER */
.site-footer {
  padding: 3rem 6vw;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #8A7D6B;
  letter-spacing: 0.05em;
}

.footer-dot {
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
}

.footer-sub {
  font-size: 0.7rem;
  color: #6B6050;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 3rem 5vw; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { justify-content: flex-start; min-height: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .editorial-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .philosophy, .features, .editorial { padding: 5rem 5vw; }
  .closing { padding: 6rem 5vw; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .feature-card { padding: 2rem; }
}