/* ============================================================
   INDEX — homepage-only styles
   ============================================================ */

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 3.5rem 5rem clamp(3.5rem, 9vw, 10rem);
  background: linear-gradient(170deg, #111A10 0%, #1B2D1A 40%, #162530 100%);
  overflow: hidden;
}
.hero-landscape {
  position: absolute;
  inset: 0;
  background-image: url('/images/landscape-river.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 14, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding-top: 5rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.65);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.2s both;
}
.eyebrow-break { display: inline; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: #F7F3EE;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  animation: fadeUp 1s ease 0.4s both;
}
.hero h1 em { font-style: italic; color: rgba(247,243,238,0.82); }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(247,243,238,0.90);
  max-width: 640px;
  padding-right: 10px;
  margin-bottom: 2.75rem;
  line-height: 1.9;
  animation: fadeUp 1s ease 0.6s both;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  animation: fadeUp 1s ease 0.8s both;
}
.btn-primary-dark {
  display: inline-block;
  background: rgba(247,243,238,0.12);
  border: 1px solid rgba(247,243,238,0.3);
  color: #F7F3EE;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  backdrop-filter: blur(8px);
}
.btn-primary-dark:hover {
  background: rgba(247,243,238,0.92);
  border-color: rgba(247,243,238,0.92);
  color: var(--sage);
}

/* FOR */
.for-section { background: var(--linen); padding: 7rem 3rem; }
.for-title { max-width: 530px; }
.for-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 4rem;
  line-height: 1.95;
}
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.for-card {
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 3px;
  border-left: 2px solid var(--walnut-light);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.for-card.visible { opacity: 1; transform: translateY(0); }
.for-card:nth-child(2) { transition-delay: 0.15s; }
.for-card:nth-child(3) { transition-delay: 0.3s; }
.for-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #C9C5BE;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.for-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.for-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; }

/* STORY */
.story-section {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/landscape-mountain.jpg');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
.story-scrim { position: absolute; inset: 0; background: rgba(20, 30, 20, 0.78); }
.story-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  text-align: center;
  padding: 6rem 3rem;
}
.story-label-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.28);
  margin-bottom: 2.25rem;
  display: block;
}
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: #F7F3EE;
  line-height: 1.5;
  margin-bottom: 2.25rem;
}
.story-body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247,243,238,0.52);
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* APPROACH */
.approach-section { background: var(--cream); padding: 7rem 3rem; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 720px;
}
.approach-left p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

/* SPECIALTIES */
.specialties-section { background: var(--cream); padding: 7rem 3rem; }
.spec-header { max-width: 560px; margin-bottom: 4rem; }
.spec-list { max-width: 760px; }
.spec-item {
  border-top: 1px solid rgba(61,36,16,0.12);
  opacity: 0;
  transform: translateY(12px);
}
.spec-item:last-child { border-bottom: 1px solid rgba(61,36,16,0.12); }
.spec-item.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease; }
.spec-item:nth-child(2).visible { transition-delay: 0.07s; }
.spec-item:nth-child(3).visible { transition-delay: 0.14s; }
.spec-item:nth-child(4).visible { transition-delay: 0.21s; }
.spec-item:nth-child(5).visible { transition-delay: 0.28s; }
.spec-item:nth-child(6).visible { transition-delay: 0.35s; }
.spec-item:nth-child(7).visible { transition-delay: 0.42s; }
.spec-item:nth-child(8).visible { transition-delay: 0.49s; }
.spec-item:nth-child(9).visible { transition-delay: 0.56s; }
.spec-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--walnut);
  transition: color 0.2s ease;
}
.spec-q:hover { color: var(--walnut-light); }
.spec-q:hover .spec-icon { color: var(--walnut-light); }
.spec-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--walnut-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.spec-item.open .spec-icon { transform: rotate(45deg); }
.spec-a { height: 0; overflow: hidden; transition: height 0.35s ease; }
.spec-item.open .spec-a { padding-bottom: 1.5rem; }
.spec-a p { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; }

/* EXPECT */
.expect-section { background: var(--linen); padding: 7rem 3rem; }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; margin-top: 4rem; }
.expect-step {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.expect-step.visible { opacity: 1; transform: translateY(0); }
.expect-step:nth-child(2) { transition-delay: 0.15s; }
.expect-step:nth-child(3) { transition-delay: 0.3s; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--walnut-light);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.expect-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 0.75rem;
}
.expect-step p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.88; }

/* PRICING */
.pricing-section { background: var(--cream); padding: 7rem 3rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.price-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.price-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2rem;
  background: var(--linen);
  border-radius: 3px;
}
.price-label-text { font-size: 0.85rem; color: var(--text-mid); }
.price-label-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--walnut);
  margin-bottom: 0.15rem;
}
.price-amt { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--walnut); }
.price-note { font-size: 0.93rem; color: var(--text-light); line-height: 1.88; }
.faq-item { border-bottom: 1px solid rgba(61,36,16,0.1); padding: 1.4rem 0; }
.faq-item:first-child { border-top: 1px solid rgba(61,36,16,0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--walnut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--walnut-light); }
.faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--walnut-light);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.88;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.faq-item.open .faq-a { padding-top: 1rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 3.5rem; }
}
@media (max-width: 768px) {
  .hero { padding: 0 1.5rem 4rem; min-height: 100svh; }
  .hero { padding-bottom: max(4rem, calc(4rem + env(safe-area-inset-bottom))); }
  .hero-content { max-width: 100%; }
  .eyebrow-break { display: block; margin-top: 0.3rem; }
  .for-section, .approach-section, .specialties-section, .expect-section, .pricing-section { padding: 5rem 1.5rem; }
  .for-grid { grid-template-columns: 1fr; gap: 1rem; }
  .story-bg { background-attachment: scroll; }
  .story-inner { padding: 5rem 1.5rem; }
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .expect-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 480px) {
  .for-section, .approach-section, .specialties-section, .expect-section, .pricing-section { padding: 4rem 1.25rem; }
}
