/* Hidden Waterfalls of America — light design system */
:root {
  --hwf-primary: #0369A1;
  --hwf-primary-soft: #0284C7;
  --hwf-primary-deep: #075985;
  --hwf-accent: #10B981;
  --hwf-accent-dark: #059669;
  --hwf-highlight: #38BDF8;
  --hwf-bg: #F8FAFC;
  --hwf-surface: #FFFFFF;
  --hwf-muted-bg: #ECFEFF;
  --hwf-fg: #0C4A6E;
  --hwf-text: #1E293B;
  --hwf-muted: #64748B;
  --hwf-border: rgba(3, 105, 161, 0.14);
  --hwf-radius: 20px;
  --hwf-radius-sm: 12px;
  --hwf-shadow: 0 16px 48px rgba(3, 105, 161, 0.12);
  --hwf-shadow-soft: 0 8px 24px rgba(16, 185, 129, 0.1);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--hwf-bg) !important;
  color: var(--hwf-text) !important;
  font-family: var(--font-primary, 'DM Sans', system-ui, sans-serif);
}

h1, h2, h3, h4, h5, h6,
.light_section_title, .minimal_hero_title, .display-4, .display-5 {
  font-family: var(--font-accent, 'Libre Baskerville', Georgia, serif);
  color: var(--hwf-fg) !important;
}

.text-muted { color: var(--hwf-muted) !important; }
.text-secondary { color: #475569 !important; }

.site_hero_subtitle {
  color: var(--hwf-accent) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* Two-tier header */
.hwf-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: var(--hwf-surface);
  border-bottom: 3px solid var(--hwf-accent);
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.08);
}

.hwf-header-top {
  background: linear-gradient(90deg, var(--hwf-primary-deep), var(--hwf-primary));
  color: #fff;
  font-size: 0.82rem;
  padding: 0.35rem 0;
}

.hwf-header-top a { color: rgba(255,255,255,0.92); text-decoration: none; }
.hwf-header-top a:hover { color: #fff; text-decoration: underline; }

.hwf-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.hwf-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.hwf-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--hwf-accent), var(--hwf-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transform: rotate(-45deg);
  box-shadow: var(--hwf-shadow-soft);
}

.hwf-brand-icon i { transform: rotate(45deg); }

.hwf-brand-text {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--hwf-fg) !important;
  line-height: 1.2;
  max-width: 200px;
}

.hwf-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwf-nav-links a {
  color: var(--hwf-text);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}

.hwf-nav-links a:hover {
  background: var(--hwf-muted-bg);
  color: var(--hwf-primary);
}

.hwf-nav-cta {
  background: var(--hwf-accent) !important;
  color: #fff !important;
}

.hwf-nav-cta:hover {
  background: var(--hwf-accent-dark) !important;
  color: #fff !important;
}

.hwf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.hwf-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--hwf-primary);
  border-radius: 2px;
  transition: transform 0.25s;
}

.hwf-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 74, 110, 0.45);
  z-index: 1060;
}

.hwf-mobile-menu.active { display: block; }

.hwf-mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--hwf-surface);
  padding: 1.5rem;
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.hwf-mobile-panel ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hwf-mobile-panel li { margin-bottom: 0.5rem; }
.hwf-mobile-panel a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--hwf-text);
  text-decoration: none;
  border-radius: var(--hwf-radius-sm);
  font-weight: 500;
}

.hwf-mobile-panel a:hover { background: var(--hwf-muted-bg); }

@media (max-width: 991px) {
  .hwf-nav-links { display: none; }
  .hwf-hamburger { display: flex; }
}

/* Hero */
.hwf-hero {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(900px 500px at 10% 20%, rgba(16, 185, 129, 0.15), transparent 55%),
    radial-gradient(700px 400px at 90% 10%, rgba(3, 105, 161, 0.12), transparent 50%),
    linear-gradient(180deg, var(--hwf-muted-bg) 0%, var(--hwf-bg) 100%);
  overflow: hidden;
}

.hwf-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath fill='%23F8FAFC' d='M0,30 C300,60 600,0 900,30 C1050,45 1150,40 1200,30 L1200,60 L0,60 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.hwf-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 991px) {
  .hwf-hero-grid { grid-template-columns: 1fr; }
}

.hwf-hero-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.hwf-hero-img-main { grid-column: 1 / -1; }
.hwf-hero-img { border-radius: var(--hwf-radius); width: 100%; height: auto; object-fit: cover; box-shadow: var(--hwf-shadow); }

.btn-hwf-primary,
.btn-primary,
.btn-leadgen-submit {
  background: linear-gradient(135deg, var(--hwf-primary), var(--hwf-primary-soft)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--hwf-radius-sm) !important;
  padding: 0.75rem 1.75rem !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hwf-primary:hover,
.btn-primary:hover,
.btn-leadgen-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(3, 105, 161, 0.35);
}

.btn-hwf-outline {
  border: 2px solid var(--hwf-accent) !important;
  color: var(--hwf-accent-dark) !important;
  background: transparent !important;
  border-radius: var(--hwf-radius-sm) !important;
  font-weight: 600;
  padding: 0.75rem 1.75rem !important;
}

.btn-hwf-outline:hover {
  background: rgba(16, 185, 129, 0.08) !important;
}

/* Cards */
.usp-card, .about-feature-card, .service-card, .blog-card,
.leadgen-form-card, .contact-form-wrapper, .contact-info-wrapper .info-card,
.hwf-team-card, .legal-content, .blog-article {
  background: var(--hwf-surface) !important;
  border: 2px solid var(--hwf-border) !important;
  border-radius: var(--hwf-radius) !important;
  box-shadow: var(--hwf-shadow-soft);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover, .blog-card:hover, .usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hwf-shadow);
}

.usp-card-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--hwf-primary), var(--hwf-accent));
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--hwf-muted-bg);
  color: var(--hwf-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-cta, .blog-card-link {
  font-weight: 600;
  text-decoration: none;
}

.service-cta:hover, .blog-card-link:hover {
  color: var(--hwf-accent-dark) !important;
  text-decoration: underline;
}

ul.contact-info-list, ul.contact-info-list a {
    color: #000 !important;
}

.hwf-team-card {
  text-align: center;
  padding: 1.5rem;
}

.hwf-team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--hwf-accent);
}

.about-image, .feature-image, .hwf-about-img {
  border-radius: var(--hwf-radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Leadgen & contact */
.leadgen-section-secondary {
  background: linear-gradient(180deg, var(--hwf-bg), var(--hwf-muted-bg)) !important;
}

.leadgen-form-card { padding: 2rem; }

.form-control, .form-select {
  border: 2px solid var(--hwf-border) !important;
  border-radius: var(--hwf-radius-sm) !important;
}

.form-control:focus, .form-select:focus {
  border-color: var(--hwf-primary) !important;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15) !important;
}

/* Disclaimer & footer */
.site10-important-info {
  background: var(--hwf-muted-bg) !important;
  border-top: 3px solid var(--hwf-accent);
}

.site10-important-info-card {
  background: var(--hwf-surface);
  border: 2px solid var(--hwf-border);
  border-radius: var(--hwf-radius);
  padding: 2rem;
}

.site10-important-info-title {
  color: var(--hwf-fg);
  font-family: var(--font-accent);
}

.disclaimer-text p { margin-bottom: 1rem; color: var(--hwf-muted); font-size: 0.92rem; line-height: 1.65; }

.hwf-footer {
  background: var(--hwf-fg);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 0;
}

.hwf-footer h3, .hwf-footer h4 { color: #fff !important; font-size: 1rem; }

.hwf-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.hwf-footer a:hover { color: var(--hwf-accent); }

.hwf-footer-links { list-style: none; padding: 0; margin: 0; }
.hwf-footer-links li { margin-bottom: 0.5rem; }

.hwf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.contact-info-list { list-style: none; padding: 0; }
.contact-item { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; align-items: center; }
.contact-item i { color: var(--hwf-accent); margin-top: 0.2rem; }

.map-embed-parks iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--hwf-radius);
}

/* Article pages */
.article-container { max-width: 820px; }
.blog-article { padding: 2.5rem; }
.blog-article h1 { margin-bottom: 1.5rem; }
.blog-article h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.blog-article h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.blog-article p, .blog-article li { line-height: 1.75; color: var(--hwf-text); }
.blog-article ul { margin-bottom: 1.25rem; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--hwf-muted);
  margin-bottom: 0.5rem;
}

.legal-page-wrap .legal-content { padding: 2.5rem; max-width: 900px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal-content p, .legal-content li { line-height: 1.7; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
