/* ============================================================
   HeWhoCares — Main Stylesheet
   Tone: Warm, faith-inspired, editorial/magazine quality
   Colors: Deep navy, sky blue, warm cream, gold accents
   Fonts: Playfair Display (headlines) + DM Sans (body) + Bebas Neue (labels)
   ============================================================ */

:root {
  --navy:      #0d1b2e;
  --navy-mid:  #1a2f4e;
  --blue:      #1a5fa8;
  --blue-light:#3a82d4;
  --cream:     #f8f4ef;
  --warm-white:#fdfaf6;
  --gold:      #c9a84c;
  --gold-light:#e8c97a;
  --text-dark: #1c2b3a;
  --text-mid:  #4a6478;
  --text-light:#8aa3b8;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(13,27,46,.08);
  --shadow-md: 0 8px 40px rgba(13,27,46,.14);
  --shadow-lg: 0 20px 80px rgba(13,27,46,.22);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: 'DM Sans', sans-serif; }
h5 { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
p { line-height: 1.75; color: var(--text-mid); }

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
  color: var(--navy);
}

.section-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 56px;
  color: var(--text-mid);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid var(--blue);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 95, 168, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ===== NAVIGATION ===== */
.hwc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.hwc-nav.scrolled {
  background: rgba(13, 27, 46, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark { flex-shrink: 0; }

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--blue);
  color: white !important;
  border: 2px solid var(--blue);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(26, 95, 168, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

/* Animated wave lines background */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -35deg,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,0.018) 40px,
      rgba(255,255,255,0.018) 41px
    );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,46,0.7) 0%, rgba(13,27,46,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 780px;
  padding-left: 80px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-headline {
  color: white;
  margin-bottom: 28px;
}

.hero-headline .line-1,
.hero-headline .line-2,
.hero-headline .line-3 {
  display: block;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-headline .line-1 { animation-delay: 0.1s; }
.hero-headline .line-2 { animation-delay: 0.2s; }

.hero-headline .line-3 {
  color: var(--gold-light);
  animation-delay: 0.3s;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.5s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeSlideUp 1s ease 1s both;
}

.scroll-indicator span {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.video-section .section-desc {
  margin: 0 auto 56px;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--navy);
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26,95,168,0.3) 0%, transparent 70%);
}

.video-placeholder::after {
  content: '"Thank You For Coming To Work Today"';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 30px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.08);
  text-align: center;
  background: linear-gradient(to top, rgba(13,27,46,0.8), transparent);
}

.play-btn {
  position: relative;
  z-index: 2;
  width: 90px;
  height: 90px;
  transition: var(--transition);
}

.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 90px; height: 90px; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }

.video-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
}

.vc-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

.vc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ===== STORY SECTION ===== */
.story-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text-col h2 { color: var(--navy); margin-bottom: 24px; }
.story-text-col p { margin-bottom: 18px; font-size: 1.05rem; }
.story-text-col p strong { color: var(--text-dark); }

.faith-quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}

.faith-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.story-img-stack {
  position: relative;
  height: 520px;
}

.story-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card.no-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-card.no-img::before {
  content: 'Image Coming Soon';
  color: rgba(255,255,255,0.3);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.card-1 {
  width: 65%;
  height: 340px;
  top: 0;
  right: 0;
  z-index: 2;
}

.card-2 {
  width: 60%;
  height: 280px;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); z-index: 3; }

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,27,46,0.9), transparent);
  color: white;
  font-size: 0.85rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  line-height: 1.4;
}

/* ===== VMF SECTION ===== */
.vmf-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vmf-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(26,95,168,0.25) 0%, transparent 70%);
}

.vmf-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.vmf-card {
  padding: 56px 40px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.vmf-card:hover {
  background: rgba(255,255,255,0.04);
}

.vmf-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold-light);
}

.vmf-icon svg { width: 56px; height: 56px; }

.vmf-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.vmf-card p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.product-item {
  padding: 36px 28px;
  border: 1px solid rgba(13,27,46,0.08);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  background: white;
}

.product-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.product-icon svg { width: 72px; height: 72px; }

.product-item h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.product-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

.products-cta {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}

.products-cta p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--text-mid);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--cream);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-card.featured {
  background: var(--navy);
  transform: scale(1.04);
}

.testimonial-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.t-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--blue);
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial-card.featured .t-quote { color: var(--gold-light); }

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
}

.testimonial-card.featured p { color: rgba(255,255,255,0.85); }

.testimonial-card cite {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-card.featured cite { color: var(--gold-light); }

.impact-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 0;
}

.stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== FAITH SECTION ===== */
.faith-section {
  position: relative;
  padding: 120px 0;
  background: var(--navy-mid);
  overflow: hidden;
  text-align: center;
}

.faith-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(26,95,168,0.3) 0%, transparent 70%),
    repeating-linear-gradient(-45deg, transparent 0px, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
}

.faith-content { position: relative; z-index: 2; }

.faith-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.faith-icon svg { width: 64px; height: 64px; }

.faith-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.faith-ref {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.faith-body {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== CONTACT PREVIEW ===== */
.contact-preview-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  text-align: center;
}

.contact-preview-inner .section-label { color: var(--gold-light); }
.contact-preview-inner h2 { color: white; margin-bottom: 20px; }
.contact-preview-inner p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 40px; font-size: 1.1rem; }

.contact-preview-inner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.contact-preview-inner .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===== FOOTER ===== */
.hwc-footer { background: var(--navy); }

.footer-wave { line-height: 0; background: var(--warm-white); }
.footer-wave svg { display: block; width: 100%; }

.footer-body { padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: white;
}

.footer-logo-tag {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

.footer-mission {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-3px);
}

.footer-links-col h5 {
  color: white;
  margin-bottom: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.footer-links-col ul li { margin-bottom: 10px; }

.footer-links-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-col ul li a:hover { color: white; padding-left: 4px; }

.footer-contact-col h5 {
  color: white;
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.footer-contact-col > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 24px;
}

.footer-cta-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.footer-verse em { color: var(--gold-light); font-style: normal; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-bottom-tag {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  opacity: 0.6;
  font-size: 0.75rem;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 80px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(26,95,168,0.35) 0%, transparent 60%),
    repeating-linear-gradient(-35deg, transparent 0, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px);
}

.contact-hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.contact-hero-text .section-label { color: var(--gold-light); }
.contact-hero-text h1 { color: white; margin-bottom: 20px; }
.contact-hero-text p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.contact-body-section {
  padding: 80px 0 100px;
  background: var(--warm-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col h3 {
  color: var(--navy);
  margin-bottom: 32px;
  font-size: 1.6rem;
}

.contact-reason {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.cr-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.cr-icon svg { width: 24px; height: 24px; }

.contact-reason h5 { color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.contact-reason p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

.contact-verse-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 32px 0;
}

.contact-verse-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: white;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-verse-card cite {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-size: 0.75rem;
}

.contact-social p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 12px; }

/* Contact Form */
.hwc-form { }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.req { color: var(--blue); }

.hwc-input {
  border: 1.5px solid rgba(13,27,46,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
  width: 100%;
}

.hwc-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,95,168,0.12);
}

.hwc-textarea { resize: vertical; min-height: 130px; }

.hwc-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%234a6478' d='M7 7l3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  cursor: pointer;
}

.form-group { margin-bottom: 20px; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.btn-submit svg { width: 18px; height: 18px; }

.form-errors {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.form-errors p {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.form-errors p:last-child { margin-bottom: 0; }

.form-success-msg {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.success-icon svg { width: 80px; height: 80px; }

.form-success-msg h3 { color: var(--navy); margin-bottom: 12px; }
.form-success-msg p { color: var(--text-mid); margin-bottom: 28px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-stack { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .testimonial-card.featured { transform: none; }
  .testimonial-card.featured:hover { transform: translateY(-4px); }
  .vmf-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-content { padding-left: 24px; padding-right: 24px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .impact-stats { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 60px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-content { padding-top: 100px; }
}
