/* ── DESIGN TOKENS ── */
:root {
  --sage:       #7a8c6e;
  --sage-light: #a8b89a;
  --sage-pale:  #eef2eb;
  --warm-white: #faf8f5;
  --clay:       #c4886a;
  --deep:       #2d3327;
  --mid:        #5a6352;
  --text:       #3d3d35;
  --rule:       rgba(122,140,110,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  --max-w: 1200px;
  --pad-x: 5vw;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

h1 em, h2 em { font-style: italic; color: var(--sage); }

p { color: var(--mid); }
strong { font-weight: 500; color: var(--text); }

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--sage);
  border-left: 2px solid var(--sage-light);
  padding-left: 2rem;
  margin: 2.5rem 0;
  line-height: 1.6;
}

ol, ul {
  padding-left: 1.5rem;
  color: var(--mid);
}

li { margin-bottom: 0.4rem; }

/* ── UTILITY CLASSES ── */
.section-label {
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

.eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--sage);
}

/* ── BUTTONS ── */
.btn-primary,
.btn-outline,
.btn-white {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--deep);
  color: var(--warm-white);
}
.btn-primary:hover { background: var(--clay); transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--sage);
  color: var(--sage);
  margin-left: 1rem;
}
.btn-outline:hover { background: var(--sage); color: white; }

.btn-white {
  background: white;
  color: var(--deep);
}
.btn-white:hover { background: var(--deep); color: white; }

.offering-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}
.offering-link::after { content: '→'; }
.offering-link:hover { gap: 0.9rem; }


/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--clay); }

.nav-links .chevron { font-size: 0.6rem; }

.nav-links .dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 240px;
  padding: 0.5rem 0;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 99;
  padding: 2rem var(--pad-x);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--deep);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.nav-drawer a.drawer-sub {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--mid);
  padding-left: 1.5rem;
  font-style: italic;
}


/* ══════════════════════════════
   HOME PAGE
══════════════════════════════ */

/* Hero */
.hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: var(--space-xl) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at 60% 40%, rgba(168,184,154,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-text h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; max-width: 460px; margin-bottom: 2.5rem; }

.hero-image {
  position: relative;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  object-fit: contain;
  filter: saturate(0.9);
}

/* Pain */
.pain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: var(--space-xl) var(--pad-x);
  background: var(--sage-pale);
}

.pain-text h2 { margin-bottom: 1.25rem; }
.pain-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; filter: saturate(0.85); }

/* Approach */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: var(--space-xl) var(--pad-x);
}

.approach-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: top; filter: saturate(0.85); }
.approach-text h2 { margin-bottom: 1.25rem; }
.approach-text p + p { margin-top: 1rem; }

/* Pillars */
.pillars {
  background: var(--deep);
  padding: var(--space-xl) var(--pad-x);
  text-align: center;
}

.pillars .section-label { color: var(--sage-light); justify-content: center; }
.pillars .section-label::before { background: var(--sage-light); }
.pillars h2 { color: white; margin-bottom: var(--space-lg); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
  text-align: center;
}

.pillar:hover { border-color: var(--sage-light); }

.pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-light);
}

.pillar-icon svg {
  display: block;
}

.pillar h3 { color: white; margin-bottom: 0.75rem; font-size: 1.25rem; }
.pillar p { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.8; }

/* Offerings Preview */
.offerings-preview {
  padding: var(--space-xl) var(--pad-x);
}

.offerings-preview h2 { margin-bottom: var(--space-lg); }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.offering-card {
  background: var(--sage-pale);
  padding: 3rem;
  transition: background 0.3s;
}

.offering-card:hover { background: #e3eade; }
.offering-card h3 { margin-bottom: 0.75rem; }
.offering-card p { margin-bottom: 1.5rem; font-size: 0.95rem; }

/* Testimonials */
.testimonials {
  padding: var(--space-xl) var(--pad-x);
  background: var(--sage-pale);
}

.testimonials h2 { margin-bottom: var(--space-lg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial { border-top: 2px solid var(--sage-light); padding-top: 2rem; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--deep);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* CTA Banner */
.cta-banner {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 5rem var(--pad-x);
}

.cta-banner h2 { color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; }


/* ══════════════════════════════
   ABOUT PAGE
══════════════════════════════ */
.about-page {
  max-width: 760px;
  padding: calc(var(--space-xl) + 2rem) var(--pad-x) var(--space-xl);
}

.about-media {
  margin-bottom: var(--space-lg);
}

.about-media img,
.about-media video {
  width: 100%;
  filter: saturate(0.88);
}

.about-media video {
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--sage-pale);
}

.about-header {
  margin-bottom: var(--space-md);
}

.about-content {
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.about-content p + p { margin-top: 1.25rem; }

.about-quote {
  margin: var(--space-lg) 0;
}

.about-cta {
  margin-top: var(--space-md);
}


/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: stretch;
  padding: calc(var(--space-xl) + 2rem) var(--pad-x) var(--space-xl);
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-intro { font-size: 1.02rem; line-height: 1.85; margin-bottom: 2rem; }

.booking-card {
  background: var(--sage-pale);
  padding: 3rem;
}

.booking-card h3 { margin-bottom: 2rem; }

.tidycal-embed { min-height: 300px; }

.contact-form {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr auto;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.875rem;
  flex: 1;
  margin-top: 2rem;
  background: var(--sage-pale);
  padding: 2rem 2.5rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input[type="hidden"] { display: none; }

.form-field { display: contents; }

.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

label:has(~ textarea) {
  align-self: start;
  padding-top: 0.65rem;
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: 1px;
  padding: 0.6rem 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 140, 110, 0.12);
}

.form-field textarea {
  resize: none;
  align-self: stretch;
  min-height: 6rem;
}

.contact-form .btn-primary {
  grid-column: 2;
  justify-self: end;
  margin-top: 0.25rem;
}


/* ══════════════════════════════
   RESOURCES PAGE
══════════════════════════════ */
.resource-section {
  padding: var(--space-xl) var(--pad-x);
}

.resource-section:nth-child(odd) {
  background: var(--sage-pale);
}

.resource-inner {
  max-width: 760px;
}

.resource-description {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-top: 0.5rem;
  margin-bottom: var(--space-md);
}

.resource-group {
  margin-top: var(--space-md);
}

.resource-group h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--sage-light);
}

.resource-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--sage-light);
}

.resource-list a,
.resource-title {
  font-weight: 500;
  color: var(--deep);
}

.resource-list a {
  text-decoration: none;
  transition: color 0.15s;
}

.resource-list a:hover { color: var(--sage); }

.resource-author {
  color: var(--mid);
  font-size: 0.95rem;
}

.resource-list p {
  margin-top: 0.2rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--mid);
}

.resource-visit {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.resource-visit:hover { color: var(--clay); }


/* ══════════════════════════════
   FAQ ACCORDION
══════════════════════════════ */
.faq-section {
  max-width: 760px;
  margin-top: var(--space-xl);
  padding: 0 var(--pad-x) var(--space-xl);
}

.faq-item {
  border-bottom: 1px solid var(--sage-light);
  padding: 0 1rem;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--sage-light);
}

.faq-item:nth-child(even) {
  background: var(--sage-pale);
  padding: 0 1rem;
}

.faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep);
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--mid);
  line-height: 1.75;
}

.faq-answer p + p { margin-top: 0.5em; }


/* ══════════════════════════════
   SINGLE / LIST PAGES
══════════════════════════════ */
.page-header {
  padding: calc(var(--space-xl) + 1rem) var(--pad-x) var(--space-md);
  max-width: 760px;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  margin-top: 0.75rem;
}

.page-content {
  padding: 0 var(--pad-x) var(--space-xl);
  max-width: 760px;
}

.page-content p + p { margin-top: 1.25rem; }
.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.75rem; }

/* Blog posts */
.post-date {
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: 0.5rem;
}

.post-hero-image {
  padding: 0 var(--pad-x);
  max-width: 760px;
  margin-bottom: var(--space-md);
}

.post-hero-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  filter: saturate(0.88);
}

/* List pages */
.list-header {
  padding: calc(var(--space-xl) + 1rem) var(--pad-x) var(--space-md);
}

.list-items { padding: 0 var(--pad-x) var(--space-xl); }

.list-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--rule);
}

.list-item:nth-child(even) { direction: rtl; }
.list-item:nth-child(even) > * { direction: ltr; }

.list-item-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  filter: saturate(0.85);
}

.list-item-text h2 { margin-bottom: 0.75rem; font-size: 1.8rem; }
.list-item-text h2 a { text-decoration: none; }
.list-item-text h2 a:hover { color: var(--sage); }
.list-item-text p { margin-bottom: 1.5rem; }


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--deep);
  padding: 3rem var(--pad-x);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}


/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .hero,
  .pain,
  .approach,
  .contact-page { grid-template-columns: 1fr; }

  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .list-item { grid-template-columns: 1fr; direction: ltr; }
  .list-item:nth-child(even) { direction: ltr; }

  .hero { min-height: auto; padding: 3rem var(--pad-x); }

  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-nav { margin-top: 0.5rem; }
  .footer-nav a { margin: 0 0.75rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; display: block; text-align: center; }
}
