/* ============================================================
   Jamaine Ortiz — Fighter & Investor
   Plain CSS, no build step. Edit freely.
   ============================================================ */

:root {
  --black: #0b0b0d;
  --ink: #121215;
  --panel: #17171c;
  --line: #26262e;
  --white: #f5f5f4;
  --muted: #a1a1aa;
  --red: #c5cad2;        /* primary accent — silver */
  --red-dark: #a7adb6;   /* darker silver (hover) */
  --gold: #dfe3e8;       /* platinum accent */
  --radius: 14px;
  --container: 1140px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Headings stay Didone (Bodoni Moda); body uses readable Inter. */

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.kicker {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.kicker.center { text-align: center; }

.section__title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.section__title.center { text-align: center; }

.section__lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 18px auto 0;
}
.section__lead.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: var(--black); }
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost { border-color: var(--line); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 13, .9);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
}
.nav__logo span { color: var(--red); }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav__toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: transform .3s, opacity .3s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(197,202,210,.16), transparent 55%),
    linear-gradient(180deg, #0b0b0d 0%, #131316 60%, #0b0b0d 100%);
}
.hero__bg::before {
  /* OPTIONAL: drop a hero image at assets/img/hero.jpg for a photo background */
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  opacity: .28;
  mix-blend-mode: luminosity;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow {
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero__title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 13vw, 9rem);
  line-height: .92;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.hero__title span { color: var(--red); -webkit-text-stroke: 0; }
.hero__sub {
  margin-top: 24px;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: var(--muted);
}
.hero__cta {
  margin-top: 38px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem; color: var(--muted); z-index: 2;
  animation: bob 1.8s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 8px);} }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(90deg, #c5cad2, #e2e5ea, #c5cad2);
  color: var(--black);
  padding: 36px 0;
}
.stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 90px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0,0,0,.65);
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--alt { background: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.split__text p { color: var(--muted); margin-bottom: 16px; }
.split__text .btn { margin-top: 12px; }

/* Image placeholder styling */
.img--placeholder,
img.img--placeholder {
  position: relative;
  background: repeating-linear-gradient(45deg, #1a1a20, #1a1a20 12px, #202028 12px, #202028 24px);
  border: 1px dashed var(--line) !important;
  min-height: 220px;
}
.img--placeholder img { opacity: 0; }
img.img--placeholder { color: transparent; }
.gallery__item.img--placeholder::after,
.split__media .img--placeholder::after {
  content: 'Add photo';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ---------- Fact list ---------- */
.fact-list {
  list-style: none;
  margin: 26px 0;
  border-top: 1px solid var(--line);
}
.fact-list li {
  display: flex; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.fact-list strong { letter-spacing: .05em; text-transform: uppercase; font-size: .85rem; }
.fact-list span { color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { margin-top: 28px; }
.timeline__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 0 0 26px 0;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute; left: 6px; top: 8px; bottom: -4px;
  width: 2px; background: var(--line);
}
.timeline__item:last-child::before { display: none; }
.timeline__year {
  position: relative;
  font-family: 'Bodoni Moda', serif;
  font-size: .95rem;
  color: var(--gold);
  padding-left: 22px;
}
.timeline__year::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline__item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.timeline__item p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Investor extended story ---------- */
.investor-story {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.investor-story p { color: var(--muted); margin-bottom: 16px; }

.investor-photos {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.investor-photos__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
}
.investor-photos__item img { width: 100%; height: 100%; object-fit: cover; }
.investor-photos__item.img--placeholder::after {
  content: 'Add photo';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}

.investor-quote {
  margin: 56px auto 0;
  max-width: 860px;
  text-align: center;
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  line-height: 1.55;
  color: var(--white);
  border-left: 0;
  position: relative;
  padding: 0 20px;
}
.investor-quote strong { color: var(--gold); font-weight: 700; }

.timeline--center {
  max-width: 720px;
  margin: 56px auto 0;
}

.investor-cta { text-align: center; margin-top: 44px; }

/* ---------- Gallery ---------- */
.gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }

/* ---------- Shop ---------- */
.products {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 330px));
  justify-content: center;
  gap: 26px;
}
.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.product:hover { transform: translateY(-6px); border-color: var(--red); }
.product__media {
  aspect-ratio: 1 / 1;
  background: #0e0e12;
  position: relative;
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__media.img--placeholder::after {
  content: 'Product photo';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.product__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: var(--black);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 4px;
}
.product__body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product__name { font-size: 1.1rem; font-weight: 700; }
.product__desc { color: var(--muted); font-size: .9rem; flex: 1; }
.product__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: 'Bodoni Moda', serif; font-size: 1.5rem; }
.product__select {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: .9rem;
  cursor: pointer;
}
.shop__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 34px; }

/* ---------- Contact ---------- */
.contact__inner { text-align: center; }
.contact__actions {
  margin-top: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.socials { display: flex; gap: 26px; }
.socials a {
  color: var(--muted);
  font-weight: 600; font-size: .9rem;
  letter-spacing: .05em; text-transform: uppercase;
  transition: color .2s;
}
.socials a:hover { color: var(--red); }

/* ---------- Sponsor / Partner band ---------- */
.sponsor {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(197,202,210,.10), transparent 60%),
    var(--ink);
  padding: 38px 0;
  text-align: center;
}
.sponsor__inner { max-width: 640px; margin: 0 auto; }
.sponsor__brand {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  margin-top: 4px;
}
.sponsor__brand span { color: var(--gold); }
.sponsor__tag {
  color: var(--muted);
  margin: 10px auto 0;
  max-width: 460px;
  font-size: .9rem;
}
.sponsor__promo {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 16px;
  border: 1px dashed var(--red);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
}
.sponsor__code {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.sponsor__code-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.sponsor__code-value {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.35rem;
  letter-spacing: .14em;
}
.sponsor__off {
  background: var(--red);
  color: var(--black);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 13px;
  border-radius: 8px;
}
.sponsor__copy { padding: 10px 18px; font-size: .85rem; }
.sponsor__copy.copied { background: var(--gold); }
.sponsor__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold);
  transition: color .2s;
}
.sponsor__link:hover { color: var(--white); }

@media (max-width: 480px) {
  .sponsor__promo { flex-direction: column; gap: 14px; }
  .sponsor__code { align-items: center; text-align: center; }
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.footer__logo { font-family: 'Bodoni Moda', serif; letter-spacing: .04em; }
.footer__copy { color: var(--muted); font-size: .85rem; }

/* ---------- Sub-pages ---------- */
/* On any page that isn't the home hero, keep the nav solid + readable */
body.subpage .nav {
  background: rgba(11, 11, 13, .92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { width: 100%; }

.page-hero {
  padding: 150px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(197,202,210,.12), transparent 60%),
    linear-gradient(180deg, #131316, #0b0b0d);
}
.page-hero__title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.page-hero__sub {
  margin: 18px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

/* Home entry cards (links into each sub-page) */
.entries { padding: 90px 0; }
.entries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.entry-card {
  position: relative;
  display: block;
  padding: 34px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s;
}
.entry-card:hover { transform: translateY(-6px); border-color: var(--red); }
.entry-card__num {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.entry-card__title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 10px 0 8px;
}
.entry-card__desc { color: var(--muted); font-size: .95rem; }
.entry-card__arrow {
  margin-top: 18px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--red);
}
.entry-card:hover .entry-card__arrow { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 72px; right: 0;
    width: 70%; max-width: 320px; height: calc(100vh - 72px);
    flex-direction: column; gap: 0;
    background: var(--ink);
    border-left: 1px solid var(--line);
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { padding: 16px 28px; width: 100%; font-size: 1rem; }
  .nav__toggle { display: flex; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .investor-story { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .investor-photos { grid-template-columns: 1fr; }
  .entries__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero__cta { flex-direction: column; }
  .btn { width: 100%; }
}

/* ---------- Sold-out products ---------- */
.product--sold .product__media img { filter: grayscale(.45) brightness(.72); }
.product__badge--sold {
  background: #0b0b0d; color: var(--white);
  border: 1px solid var(--red); letter-spacing: .12em;
}
.btn--soldout {
  background: var(--line); color: var(--muted);
  cursor: not-allowed; border-color: transparent;
}
.btn--soldout:hover { transform: none; background: var(--line); }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 560px;
  margin: 36px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--panel);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { align-self: flex-start; }
.contact-form__hp { position: absolute; left: -9999px; top: auto; height: 0; overflow: hidden; }
.form-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 18px; }
.form-success {
  max-width: 560px; margin: 24px auto 0;
  background: var(--panel); border: 1px solid var(--red);
  border-radius: 12px; padding: 18px 20px; text-align: center;
}
@media (max-width: 560px) { .contact-form .form-row { grid-template-columns: 1fr; } }
