/* public/css/for-wedding-venues.css
 * Owns: /for-wedding-venues vertical landing page (fwv-* namespace).
 * Does NOT own: global nav, footer, mobile-cta-bar (theme.css).
 */

:root {
  --fwv-peach: #FEF0E5;
  --fwv-peach-border: #F5D9C4;
  --fwv-max: 1120px;
}

/* HERO */
.fwv-hero {
  background: var(--pearl) center/cover no-repeat;
  padding: 148px 48px 96px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fwv-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(250,246,240,0.82); /* pearl wash — keeps Direction G palette, mutes image */
  pointer-events: none;
}
.fwv-hero-inner { max-width: var(--fwv-max); margin: 0 auto; position: relative; z-index: 1; }
.fwv-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.fwv-hero-h1 { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: 400; line-height: 1.1; color: var(--charcoal); margin-bottom: 24px; max-width: 760px; }
.fwv-gold { color: var(--gold); font-weight: 600; }
.fwv-hero-sub { font-size: 18px; line-height: 1.7; color: var(--charcoal-soft); max-width: 600px; margin-bottom: 40px; }
.fwv-hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* BUTTONS */
.fwv-btn-primary {
  display: inline-flex; align-items: center; height: 56px; padding: 0 24px;
  background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 14px;
  font-weight: 600; letter-spacing: 0.04em; text-decoration: none; border: none;
  cursor: pointer; transition: background 0.15s ease, transform 0.12s ease;
}
.fwv-btn-primary:hover { background: #b8924f; transform: translateY(-1px); }
.fwv-btn-primary--lg { height: 60px; padding: 0 32px; font-size: 15px; }
.fwv-btn-secondary {
  display: inline-flex; align-items: center; height: 56px; padding: 0 24px;
  background: transparent; color: var(--gold); font-family: var(--font-body); font-size: 14px;
  font-weight: 500; letter-spacing: 0.04em; text-decoration: none; border: 1px solid var(--gold);
  transition: background 0.15s ease;
}
.fwv-btn-secondary:hover { background: var(--gold-dim); }

/* PROOF BAR */
.fwv-proof-bar { background: var(--pearl); border-bottom: 1px solid var(--border); padding: 48px 48px 20px; }
.fwv-proof-inner { max-width: var(--fwv-max); margin: 0 auto; display: flex; align-items: center; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
.fwv-proof-stat { text-align: center; flex: 1; min-width: 160px; }
.fwv-proof-num { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 48px); font-weight: 600; color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.fwv-proof-label { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--charcoal-soft); text-transform: uppercase; }
.fwv-proof-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }
.fwv-proof-footnote { max-width: var(--fwv-max); margin: 20px auto 0; font-size: 11px; color: var(--charcoal-soft); opacity: 0.6; text-align: center; padding-bottom: 32px; }

/* REAL VENUES GRID */
.fwv-venues { padding: 96px 0; background: var(--ivory); border-bottom: 1px solid var(--border); }
.fwv-venues-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 8px;
  max-width: 720px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.fwv-venues-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 48px 0 0;
}
.fwv-venue-card {
  background: var(--pearl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.fwv-venue-card:hover { border-color: var(--gold); }
.fwv-venue-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.fwv-venue-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.fwv-venue-card:hover .fwv-venue-img { transform: scale(1.03); }
.fwv-venue-body { padding: 20px 18px; }
.fwv-venue-name { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; line-height: 1.25; }
.fwv-venue-location { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.fwv-venue-fact { font-size: 13px; line-height: 1.55; color: var(--charcoal-soft); }

/* VENUES STATS STRIP */
.fwv-venues-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--pearl);
  border: 1px solid var(--border);
  padding: 36px 40px;
  margin-top: 48px;
}
.fwv-venues-stat { text-align: center; flex: 1; min-width: 140px; }
.fwv-venues-stat-num { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 32px); font-weight: 600; color: var(--gold); line-height: 1.1; margin-bottom: 6px; }
.fwv-venues-stat-label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--charcoal-soft); text-transform: uppercase; max-width: 160px; margin: 0 auto; line-height: 1.4; }
.fwv-venues-stat-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
.fwv-venues-caption { font-size: 12px; color: var(--charcoal-soft); opacity: 0.65; text-align: center; margin-top: 20px; padding: 0 24px; line-height: 1.5; }

/* SHARED SECTION */
.fwv-section-inner { max-width: var(--fwv-max); margin: 0 auto; padding: 0 48px; }
.fwv-section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.fwv-section-h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.2; color: var(--charcoal); margin-bottom: 48px; max-width: 720px; }

/* BUILT FOR WEDDING VENUES */
.fwv-built { padding: 96px 0; background: var(--pearl); border-bottom: 1px solid var(--border); }
.fwv-built-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fwv-built-card { background: var(--ivory); border: 1px solid var(--border); padding: 36px 32px; }
.fwv-built-icon { margin-bottom: 20px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.fwv-built-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; line-height: 1.25; color: var(--charcoal); margin-bottom: 14px; }
.fwv-built-text { font-size: 15px; line-height: 1.7; color: var(--charcoal-soft); }

/* FEATURED CASE STUDY */
.fwv-case-study { padding: 96px 0; background: var(--ivory); border-bottom: 1px solid var(--border); }
.fwv-cs-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); overflow: hidden; }
.fwv-cs-image-wrap { overflow: hidden; }
.fwv-cs-image { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 360px; }
.fwv-cs-content { background: var(--pearl); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.fwv-cs-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.fwv-cs-headline { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 34px); font-weight: 400; line-height: 1.25; color: var(--charcoal); margin-bottom: 20px; }
.fwv-cs-body { font-size: 15px; line-height: 1.75; color: var(--charcoal-soft); margin-bottom: 28px; }
.fwv-cs-link { display: inline-flex; align-items: center; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color 0.15s; align-self: flex-start; }
.fwv-cs-link:hover { border-color: var(--gold); }

/* TIER RECOMMENDATION */
.fwv-tiers { padding: 96px 0; background: var(--fwv-peach); border-bottom: 1px solid var(--fwv-peach-border); }
.fwv-tiers-sub { font-size: 16px; line-height: 1.7; color: var(--charcoal-soft); max-width: 640px; margin-top: -24px; margin-bottom: 48px; }
.fwv-tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.fwv-tier-card { background: var(--pearl); border: 1px solid var(--border); padding: 36px 28px; position: relative; display: flex; flex-direction: column; }
.fwv-tier-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.fwv-tier-badge { position: absolute; top: -12px; left: 28px; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; }
.fwv-tier-name { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fwv-tier-price { font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--charcoal); line-height: 1; margin-bottom: 4px; }
.fwv-tier-freq { font-size: 16px; font-weight: 400; color: var(--charcoal-soft); }
.fwv-tier-fit { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--charcoal-soft); text-transform: uppercase; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.fwv-tier-bullets { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.fwv-tier-bullets li { font-size: 14px; line-height: 1.6; color: var(--charcoal-soft); padding: 7px 0 7px 16px; border-bottom: 1px solid rgba(201,169,97,0.1); position: relative; }
.fwv-tier-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.fwv-tier-btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 20px; background: var(--gold); color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; transition: background 0.15s; margin-top: auto; }
.fwv-tier-btn:hover { background: #b8924f; }
.fwv-tiers-note { font-size: 14px; color: var(--charcoal-soft); text-align: center; }
.fwv-tiers-link { color: var(--gold); text-decoration: none; font-weight: 600; }
.fwv-tiers-link:hover { text-decoration: underline; }

/* TRUST BLOCK */
.fwv-trust { padding: 80px 0; background: var(--pearl); border-bottom: 1px solid var(--border); }
.fwv-trust-headline { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 30px); font-weight: 400; color: var(--charcoal); margin-bottom: 32px; text-align: center; }
.fwv-trust-logos { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.fwv-trust-logo-pill { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); padding: 8px 18px; border: 1px solid var(--border); background: var(--ivory); }
.fwv-trust-quote-wrap { max-width: 700px; margin: 0 auto; text-align: center; }
.fwv-trust-quote { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-style: italic; font-weight: 300; line-height: 1.6; color: var(--charcoal); margin-bottom: 24px; }
.fwv-trust-attr { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.fwv-trust-name { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--charcoal); }
.fwv-trust-role { font-size: 12px; color: var(--charcoal-soft); opacity: 0.7; }

/* FINAL CTA BAND */
.fwv-final-cta { background: var(--gold); padding: 80px 48px; }
.fwv-final-cta-inner { max-width: var(--fwv-max); margin: 0 auto; text-align: center; }
.fwv-final-cta-h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.fwv-final-cta-sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 36px; }
.fwv-final-cta-actions { margin-bottom: 20px; }
.fwv-final-cta .fwv-btn-primary--lg { background: #fff; color: var(--gold); }
.fwv-final-cta .fwv-btn-primary--lg:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.fwv-final-cta-note { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }

/* MOBILE */
@media (max-width: 1100px) {
  .fwv-venues-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .fwv-built-grid,
  .fwv-tiers-grid { grid-template-columns: 1fr; }
  .fwv-cs-card { grid-template-columns: 1fr; }
  .fwv-cs-image { min-height: 240px; max-height: 300px; }
  .fwv-proof-divider { display: none; }
  .fwv-proof-stat { min-width: 120px; flex: 0 0 calc(50% - 12px); }
  .fwv-venues-grid { grid-template-columns: repeat(2, 1fr); }
  .fwv-venues-stat-div { display: none; }
  .fwv-venues-stat { flex: 0 0 calc(50% - 12px); min-width: 120px; }
}

@media (max-width: 640px) {
  .fwv-hero { padding: 120px 24px 72px; }
  .fwv-hero-h1 { font-size: 32px; }
  .fwv-hero-ctas { flex-direction: column; align-items: flex-start; gap: 16px; }
  .fwv-btn-primary, .fwv-btn-secondary { width: 100%; justify-content: center; }
  .fwv-section-inner { padding: 0 24px; }
  .fwv-proof-bar { padding: 40px 24px 16px; }
  .fwv-proof-stat { flex: 0 0 calc(50% - 8px); }
  .fwv-built, .fwv-case-study, .fwv-tiers, .fwv-venues { padding: 64px 0; }
  .fwv-cs-content { padding: 32px 24px; }
  .fwv-trust { padding: 60px 0; }
  .fwv-trust-headline, .fwv-trust-quote-wrap { padding: 0 24px; }
  .fwv-final-cta { padding: 64px 24px; }
  .fwv-final-cta .fwv-btn-primary--lg { width: 100%; justify-content: center; }
  .fwv-venues-grid { grid-template-columns: 1fr; }
  .fwv-venues-stats { padding: 28px 20px; }
}
