:root {
  --bg: #faf8f5;
  --bg-warm: #f4efe8;
  --bg-deep: #2c2421;
  --fg: #2c2421;
  --fg-light: #6b5e57;
  --fg-muted: #9e8e85;
  --accent: #c4956a;
  --accent-soft: #dbb896;
  --accent-glow: rgba(196, 149, 106, 0.15);
  --sage: #8a9a7b;
  --sage-soft: rgba(138, 154, 123, 0.12);
  --sand: #e8ddd0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-lg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_131116/images/4bd31fcd-15bf-46b5-b91d-8d3cb586c4e9.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 100%);
}

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

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(232,221,208,0.85);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-story {
  margin-top: var(--space-lg);
  font-size: 1rem;
  color: var(--sand);
  max-width: 560px;
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--accent-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-light);
  padding: 0.75rem 0;
}

.btn-ghost:hover {
  color: var(--fg);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  z-index: 1;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-deep);
  color: var(--bg);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--sand);
  border: none;
  padding: 0;
  margin-top: var(--space-md);
}

.philosophy blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--sand);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.philosophy blockquote p:last-child {
  margin-bottom: 0;
}

.philosophy-author {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.philosophy-img {
  max-width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: var(--space-2xl) var(--space-lg);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid var(--sand);
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--fg);
}

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

/* ===== SANCTUARY ===== */
.sanctuary {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-warm);
}

.sanctuary-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.sanctuary-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.sanctuary-text p {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.sanctuary-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sanctuary-shape {
  width: 300px;
  height: 300px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--sage) 60%, var(--bg-deep) 100%);
  opacity: 0.6;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
  50% { transform: scale(1.05); border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%; }
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  background: var(--bg-deep);
  color: var(--bg);
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--sand);
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: var(--space-lg);
  background: var(--bg-deep);
  border-top: 1px solid rgba(232, 221, 208, 0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sand);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: var(--space-xs);
}

.footer-links p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  width: 100%;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(232, 221, 208, 0.1);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    min-height: 90vh;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sanctuary-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sanctuary-shape {
    width: 200px;
    height: 200px;
  }

  .philosophy,
  .features,
  .sanctuary,
  .closing {
    padding: var(--space-xl) var(--space-md);
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-story {
    font-size: 0.9rem;
  }

  .closing h2 {
    font-size: 2rem;
  }
}
