:root {
  --bg: #F7F3EE;
  --fg: #1C1917;
  --accent: #B8924A;
  --accent-dark: #8B2222;
  --muted: #7A7067;
  --surface: #EDE8DF;
  --border: #D4CDBF;
  --ink: #2C2925;
  --white: #FFFFFF;
}

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

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

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

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0 8vw 8vh;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(20%) brightness(0.55) contrast(1.1);
}

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

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.125rem;
  color: rgba(247, 243, 238, 0.75);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 480px;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
}

/* ─── PHILOSOPHY ─────────────────────────────── */
.philosophy {
  padding: 10vh 8vw;
  background: var(--bg);
}

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

.philosophy-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}

.philosophy-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3.5rem;
  max-width: 680px;
}

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

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.25rem 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: start;
}

.pillar-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  grid-row: 1 / 3;
  padding-top: 0.2rem;
}

.pillar-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── SERVICES ──────────────────────────────── */
.services {
  padding: 10vh 8vw;
  background: var(--ink);
  color: var(--bg);
}

.services-header {
  margin-bottom: 5rem;
}

.section-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,243,238,0.1);
}

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

.service-card:hover {
  background: #252220;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: rgba(247, 243, 238, 0.55);
  line-height: 1.7;
}

/* ─── RITUAL ────────────────────────────────── */
.ritual {
  padding: 12vh 8vw;
  background: var(--surface);
}

.ritual-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 8vw;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.ritual-visual {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.ritual-circle.outer {
  width: 260px;
  height: 260px;
  top: 0;
  left: 0;
}

.ritual-circle.middle {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: var(--accent);
}

.ritual-circle.inner {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.ritual-text {
  max-width: 580px;
}

.ritual-body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 1.5rem 0 3rem;
}

.ritual-stat-row {
  display: flex;
  gap: 3rem;
}

.ritual-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ─── CLOSING ───────────────────────────────── */
.closing {
  padding: 14vh 8vw;
  background: var(--accent);
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.closing-chinese {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: rgba(247, 243, 238, 0.65);
}

/* ─── FOOTER ────────────────────────────────── */
.footer {
  padding: 4rem 8vw;
  background: var(--ink);
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(247,243,238,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(247,243,238,0.1);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(247,243,238,0.3);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .philosophy-pillars {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ritual-inner {
    grid-template-columns: 1fr;
  }

  .ritual-visual {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .ritual-circle.outer {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 0 6vw 10vh;
    min-height: 85vh;
  }

  .philosophy,
  .services,
  .ritual,
  .closing {
    padding-left: 6vw;
    padding-right: 6vw;
  }

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

  .ritual-stat-row {
    gap: 1.5rem;
  }

  .footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}