/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 50%),
    linear-gradient(135deg, #0b0b0b 0%, #141a10 40%, #0b0b0b 100%);
}

/* Subtle texture pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 79px,
    rgba(201,168,76,0.03) 79px,
    rgba(201,168,76,0.03) 80px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 79px,
    rgba(201,168,76,0.03) 79px,
    rgba(201,168,76,0.03) 80px
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,11,11,0.82) 40%, rgba(11,11,11,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 88px;
}

.hero-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease both;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  animation: fadeUp 1s ease 0.15s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  line-height: 1.9;
  margin-top: 28px;
  letter-spacing: 0.3px;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeUp 1s ease 0.7s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ PHOTO GALLERY ============ */
.photo-gallery {
  background: var(--black);
  padding: 0 0 2px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  height: 600px;
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.photo-tall {
  height: 100%;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: brightness(0.82) saturate(0.9);
}

.photo-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.72) saturate(1);
}

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.photo-item:hover .photo-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MANIFESTO ============ */
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.manifesto-text {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 2;
  letter-spacing: 0.2px;
}

.manifesto-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.3s;
}

.manifesto-link:hover { letter-spacing: 5px; }

/* ============ SHOWCASE ============ */
.showcase-header {
  margin-bottom: 60px;
}

.showcase-cta {
  margin-top: 48px;
}

/* ============ CATEGORY CARDS ============ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 580px;
  margin-bottom: 0;
}

.cat-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.6) saturate(0.8);
}

.cat-card:hover .cat-bg {
  transform: scale(1.07);
  filter: brightness(0.45) saturate(1);
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
  transition: background 0.5s ease;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.2) 100%
  );
}

.cat-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 48px;
}

.cat-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cat-card:hover .cat-label {
  opacity: 1;
  transform: translateY(0);
}

.cat-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.cat-card:hover .cat-title {
  color: var(--gold-light);
}

.cat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 28px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.cat-card:hover .cat-desc {
  opacity: 1;
  transform: translateY(0);
}

.cat-cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s ease;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, gap 0.3s ease;
}

.cat-cta::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.cat-card:hover .cat-cta {
  opacity: 1;
  transform: translateY(0);
}

.cat-card:hover .cat-cta::before {
  width: 50px;
}

/* ============ NUMBERS ============ */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.number-item {
  background: var(--black);
  padding: 52px 36px;
  text-align: center;
}

.num-value {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.num-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============ BANNER ============ */
.banner-section {
  position: relative;
  padding: 140px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f1f0a 0%, #1a2e10 50%, #0b1508 100%);
}

.banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08), transparent 70%);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.02) 30px, rgba(201,168,76,0.02) 31px);
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.banner-content .section-label {
  justify-content: center;
}

/* ============ WHY US ============ */
.why-header { margin-bottom: 60px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.why-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.9;
  letter-spacing: 0.2px;
}

/* ============ CTA STRIP ============ */
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}

.cta-small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.cta-big {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
}

.cta-big em { font-style: italic; color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .photo-grid { height: 420px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { height: 440px; }
}

@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-col { gap: 3px; }
  .photo-item { height: 240px; }
  .photo-tall { height: 300px; }
  .hero-content { padding: 0 24px; padding-top: 100px; }
  .hero-scroll { left: 24px; }
  .cat-grid { grid-template-columns: 1fr; height: auto; }
  .cat-card { height: 360px; }
  .cat-body { padding: 36px 28px; }
  .cat-desc { opacity: 1; transform: translateY(0); }
  .cat-cta { opacity: 1; transform: translateY(0); }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-big { font-size: 30px; }
  .manifesto-inner { padding-left: 20px; }
}

@media (max-width: 600px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
