/* ==========================================================================
   home.css — styles that belong only to the home page (index.html).
   When more pages are added, give each its own file (about.css, prices.css…)
   and keep shared things in tokens / base / layout / components.
   ========================================================================== */

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 82vh, 760px);
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
/* Darkens the photo just enough for white text, keeping the glow visible */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(27, 38, 56, 0.82) 0%, rgba(27, 38, 56, 0.55) 48%, rgba(27, 38, 56, 0.10) 100%),
    linear-gradient(0deg, rgba(27, 38, 56, 0.55) 0%, rgba(27, 38, 56, 0) 45%);
}
@media (max-width: 719px) {
  .hero::before {
    background: linear-gradient(0deg, rgba(27, 38, 56, 0.88) 0%, rgba(27, 38, 56, 0.6) 55%, rgba(27, 38, 56, 0.35) 100%);
  }
}
.hero__content { padding-block: var(--space-8); max-width: 44rem; }
.hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }
.hero__lede { font-size: var(--text-lg); max-width: 34rem; margin-bottom: var(--space-6); color: #f4efe2; }
.hero .eyebrow { color: var(--color-amber); }
.hero__meta { margin: var(--space-5) 0 0; font-size: var(--text-sm); color: #f4efe2; }

/* --- Trust strip under the hero --- */
.trust {
  padding-block: var(--space-6);
  background: var(--color-white);
  border-bottom: 1px solid var(--border);
}

/* --- Massage & prices: gift-voucher strip --- */
.services__callout { margin-top: var(--space-6); }

/* --- Massage & prices: price table beside the gift-voucher callout --- */
.prices { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-5); margin-top: var(--space-6); }
@media (min-width: 860px) { .prices { grid-template-columns: 1.15fr 0.85fr; } }
@media (max-width: 400px) { .prices__panel { padding: var(--space-4) var(--space-3); } }
.prices__panel h3 { margin-bottom: var(--space-1); }
.prices__note { margin-bottom: var(--space-3); color: var(--text-muted); font-size: var(--text-sm); }

/* --- Full-width sunset band with the mission statement --- */
.band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: var(--space-9);
  text-align: center;
  color: var(--color-white);
  background: var(--color-ink);
}
.band__image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(27, 38, 56, 0.72) 0%, rgba(27, 38, 56, 0.50) 100%); }
.band__quote {
  margin: 0 auto;
  max-width: 38rem;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: 1.45;
  color: var(--color-white);
  text-shadow: 0 1px 14px rgba(27, 38, 56, 0.55);
}
.band__quote strong { color: var(--color-amber); font-weight: 700; }
.band__source { margin: var(--space-4) 0 0; font-size: var(--text-sm); letter-spacing: 0.12em; text-transform: uppercase; color: #f4efe2; }

/* --- About --- */
.about__portrait { max-width: 420px; margin-inline: auto; }
@media (min-width: 860px) { .about__portrait { max-width: none; } }

/* Interests + charity walks */
.outdoors { margin-top: var(--space-8); }
.outdoors__photos { display: grid; gap: var(--space-4); }
.outdoors h3 { margin-bottom: var(--space-3); }

.training { margin-top: var(--space-8); }
.training h3 { margin-bottom: var(--space-3); }
.training li strong { color: var(--color-ink); }
.training .small { display: block; font-size: var(--text-sm); color: var(--text-muted); }

/* --- Visit / contact --- */
.visit__grid { display: grid; gap: var(--space-5); }
@media (min-width: 860px) {
  /* Left: contact + photo, then "Good to know". Right: map/address and hours. */
  .visit__grid { grid-template-columns: 1.1fr 0.9fr; grid-template-rows: auto 1fr; align-items: start; }
  .visit__main { grid-column: 1; grid-row: 1; }
  .visit__good { grid-column: 1; grid-row: 2; }
  .visit__info { grid-column: 2; grid-row: 1 / span 2; }
}
.visit__photo { margin-top: var(--space-5); }
.contact-actions { margin-top: var(--space-5); }
.panel__action { margin-top: var(--space-4); }
.contact-line { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700; }
.contact-line a { color: var(--color-ink); text-decoration-color: var(--color-amber); }
.contact-line a:hover { color: var(--color-blue-deep); }

/* --- Reviews: link to the Google listing --- */
.reviews__more { margin: var(--space-5) 0 0; text-align: center; }
