/* Photography-led homepage; image colors stay natural in both themes. */
.home-hero { display: grid; grid-template-columns: .9fr 1.2fr; min-height: min(780px, calc(100svh - 70px)); background: var(--bg-base); }
.home-hero-copy { padding: clamp(3rem, 6vw, 7rem) clamp(1.5rem, 5vw, 6rem); align-self: center; }
.home-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 5.8vw, 6.6rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; margin: 1.5rem 0 2rem; }
.home-hero h1 em, .home-journeys h2 em { color: var(--gold); font-weight: 400; }
.home-hero-copy > p { max-width: 390px; font-size: .85rem; line-height: 1.9; color: var(--text-secondary); }
.home-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
.home-actions .btn-gold { padding: 1rem 1.5rem; }
.home-actions span { margin-left: .5rem; }
.home-text-link { display: inline-flex; align-items: center; gap: .75rem; padding: .65rem 0; border: 0; border-bottom: 1px solid var(--gold-border); background: transparent; color: var(--text-primary); font: inherit; font-size: .75rem; cursor: pointer; }
.home-text-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.home-text-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.home-hero-note { margin-top: 3rem; font-size: .6rem; line-height: 1.8; color: var(--text-secondary); letter-spacing: .07em; }
.home-hero-note span { color: var(--gold); margin: 0 .3rem; }
.home-hero-photo { position: relative; margin: 0; min-width: 0; min-height: 580px; overflow: hidden; }
.home-hero-photo img { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: 58% 60%; }
.home-hero-photo figcaption { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; gap: 1rem; padding: 3rem 2rem 1.5rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.75)); font-size: .6rem; text-transform: uppercase; letter-spacing: .18em; }
.home-journeys { padding: clamp(3.5rem, 7vw, 7rem) clamp(1.5rem, 6vw, 7rem); max-width: 1600px; margin: auto; }
.home-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.home-section-heading > p { max-width: 340px; font-size: .85rem; }
.home-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.home-photo-frame { height: clamp(260px, 29vw, 440px); overflow: hidden; background: var(--bg-surface); margin-bottom: 1.5rem; }
.home-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.home-photo-card .eyebrow { font-size: .55rem; letter-spacing: .13em; margin-bottom: .5rem; }
.home-photo-card h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 2.4vw, 2.6rem); font-weight: 400; }
@media (max-width: 1000px) {
  .home-hero { grid-template-columns: 1fr 1fr; }
  .home-hero-copy { padding: 3rem 1.5rem; }
  .home-hero-photo { min-height: 560px; }
  .home-photo-grid { gap: 1rem; }
}
@media (max-width: 700px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
  .home-hero-note { margin-top: 2rem; }
  .home-hero-photo { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .home-hero-photo img { object-position: center; }
  .home-section-heading { display: block; }
  .home-section-heading > p { margin-top: 1.5rem; }
  .home-photo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-photo-frame { height: auto; aspect-ratio: 4 / 3; }
  .home-photo-card:first-child .home-photo-frame { aspect-ratio: 1 / 1; }
}
