:root {
  --cream: #f5efe4;
  --cream-2: #ece4d3;
  --paper: #faf6ee;
  --sage: #6f8475;
  --sage-deep: #475a4d;
  --terra: #b06e4a;
  --ink: #2b2a25;
  --muted: #6f6a5e;
  --line: #d8d0bd;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--paper); color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif; line-height: 1.7;
  font-weight: 400; letter-spacing: 0.005em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: 'Cormorant', 'Georgia', serif; font-weight: 500; }

.preview-bar {
  background: var(--ink); color: var(--cream); text-align: center;
  padding: 9px 0; font-size: 0.84rem; letter-spacing: 0.04em;
}
.preview-bar a { color: var(--terra); font-weight: 600; }

/* Top header — clean and quiet */
.top {
  padding: 30px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: 1.7rem; letter-spacing: 0.005em;
}
.brand em { font-style: italic; color: var(--sage); margin: 0 6px; }
.nav { display: flex; gap: 30px; font-size: 0.92rem; color: var(--muted); }
.nav a { letter-spacing: 0.04em; }
.nav a:hover { color: var(--sage-deep); }
.nav__cta {
  color: var(--ink); border: 1px solid var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-size: 0.86rem; letter-spacing: 0.06em;
  transition: background 200ms ease, color 200ms ease;
}
.nav__cta:hover { background: var(--ink); color: var(--cream); }

/* Hero — quiet and centered, soft-corner photo */
.hero {
  padding: 32px 0 96px;
  text-align: center;
}
.hero__label {
  font-size: 0.86rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--terra); font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem); line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 auto 18px; max-width: 880px;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero p {
  max-width: 580px; margin: 0 auto 32px;
  font-size: 1.1rem; color: var(--muted);
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  background: var(--sage-deep); color: var(--cream);
  padding: 14px 26px; border-radius: 999px; font-weight: 500;
  letter-spacing: 0.04em; font-size: 0.96rem;
  transition: background 200ms ease;
}
.btn-primary:hover { background: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
  padding: 14px 26px; border-radius: 999px; font-weight: 500;
  letter-spacing: 0.04em; font-size: 0.96rem;
  transition: background 200ms ease, color 200ms ease;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.hero__photo {
  aspect-ratio: 16 / 9;
  background-size: cover; background-position: center;
  border-radius: 24px; max-width: 1080px; margin: 0 auto;
  box-shadow: 0 30px 80px -38px rgba(43,42,37,0.30);
}

/* Three pillars */
.pillars {
  padding: 96px 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(111,132,117,0.10), transparent 50%),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars__head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.pillars__head .label {
  font-size: 0.84rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
}
.pillars__head h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.005em;
  margin: 0 0 14px; line-height: 1.15;
}
.pillars__head h2 em { font-style: italic; color: var(--sage); }
.pillars__head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.pillar {
  background: var(--paper); border-radius: 22px;
  padding: 36px 30px; text-align: center;
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -28px rgba(71,90,77,0.30);
}
.pillar__icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cormorant', serif; font-style: italic; font-weight: 500;
  font-size: 1.6rem; color: var(--sage-deep);
}
.pillar h3 {
  font-family: 'Cormorant', serif; font-weight: 500; font-size: 1.6rem;
  margin: 0 0 10px; letter-spacing: -0.005em;
}
.pillar p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Schedule + altar split */
.split { padding: 96px 0; }
.split__row {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.split__photo {
  aspect-ratio: 4 / 5; background-size: cover; background-position: center;
  border-radius: 22px;
}
.split__text .label {
  font-size: 0.84rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
}
.split__text h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.005em;
  margin: 0 0 18px; line-height: 1.12;
}
.split__text h2 em { font-style: italic; color: var(--sage); }
.split__text p { color: var(--ink); font-size: 1.06rem; margin: 0 0 14px; max-width: 480px; }

.schedule {
  margin-top: 24px; border-top: 1px solid var(--line);
}
.schedule__row {
  display: flex; justify-content: space-between; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--line); font-size: 0.96rem;
}
.schedule__row .day {
  font-family: 'Cormorant', serif; font-style: italic; font-size: 1.1rem;
  color: var(--sage-deep);
}
.schedule__row .meta { color: var(--muted); }

/* Class types — overhead photo wide block */
.classes {
  padding: 96px 0;
  background: var(--cream-2);
}
.classes__row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.classes__photo { aspect-ratio: 1 / 1; background-size: cover; background-position: center; border-radius: 22px; }
.classes__list {
  display: grid; gap: 22px;
}
.classes__list h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.6rem); letter-spacing: -0.005em;
  margin: 0 0 8px; line-height: 1.15;
}
.classes__list h2 em { font-style: italic; color: var(--sage); }
.class-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 24px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
}
.class-card .num {
  font-family: 'Cormorant', serif; font-style: italic; font-weight: 500;
  font-size: 1.3rem; color: var(--sage-deep);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex; align-items: center; justify-content: center;
}
.class-card h4 { margin: 0 0 2px; font-size: 1.05rem; font-weight: 600; }
.class-card p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.class-card .price {
  font-family: 'Cormorant', serif; font-weight: 500; font-size: 1.2rem;
  color: var(--ink);
}

/* Instructor block */
.teacher {
  padding: 96px 0; text-align: center;
}
.teacher__photo {
  width: 220px; height: 220px; margin: 0 auto 28px;
  border-radius: 50%; background-size: cover; background-position: center;
  border: 6px solid var(--cream);
  box-shadow: 0 10px 30px -16px rgba(43,42,37,0.30);
}
.teacher h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem); letter-spacing: -0.005em;
  margin: 0 0 6px;
}
.teacher .role {
  color: var(--terra); font-size: 0.86rem; letter-spacing: 0.32em;
  text-transform: uppercase; margin-bottom: 22px;
}
.teacher p {
  color: var(--ink); max-width: 560px; margin: 0 auto;
  font-size: 1.05rem;
}

/* CTA panel */
.cta {
  padding: 100px 0;
  background: var(--sage-deep); color: var(--cream);
  text-align: center;
}
.cta h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: -0.005em;
  line-height: 1.1; margin: 0 auto 18px; max-width: 720px;
}
.cta h2 em { font-style: italic; color: #d6c4a8; }
.cta p { color: rgba(245,239,228,0.78); max-width: 540px; margin: 0 auto 28px; }
.cta .btn-primary { background: var(--cream); color: var(--ink); }
.cta .btn-primary:hover { background: var(--terra); color: var(--cream); }

/* Memberships */
.mem { padding: 96px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mem__head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.mem__head .label {
  font-size: 0.84rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
}
.mem__head h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.mem__head h2 em { font-style: italic; color: var(--sage); }
.mem__head p { color: var(--muted); margin: 0; }
.mem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mem__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.mem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -28px rgba(71,90,77,0.25);
  border-color: rgba(111,132,117,0.40);
}
.mem__card.is-pop { border-color: var(--sage); background:
  linear-gradient(180deg, rgba(111,132,117,0.06) 0%, var(--paper) 50%); }
.mem__name { font-family: 'Cormorant', serif; font-weight: 500; font-size: 1.5rem; margin: 0; letter-spacing: -0.005em; }
.mem__name em { font-style: italic; color: var(--sage); }
.mem__price { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 14px; }
.mem__price .num { font-family: 'Cormorant', serif; font-weight: 500; font-size: 2.6rem; letter-spacing: -0.005em; color: var(--ink); }
.mem__price .per { color: var(--muted); }
.mem__list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.mem__list li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 0.96rem; color: var(--ink); }
.mem__list li:last-child { border-bottom: none; }
.mem__list li::before { content: "✻ "; color: var(--terra); font-weight: 600; }
.mem__cta {
  text-align: center; padding: 12px 18px; border-radius: 999px;
  background: var(--ink); color: var(--cream); font-weight: 500; font-size: 0.94rem;
}
.mem__cta:hover { background: var(--sage-deep); }
.mem__card.is-pop .mem__cta { background: var(--sage-deep); }
.mem__card.is-pop .mem__cta:hover { background: var(--ink); }

/* Workshops */
.work { padding: 96px 0; }
.work__head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 36px; }
.work__head .label {
  font-size: 0.84rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.work__head h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.8rem); letter-spacing: -0.005em;
  margin: 0; line-height: 1.1;
}
.work__head h2 em { font-style: italic; color: var(--sage); }
.work__list { display: grid; gap: 16px; border-top: 1px solid var(--line); }
.work__row {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 24px; align-items: center;
  padding: 22px 4px; border-bottom: 1px solid var(--line);
}
.work__date {
  font-family: 'Cormorant', serif; font-style: italic; font-weight: 500;
  color: var(--terra); font-size: 1.1rem;
}
.work__date small { display: block; font-style: normal; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
.work__title { font-family: 'Cormorant', serif; font-size: 1.3rem; letter-spacing: -0.005em; line-height: 1.15; }
.work__title small { display: block; color: var(--muted); font-size: 0.94rem; font-family: 'Manrope', sans-serif; margin-top: 2px; }
.work__price { font-family: 'Cormorant', serif; font-style: italic; color: var(--ink); font-size: 1.2rem; }

/* First time */
.first { padding: 96px 0; background: var(--cream-2); }
.first__row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.first__panel {
  background: var(--paper); padding: 40px 36px; border-radius: 22px;
  border: 1px solid var(--line);
}
.first__panel .label {
  font-size: 0.84rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 12px;
}
.first__panel h2 {
  font-family: 'Cormorant', serif; font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -0.005em;
  margin: 0 0 16px; line-height: 1.15;
}
.first__panel h2 em { font-style: italic; color: var(--sage); }
.first__panel ol { padding-left: 1.2em; margin: 0; }
.first__panel li { font-size: 1.04rem; margin: 8px 0; line-height: 1.55; color: var(--ink); }
.first__panel li::marker { color: var(--terra); font-weight: 600; }
.first__quote {
  font-family: 'Cormorant', serif; font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.4;
  color: var(--ink); margin: 0 0 12px;
}
.first__cite { color: var(--muted); font-size: 0.86rem; letter-spacing: 0.18em; text-transform: uppercase; }

/* Footer */
.foot {
  background: var(--ink); color: rgba(245,239,228,0.84);
  text-align: center; padding: 32px 0 22px; font-size: 0.92rem;
}
.foot strong {
  font-family: 'Cormorant', serif; font-weight: 500; font-size: 1.5rem;
  color: var(--cream); display: block; margin-bottom: 6px;
}
.foot strong em { font-style: italic; color: var(--sage); margin: 0 4px; }
.foot .small { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,228,0.5); margin-top: 12px; }

@media (max-width: 920px) {
  .pillar-grid, .split__row, .classes__row { grid-template-columns: 1fr; gap: 36px; }
  .nav { display: none; }
}
