:root {
  color-scheme: light;
  --ink: #21342a;
  --muted: #667466;
  --leaf: #315b3c;
  --leaf-dark: #173521;
  --cream: #f6efe1;
  --paper: #fffaf0;
  --gold: #c78f4a;
  --line: rgba(33, 52, 42, 0.15);
  --shadow: 0 24px 80px rgba(31, 55, 37, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff7e4 0, transparent 32rem), var(--cream);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.hero {
  min-height: 92vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(120deg, rgba(246,239,225,0.92), rgba(246,239,225,0.58)),
    url("https://images.unsplash.com/photo-1515823662972-da6a2e4d3002?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 72px;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--leaf-dark);
}
.nav-links { display: flex; gap: 18px; color: var(--muted); font-weight: 650; }
.nav-links a:hover { color: var(--leaf); }
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--gold);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 0.98; color: var(--leaf-dark); }
h1 { max-width: 820px; font-size: clamp(3.2rem, 8vw, 7rem); letter-spacing: -0.075em; margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4vw, 4.2rem); letter-spacing: -0.055em; margin-bottom: 18px; }
h3 { font-size: 1.65rem; letter-spacing: -0.04em; margin-bottom: 10px; }
.lede { max-width: 650px; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.65; color: #4c5e50; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--leaf);
}
.button.primary { background: var(--leaf); color: #fffdf5; box-shadow: 0 12px 30px rgba(49,91,60,0.25); }
.button.ghost { color: var(--leaf-dark); background: rgba(255,250,240,0.58); }
.hero-card {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card img { height: 460px; }
.hero-card figcaption { padding: 18px 20px 22px; color: var(--muted); font-weight: 700; }
main { padding: 72px clamp(20px, 5vw, 72px); }
.panel, .feature-grid, .rituals, .footer { max-width: 1180px; margin-left: auto; margin-right: auto; }
.panel {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: 0 18px 60px rgba(64, 82, 54, 0.08);
}
.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 44px;
  align-items: end;
}
.intro p:last-child { font-size: 1.08rem; line-height: 1.75; color: var(--muted); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
  margin-bottom: 28px;
}
.feature-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(64, 82, 54, 0.08);
}
.feature-grid img { height: 250px; }
.feature-grid h3, .feature-grid p { padding-left: 24px; padding-right: 24px; }
.feature-grid h3 { padding-top: 24px; }
.feature-grid p { padding-bottom: 26px; color: var(--muted); line-height: 1.55; }
.menu { margin-top: 28px; }
.section-heading { max-width: 760px; }
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.menu-item {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: #fbf3e2;
  border: 1px solid var(--line);
}
.menu-item span { display: block; padding-right: 80px; font-weight: 900; color: var(--leaf-dark); }
.menu-item strong { position: absolute; top: 20px; right: 22px; color: var(--gold); }
.menu-item p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; }
.rituals {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: stretch;
}
.ritual-copy, .ritual-card {
  padding: clamp(24px, 4vw, 46px);
  border-radius: 32px;
  border: 1px solid var(--line);
}
.ritual-copy { background: var(--leaf-dark); color: #f7eedc; }
.ritual-copy h2 { color: #fffaf0; }
.ritual-copy p:last-child { color: #d7ddcf; line-height: 1.7; }
.ritual-card { background: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.ritual-card span { color: var(--gold); text-transform: uppercase; font-weight: 900; letter-spacing: 0.12em; font-size: 0.78rem; }
.ritual-card strong { display: block; margin: 16px 0; font-family: Georgia, "Times New Roman", serif; font-size: 2.1rem; line-height: 1; color: var(--leaf-dark); }
.ritual-card p { color: var(--muted); line-height: 1.6; }
.footer {
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 40px clamp(20px, 5vw, 72px);
  border-radius: 32px;
  background: #e9dac1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer p { color: var(--muted); line-height: 1.6; max-width: 620px; }
.footer h2 { margin-bottom: 12px; }

@media (max-width: 880px) {
  .hero-grid, .intro, .rituals { grid-template-columns: 1fr; }
  .feature-grid, .menu-list { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .hero-card img { height: 360px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .nav { align-items: flex-start; flex-direction: column; margin-bottom: 46px; }
  .nav-links { width: 100%; justify-content: space-between; }
  .hero { padding-top: 22px; }
  main { padding-top: 36px; }
}
