/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300; line-height: 1.05;
  color: var(--ink); margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-heading em {
  font-style: italic; color: var(--accent);
}
.hero-body {
  font-size: 15px; line-height: 1.8; color: var(--ink-soft);
  max-width: 420px; margin-bottom: 44px;
}
/* Hero actions — ghost btn sits inline, no underline weirdness */
.hero-actions {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
/* Remove the ghost-style from hero's secondary link — plain inline link */
.hero-actions .hero-link {
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--ink-soft); text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
}
.hero-actions .hero-link:hover { color: var(--ink); border-color: var(--ink); }

.hero-visual {
  position: relative; overflow: hidden;
  align-self: stretch;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 72%;
  display: block;
  transition: transform 8s var(--ease);
}
.hero-visual:hover img { transform: scale(1.04); }
/* ── LIFESTYLE FEATURE ── */
.lifestyle-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lifestyle-feature.reverse { direction: rtl; }
.lifestyle-feature.reverse > * { direction: ltr; }

.lifestyle-img {
  position: relative; overflow: hidden;
  /* stretch to exactly match the adjacent text column height */
  align-self: stretch;
}
.lifestyle-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 6s var(--ease);
}
.lifestyle-img:hover img { transform: scale(1.03); }

.lifestyle-content {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--linen);
}
.lifestyle-feature:nth-child(even) .lifestyle-content {
  background: var(--stone);
}
.lifestyle-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.lifestyle-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 20px;
}
.lifestyle-content h2 em { font-style: italic; color: var(--accent); }
.lifestyle-content p {
  font-size: 14.5px; line-height: 1.8; color: var(--ink-soft);
  max-width: 400px; margin-bottom: 14px;
}
/* btn inside lifestyle content — fit width, not full stretch */
.lifestyle-content .btn { margin-top: 24px; align-self: flex-start; }

/* ── APPROACH ── */
.approach { background: var(--stone); }
.approach-inner {
  max-width: var(--max); margin: 0 auto;
}
.approach-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  margin-bottom: 64px;
}
.approach-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15;
}
.approach-head h2 em { font-style: italic; color: var(--accent); }
.approach-head p {
  font-size: 14.5px; line-height: 1.8; color: var(--ink-soft);
}
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--stone-mid);
  border: 1px solid var(--stone-mid);
}
.approach-card {
  background: var(--stone);
  padding: 44px 40px;
  transition: background 0.2s;
}
.approach-card:hover { background: var(--linen); }
.approach-roman {
  font-family: var(--ff-display);
  font-size: 56px; font-weight: 300; line-height: 1;
  color: var(--stone-mid); margin-bottom: 20px;
  user-select: none; transition: color 0.3s;
}
.approach-card:hover .approach-roman { color: var(--accent-light); }
.approach-card h3 {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 400; font-style: italic;
  color: var(--ink); margin-bottom: 12px;
}
.approach-card p {
  font-size: 13.5px; line-height: 1.75; color: var(--ink-soft);
}

/* ── SERVICES ── */
.services { background: var(--linen); }
.services-head { margin-bottom: 56px; }
.services-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.15; margin-bottom: 14px;
}
.services-head h2 em { font-style: italic; color: var(--accent); }
.services-head p {
  font-size: 14.5px; line-height: 1.75; color: var(--ink-soft);
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--stone);
  padding: 36px 30px;
  border-top: 2px solid var(--accent-light);
  transition: border-color 0.2s;
}
.service-card:hover { border-top-color: var(--accent); }

/* Custom SVG icon slot — 40×40 inline icon */
.service-icon-wrap {
  width: 44px; height: 44px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg { width: 44px; height: 44px; }

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 19px; font-weight: 400;
  color: var(--ink); margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px; line-height: 1.75; color: var(--ink-soft);
}

/* ── AUDIENCE ── */
.audience { background: var(--ink); }
.audience h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 300; font-style: italic;
  color: white; text-align: center; margin-bottom: 48px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
}
.audience-card {
  background: var(--ink); padding: 32px 28px;
  transition: background 0.2s;
}
.audience-card:hover { background: #252525; }
.audience-card h4 {
  font-family: var(--ff-display);
  font-size: 18px; font-weight: 400; font-style: italic;
  color: white; margin-bottom: 8px;
}
.audience-card p {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.45);
}

/* ── REVIEWS ── */
.reviews { background: var(--linen); overflow: hidden; }
.reviews-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px;
}
.reviews-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.reviews-head h2 {
  font-family: var(--ff-display); font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 300; line-height: 1.15;
}
.reviews-head h2 em { font-style: italic; color: var(--accent); }
.reviews-controls { display: flex; gap: 10px; flex: 0 0 auto; }
.reviews-arrow {
  width: 46px; height: 46px; border: 1px solid var(--stone-mid);
  border-radius: 50%; background: transparent; color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font: 400 20px/1 var(--ff-body); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.reviews-arrow:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: white; }
.reviews-arrow:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.reviews-arrow:disabled { opacity: 0.3; cursor: default; }
.reviews-track {
  --review-gap: 20px;
  display: flex; gap: var(--review-gap); overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; overscroll-behavior-inline: contain;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc((100% - (var(--review-gap) * 2)) / 3);
  min-width: 0; min-height: 300px; padding: 36px 32px;
  background: var(--stone); border-top: 2px solid var(--accent-light);
  display: flex; flex-direction: column; scroll-snap-align: start;
}
.review-stars {
  color: var(--accent); font-size: 13px; letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.review-card blockquote {
  font-family: var(--ff-display); font-size: 19px; font-style: italic;
  font-weight: 300; line-height: 1.55; color: var(--ink);
  margin: 0 0 32px;
}
.review-card footer { margin-top: auto; display: flex; flex-direction: column; gap: 5px; }
.review-card footer strong {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
}
.review-card footer span { font-size: 12px; line-height: 1.5; color: var(--ink-soft); }

/* ── LIFESTYLE GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--stone-mid);
}
.gallery-strip-img {
  overflow: hidden; position: relative;
}
.gallery-strip-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 5s var(--ease);
  filter: brightness(0.92);
}
.gallery-strip-img:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* ── HOME CTA ── */
.home-cta {
  background: var(--stone);
  padding: 112px 40px;
  text-align: center;
}
.home-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 62px);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 18px;
}
.home-cta h2 em { font-style: italic; color: var(--accent); }
.home-cta p {
  font-size: 15px; color: var(--ink-soft); max-width: 460px;
  margin: 0 auto 40px; line-height: 1.8;
}
.home-cta-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ── RESPONSIVE HOME ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: auto; }
  .hero-visual { height: auto; min-height: 0; }
  .hero-content { padding: 64px 40px; }
  .lifestyle-feature { grid-template-columns: 1fr; direction: ltr !important; }
  .lifestyle-feature.reverse > * { direction: ltr; }
  .lifestyle-img { height: auto; min-height: 0; }
  .lifestyle-img img { height: auto; object-fit: initial; }
  .lifestyle-content { padding: 56px 40px; }
  .approach-head { grid-template-columns: 1fr; gap: 20px; }
  .approach-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex-basis: calc((100% - var(--review-gap)) / 2); }
  .gallery-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-strip-img { height: auto; }
}
@media (max-width: 600px) {
  .hero-content { padding: 48px 20px; }
  .lifestyle-content { padding: 48px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .reviews-head { align-items: flex-end; margin-bottom: 32px; }
  .reviews-head h2 br { display: none; }
  .reviews-head h2 em::before { content: " "; }
  .reviews-controls { gap: 8px; }
  .reviews-arrow { width: 42px; height: 42px; }
  .reviews-track { --review-gap: 14px; }
  .review-card { flex-basis: 100%; min-height: 320px; padding: 32px 26px; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .lifestyle-feature .lifestyle-content { order: 1; }
  .lifestyle-feature .lifestyle-img { order: 2; }
  .gallery-strip-img { height: auto; }
  .home-cta-btns { flex-direction: column; align-items: center; }
  .home-cta-btns .btn { width: min(100%, 280px); }
}
