/* ═══════════════════════════════════════════
         DESIGN TOKENS
      ═══════════════════════════════════════════ */
:root {
  --red-deepest: #0a0000;
  --red-deep: #3d0505;
  --red-blood: #7a0b0b;
  --red-crimson: #c41a1a;
  --gold-dark: #7a5a10;
  --gold-rich: #b8932a;
  --gold-pure: #ffd700;
  --gold-light: #ffe88a;
  --gold-pale: #f4e3a1;
  --black: #000000;
  --charcoal: #1a1a1a;

  /* Fluid type scale — clamp(min, preferred, max) */
  --fs-hero: clamp(2.2rem, 8vw, 6.5rem);
  --fs-sub: clamp(1.1rem, 3vw, 2.6rem);
  --fs-tag: clamp(0.9rem, 2vw, 2rem);
  --fs-section: clamp(1.4rem, 3vw, 3rem);
  --fs-venture: clamp(1rem, 1.6vw, 1.4rem);
  --fs-body: clamp(0.85rem, 1.1vw, 1rem);
  --fs-stat: clamp(0.7rem, 0.9vw, 0.8rem);
  --fs-btn: clamp(0.8rem, 1.2vw, 1rem);
  --fs-nav-h: clamp(1.6rem, 3vw, 4rem);

  --gap-section: clamp(3rem, 5vw, 6rem);
  --gap-venture: clamp(0px, 0px, 0px);
  --pad-card: clamp(1.2rem, 2vw, 1.8rem);
  --pad-page: clamp(1.2rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cormorant Garamond", serif;
  background-color: var(--black);
  color: var(--gold-pale);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Layered background — deep burgundy, NOT bright crimson */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    160deg,
    #000000 0%,
    #0d0000 20%,
    #1a0303 38%,
    #2e0808 52%,
    #1a0303 66%,
    #0d0000 82%,
    #000000 100%
  );
  z-index: -1;
}

/* Subtle red ambient glow — depth, not wash */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 50% 30%,
      rgba(100, 8, 8, 0.45) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(80, 5, 5, 0.3) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 30% at 15% 60%,
      rgba(90, 6, 6, 0.25) 0%,
      transparent 55%
    );
  z-index: -1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
         LAYOUT
      ═══════════════════════════════════════════ */
.page {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding-inline: var(--pad-page);
}

/* ═══════════════════════════════════════════
         THK (FIXED + FLOATING SYSTEM)
═══════════════════════════════════════════ */

/* REMOVE hero logo usage (keep if you still want it centered) */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.hero-logo {
  height: 180px; /* bigger + crisp (make sure source is 512+) */
  max-width: 90%;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.25));
}

/* STICKY HEADER (clean + visible when scrolling) */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(20, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.sticky-header.show {
  opacity: 1;
}

.nav-logo {
  height: 36px;
}

/* ═══════════════════════════════════════════
         FLOATING THK (THIS IS THE FIX)
═══════════════════════════════════════════ */

.floating-thk {
  position: fixed;
  top: 20px;
  left: 24px; /* switch to right if preferred */
  z-index: 2000;
  pointer-events: none;
}

.floating-thk img {
  width: 90px; /* BIG at top */
  opacity: 0.15; /* subtle presence */
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.25));
}

/* ═══════════════════════════════════════════
         HERO
═══════════════════════════════════════════ */

.hero {
  padding-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: var(--fs-hero);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;

  /* Metallic gold */
  background: linear-gradient(
    135deg,
    #c8922a 0%,
    #e8b84b 18%,
    #fdeea3 32%,
    #ffd700 45%,
    #fdeea3 55%,
    #c8922a 68%,
    #a8720f 80%,
    #e8b84b 90%,
    #ffd700 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  position: relative;
  display: inline-block;
}

/* Fleur-de-lis */
.hero-title::before,
.hero-title::after {
  content: "⚜";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red-crimson);
  font-size: 0.45em;
  -webkit-text-fill-color: var(--red-crimson);
  text-shadow: 0 0 20px rgba(196, 26, 26, 0.6);
  display: none;
}

.hero-title::before {
  right: calc(100% + 0.4em);
}

.hero-title::after {
  left: calc(100% + 0.4em);
}
/* .spanhero-subtitle{
  text-decoration: underline;
} */

@media (min-width: 600px) {
  .hero-title::before,
  .hero-title::after {
    display: block;
  }
}

.hero-subtitle {
  font-size: var(--fs-sub);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-rich);
  letter-spacing: 0.25em;
  margin-top: 0.6em;
}

/* Divider */
.divider {
  position: relative;
  width: min(700px, 90%);
  height: 3px;
  margin: 2.5rem auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark) 10%,
    var(--gold-pure) 30%,
    var(--gold-light) 50%,
    var(--gold-pure) 70%,
    var(--gold-dark) 90%,
    transparent
  );
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.6),
    0 0 40px rgba(255, 215, 0, 0.3);
}
.divider::before,
.divider::after {
  content: "⚜";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-pure);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
  line-height: 1;
}
.divider::before {
  right: calc(100% + 0.5em);
}
.divider::after {
  left: calc(100% + 0.5em);
}

.tagline {
  font-size: var(--fs-tag);
  font-style: italic;
  color: var(--gold-rich);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 10rem);
}

/* ═══════════════════════════════════════════
         INTRO
      ═══════════════════════════════════════════ */
.intro {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--gap-section);
}

.intro p {
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  line-height: 1.9;
  color: rgba(244, 227, 161, 0.8);
  letter-spacing: 0.04em;
}

.intro p strong {
  color: var(--gold-pure);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
         SECTION HEADING
      ═══════════════════════════════════════════ */
.section-heading {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold-pure),
    var(--gold-light),
    var(--gold-pure),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(1.5rem, 3vw, 2.8rem);
}

/* ═══════════════════════════════════════════
         VENTURES — editorial table style
      ═══════════════════════════════════════════ */
.ventures {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--gap-section);
  border: 1px solid rgba(122, 90, 16, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.venture-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(122, 90, 16, 0.3);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}

.venture-card:last-child {
  border-bottom: none;
}

.venture-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.06),
    transparent
  );
  transform: translateX(-110%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.venture-card:hover::before {
  transform: translateX(110%);
}
.venture-card:hover {
  background: rgba(20, 0, 0, 0.75);
}

/* Left accent strip — holds the icon */
.v-icon-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  width: 80px;
  border-right: 1px solid rgba(122, 90, 16, 0.3);
  background: rgba(61, 5, 5, 0.35);
  flex-shrink: 0;
  overflow: visible; /* let big icons breathe */
  position: relative;
  z-index: 2;
}

.v-icon-col img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  transition:
    filter 0.3s,
    transform 0.3s;
  position: relative;
}

/* newest_castle is naturally wider — let it scale up */
.v-icon-col img.icon-wide {
  width: 70px;
  height: 70px;
}

.venture-card:hover .v-icon-col img {
  filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.75));
  transform: scale(1.12);
}

/* Middle — main content */
.v-content {
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
}

.v-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    #c8922a 0%,
    #e8b84b 20%,
    #fdeea3 38%,
    #ffd700 50%,
    #fdeea3 62%,
    #c8922a 80%,
    #e8b84b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.v-tag {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.8rem, 1.15vw, 1rem);
  color: var(--gold-rich);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.85;
}

.v-desc {
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  line-height: 1.7;
  color: rgba(244, 227, 161, 0.82);
  letter-spacing: 0.02em;
  max-width: 62ch;
  margin-top: 0.15rem;
}

.v-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.6rem;
  margin-top: 0.25rem;
}

.v-stat-pill {
  font-size: clamp(0.6rem, 0.8vw, 0.7rem);
  color: var(--gold-dark);
  background: rgba(122, 90, 16, 0.18);
  border: 1px solid rgba(122, 90, 16, 0.4);
  border-radius: 2px;
  padding: 0.1rem 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.venture-card:hover .v-stat-pill {
  color: var(--gold-rich);
  border-color: rgba(184, 147, 42, 0.6);
}

/* Right — number badge */
.v-num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.4rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  color: rgba(122, 90, 16, 0.25);
  border-left: 1px solid rgba(122, 90, 16, 0.2);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  user-select: none;
}

.venture-card:hover .v-num {
  color: rgba(255, 215, 0, 0.18);
}

/* ── Video venture — side by side layout ── */
.venture-card-video {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 0;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(122, 90, 16, 0.3);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}

.venture-card-video:last-child {
  border-bottom: none;
}

.venture-card-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.06),
    transparent
  );
  transform: translateX(-110%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.venture-card-video:hover::before {
  transform: translateX(110%);
}
.venture-card-video:hover {
  background: rgba(20, 0, 0, 0.75);
}

.venture-card-video:hover .v-icon-col img {
  filter: drop-shadow(0 0 16px rgba(255, 215, 0, 0.75));
  transform: scale(1.12);
}

.venture-card-video:hover .v-num {
  color: rgba(255, 215, 0, 0.18);
}

.venture-card-video:hover .v-stat-pill {
  color: var(--gold-rich);
  border-color: rgba(184, 147, 42, 0.6);
}

.v-video-inline {
  padding: 1rem 1rem 1rem 0.5rem;
  border-left: 1px solid rgba(122, 90, 16, 0.2);
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(122, 90, 16, 0.4);
  border-radius: 4px;
  width: 100%;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Responsive collapse ── */
@media (max-width: 560px) {
  .venture-card {
    grid-template-columns: 52px 1fr;
  }
  .venture-card .v-num {
    display: none;
  }
  .v-content {
    padding: 1rem;
  }
  .v-icon-col {
    padding: 0.8rem 0.5rem;
    width: 52px;
  }
}

@media (max-width: 680px) {
  .venture-card-video {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto;
  }
  .venture-card-video .v-num {
    display: none;
  }
  .v-video-inline {
    grid-column: 1 / -1;
    padding: 0.8rem 1rem 1rem;
    border-left: none;
    border-top: 1px solid rgba(122, 90, 16, 0.2);
  }
}

/* ═══════════════════════════════════════════
         NAV SECTION
      ═══════════════════════════════════════════ */
.nav-intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(1.8rem, 3vw, 3.5rem);
}

.nav-intro p {
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  color: rgba(244, 227, 161, 0.7);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
         NAV BUTTONS GRID
      ═══════════════════════════════════════════ */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  margin-bottom: var(--gap-section);
}

.nav-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.8rem, 3vw, 3rem) clamp(1.2rem, 2vw, 2.5rem);
  background: linear-gradient(
    135deg,
    var(--red-deep) 0%,
    var(--red-blood) 50%,
    var(--red-deep) 100%
  );
  border: 1.5px solid var(--gold-dark);
  border-radius: 6px;
  text-decoration: none;
  color: var(--gold-pale);
  font-family: "Cinzel", serif;
  font-size: var(--fs-btn);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(139, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 215, 0, 0.18);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s,
    box-shadow 0.4s;
}

/* Shimmer */
.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.25),
    transparent
  );
  transform: translateX(-110%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.nav-btn:hover::before {
  transform: translateX(110%);
}

/* Bottom accent line */
.nav-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold-pure),
    var(--gold-dark)
  );
  transition: width 0.4s ease;
}
.nav-btn:hover::after {
  width: 80%;
}

/* Corner brackets */
.nav-btn .c {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold-pure);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-btn:hover .c {
  opacity: 1;
}
.c.tl {
  top: 8px;
  left: 8px;
  border-right: none;
  border-bottom: none;
}
.c.tr {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}
.c.bl {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}
.c.br {
  bottom: 8px;
  right: 8px;
  border-left: none;
  border-top: none;
}

.nav-btn:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: var(--gold-pure);
  box-shadow:
    0 10px 38px rgba(255, 215, 0, 0.35),
    0 0 35px rgba(196, 26, 26, 0.28),
    inset 0 1px 0 rgba(255, 215, 0, 0.38);
}

.btn-icon {
  display: block;
  margin-bottom: 0.7rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.45));
}

.btn-icon img {
  display: block;
  margin-inline: auto;
  width: clamp(50px, 8vw, 90px);
  height: auto;
}

.btn-label {
  display: block;
  text-transform: uppercase;
  line-height: 1.2;
}

.btn-desc {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.8rem, 1.1vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  opacity: 0.75;
  text-transform: none;
}

/* staggered entrance */
.nav-btn:nth-child(1) {
  animation: fadeUp 0.7s ease 0.1s both;
}
.nav-btn:nth-child(2) {
  animation: fadeUp 0.7s ease 0.2s both;
}
.nav-btn:nth-child(3) {
  animation: fadeUp 0.7s ease 0.3s both;
}
.nav-btn:nth-child(4) {
  animation: fadeUp 0.7s ease 0.4s both;
}
.nav-btn:nth-child(5) {
  animation: fadeUp 0.7s ease 0.5s both;
}
.nav-btn:nth-child(6) {
  animation: fadeUp 0.7s ease 0.6s both;
}

/* ═══════════════════════════════════════════
         FOOTER
      ═══════════════════════════════════════════ */
.footer {
  border-top: 1.5px solid var(--red-blood);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-page) clamp(2rem, 3vw, 3rem);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.footer-inner {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gold-pale);
  font-family: "Cinzel", serif;
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.social-icon {
  width: clamp(38px, 5vw, 52px);
  height: clamp(38px, 5vw, 52px);
  background: linear-gradient(135deg, var(--red-deep), var(--red-blood));
  border: 1.5px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 14px rgba(139, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-icon img {
  width: clamp(20px, 3vw, 28px);
  height: auto;
  object-fit: contain;
}

.social-link:hover .social-icon {
  border-color: var(--gold-pure);
  transform: translateY(-5px) scale(1.1);
  box-shadow:
    0 8px 24px rgba(255, 215, 0, 0.28),
    0 0 28px rgba(196, 26, 26, 0.4);
  background: linear-gradient(135deg, var(--red-crimson), var(--red-blood));
}

.social-link:hover {
  color: var(--gold-pure);
}

.footer-line {
  width: 260px;
  height: 1.5px;
  margin: 1.5rem auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    var(--gold-pure),
    var(--gold-dark),
    transparent
  );
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.25);
}

.footer-copy {
  color: var(--gold-rich);
  font-size: clamp(0.8rem, 1.2vw, 1.1rem);
  letter-spacing: 0.04em;
}

.footer-copy strong {
  color: var(--gold-pure);
}

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

.hero {
  animation: fadeUp 0.9s ease 0s both;
}
.divider {
  animation: fadeUp 0.9s ease 0.3s both;
}
.tagline {
  animation: fadeUp 0.9s ease 0.5s both;
}
.intro {
  animation: fadeUp 0.9s ease 0.7s both;
}
