:root {
  --bg: #FAF6F0;
  --fg: #1C1917;
  --accent: #C0522A;
  --accent-light: #D4A843;
  --muted: #8B7B6B;
  --surface: #F0EBE3;
  --surface-dark: #E8E0D5;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ─────────────────────────── */
.nav {
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(250,246,240,0.95) 0%, rgba(250,246,240,0) 100%);
  backdrop-filter: blur(8px);
}
.nav-inner { display: flex; align-items: center; gap: 16px; }
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Hero ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-left { padding-right: 48px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-atmosphere {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.atm-label {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.salon-scene {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.salon-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(192,82,42,0.12));
}

.scene-label {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ── Capabilities ──────────────────────── */
.capabilities {
  padding: 120px 48px;
  background: var(--surface);
  position: relative;
}

.capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.cap-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--surface-dark);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,25,23,0.08);
}

.cap-icon {
  margin-bottom: 20px;
}

.cap-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.cap-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 20px;
}

.cap-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 4px 12px;
  opacity: 0.8;
}

/* ── Proof ─────────────────────────────── */
.proof {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192,82,42,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(250,246,240,0.65);
  line-height: 1.5;
  margin-bottom: 8px;
}

.stat-source {
  font-size: 11px;
  color: rgba(250,246,240,0.35);
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 100px;
  background: rgba(250,246,240,0.15);
}

/* ── Philosophy ─────────────────────────── */
.philosophy {
  padding: 120px 48px;
  background: var(--bg);
}

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

.philosophy-label {
  margin-bottom: 40px;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: 40px;
  position: relative;
  padding-left: 32px;
}
.philosophy-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.philosophy-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── Manifesto ─────────────────────────── */
.manifesto {
  padding: 120px 48px;
  background: var(--surface);
}

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

.manifesto-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 80px;
  text-align: center;
}
.manifesto-title em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.manifesto-point {}

.manifesto-num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 12px;
  line-height: 1;
}

.manifesto-point p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Closing ───────────────────────────── */
.closing {
  padding: 140px 48px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

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

.closing-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 32px;
}
.closing-title em {
  font-style: italic;
  color: var(--accent);
}

.closing-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250,246,240,0.6);
  margin-bottom: 48px;
}

.closing-vision p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250,246,240,0.8);
  font-style: italic;
  margin-bottom: 12px;
}

/* ── Footer ───────────────────────────── */
.footer {
  padding: 60px 48px 40px;
  background: #141210;
  color: rgba(250,246,240,0.5);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250,246,240,0.08);
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--bg);
  display: block;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  max-width: 300px;
  color: rgba(250,246,240,0.4);
}

.footer-links span {
  font-size: 13px;
  color: rgba(250,246,240,0.35);
  letter-spacing: 0.04em;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(250,246,240,0.25);
  letter-spacing: 0.06em;
}

/* ── Responsive ───────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
    text-align: center;
  }
  .hero-left { padding-right: 0; }
  .hero-sub { max-width: 100%; }
  .hero-atmosphere { border-left: none; border-top: 2px solid var(--accent); padding-left: 0; padding-top: 16px; }
  .hero-right { order: -1; }
  .salon-scene { max-width: 280px; margin: 0 auto; }
  .cap-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 48px; }
  .proof-divider { width: 60px; height: 1px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav { padding: 20px 24px; }
  .capabilities, .proof, .philosophy, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
}
