@font-face {
  font-family: 'Gagalin';
  src: url('../fonts/Gagalin-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Balgin';
  src: url('../fonts/Balgin-RegularCondensed.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #EFE6D2;
  --cream-soft: #F4ECDA;
  --forest: #3D4F2E;
  --forest-deep: #2F3D24;
  --terracotta: #B85C3F;
  --terracotta-soft: #C9785A;
  --ink: #2A2A22;
  --ink-soft: #5A5A4E;
  --line: rgba(61,79,46,0.18);
  --serif: 'Gagalin', Georgia, serif;
  /* Barlow Condensed loaded from Google Fonts; Balgin demo kept in the chain
     only as a graceful step if a properly-licensed Balgin file is later
     dropped at assets/fonts/Balgin-RegularCondensed.otf. */
  --sans: 'Barlow Condensed', 'Balgin', -apple-system, system-ui, sans-serif;
  --script: 'Caveat', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--cream);
  padding: 12px 18px; z-index: 9999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terracotta);
}

/* ---------- Section titles ---------- */
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--forest);
  margin: 14px 0 0;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ---------- Header ---------- */
header.site {
  padding: 22px 0;
}
header.site .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--forest); }
.brand-mark {
  width: 88px; height: 88px;
  background: transparent;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
}
/* If a custom logo has been uploaded (the image likely contains the brand
   wordmark already), hide the duplicate brand-name text. To force it back
   on, override `.wp-custom-logo .brand-name { display: inline-block; }`. */
.wp-custom-logo .brand-name { display: none; }
nav.primary {
  display: flex; align-items: center; gap: 36px;
}
nav.primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 36px;
}
nav.primary a {
  color: var(--forest);
  text-decoration: none;
  font-size: 15px;
}
nav.primary a:hover { color: var(--terracotta); }
nav.primary a.btn-primary { color: var(--cream); }
nav.primary a.btn-primary:hover { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-deep); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-cream {
  background: var(--cream);
  color: var(--forest);
}

/* ---------- HERO ---------- */
.hero {
  padding: 40px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--terracotta);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--forest);
  margin: 0 0 26px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 440px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(47,61,36,0.35);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-chip {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--forest);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.25);
}
.hero-chip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #6B9B5C;
  box-shadow: 0 0 0 3px rgba(107,155,92,0.2);
}
.hero-quote {
  position: absolute;
  right: 22px; bottom: 22px;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 14px;
  max-width: 280px;
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.3);
}
.hero-quote p {
  font-family: var(--script);
  font-size: 18px;
  line-height: 1.3;
  color: var(--terracotta);
  margin: 0 0 6px;
}
.hero-quote span {
  font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft);
}

/* ---------- WHAT WE OFFER ---------- */
.offer { padding: 80px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head .right {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  padding-bottom: 8px;
  text-wrap: pretty;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: var(--cream-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.offer-card .img {
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}
.offer-card .img img {
  width: 100%; height: 100%; object-fit: cover;
}
.offer-card .body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.offer-card .tag {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 10px;
}
.offer-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 12px;
}
.offer-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.offer-card .price-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.offer-card .price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--forest);
}
.offer-card .price-meta {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- THE RITUAL ---------- */
.ritual {
  background: var(--forest);
  color: var(--cream);
  padding: 90px 0 56px;
}
.ritual .eyebrow { color: var(--terracotta-soft); }
.ritual .section-head {
  grid-template-columns: 1fr 320px;
}
.ritual .section-title { color: var(--cream); }
.ritual .section-title em { color: var(--terracotta-soft); }
.ritual .right {
  color: rgba(239,230,210,0.78);
  font-size: 14.5px;
}
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0 64px;
  position: relative;
}
.ritual-step {
  position: relative;
  padding-left: 0;
}
.ritual-step + .ritual-step::before {
  content: '';
  position: absolute;
  left: -16px; top: 0; bottom: 0;
  border-left: 1px dashed rgba(239,230,210,0.25);
}
.ritual-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--terracotta-soft);
  margin-bottom: 18px;
}
.ritual-step .icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(239,230,210,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  margin-bottom: 22px;
}
.ritual-step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  margin: 0 0 8px;
}
.ritual-step .temp {
  font-family: var(--script);
  font-size: 18px;
  color: var(--terracotta-soft);
  margin-bottom: 14px;
}
.ritual-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(239,230,210,0.78);
  margin: 0;
  max-width: 220px;
}
.ritual-foot {
  border-top: 1px solid rgba(239,230,210,0.18);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ritual-foot blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
  max-width: 520px;
}

/* ---------- EVENTS ---------- */
.events { padding: 90px 0; }
.events .head-row {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 48px;
  gap: 32px;
}
.head-eyebrow-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.events-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.event-card {
  background: var(--cream-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.event-img {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
}
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.date-stamp {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.2);
}
.date-stamp .d {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
  line-height: 1;
}
.date-stamp .m {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.event-body {
  padding: 22px 24px 22px;
  flex: 1;
  display: flex; flex-direction: column;
}
.event-tags {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(61,79,46,0.08);
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.event-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--forest);
  margin: 0 0 12px;
}
.event-when {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.event-when svg { width: 14px; height: 14px; }
.event-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.event-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.event-foot .price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
}
.event-foot a {
  color: var(--forest);
  text-decoration: none;
  font-size: 14px;
}

/* ---------- FAQ ---------- */
.faq { padding: 80px 0 100px; }
.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 4px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--forest);
  margin: 0;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 16px;
}
.faq-item[open] .faq-toggle {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.faq-answer {
  padding: 0 4px 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
}
.faq-answer p:first-child { margin-top: 0; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--forest-deep);
  color: rgba(239,230,210,0.78);
  padding: 56px 0 40px;
  font-size: 14px;
}
footer.site .row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer.site h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-soft);
  margin: 0 0 18px;
  font-weight: 500;
}
footer.site .brand-name { color: var(--cream); }
footer.site a { color: rgba(239,230,210,0.78); text-decoration: none; display: block; padding: 4px 0; }
footer.site a:hover { color: var(--cream); }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site .legal {
  border-top: 1px solid rgba(239,230,210,0.15);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(239,230,210,0.55);
  flex-wrap: wrap; gap: 12px;
}
footer.site p { margin: 0 0 14px; max-width: 320px; line-height: 1.55; }

@media (max-width: 880px) {
  .hero-grid, .section-head, .offer-grid, .ritual-grid, .events-rail, footer.site .row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ritual-step + .ritual-step::before { display: none; }
  nav.primary ul { display: none; }
}
