/* ============================================================
   IMAGE HERO
   ============================================================ */
.hero-img-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}

/* On mobile: show far right side of image + darken for text legibility */
@media (max-width: 768px) {
  .hero-img-bg {
    background-position: 95% center;
  }

  /* Extra dark overlay on mobile only — the base overlay isn't enough */
  .page-hero.hero-tall::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 5, 0.45);
    z-index: 1;
    pointer-events: none;
  }
}

.page-hero-overlay.dark {
  background: linear-gradient(to top, rgba(26,22,16,0.9) 0%, rgba(26,22,16,0.2) 60%, transparent 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 3; /* above both overlays */
}

.hero-line-btn {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-line-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

/* Social buttons row — side by side on all screens */
.hero-social-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  /* Keep YT and IG on same row, shrink padding */
  .hero-social-row .btn-line {
    padding: 12px 18px;
    font-size: .6rem;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(184, 146, 58, .15);
  border-bottom: 1px solid rgba(184, 146, 58, .15);
  background: var(--cream);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: .9rem;
  font-style: italic;
  color: rgba(140, 100, 30, .75);
  padding: 0 52px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .4;
  display: inline-block;
}

/* ============================================================
   STATS STRIP PREMIUM
   ============================================================ */
.stats-strip.premium {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 146, 58, 0.2);
}

.stats-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.2) saturate(0);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.85;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
  background: rgba(184, 146, 58, 0.2);
  border: 1px solid rgba(184, 146, 58, 0.2);
}

.stat-box {
  background: rgba(26, 22, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 60px 20px;
  text-align: center;
  transition: background 0.4s;
}

.stat-box:hover {
  background: rgba(26, 22, 16, 0.8);
}

@media(max-width:900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width:500px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-num.glow {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: 16px;
  display: block;
}

/* ============================================================
   INTRO SECTION PREMIUM
   ============================================================ */
.intro-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media(max-width:900px) {
  .intro-premium-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.intro-imgs {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.img-back {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.img-front {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 75%;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid var(--cream-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.gold-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px 0 30px;
}

.intro-p {
  font-size: 1rem;
  color: var(--dark-soft);
  line-height: 1.9;
  margin-bottom: 24px;
}


/* ============================================================
   PARALLAX QUOTE
   ============================================================ */
.pq-strip {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

.pq-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
}

.pq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 16, .7);
}

.pq-content {
  position: relative;
  text-align: center;
  padding: 0 10vw;
}

.pq-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pq-text em {
  color: var(--gold-pale);
  font-style: normal;
}

/* ============================================================
   TEASERS PREMIUM CASCADE
   ============================================================ */
.teaser-cascade {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  height: 600px;
}

@media(max-width:900px) {
  .teaser-cascade {
    flex-direction: column;
    height: auto;
    gap: 40px;
  }
}

.tc-premium {
  position: relative;
  width: 300px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  cursor: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s, width 0.6s;
}

/* Asymmetric sizing */
.tc-premium.item-2 {
  width: 380px;
  height: 550px;
  z-index: 2;
}

@media(max-width:900px) {
  .tc-premium, .tc-premium.item-2 {
    width: 100%;
    height: 400px;
  }
}

.tc-bg, .tc-bg img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9);
}

.tc-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(184, 146, 58, 0.3);
}

.tc-premium:hover .tc-bg img {
  transform: scale(1.08);
}

.tc-content.glass {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(26, 22, 16, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  transition: background 0.4s;
}

.tc-premium:hover .tc-content.glass {
  background: rgba(184, 146, 58, 0.85);
  border-color: var(--gold-lt);
}

.tc-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 8px;
  transition: color 0.4s;
}

.tc-premium:hover .tc-label {
  color: var(--white);
}

.tc-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

/* ============================================================
   MINI GALLERY PREVIEW
   ============================================================ */
.mini-gallery-section {
  padding: 140px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 146, 58, 0.15);
}

.mini-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 40px;
}

.mg-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
  background: var(--cream-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: brightness(0.95);
}

.mg-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.mg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.mg-item:hover .mg-overlay {
  opacity: 1;
}

/* Premium Layout Distribution */
.mg-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.mg-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.mg-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.mg-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }

@media(max-width: 900px) {
  .mini-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .mg-item {
    height: 320px;
    width: 100%;
  }
}

/* ============================================================
   INTERNATIONAL BUYERS SECTION
   ============================================================ */
.intl-section {
  padding: 130px 0;
  background: var(--cream);
  border-top: 1px solid rgba(184, 146, 58, 0.15);
}

.intl-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.intl-header .sec-label,
.intl-header .sec-title {
  text-align: center;
}

.intl-header .sec-label {
  justify-content: center;
}

.intl-lead {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

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

@media(max-width: 900px) {
  .intl-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.intl-card {
  background: var(--ivory);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 40px 32px;
  transition: border-color .35s, transform .35s;
}

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

.intl-card-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 14px;
}

.intl-card-t {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.intl-card p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--dark-soft);
}

.intl-cta {
  text-align: center;
  margin-top: 56px;
}

/* ============================================================
   FAQ SECTION (directly above the footer)
   ============================================================ */
.faq-section {
  padding: 130px 0 150px;
  background: var(--ivory);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.faq-header .sec-label,
.faq-header .sec-title,
.faq-header .sec-body {
  text-align: center;
}

.faq-header .sec-label {
  justify-content: center;
}

.faq-header .sec-body {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream-mid);
}

.faq-item:first-child {
  border-top: 1px solid var(--cream-mid);
}

.faq-q-wrap {
  font-weight: 400;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  transition: color .3s;
}

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

.faq-caret {
  flex: none;
  color: var(--gold);
  transition: transform .35s var(--ease);
}

.faq-q[aria-expanded="true"] .faq-caret {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 4px 28px;
  max-width: 780px;
}

.faq-a p {
  font-size: .92rem;
  line-height: 1.85;
  color: var(--dark-soft);
}

/* Japanese / Chinese typography: slightly larger line-height for CJK readability */
:lang(ja) .faq-a p,
:lang(zh-Hans) .faq-a p,
:lang(ja) .intl-card p,
:lang(zh-Hans) .intl-card p {
  line-height: 2;
}

