﻿/* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -110px;
    padding-top: 80px;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .4;
    display: block;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,.5) 0%, rgba(8,8,8,.3) 50%, var(--dark-950) 100%);
  }
  .hero-content {
    position: relative; z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 900px;
    width: 100%;
  }
  .hero-tag {
    color: var(--gold-500);
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    opacity: 0;
  }
  .hero-logo {
    max-width: min(100%, 28rem);
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
  }
  @media (min-width: 768px) { .hero-logo { max-width: 672px; } }
  .hero-subtitle {
    color: rgba(255,255,255,.6);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: .05em;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
  }
  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
  }
  .hero-stats {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    max-width: 420px;
    margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem;
    opacity: 0;
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--gold-500);
    font-variant-numeric: tabular-nums;
  }
  .hero-stat-label {
    margin-top: .5rem;
    font-size: .6rem;
    color: rgba(255,255,255,.75);
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* SCROLL INDICATOR */
  .scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.35);
    font-size: .6rem;
    letter-spacing: .25em;
    text-transform: uppercase;
  }
  .scroll-indicator svg {
    width: 16px; height: 16px;
    animation: scrollBounce 1.8s ease-in-out infinite;
  }

  /* ===== ABOUT ===== */
  .about-section {
    padding: 8rem 1rem;
    position: relative;
  }
  .about-bg-text {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(255,255,255,.03);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }
  .about-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
  }
  @media (min-width: 1024px) { .about-inner { grid-template-columns: 1fr 1fr; } }

  .about-img-wrap {
    position: relative;
  }
  .about-img-corner {
    position: absolute;
    width: 128px; height: 128px;
    border: 1px solid rgba(201,169,98,.2);
  }
  .about-img-corner.tl { top: -2rem; left: -2rem; }
  .about-img-corner.br { bottom: -2rem; right: -2rem; }
  .about-img {
    position: relative; z-index: 10;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter .7s;
  }
  .about-img:hover { filter: grayscale(0); }
  .about-text { display: flex; flex-direction: column; gap: 2rem; }
  .about-tag { color: var(--gold-500); font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; }
  .about-body {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    line-height: 1.8;
  }
  .about-link {
    display: inline-flex; align-items: center; gap: .75rem;
    color: var(--gold-500);
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none;
  }
  .about-link svg { width: 16px; height: 16px; transition: transform .3s; }
  .about-link:hover svg { transform: translateX(8px); }

  /* ===== MAGAZINES ===== */
  .magazines-section {
    padding: 8rem 1rem;
    background: #000;
    position: relative; overflow: hidden;
  }
  .section-header { text-align: center; margin-bottom: 4rem; }
  .section-tag { color: var(--gold-500); font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1rem; }
  .section-header .luxury-divider { margin: 0 auto 1.5rem; }

  .mag-journal-card {
    display: block;
    text-decoration: none;
  }
  .magazines-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .magazines-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .magazines-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 768px) {
    .magazines-featured { grid-template-columns: 1fr; }
    .magazines-secondary { grid-template-columns: repeat(2, 1fr); }
  }

  .mag-journal-featured .mag-cover {
    aspect-ratio: 210 / 297;
  }
  .mag-journal-small .mag-cover {
    aspect-ratio: 210 / 297;
  }

  .mag-cover {
    position: relative;
    aspect-ratio: 210 / 297;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: var(--dark-900);
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
    transition: border-color .4s, box-shadow .4s;
  }
  .mag-cover.active-cover {
    border-color: rgba(201,169,98,.5);
    box-shadow: 0 15px 50px rgba(201,169,98,.2);
  }
  .mag-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .mag-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,.7) 0%, transparent 60%);
    pointer-events: none;
  }
  .mag-badge {
    position: absolute; top: .75rem; right: .75rem;
    background: rgba(8,8,8,.85);
    border: 1px solid rgba(255,255,255,.1);
    padding: .25rem .6rem;
    font-size: .6rem; letter-spacing: .12em;
    color: var(--gold-500);
  }
  .mag-title-bar {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: #fff;
  }

  .mag-journal-placeholder,
  .mag-journal-placeholder-small {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
  }
  .mag-journal-placeholder .mag-cover-placeholder,
  .mag-journal-placeholder-small .mag-cover-placeholder {
    color: rgba(255,255,255,.15);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: .1em;
  }
  .mag-journal-placeholder {
    aspect-ratio: 210 / 297;
  }
  .mag-journal-placeholder-small {
    aspect-ratio: 210 / 297;
  }
  .mag-journal-placeholder-small .mag-cover-placeholder {
    font-size: .9rem;
  }

  .view-all-link {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--gold-500); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
    text-decoration: none; transition: color .2s;
    margin-top: 2.5rem;
  }
  .view-all-link:hover { color: var(--gold-400); }
  .view-all-link svg { width: 16px; height: 16px; }

  /* ===== STORES ===== */
  .stores-section {
    padding: 8rem 1rem;
    background: linear-gradient(to bottom, var(--dark-950), rgba(17,17,17,.5), var(--dark-950));
  }
  .stores-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 2rem;
  }
  @media (min-width: 768px) { .stores-grid { grid-template-columns: 1fr 1fr; } }

  .store-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: block;
    text-decoration: none;
  }
  .store-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
  .store-card:hover img { transform: scale(1.08); }
  .store-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--dark-950) 0%, rgba(8,8,8,.5) 50%, transparent 100%);
  }
  .store-border {
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,.05);
    transition: border-color .5s;
    pointer-events: none;
  }
  .store-card:hover .store-border { border-color: rgba(201,169,98,.3); }
  .store-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2rem;
    transform: translateY(4px);
    transition: transform .4s;
  }
  .store-card:hover .store-info { transform: translateY(0); }
  .store-cat { color: var(--gold-500); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5rem; }
  .store-name { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; }
  .store-desc { color: rgba(255,255,255,.5); margin-bottom: 1.5rem; font-size: .9rem; }
  .store-explore {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--gold-500); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  }
  .store-explore svg { width: 16px; height: 16px; transition: transform .3s; }
  .store-card:hover .store-explore svg { transform: translateX(8px); }

  /* ===== TEAM ===== */
  .team-section {
    padding: 8rem 1rem;
    position: relative; overflow: hidden;
  }
  .team-glow {
    position: absolute; top: 0; left: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(201,169,98,.05), transparent);
    pointer-events: none;
  }
  .team-inner { max-width: 1280px; margin: 0 auto; position: relative; }
  .team-header {
    display: flex; flex-wrap: wrap; align-items: flex-start;
    justify-content: space-between; gap: 3rem; margin-bottom: 4rem;
  }
  .team-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  }
  @media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

  .team-card { }
  .team-img-wrap {
    position: relative;
    aspect-ratio: 5/7; overflow: hidden; margin-bottom: 1rem;
  }
  .team-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(1); transition: filter .7s;
  }
  .team-card:hover .team-img { filter: grayscale(0); }
  .team-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--dark-950), transparent);
    opacity: .6;
  }
  .team-img-border {
    position: absolute; inset: 0;
    border: 1px solid rgba(255,255,255,.05);
    transition: border-color .3s; pointer-events: none;
  }
  .team-card:hover .team-img-border { border-color: rgba(201,169,98,.3); }
  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: #fff;
    transition: color .3s;
  }
  .team-card:hover .team-name { color: var(--gold-500); }
  .team-role { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .15em; text-transform: uppercase; margin-top: .25rem; }

  /* ===== NEWS / ENTERTAINMENT ===== */
  .news-section {
    padding: 6rem 1rem 8rem;
    border-top: 1px solid rgba(255,255,255,.05);
    background: var(--dark-950);
    position: relative; overflow: hidden;
  }
  .news-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem;
  }
  @media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(4, 1fr); } }

  .news-card {
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,.05);
    background: rgba(17,17,17,.5);
    overflow: hidden;
    text-decoration: none;
    min-height: 300px;
    transition: border-color .3s;
  }
  .news-card:hover { border-color: rgba(201,169,98,.25); }
  .news-img-wrap { position: relative; height: 176px; overflow: hidden; background: var(--dark-800); flex-shrink: 0; }
  .news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .news-card:hover .news-img-wrap img { transform: scale(1.05); }
  .news-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--dark-700), var(--dark-800), var(--dark-950));
    display: flex; align-items: center; justify-content: center;
  }
  .news-placeholder span { color: rgba(255,255,255,.2); font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; }
  .news-badge {
    position: absolute; top: .75rem; left: .75rem;
    background: rgba(8,8,8,.85); border: 1px solid rgba(201,169,98,.25);
    padding: .2rem .5rem;
    font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold-500);
  }
  .news-body {
    padding: 1.25rem;
    display: flex; flex-direction: column; flex: 1;
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .news-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; color: #fff; line-height: 1.4;
    margin-bottom: .75rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .3s;
  }
  .news-card:hover .news-title { color: var(--gold-500); }
  .news-date { font-size: .7rem; color: var(--dark-500); margin-top: auto; padding-top: 1rem; }

  .news-actions {
    text-align: center; margin-top: 3rem;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  }

  /* ===== JOIN CTA ===== */
  .join-section {
    padding: 8rem 1rem;
    position: relative;
  }
  .join-bg { position: absolute; inset: 0; }
  .join-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
  .join-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--dark-950), rgba(8,8,8,.95), var(--dark-950));
  }
  .join-content {
    position: relative; z-index: 10;
    max-width: 896px; margin: 0 auto; text-align: center;
  }
  .join-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: #fff; margin-bottom: 1.5rem; line-height: 1.1;
  }
  .join-title span { color: var(--gold-500); }
  .join-sub { color: rgba(255,255,255,.5); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark-950);
    border-top: 1px solid rgba(255,255,255,.05);
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto; padding: 5rem 2rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem;
  }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

  .footer-logo { height: 48px; width: auto; object-fit: contain; object-position: left; margin-bottom: 1.5rem; }
  .footer-desc { color: rgba(255,255,255,.4); font-size: .85rem; line-height: 1.7; margin-bottom: 1.5rem; }
  .footer-socials { display: flex; gap: 1rem; }
  .social-btn {
    width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); text-decoration: none;
    transition: color .2s, border-color .2s;
  }
  .social-btn:hover { color: var(--gold-500); border-color: rgba(201,169,98,.5); }
  .social-btn svg { width: 16px; height: 16px; }

  .footer-col-title { color: #fff; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.5rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
  .footer-links a { color: rgba(255,255,255,.4); font-size: .85rem; text-decoration: none; transition: color .2s; }
  .footer-links a:hover { color: var(--gold-500); }

  .footer-bottom {
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.05);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .footer-copy { color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .1em; }

/* Secondary partners (small logo tiles) */
.partners-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.partner-secondary-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 80px;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .25s;
}
.partner-secondary-card:hover {
  border-color: rgba(201,169,98,.3);
}
.partner-secondary-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .4s, opacity .4s;
}
.partner-secondary-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}
