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

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 60%, #4A6070 100%);
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Real mountain sunrise photo — slow continuous zoom keeps it "moving" */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.08);
  animation: hero-photo-kenburns 24s ease-in-out infinite alternate;
}

/* Gradient overlay so hero text stays readable over the photo */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(30,36,44,0.88) 0%, rgba(42,51,64,0.72) 45%, rgba(74,96,112,0.35) 100%);
  z-index: 1;
}

/* Subtle geometric texture, sits above everything at low opacity */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@keyframes hero-photo-kenburns {
  from { transform: scale(1.08) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo { animation: none; transform: scale(1.08); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-content > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

/* Hero logo ring */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(232,149,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 16px rgba(232,149,26,0.05), 0 0 0 40px rgba(232,149,26,0.025);
}
.hero-logo-ring img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  padding: 20px;
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* === MISSION STRIP === */
.mission-strip {
  background: var(--off-white);
  padding: 56px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mission-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.mission-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.mission-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--slate-dark);
}
.mission-item p {
  font-size: 0.86rem;
  line-height: 1.55;
}

/* === ABOUT === */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.about-text h2 { margin-bottom: 8px; }
.founder-quote {
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--slate-dark);
  line-height: 1.7;
}
.founder-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.04em;
}
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-accent-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  min-width: 0;
}
.about-accent-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.about-accent-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about-accent-text {
  flex: 1;
  min-width: 0;
}
.about-accent-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--slate-dark);
  margin-bottom: 4px;
}
.about-accent-card p { font-size: 0.88rem; }

/* === ABOUT PHOTO === */
.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(42,51,64,0.08);
  margin-bottom: 20px;
  height: 260px;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(42,51,64,0.16) 0%, rgba(232,149,26,0.04) 55%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03) brightness(1.02);
}

/* === CULTURE BANNER === */
.culture-banner {
  position: relative;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  padding: 72px 0;
}
.culture-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.culture-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
}
.pillar:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,149,26,0.5);
}
.pillar-icon { color: var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.pillar strong { color: var(--white); font-size: 0.88rem; font-weight: 600; }

/* === SERVICES PREVIEW === */
.services-preview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card { background: var(--white); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h4 { margin-bottom: 10px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--slate-dark); }

/* === CTA STRIP === */
.cta-strip {
  background: var(--slate);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-ring { width: 240px; height: 240px; }
  .hero-logo-ring img { width: 180px; height: 180px; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .culture-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 0 80px; }
  .hero-stats { gap: 16px; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .culture-pillars { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
}
@media (max-width: 420px) {
  .culture-pillars { grid-template-columns: 1fr; }
}
