:root {
  --bg: #FAF7F2;
  --bg-warm: #F5F0E8;
  --fg: #2C2C2C;
  --fg-mid: #5A5A5A;
  --fg-light: #8A8A8A;
  --accent: #A67C52;
  --accent-dark: #7D5A38;
  --stone-1: #B8A99A;
  --stone-2: #9E8E7E;
  --stone-3: #6E6156;
  --border: #E0D9CE;
}

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

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

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

/* Navigation */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 5rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-mid);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}
.hero-meta {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Stone Visual */
.stone-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
}
.stone-1, .stone-2, .stone-3 {
  border-radius: 60% 55% 50% 65% / 50% 45% 60% 55%;
  position: absolute;
  bottom: 0;
}
.stone-1 {
  width: 140px;
  height: 200px;
  background: linear-gradient(160deg, #D4C4B5 0%, #B8A99A 50%, #8E7B6B 100%);
  left: 15%;
  transform: rotate(-8deg);
  box-shadow: 8px 20px 40px rgba(60,40,30,0.25);
}
.stone-2 {
  width: 180px;
  height: 300px;
  background: linear-gradient(160deg, #A89888 0%, #8A7466 50%, #6A5A4C 100%);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 12px 30px 60px rgba(40,30,20,0.3);
}
.stone-3 {
  width: 110px;
  height: 160px;
  background: linear-gradient(160deg, #C8B8A5 0%, #9A8878 50%, #7A6A5A 100%);
  right: 15%;
  transform: rotate(5deg);
  box-shadow: 6px 15px 30px rgba(50,35,25,0.2);
}

/* Philosophy */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.philosophy-text {
  font-size: 1.25rem;
  line-height: 1.75;
  color: #D8D0C4;
}

/* Stones */
.stones {
  padding: 7rem 2rem;
  background: var(--bg-warm);
}
.stones-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.stones-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-top: 0.5rem;
}
.stones-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stone-card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.stone-card-top {
  height: 220px;
}
.stone-card-top.garden {
  background: linear-gradient(160deg, #8B7355 0%, #6B5642 100%);
}
.stone-card-top.desk {
  background: linear-gradient(160deg, #A89080 0%, #8A7060 100%);
}
.stone-card-top.meditation {
  background: linear-gradient(160deg, #9A8A7A 0%, #7A6A5A 100%);
}
.stone-card-title {
  font-size: 1.4rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--fg);
}
.stone-card-body {
  font-size: 0.92rem;
  color: var(--fg-mid);
  padding: 0.5rem 1.5rem 1.5rem;
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--accent);
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-mid);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 68ch;
}

/* Closing */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 2rem;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.closing-sub {
  font-size: 1.1rem;
  color: #A09890;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-light);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stone-visual { height: 320px; }
  .stone-1 { width: 90px; height: 130px; }
  .stone-2 { width: 120px; height: 200px; }
  .stone-3 { width: 70px; height: 100px; }
  .stones-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 4rem; }
  .philosophy, .manifesto, .closing { padding: 4rem 1.5rem; }
  .stones { padding: 4rem 1.5rem; }
}