
:root {
  --cvo-pink: #ff3fa6;
  --cvo-dark: #0c1515;
  --cvo-cream: #f3e6cf;
  --cvo-green: #1b4630;
  --cvo-gold: #f6c453;
  --text-main: #fdf8ef;
  --text-muted: #d9d0c0;
  --max-width: 1100px;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, 
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #2b1313;
  color: var(--text-main);
  background-image: url("../img/plaid-bg.jpg");
  background-size: 180px 180px;
  background-repeat: repeat;
}


/* Flannel-style background */
body {
  background-image:
    linear-gradient(45deg, rgba(0,0,0,.45) 25%, transparent 25%, transparent 50%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.45) 75%, transparent 75%, transparent),
    linear-gradient(45deg, rgba(0,0,0,.45) 25%, transparent 25%, transparent 50%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.45) 75%, transparent 75%, transparent);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
  background-color: #3b1117;
}

main {
  width: 100%;
}

/* Frosted overlay to keep content readable */
.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  background: radial-gradient(circle at top, rgba(255,255,255,0.08), rgba(0,0,0,0.9));
  min-height: 100vh;
  box-shadow: var(--shadow-soft);
}

/* Top tree-line accent */
.page-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background:
    linear-gradient(to top, rgba(0,0,0,0.8), transparent),
    url("data:image/svg+xml,%3Csvg width='160' height='40' viewBox='0 0 160 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231b4630'%3E%3Cpolygon points='0,40 10,16 20,40'/%3E%3Cpolygon points='14,40 26,10 38,40'/%3E%3Cpolygon points='32,40 44,14 56,40'/%3E%3Cpolygon points='52,40 64,8 76,40'/%3E%3Cpolygon points='72,40 84,18 96,40'/%3E%3Cpolygon points='92,40 104,6 116,40'/%3E%3Cpolygon points='116,40 128,14 140,40'/%3E%3Cpolygon points='132,40 144,10 156,40'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 400px 80px;
}

/* Layout helpers */
.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.flex {
  display: flex;
  gap: 2rem;
}

.flex-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cvo-pink), #ff8b3d);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.75);
  filter: brightness(1.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-muted);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(0,0,0,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.7);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.8rem;
}

.nav-links a:hover {
  color: #fff;
}

/* Hero */
.hero {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.8fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3vw + 1rem, 3.3rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, #ffe17a, var(--cvo-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 1.4rem;
}

.hero-stat {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero-stat strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

/* Hero media */
.hero-media {
  position: relative;
}

.hero-main-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
}



/* Hero overlay logos */
.hero-media {
  position: relative;
}

.hero-main-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo {
  position: absolute;
  z-index: 2;
}

.hero-logo img {
  display: block;
  height: 40px;
  width: auto;
}

.hero-logo--cvo {
  left: 0.7rem;
  bottom: 0.7rem;
}

.hero-logo--yt {
  right: 0.7rem;
  bottom: 0.7rem;
}

/* Social strip */


.social-strip {
  background: linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.96));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.social-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.social-strip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.social-icons {
  display: flex;
  gap: 0.45rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 18px rgba(0,0,0,0.65);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.social-icon svg {
  width: 17px;
  height: 17px;
}

.social-icon:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 10px 24px rgba(0,0,0,0.8);
}

/* About / team */
.about {
  background: radial-gradient(circle at top, rgba(255,255,255,0.03), rgba(0,0,0,0.96));
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-heading {
  font-size: 1.6rem;
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.section-lede {
  color: var(--text-muted);
  max-width: 650px;
  font-size: 0.96rem;
}

.team-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), rgba(0,0,0,0.95));
  border-radius: 24px;
  padding: 1.2rem 1.3rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='80' viewBox='0 0 160 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231b4630' stroke-width='1'%3E%3Cpath d='M0 60 Q 20 30 40 60 T 80 60 T 120 60 T 160 60'/%3E%3Cpath d='M-20 75 Q 0 40 20 75 T 60 75 T 100 75 T 140 75 T 180 75'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.16;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.8);
  box-shadow: 0 8px 18px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.5);
}

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

.card-name {
  font-weight: 700;
}

.card-role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.card-body {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Adventures / gallery */
.adventures {
  background: linear-gradient(to bottom, rgba(0,0,0,0.93), rgba(0,0,0,0.98));
}

.gallery-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
}

.gallery-main {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-soft);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-side {
  display: grid;
  gap: 1.2rem;
}

.gallery-side img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-soft);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Weekly content section */
.content-section {
  background: radial-gradient(circle at center, rgba(246,196,83,0.1), rgba(0,0,0,0.98));
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: center;
}

.content-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.16);
}

.content-body ul {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.content-body li + li {
  margin-top: 0.3rem;
}

/* Merch CTA */
.merch {
  background: linear-gradient(145deg, rgba(255,63,166,0.16), rgba(16,26,26,1));
}

.merch-inner {
  text-align: center;
}

.merch-inner p {
  max-width: 680px;
  margin: 0.7rem auto 1.3rem;
  color: var(--text-muted);
}

/* Rhodes Landing strip */
.studio-strip {
  background: #08110f;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.studio-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.studio-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 10px 26px rgba(0,0,0,0.85);
  background: rgba(0,0,0,0.6);
}

.studio-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-text small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.studio-text strong {
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: #050909;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.75);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-text p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Media queries */
@media (max-width: 960px) {
  .hero-inner,
  .content-layout,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .hero-card--fish {
    right: 6%;
    top: 4%;
  }
  .hero-card--camp {
    left: 6%;
    bottom: 4%;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .hero {
    padding-top: 2.6rem;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .footer-inner {
    padding-bottom: 1.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.nav-youtube img {
  height: 20px;
  width: auto;
  display: block;
}

.nav-youtube {
  padding-left: 0.5rem;
}

.footer-youtube img {
  height: 20px;
  width: auto;
}

.go-roseau {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.go-roseau-logo {
  max-width: 180px;
}

.go-roseau-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.go-roseau-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .go-roseau {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-logo img {
    height: 28px;
  }
}
