
:root {
  --cwf-dark: #0f172a;
  --cwf-darker: #020617;
  --cwf-red: #dc2626;
  --cwf-red-dark: #b91c1c;
  --cwf-gold: #f59e0b;
  --cwf-light: #f8fafc;
  --cwf-muted: #94a3b8;
  --cwf-card: rgba(255,255,255,0.08);
  --cwf-border: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cwf-darker);
  color: #fff;
}

.navbar {
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(2,6,23,0.78), rgba(15,23,42,0.78)),
    var(--hero-image) center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to top, var(--cwf-darker), transparent);
}

.page-hero {
  padding: 9rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(2,6,23,0.86), rgba(15,23,42,0.82)),
    var(--page-hero-image, none) center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cwf-gold);
  margin-bottom: 1rem;
}

.display-title {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lead-text {
  max-width: 720px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
}

.hero-card,
.info-card,
.gallery-card,
.contact-card,
.shop-card {
  background: var(--cwf-card);
  border: 1px solid var(--cwf-border);
  border-radius: 1.5rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.hero-stat {
  padding: 1rem 1.1rem;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
}
.hero-stat span {
  display: block;
  font-size: 0.92rem;
  color: var(--cwf-muted);
  margin-top: 0.4rem;
}

section { padding: 5.5rem 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-copy {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 760px;
}

.info-card, .contact-card, .gallery-card, .shop-card {
  padding: 1.5rem;
  height: 100%;
}

.feature-card {
  padding: 2rem;
  height: 100%;
}

.icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(220, 38, 38, 0.12);
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 1.2rem;
}

.story-image,
.gallery-tile,
.shop-image,
.feature-image {
  border-radius: 1.5rem;
  object-fit: cover;
  width: 100%;
}

.story-image { min-height: 520px; max-height: 640px; }
.feature-image { min-height: 340px; max-height: 420px; }
.gallery-tile { aspect-ratio: 1 / 1; }
.shop-image { aspect-ratio: 1 / 1; background: rgba(255,255,255,0.04); }

.safety-list li {
  margin-bottom: 0.85rem;
  color: #e2e8f0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 600;
}

.gallery-caption {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.shop-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

.shop-copy {
  color: #cbd5e1;
  margin-bottom: 0;
}

.contact-card a, footer a {
  color: #fff;
  text-decoration: none;
}

.contact-card a:hover,
footer a:hover,
.nav-link:hover {
  color: var(--cwf-gold);
}

.cta-band {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(245, 158, 11, 0.14));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 2rem;
}

.btn-brand {
  background: var(--cwf-red);
  border-color: var(--cwf-red);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
}
.btn-brand:hover,
.btn-brand:focus {
  background: var(--cwf-red-dark);
  border-color: var(--cwf-red-dark);
  color: #fff;
}
.btn-outline-light {
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
}

.text-gold { color: var(--cwf-gold); }

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--cwf-muted);
}

.object-top { object-position: top center; }

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  section { padding: 4.5rem 0; }

  .story-image { min-height: 320px; }
}
