/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:      #F7F3ED;
  --warm-white: #EDE8DF;
  --tan:        #D4B896;
  --brown:      #8B7355;
  --dark-brown: #3D2B1F;
  --sage:       #7A9E7E;
  --sage-light: #A8C5AC;
  --terra:      #C4714F;
  --text:       #4A3728;
  --text-light: #7A6555;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--dark-brown);
  line-height: 1.3;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 184, 150, 0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--dark-brown);
}

.nav-logo span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}

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

.nav-links a.active {
  border-bottom: 1px solid var(--brown);
  padding-bottom: 2px;
}

/* ── Page wrapper ── */
.page { padding-top: 80px; }

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  display: none;
  width: 100%;
}

.hero-slide.active {
  display: block;
}

/* Video slide */
.hero-video-slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 40px 60px;
}

.video-slide-bg {
  position: absolute;
  inset: 0;
  background-image: url('weeping willow.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(0.85) brightness(1.2);
  transform: scale(1.05);
  z-index: 0;
}

.video-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,243,237,0.3);
  z-index: 1;
}

/* The video + controls container */
.video-player-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.video-player-wrap video {
  width: 100%;
  display: block;
  background: #000;
}

/* Custom controls bar */
.vc-controls {
  background: rgba(30,20,12,0.88);
  padding: 10px 16px 14px;
}

.vc-progress {
  width: 100%;
  height: 4px;
  background: rgba(212,184,150,0.3);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 12px;
  position: relative;
}

.vc-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--tan);
  border-radius: 2px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.vc-btns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vc-btn {
  background: none;
  border: none;
  color: rgba(247,243,237,0.85);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.vc-btn:hover { color: #F7F3ED; transform: scale(1.1); }

.vc-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,184,150,0.5) !important;
  background: rgba(212,184,150,0.1) !important;
}

.vc-time {
  font-size: 0.75rem;
  color: rgba(212,184,150,0.7);
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
  margin-left: auto;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247,243,237,0.15);
  border: 1px solid rgba(247,243,237,0.4);
  color: #F7F3ED;
  font-size: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover { background: rgba(247,243,237,0.3); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247,243,237,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider-dot.active {
  background: rgba(247,243,237,0.9);
  transform: scale(1.3);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* Background image layer — no blur, full clarity */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('clifford photot 1.JPEG');
  background-size: cover;
  background-position: center;
  filter: none;
  pointer-events: none;
  z-index: 0;
}

/* Dark gradient — left side for text legibility, bottom for atmosphere */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(30,20,12,0.55) 0%, rgba(30,20,12,0.2) 45%, rgba(30,20,12,0.0) 100%),
    linear-gradient(to top,   rgba(30,20,12,0.2) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner { max-width: 680px; position: relative; z-index: 3; }

.hero-panel {
  text-align: left;
  margin-left: 8vw;
  margin-right: auto;
  max-width: 480px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-left: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 28px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 48px;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--brown);
  color: var(--cream);
}

.btn-solid {
  background: var(--brown);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--tan);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--tan);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Sections ── */
section { padding: 100px 60px; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 60px;
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--tan);
  margin: 32px 0;
}

/* ── Home: Pillars ── */
.pillars {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('for holistic.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.1) brightness(1.05);
  transform: scale(1.04);
  pointer-events: none;
  z-index: 0;
}

.pillars::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(237, 232, 223, 0.72);
  pointer-events: none;
  z-index: 1;
}

.pillars .section-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 100%;
}

.pillar {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(212,184,150,0.4);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pillar img {
  flex-shrink: 0;
}

.pillar > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pillar:hover {
  border-color: var(--tan);
  box-shadow: 0 8px 32px rgba(139,115,85,0.08);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.pillar p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Home: Quote ── */
.quote-section {
  background: var(--dark-brown);
  text-align: center;
  padding: 100px 60px;
}

.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--tan);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-section cite {
  display: block;
  margin-top: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  font-style: normal;
  font-family: 'Lato', sans-serif;
}

/* ── Home: CTA strip ── */
.cta-strip {
  background: var(--sage);
  text-align: center;
  padding: 80px 60px;
}

.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.cta-strip p {
  color: rgba(247,243,237,0.8);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip .btn {
  border-color: var(--cream);
  color: var(--cream);
}

.cta-strip .btn:hover {
  background: var(--cream);
  color: var(--sage);
}

/* ── Home About section background ── */
.about-home {
  position: relative;
  overflow: hidden;
}

.about-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('weeping willow.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.0) brightness(1.05);
  transform: scale(1.04);
  pointer-events: none;
  z-index: 0;
}

.about-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 243, 237, 0.70);
  pointer-events: none;
  z-index: 1;
}

.about-home .section-inner {
  position: relative;
  z-index: 2;
}

/* ── About ── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--warm-white);
  border: 1px solid var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 12px;
}

.about-photo svg { opacity: 0.4; }

.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 28px; }
.about-text p  { color: var(--text-light); margin-bottom: 20px; }

.values {
  background: var(--warm-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-item { padding: 36px; border-left: 3px solid var(--tan); background: rgba(247,243,237,0.6); }
.value-item h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--dark-brown); }
.value-item p { color: var(--text); font-size: 1rem; line-height: 1.8; }

.credentials { text-align: center; }
.credentials-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.credential { text-align: center; }
.credential-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--brown);
  display: block;
  line-height: 1;
}

.credential p { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 8px; }

/* ── Services ── */
.services-intro { text-align: center; }
.services-intro .section-subtitle { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.service-card {
  background: var(--warm-white);
  padding: 52px 44px;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--tan);
  box-shadow: 0 8px 32px rgba(139,115,85,0.08);
}

.service-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}

.service-card h3 { font-size: 1.7rem; margin-bottom: 20px; }
.service-card p  { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }

.service-includes { list-style: none; margin-bottom: 36px; }
.service-includes li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,184,150,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-includes li::before { content: '—'; color: var(--tan); }

.service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brown);
}

.service-price span {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* Fees table */
.fees-section { background: var(--warm-white); }

.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.fees-table th {
  text-align: left;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 24px;
  border-bottom: 1px solid var(--tan);
}

.fees-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(212,184,150,0.3);
  color: var(--text);
}

.fees-table td:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--brown);
}

.fees-table tr:hover td { background: rgba(212,184,150,0.1); }

.fees-note {
  margin-top: 32px;
  padding: 24px 32px;
  border-left: 2px solid var(--sage);
  background: rgba(122,158,126,0.06);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 24px; }
.contact-info p  { color: var(--text-light); margin-bottom: 40px; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}

.contact-item {}
.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
}

.contact-item-value { color: var(--text); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid rgba(212,184,150,0.5);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Footer ── */
footer {
  background: var(--dark-brown);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--tan);
}

.footer-logo span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 4px;
}

.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,184,150,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--tan); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(212,184,150,0.4);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 20px 32px; }
  section { padding: 80px 32px; }
  footer { padding: 48px 32px; }
  .hero {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 0;
  }
  .hero::before {
    background-position: 42% center;
  }
  .hero-panel {
    margin-left: 0;
    margin-right: auto;
    max-width: 55%;
    width: 55%;
    text-align: left;
    padding: 36px 28px 48px;
    background: linear-gradient(to right, rgba(20,14,8,0.72) 0%, rgba(20,14,8,0.4) 70%, transparent 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: none;
    border-top: none;
  }
  .hero-eyebrow { text-align: left; }
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { aspect-ratio: 4/3; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .credentials-grid { gap: 36px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .about-home-row1 {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 32px !important;
  }
  .about-home-row1 > div:last-child {
    width: 100%;
  }
  .about-home-row1 > div:last-child > div {
    aspect-ratio: 4/5;
    max-height: 480px;
  }
  nav { padding: 18px 24px; }
  .nav-links { gap: 24px; }
  section { padding: 60px 24px; }
  footer { padding: 40px 24px; }
  .hero { padding: 60px 24px; }
}
