/* CastOut Theme — Forest & Amber */
:root {
  --forest: #1a3a2f;
  --forest-light: #244a3d;
  --forest-dark: #0f241d;
  --amber: #d4813a;
  --amber-light: #e8a05a;
  --cream: #f5f0e8;
  --cream-dark: #ede5d8;
  --warm-gray: #8a7a6a;
  --charcoal: #2d2820;
  --white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 58, 47, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 129, 58, 0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber-light); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-dark);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 36, 29, 0.85) 0%,
    rgba(26, 58, 47, 0.7) 40%,
    rgba(36, 74, 61, 0.4) 70%,
    rgba(15, 36, 29, 0.6) 100%
  );
}

/* horizon line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--amber-light), transparent);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--cream);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-headline em {
  color: var(--amber-light);
  font-style: italic;
}
.hero-sub {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 440px;
}

/* GEAR CIRCLE */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gear-circle {
  position: relative;
  width: 320px;
  height: 320px;
}
.gear-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: rgba(245, 240, 232, 0.7);
  font-weight: 500;
}
.gear-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 129, 58, 0.15);
  border: 1px solid rgba(212, 129, 58, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gear-icon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: var(--amber);
  opacity: 0.8;
  border-radius: 50%;
}
.gi-1 { top: 0; left: 50%; transform: translateX(-50%); }
.gi-2 { top: 20%; right: 5%; }
.gi-3 { bottom: 20%; right: 5%; }
.gi-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.gi-5 { bottom: 20%; left: 5%; }
.gi-6 { top: 20%; left: 5%; }

.gear-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}
.gear-price {
  font-size: 0.75rem;
  color: var(--forest-dark);
  font-weight: 600;
  line-height: 1.2;
}
.gear-price strong {
  font-size: 1.5rem;
  display: block;
}

/* STAT ROW */
.hero-stat-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2.5rem 2rem;
  background: rgba(15, 36, 29, 0.6);
  border-top: 1px solid rgba(212, 129, 58, 0.15);
}
.hero-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
  display: block;
  margin-top: 0.2rem;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(212, 129, 58, 0.2);
}

/* TRUST BAR */
.trust-bar {
  background: var(--forest);
  padding: 1.5rem 2rem;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 500;
}
.trust-brands {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand-tag {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.5);
  background: rgba(245, 240, 232, 0.06);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(245, 240, 232, 0.1);
}

/* SECTION SHARED */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--warm-gray);
  font-size: 1.05rem;
}

/* BUNDLES */
.bundles {
  background: var(--cream);
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bundle-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(26, 58, 47, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26, 58, 47, 0.14);
}
.bundle-visual {
  padding: 0;
  height: 200px;
  overflow: hidden;
}
.bundle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bundle-fishing .bundle-visual { background: var(--forest); }
.bundle-camping .bundle-visual { background: var(--forest-light); }
.bundle-tools .bundle-visual { background: var(--forest-dark); }

/* Bundle illustrations */
.bundle-illustration {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
/* Fishing: rod + reel silhouette */
.bi-rod {
  width: 8px; height: 90px;
  background: var(--forest);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.bi-rod::after {
  content: '';
  position: absolute;
  bottom: 0; left: -12px;
  width: 28px; height: 30px;
  background: var(--forest);
  border-radius: 6px;
  border-top: 8px solid var(--amber);
}
.bi-reel {
  width: 26px; height: 26px;
  background: var(--amber);
  border-radius: 50%;
  border: 3px solid var(--forest);
  margin-bottom: 20px;
}
.bi-tackle {
  width: 50px; height: 36px;
  background: var(--forest);
  border-radius: 6px;
  position: relative;
}
.bi-tackle::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 34px; height: 4px;
  background: rgba(212, 129, 58, 0.4);
  border-radius: 2px;
}
.bi-tackle::after {
  content: '';
  position: absolute;
  top: 16px; left: 8px;
  width: 34px; height: 4px;
  background: rgba(212, 129, 58, 0.4);
  border-radius: 2px;
}
/* Camping: tent + sleeping bag */
.bi-tent {
  width: 70px; height: 50px;
  background: var(--forest);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.bi-sleep {
  width: 45px; height: 20px;
  background: var(--amber-light);
  border-radius: 10px 10px 4px 4px;
  margin-bottom: 5px;
}
.bi-stove {
  width: 30px; height: 22px;
  background: #888;
  border-radius: 4px;
  position: relative;
}
.bi-stove::before {
  content: '';
  position: absolute;
  top: -8px; left: 5px;
  width: 4px; height: 8px;
  background: #ccc;
  border-radius: 2px 2px 0 0;
  box-shadow: 12px 0 0 #ccc;
}
/* Tools: multi-tool shapes */
.bi-tool1 {
  width: 35px; height: 12px;
  background: #aaa;
  border-radius: 6px;
  position: relative;
}
.bi-tool1::before {
  content: '';
  position: absolute;
  right: -8px; top: -4px;
  width: 10px; height: 20px;
  background: #888;
  border-radius: 3px;
}
.bi-tool2 {
  width: 6px; height: 60px;
  background: #888;
  border-radius: 3px;
}
.bi-tool3 {
  width: 28px; height: 10px;
  background: var(--forest);
  border-radius: 3px;
  transform: rotate(-20deg);
}

.bundle-body {
  padding: 1.5rem 2rem 2rem;
}
.bundle-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}
.bundle-name {
  font-size: 1.3rem;
  color: var(--forest-dark);
  margin-bottom: 0.6rem;
}
.bundle-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.bundle-price {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 8px;
}
.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 700;
  display: block;
}
.price-sub {
  font-size: 0.75rem;
  color: var(--warm-gray);
}
.bundle-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bundle-includes li {
  font-size: 0.82rem;
  color: var(--charcoal);
  padding-left: 1.2rem;
  position: relative;
}
.bundle-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* CATEGORIES */
.categories {
  background: var(--cream-dark);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 8px rgba(26, 58, 47, 0.06);
  transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cat-fishing .cat-icon-wrap { background: #e8f4f0; }
.cat-camping .cat-icon-wrap { background: #f0e8e0; }
.cat-tools .cat-icon-wrap { background: #e8ecf0; }
.cat-accessories .cat-icon-wrap { background: #f0e8f0; }

/* Category icons as CSS shapes */
.cat-wave {
  width: 30px; height: 14px;
  border-top: 3px solid var(--forest);
  border-radius: 50% 50% 0 0;
}
.cat-wave-2 {
  margin-top: -2px;
  border-top: 3px solid var(--amber);
  opacity: 0.6;
}
.cat-flame {
  width: 18px; height: 26px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 60%, 75% 100%, 25% 100%, 0% 60%);
}
.cat-tool-shape {
  width: 24px; height: 8px;
  background: var(--forest);
  border-radius: 4px;
  position: relative;
}
.cat-tool-shape::before {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  width: 8px; height: 18px;
  background: var(--forest);
  border-radius: 2px;
}
.cat-backpack {
  width: 22px; height: 28px;
  background: var(--forest);
  border-radius: 4px 4px 6px 6px;
  position: relative;
}
.cat-backpack::before {
  content: '';
  position: absolute;
  top: 6px; left: 3px;
  width: 16px; height: 10px;
  background: var(--amber-light);
  border-radius: 2px;
  opacity: 0.7;
}

.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest-dark);
  margin-bottom: 0.25rem;
}
.cat-count {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.cat-desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.55;
}

/* PHILOSOPHY */
.philosophy {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.philosophy-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 29, 0.82);
  z-index: 1;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.philosophy .section-inner,
.philosophy .phil-content {
  position: relative;
  z-index: 2;
}
.phil-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.phil-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.phil-body {
  color: rgba(245, 240, 232, 0.6);
  font-size: 1.1rem;
  margin-bottom: 4rem;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  text-align: left;
}
.phil-point h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.phil-point p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}
.phil-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

/* CLOSING */
.closing {
  background: var(--cream-dark);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.closing-badge {
  display: inline-block;
  margin-bottom: 2.5rem;
  position: relative;
}
.badge-ring {
  width: 70px; height: 70px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}
.closing-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-headline em {
  color: var(--amber);
  font-style: italic;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.closing-pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.closing-pill {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-weight: 500;
}

/* FOOTER */
.footer {
  background: var(--forest-dark);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 0.25rem;
}
.footer-note {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 2rem 2rem; }
  .hero-visual { display: none; }
  .bundle-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .phil-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .nav-links { display: none; }
}
@media (max-width: 500px) {
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .closing-pill-row { gap: 0.5rem; }
}