:root {
  --cream: #f8f1e7;
  --linen: #efe0cd;
  --rose: #c58f7e;
  --clay: #9f6b55;
  --moss: #69745b;
  --pine: #283327;
  --ink: #2b251f;
  --muted: #766d62;
  --white: #fffaf3;
  --shadow: 0 20px 60px rgba(43, 37, 31, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 20;
  padding: 18px 24px;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(43,37,31,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 12px 22px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 22px; font-size: .9rem; color: var(--pine); }
.nav-links a { opacity: .88; }
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 1.35rem; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 24px 80px;
  background:
    linear-gradient(rgba(40,51,39,.24), rgba(40,51,39,.18)),
    radial-gradient(circle at 20% 20%, rgba(248,241,231,.5), transparent 28%),
    url('hero-bend-oregon.png') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,241,231,.08), rgba(248,241,231,.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0,0,0,.25);
}

.eyebrow, .overline {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--clay);
  margin: 0 0 16px;
}
.hero .eyebrow { color: #fff1df; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .98;
  margin: 0;
  font-weight: 600;
}

h1 { font-size: clamp(3.5rem, 9vw, 8.2rem); max-width: 960px; }
h2 { font-size: clamp(2.45rem, 5.4vw, 5rem); color: var(--pine); }
h3 { font-size: 2rem; color: var(--pine); }

.hero-copy {
  max-width: 640px;
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn {
  border-radius: 999px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--pine); color: var(--white); box-shadow: var(--shadow); }
.secondary { background: rgba(255,250,243,.82); color: var(--pine); border-color: rgba(40,51,39,.12); }
.ghost { background: transparent; color: var(--pine); border-color: rgba(40,51,39,.2); }
.full { width: 100%; }
.text-link { color: var(--clay); font-weight: 700; display: inline-block; margin-top: 14px; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  color: var(--white);
  font-size: 2rem;
  z-index: 2;
  animation: float 1.8s ease-in-out infinite;
}

.section-pad { padding: 110px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.narrow { max-width: 760px; text-align: center; }
.intro p, .experience p, .about p, .booking p { font-size: 1.05rem; color: var(--muted); }
.grid { display: grid; gap: 42px; align-items: center; }
.two { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.three { grid-template-columns: repeat(3, minmax(0,1fr)); }

.experience { background: var(--linen); }
.ritual-card, .booking-card, .detail-card {
  background: rgba(255,250,243,.75);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ritual-card { padding: 20px; }
.ritual-card ol { list-style: none; margin: 0; padding: 0; }
.ritual-card li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; border-bottom: 1px solid rgba(40,51,39,.1); }
.ritual-card li:last-child { border-bottom: 0; }
.ritual-card span { color: var(--rose); font-weight: 800; letter-spacing: .12em; }
.ritual-card p { margin: 4px 0 0; font-size: .95rem; }

.gallery-mood { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 520px; }
.mood-panel {
  display: flex;
  align-items: flex-end;
  padding: 32px;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mood-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(40,51,39,.5)); }
.mood-panel span { position: relative; z-index: 1; color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; }
.mood-panel:nth-child(1) { background-position: center center; background-image: url('deschutes-river-light.jpg'); }
.mood-panel:nth-child(2) { background-position: center center; background-image: url('central-oregon-wildflowers.jpg'); }
.mood-panel:nth-child(3) { background-position: center center; background-image: url('juniper-pine-trails.jpg'); }

.details { background: var(--cream); }
.details .grid { align-items: stretch; }
.detail-card {
  padding: 34px;
  min-height: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.detail-card p { color: var(--muted); }

.booking { background:
  radial-gradient(circle at 90% 0%, rgba(197,143,126,.25), transparent 30%),
  var(--linen);
}
.booking-card { padding: 34px; }
.booking-card .small { font-size: .92rem; }

.calendly-trigger {
  margin-bottom: 18px;
}

.session-preview { border: 1px solid rgba(40,51,39,.12); border-radius: 20px; padding: 20px; margin: 22px 0; background: rgba(248,241,231,.64); }
.session-preview strong { display: block; color: var(--pine); }
.session-preview span { display: block; color: var(--clay); font-size: .9rem; margin-top: 4px; }
.soft-list { padding-left: 20px; color: var(--muted); }
.inquiry-form { margin-top: 18px; display: grid; gap: 12px; }
label { display: grid; gap: 6px; font-size: .85rem; font-weight: 700; color: var(--pine); }
input, textarea {
  width: 100%;
  border: 1px solid rgba(40,51,39,.17);
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 110px; resize: vertical; }

.about { background: var(--cream); }
.portrait-frame {
  min-height: 600px;
  border-radius: 220px 220px 24px 24px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(197,143,126,.08), rgba(40,51,39,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 0;
  overflow: hidden;
}

.portrait-image {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 204px 204px 0 0;
  display: block;
}

.cta { background: var(--pine); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); }
.cta .overline { color: var(--linen); }
.cta .btn { margin-top: 28px; background: var(--white); color: var(--pine); }

.footer { padding: 30px 24px; background: #211f1b; color: rgba(255,250,243,.84); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .9rem; }
.footer a { margin-left: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-one { transition-delay: .12s; }
.delay-two { transition-delay: .24s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

@media (max-width: 820px) {
  .nav { border-radius: 28px; align-items: flex-start; }
  .nav-toggle { display: block; color: var(--pine); }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 24px;
    right: 24px;
    background: rgba(255,250,243,.96);
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .two, .three, .gallery-mood { grid-template-columns: 1fr; }
  .section-pad { padding: 82px 20px; }
  .hero { min-height: 92vh; }
  .gallery-mood, .mood-panel { min-height: 360px; }
  .portrait-frame { min-height: 460px; border-radius: 180px 180px 24px 24px; }
  .portrait-image { max-height: 500px; border-radius: 164px 164px 0 0; }
  .footer-inner { display: block; }
  .footer a { display: block; margin: 10px 0 0; }
}


.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
