﻿/* Home Page Specific Styles */

.page {
  max-width: 1240px;
  padding: 32px 24px 64px;
}

.hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0;
  margin-bottom: 80px;
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(26, 32, 28, 0.92) 0%, rgba(26, 32, 28, 0.86) 55%, rgba(41, 49, 43, 0.8) 100%),
    url('/photos/20251029_183601.jpg') center center / cover no-repeat;
  animation: fadeIn 0.6s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(179, 106, 60, 0.3), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(154, 165, 142, 0.35), transparent 55%);
  pointer-events: none;
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.hero-text h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
}

.hero-lede {
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  align-items: center;
  max-width: 620px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary,
.hero-actions .btn-tertiary {
  padding: 14px 30px;
  font-size: 15px;
}

.hero-actions a {
  width: 100%;
  text-align: center;
}

.hero-actions .btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.hero-actions .btn-ghost:hover {
  color: rgba(255, 255, 255, 1);
}

.hero-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 22px;
}

.hero-panel {
  background: rgba(249, 246, 240, 0.95);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 165, 142, 0.3);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top right, rgba(179, 106, 60, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  color: var(--colour-text-muted);
}

.hero-panel ul {
  position: relative;
  z-index: 1;
  padding-left: 18px;
  margin: 0;
  color: var(--colour-text-main);
}

.hero-panel li {
  margin-bottom: 8px;
}

.panel-note {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--colour-text-muted);
  border-top: 1px solid rgba(154, 165, 142, 0.25);
  padding-top: 12px;
}

.section-block {
  margin-bottom: 64px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.method-card {
  background: rgba(249, 246, 240, 0.9);
  border: 1px solid rgba(154, 165, 142, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.method-card h3 {
  margin-bottom: 10px;
}

.method-journey .method-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--colour-accent);
  background: rgba(249, 246, 240, 0.95);
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(154, 165, 142, 0.2);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  background: rgba(249, 246, 240, 0.92);
  border: 1px solid rgba(154, 165, 142, 0.25);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(154, 165, 142, 0.2);
  padding-bottom: 10px;
}

.tier-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--colour-text-muted);
  font-weight: 600;
}

.offer-card-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--colour-accent-strong);
  text-align: center;
  margin-top: auto;
}

.offer-card h3 {
  margin-bottom: 4px;
}

.offer-quote {
  font-style: italic;
  color: var(--colour-text-muted);
  margin-bottom: 4px;
}

.offer-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-card-body h4 {
  margin: 0 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--colour-text-muted);
}

.offer-card-body ul {
  margin: 0;
  padding-left: 18px;
}

.offer-note {
  font-size: 12px;
  color: var(--colour-text-muted);
}

.offer-card-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card-actions .btn-primary,
.offer-card-actions .btn-secondary {
  justify-content: center;
}

.info-card {
  background: rgba(249, 246, 240, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(154, 165, 142, 0.2);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(44, 53, 47, 0.95), rgba(26, 32, 28, 0.95));
  color: #f4f1e8;
  margin-bottom: 32px;
}

.cta-panel p {
  color: rgba(244, 241, 232, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4f1e8;
  color: #1e241f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-bubble:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.cta-bubble.is-secondary {
  background: rgba(179, 106, 60, 0.95);
  color: #fff7f0;
}

.cta-bubble.is-secondary:hover {
  background: rgba(139, 74, 40, 0.95);
}

.cta-bubble.is-tertiary {
  background: rgba(154, 165, 142, 0.22);
  color: #f4f1e8;
  border: 1px solid rgba(154, 165, 142, 0.5);
}

.cta-bubble.is-tertiary:hover {
  background: rgba(154, 165, 142, 0.35);
}

.cta-link {
  color: rgba(244, 241, 232, 0.8);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.cta-link:hover {
  color: #f4f1e8;
}

.stagger > * {
  animation: fadeUp 0.6s ease-out both;
}

.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.12s; }
.stagger > *:nth-child(3) { animation-delay: 0.19s; }
.stagger > *:nth-child(4) { animation-delay: 0.26s; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .offer-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-journey .method-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr);
    padding: 40px 24px;
    gap: 40px;
  }

  .method-grid,
  .offer-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-panel {
    padding: 28px;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0;
  }

  .hero-container {
    padding: 32px 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}

