/* ============================================
   Heritage Harbor Law — Home Page Styles
   ============================================ */

/* ---------- Annapolis Photo Strip (body section) ---------- */
.annapolis-photo-strip {
  background: var(--navy-dark);
  padding: 56px 0 0;
  overflow: hidden;
}

.photo-strip-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.85);
}

.photo-strip-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.92) saturate(1.05);
}

/* thin gold dividers between photos */
.photo-strip-item + .photo-strip-item {
  border-left: 2px solid rgba(201,168,76,0.35);
}

.photo-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(15,28,50,0.9) 0%, transparent 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.photo-strip-caption::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .annapolis-photo-strip { padding: 40px 0 0; }
  .photo-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    height: 220px;
  }
}

@media (max-width: 600px) {
  .annapolis-photo-strip { padding: 36px 0 0; }
  .photo-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    height: 160px;
  }
  .photo-strip-caption {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    padding: 1.5rem 0.5rem 0.6rem;
    gap: 0.25rem;
  }
  .photo-strip-caption::before {
    width: 10px;
  }
  .photo-strip-header {
    padding: 0 1rem 1.25rem;
  }
  .photo-strip-header h2 {
    font-size: 1.25rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-wave-bg svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.075rem;
  color: var(--text-mid);
  margin-bottom: 0.625rem;
  max-width: 560px;
}
.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.25rem;
  font-weight: 500;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); }

/* Practice Cards in Hero */
.hero-cards {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 40px 0;
}

.hero-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.hero-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
}
.hero-card-header h3 { font-size: 1.1rem; margin: 0; }
.hero-card ul {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-card ul li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}
.hero-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: 0.875rem;
  transition: gap var(--transition);
}
.hero-card-link svg { width: 14px; height: 14px; }
.hero-card:hover .hero-card-link { gap: 0.625rem; }

/* Hero Two-Col */
.hero-two-col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--navy);
  padding: 36px 0;
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-item .icon-circle { background: rgba(201,168,76,0.15); flex-shrink: 0; }
.feature-item .icon-circle svg { color: var(--gold); }
.feature-item h4 { color: var(--white); margin-bottom: 0.25rem; font-size: 0.95rem; }
.feature-item p  { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin: 0; }

/* ---------- Practice Overview ---------- */
.practice-overview { background: var(--cream); }

.practice-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.practice-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.practice-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-card-icon svg { width: 32px; height: 32px; color: var(--gold); }
.practice-card h3 { font-size: 1.25rem; }
.practice-card p  { font-size: 0.9rem; }
.practice-card ul { display: flex; flex-direction: column; gap: 0.375rem; }
.practice-card ul li {
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition);
}
.practice-card ul li:hover { color: var(--navy); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--light-bg); }

/* ---------- Why Choose Us ---------- */
.why-us .grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.why-us-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-us-feature h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.why-us-feature p  { font-size: 0.875rem; margin: 0; }
.why-us-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-us-image-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.why-us-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.why-us-big-icon { position: relative; z-index: 1; }
.why-us-big-icon svg { width: 100px; height: 100px; color: var(--gold); opacity: 0.8; }
.why-us-stats { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-us-stat h3 { color: var(--gold); font-size: 2rem; margin-bottom: 0.25rem; }
.why-us-stat p  { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }

/* ---------- Responsive Home ---------- */
@media (max-width: 900px) {
  .hero-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 260px; }
  .features-strip-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-us .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero-content { padding: 48px 0 32px; }
  .hero-cards { flex-direction: column; }
}

/* ---------- Case Results ---------- */
.case-results-section { background: var(--white); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.result-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.result-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.result-amount {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.result-type {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.result-card p {
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.result-card-business {
  background: var(--navy);
  border-color: var(--navy);
}
.result-card-business:hover {
  border-color: var(--gold);
}
.result-card-business .result-type { color: var(--gold); }
.result-card-business p { color: rgba(255,255,255,0.65); }

.result-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.result-icon svg { width: 24px; height: 24px; color: var(--gold); }

.results-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr; }
}
