/* ═══ HERO ═══ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.65) 0%, rgba(15,15,15,0.35) 60%, rgba(15,15,15,0.55) 100%);
}
.hero-placeholder { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
}
.hero-text { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  border: 1px solid rgba(232,98,10,0.4);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 900;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--transition);
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--orange);
  animation: scrollDrop 1.8s ease infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 1; }
  100% { transform: translateY(300%); opacity: 0; }
}

/* ═══ INTRO SECTION ═══ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .eyebrow { margin-bottom: 12px; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text h2 em { color: var(--orange); font-style: italic; }
.intro-text > p { color: var(--gray); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.8; }
.intro-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }

/* Intro image grid */
.intro-img-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 400px 200px;
  gap: 12px;
}
.intro-img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-img-main img, .intro-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.intro-img-main:hover img, .intro-img-side:hover img { transform: scale(1.04); }
.intro-img-side { border-radius: var(--radius-lg); overflow: hidden; }

/* ═══ CATEGORIES SECTION ═══ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { opacity: 0.04; }
.cat-card:hover .cat-label { color: var(--orange); }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-icon { font-size: 2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.cat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; position: relative; z-index: 1; transition: color var(--transition); }
.cat-desc { font-size: 0.75rem; color: var(--light-gray); position: relative; z-index: 1; }
.cat-count { font-size: 0.7rem; color: var(--orange); margin-top: 8px; font-weight: 600; position: relative; z-index: 1; }
.cat-arrow { position: absolute; bottom: 12px; right: 12px; opacity: 0; transform: translateX(-8px); transition: var(--transition); font-size: 1rem; color: var(--orange); }

/* ═══ LATEST POSTS SECTION ═══ */
.section-header { position: relative; }
.section-link {
  position: absolute;
  right: 0;
  bottom: 8px;
}
.post-card { display: flex; flex-direction: column; }
.post-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: block;
  margin-bottom: 20px;
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.06); }
.post-card-thumb .tag { position: absolute; top: 16px; left: 16px; }
.no-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e4e0, #d4cdc8); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--light-gray);
  margin-bottom: 10px;
}
.dot { color: var(--border); }
.post-card-title { font-size: 1.1rem; margin-bottom: 8px; }
.post-card-title a { transition: color var(--transition); }
.post-card-title a:hover { color: var(--orange); }
.post-card-excerpt { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition);
}
.read-more:hover { gap: 10px; }

/* ═══ FEATURED GALLERY ═══ */
.featured-gallery-section { overflow: hidden; }
.featured-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
}
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,0);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(15,15,15,0.55); }
.gallery-item-title {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-item-cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.3s ease 0.05s, opacity 0.3s ease 0.05s;
}
.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-cat { transform: translateY(0); opacity: 1; }

/* ═══ BRAND MARQUEE ═══ */
.brand-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 24px;
}
.brand-marquee { overflow: hidden; position: relative; }
.brand-marquee::before, .brand-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 1;
  pointer-events: none;
}
.brand-marquee::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.brand-marquee::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 20s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-marquee:hover .marquee-track { animation-play-state: paused; }
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 72px;
  white-space: nowrap;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.brand-item:hover .brand-name { color: var(--gray); }

/* ═══ CTA STRIP ═══ */
.cta-strip { background: var(--orange); padding: 64px 0; }
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-text h2 { color: var(--white); margin-bottom: 8px; }
.cta-strip-text p  { color: rgba(255,255,255,0.75); margin: 0; }
.cta-strip .btn-primary {
  background: var(--white);
  color: var(--orange);
}
.cta-strip .btn-primary::after { background: rgba(255,255,255,0.9); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-images { order: -1; }
  .intro-img-grid { grid-template-rows: 300px 150px; }
  .featured-gallery { grid-template-columns: repeat(4, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .featured-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.4rem; }
  .intro-stats { gap: 24px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
  .section-link { position: static; margin-top: 16px; }
  .section-header { margin-bottom: 40px; }
}
