/* home.css — v2 matches live site */

/* === HERO — dark full-width matching live site === */
.zh-hero {
  background: var(--bg-dark);
  color: #ffffff;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  /* offset the 4rem header height so hero fills viewport from top */
  margin-top: -4rem;
  padding-top: 4rem;
}
.zh-hero-copy {
  padding: 7rem 3rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.zh-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.85rem;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--accent-gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  width: fit-content;
}
.zh-hero-tag span {
  width: 0.4rem; height: 0.4rem;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}
.zh-hero-title {
  font-family: 'Cardo', serif;
  font-size: clamp(2.75rem, 4.5vw, 5.5rem);
  line-height: 1;
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-weight: 400;
}
.zh-hero-title .zh-accent {
  font-style: italic;
  color: var(--accent-gold);
  display: block;
}
.zh-hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.zh-hero-text {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 30rem;
}
.zh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.zh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.zh-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.zh-trust-item svg { color: var(--accent-gold); width: 1rem; height: 1rem; }

/* Hero right — photo panel */
.zh-hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.zh-hero-visual img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}
/* No gradient needed — Zach's photo has transparent/dark bg already */
.zh-hero-visual::after { display: none; }
.zh-hero-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.5rem;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.zh-hero-badge-stars { color: var(--accent-gold); font-size: 0.9rem; }
.zh-hero-badge-text { font-size: 0.68rem; font-weight: 700; color: #fff; line-height: 1.4; }
.zh-hero-badge-text span { color: rgba(255,255,255,0.55); font-weight: 400; }

/* === ABOUT STRIP === */
.zh-about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zh-about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.65rem;
  height: 34rem;
}
.zh-about-visual-grid .img-frame {
  border-radius: 0.4rem;
  height: 100%;
}
.zh-about-visual-grid .span2 { grid-row: span 2; }
.zh-reasons-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.zh-reasons-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}
.zh-reasons-list li::before {
  content: '';
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === SERVICE / TOUR CARDS === */
.zh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.5rem;
}
.zh-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zh-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow);
}
.zh-service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e0d8;
}
.zh-service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.zh-service-card:hover .zh-service-card-img img { transform: scale(1.04); }
.zh-service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.zh-service-icon { display: none; } /* hidden — image replaces icon */
.zh-service-title {
  font-family: 'Cardo', serif;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  color: var(--text);
  line-height: 1.2;
}
.zh-service-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}
.zh-service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.zh-service-duration {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.zh-service-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.zh-service-link:hover { text-decoration: underline; }

/* === REVIEWS SLIDER === */
.zh-reviews-section { background: var(--bg-section); }
.zh-reviews-slider { position: relative; overflow: hidden; }
.zh-reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.zh-review-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin-right: 1.5rem;
  background: var(--surface);
  border-radius: 0.5rem;
  padding: 1.75rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid var(--border);
}
.zh-review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.85rem; letter-spacing: 0.05em; }
.zh-review-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.zh-review-author { display: flex; align-items: center; gap: 0.75rem; }
.zh-review-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0; overflow: hidden;
}
.zh-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.zh-review-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.zh-review-source { font-size: 0.72rem; color: var(--muted); }

.zh-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}
.zh-slider-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
  background: var(--surface);
}
.zh-slider-btn:hover { border-color: var(--accent); color: var(--accent); }
.zh-slider-btn svg { width: 1rem; height: 1rem; }
.zh-slider-dots { display: flex; gap: 0.45rem; }
.zh-slider-dot {
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.zh-slider-dot.active { background: var(--accent); transform: scale(1.35); }

/* === MAP === */
.zh-map-wrapper {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
  aspect-ratio: 16/9;
}
.zh-map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* === Responsive === */
@media (max-width: 1024px) {
  .zh-hero { grid-template-columns: 1fr; min-height: auto; }
  .zh-hero-copy { padding: 6rem 2rem 3rem; }
  .zh-hero-visual { min-height: 380px; }
  .zh-services-grid { grid-template-columns: 1fr 1fr; }
  .zh-about-strip { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .zh-hero-copy { padding: 5.5rem 1.25rem 2.5rem; }
  .zh-services-grid { grid-template-columns: 1fr; }
  .zh-review-card { flex: 0 0 calc(100% - 1rem); }
  .zh-about-visual-grid { height: 20rem; }
}
