:root {
  --bg: #faf7f0;
  --fg: #1a2e1a;
  --accent: #c9a96e;
  --accent-dark: #a8884e;
  --muted: #6b7c6b;
  --surface: #f0ece2;
  --border: #ddd8c8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 48px 80px;
  min-height: 70vh;
  background: var(--fg);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(201,169,110,0.03) 80px,
      rgba(201,169,110,0.03) 81px
    );
  pointer-events: none;
}

.hero-inner { max-width: 700px; }

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--bg);
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: rgba(250,247,240,0.7);
  max-width: 520px;
  line-height: 1.7;
}

.hero-ornament {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--bg);
}

.manifesto-inner { max-width: 720px; }

.manifesto-mark { margin-bottom: 32px; }

.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 32px;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

.manifesto-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  background: var(--surface);
}

.services-header { margin-bottom: 64px; }

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

.services-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px 40px;
}

.service-card { padding: 0; }

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
}

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

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

/* RITUAL */
.ritual {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--bg);
}

.ritual-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.ritual-content { flex: 1; }

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

.ritual-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--bg);
  margin-bottom: 56px;
}

.ritual-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ritual-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}

.ritual-step strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 8px;
}

.ritual-step p {
  font-size: 14px;
  color: rgba(250,247,240,0.6);
  line-height: 1.7;
}

.ritual-accent {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--accent);
  text-align: center;
}

.closing-line {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 12px;
}

.closing-sub {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--fg);
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}

.closing-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: 0.06em;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg);
}

.footer-location {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-note {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  max-width: 340px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 72px 24px 64px; min-height: auto; }
  .hero-ornament { display: none; }
  .manifesto { padding: 72px 24px; }
  .services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 36px; }
  .ritual { padding: 72px 24px; }
  .ritual-inner { flex-direction: column; gap: 40px; }
  .ritual-accent { display: none; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; }
}

@media (max-width: 480px) {
  .footer-name { font-size: 16px; }
  .closing-logo { font-size: 40px; }
}