/* ============================================
   BLACK PIRATE BURGER - Landing Page
   Palette: Black + Silver + Pirate Gold
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --gray-dark: #1a1a1a;
  --gray-mid: #2a2a2a;
  --silver: #c0c0c0;
  --silver-light: #e0e0e0;
  --gold: #d4a853;
  --gold-dark: #b8922e;
  --red: #8b0000;
  --white: #f5f5f5;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--silver);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--silver-light);
  border-color: var(--silver);
}

.btn--outline:hover {
  background: rgba(192, 192, 192, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.nav__logo-icon {
  font-size: 1.5rem;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.85rem;
  padding: 10px 24px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-light);
  transition: all var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.95) 100%),
    url('https://images.pexels.com/photos/1487883/pexels-photo-1487883.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.02">&#9760;</text></svg>') repeat;
  background-size: 200px;
  pointer-events: none;
}

.hero__pirate-decor {
  position: absolute;
  right: -60px;
  bottom: 10%;
  width: 300px;
  height: 300px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero__pirate-decor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1) brightness(1.5);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero__proof-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero__proof-item span {
  font-size: 0.8rem;
  color: var(--silver);
}

.hero__proof-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-mid);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero__scroll span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--silver);
}

.hero__scroll-arrow {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease infinite;
}

/* --- SHOWCASE --- */
.section--showcase {
  background: var(--black);
}

.showcase__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase__item--reverse {
  direction: rtl;
}

.showcase__item--reverse > * {
  direction: ltr;
}

.showcase__img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-mid);
}

.showcase__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase__item:hover .showcase__img img {
  transform: scale(1.05);
}

.showcase__text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.showcase__text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--silver);
}

@media (max-width: 768px) {
  .showcase__item,
  .showcase__item--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase__img img {
    height: 240px;
  }
}

/* --- VISUAL BREAK --- */
.visual-break {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.visual-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.visual-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-break__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  font-style: italic;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

@media (max-width: 600px) {
  .visual-break {
    height: 280px;
  }
}

/* --- SECTIONS BASE --- */
.section {
  padding: 100px 0;
}

.section__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}

/* --- PROBLEM --- */
.section--problem {
  background: var(--black-light);
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem__card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}

.problem__card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.problem__img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.problem__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 0, 0, 0.15);
  pointer-events: none;
}

.problem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) brightness(0.8);
  transition: transform 0.5s ease;
}

.problem__card:hover .problem__img img {
  transform: scale(1.05);
}

.problem__card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 16px 24px 8px;
}

.problem__card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* --- SOLUTION --- */
.section--solution {
  background: var(--black);
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.solution__card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.solution__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}

.solution__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.solution__card:hover::before {
  opacity: 1;
}

.solution__card-img {
  height: 200px;
  overflow: hidden;
}

.solution__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution__card:hover .solution__card-img img {
  transform: scale(1.08);
}

.solution__card-body {
  padding: 32px;
}

.solution__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-mid);
  line-height: 1;
  margin-bottom: 12px;
}

.solution__card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.solution__card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- MENU --- */
.section--menu {
  background: var(--black-light);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menu__card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.menu__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.1);
}

.menu__card-img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--gray-mid), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu__card:hover .menu__card-img img {
  transform: scale(1.08);
}

.menu__card-placeholder {
  font-size: 4rem;
  opacity: 0.15;
}

.menu__card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu__card-body {
  padding: 24px;
}

.menu__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.menu__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

.menu__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.menu__card-body p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu__footer {
  text-align: center;
  margin-top: 48px;
}

/* --- STEPS --- */
.section--steps {
  background: var(--black);
}

.steps__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.steps__item {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 32px;
}

.steps__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.steps__item:hover .steps__icon {
  background: var(--gold);
  color: var(--black);
}

.steps__item h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.steps__item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.steps__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gray-mid));
  flex-shrink: 0;
}

/* --- REVIEWS --- */
.section--reviews {
  background: var(--black-light);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review__card {
  background: var(--gray-dark);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}

.review__card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.review__stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review__text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--silver-light);
}

.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.review__author span {
  font-size: 0.8rem;
  color: var(--silver);
}

/* --- FAQ --- */
.section--faq {
  background: var(--black);
}

.faq__list {
  max-width: 720px;
}

.faq__item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--silver);
}

/* --- FINAL CTA --- */
.section--cta {
  background:
    linear-gradient(to bottom, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.96) 100%),
    url('https://images.pexels.com/photos/343701/pexels-photo-343701.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
  padding: 80px 0;
}

.cta__box {
  text-align: center;
  background: linear-gradient(135deg, var(--gray-dark), var(--gray-mid));
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta__skull {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__sub {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta__note {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* --- FOOTER --- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-mid);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--gray-mid);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--silver);
}

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

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* Scroll reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBILE --- */
@media (max-width: 968px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Mobile menu open */
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-mid);
  }

  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .problem__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .solution__grid,
  .menu__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    flex-direction: column;
  }

  .steps__connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), var(--gray-mid));
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta__box {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .hero__proof {
    flex-direction: column;
    gap: 16px;
  }

  .hero__proof-divider {
    width: 40px;
    height: 1px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}
