/* ============================================================
   index.css — Home page only
   ============================================================ */

.section { padding: 96px 0; }
@media (min-width: 640px) { .section { padding: 128px 0; } }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* HERO */
.hero { padding: 48px 0 80px; }
@media (min-width: 640px) { .hero { padding: 48px 0 112px; } }
@media (min-width: 1024px) { .hero { padding: 48px 0 144px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 6fr 6fr; gap: 64px; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 24px 0 0;
  font-weight: 400;
}
.hero-lede {
  margin: 32px 0 0;
  font-size: 18px;
  color: var(--ink-2);
  max-width: 460px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 460px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin: 0;
  font-weight: 400;
}

.hero-image {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-image > img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(251,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-image-card .ovl { font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.hero-image-card .name { font-family: 'Playfair Display', serif; font-size: 20px; margin: 4px 0 0; font-weight: 400; }
.hero-image-card a {
  width: 44px; height: 44px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.4s ease;
}
.hero-image-card a:hover { background: var(--gold); }
.hero-image-card a svg { width: 16px; height: 16px; }

/* FEATURED GRID */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .featured-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* BENTO */
.bento-section { background: rgba(242,239,234,0.5); }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: 7fr 5fr;
    grid-auto-rows: minmax(260px, auto);
  }
  .bento-image { grid-row: 1 / span 2; }
}
.bento-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1024px) { .bento-image { aspect-ratio: auto; height: 100%; } }
.bento-image img { width: 100%; height: 100%; object-fit: cover; }

.bento-card-dark, .bento-card-light {
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 1024px) { .bento-card-dark, .bento-card-light { padding: 48px; } }
.bento-card-dark {
  background: var(--ink); color: #fff;
}
.bento-card-dark h3, .bento-card-light h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  margin: 20px 0 0;
  line-height: 1.15;
  font-weight: 400;
}
.bento-card-dark p:not(.overline) { color: rgba(255,255,255,0.6); margin: 24px 0 32px; line-height: 1.7; }
.bento-card-light { background: #fff; border: 1px solid var(--line); }
.bento-card-light p:not(.overline) { color: var(--ink-2); margin: 24px 0 32px; line-height: 1.7; }

/* TESTIMONIAL */
.testimonial-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 32px 0 40px;
  font-weight: 400;
}

/* CTA BAND */
.cta-band { border-top: 1px solid var(--line); padding: 80px 0; }
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
