/* ============================================================
   HOME PAGE — specific styles
   ============================================================ */

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  overflow: hidden;
}

/* Smoke blobs */
.hero-smoke {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-smoke-1 {
  width: 60vw; height: 60vw;
  top: -10%; left: -15%;
  background: radial-gradient(circle, #2e2923 0%, transparent 70%);
  animation-duration: 14s;
}

.hero-smoke-2 {
  width: 50vw; height: 50vw;
  bottom: -10%; right: -10%;
  background: radial-gradient(circle, #c9a84c12 0%, transparent 70%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

/* Subtle column silhouettes */
.hero-columns-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0%, transparent calc(20% - 1px),
      rgba(201,168,76,0.03) calc(20% - 1px), rgba(201,168,76,0.03) 20%
    );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--space-16);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-img {
  height: auto;
  width: min(420px, 80vw);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-8);
  opacity: 1;
  display: block;
}

.hero-headline {
  font-size: clamp(3.5rem, 2rem + 6vw, 8rem);
  line-height: 1;
  margin-bottom: 0;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero-motto {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--gold-dim);
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-indicator p {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- PILLARS --- */
.pillars {
  padding-block: var(--space-12);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.pillars-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pillar {
  flex: 1;
  padding: var(--space-8) var(--space-8);
  text-align: center;
}

.pillar-divider {
  width: 1px;
  background: var(--gold-border);
  align-self: stretch;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  display: block;
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.pillar-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- FOR WHOM --- */
.for-whom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.for-whom-list li {
  font-size: var(--text-base);
  color: var(--text-muted);
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.quote-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--white);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.quote-attr {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- OFFER --- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.offer-card {
  padding: var(--space-8);
}

.offer-icon {
  margin-bottom: var(--space-5);
}

.offer-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: 0.03em;
}

.offer-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- LEAD CTA --- */
.lead-cta {
  background: var(--black);
  border-block: 1px solid var(--gold-border);
}

.lead-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.mockup-frame {
  border: 1px solid var(--gold-border);
  background: linear-gradient(160deg, var(--stone-dark), var(--charcoal));
  padding: var(--space-8);
  position: relative;
}

.mockup-frame::before,
.mockup-frame::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.mockup-frame::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.mockup-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.mockup-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gold-border);
  margin-bottom: var(--space-6);
}

.mockup-body { margin-bottom: var(--space-8); }

.mockup-footer {
  padding-top: var(--space-4);
  border-top: 1px solid var(--gold-border);
}

/* --- FINAL CTA --- */
.final-cta {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .pillars-inner { flex-direction: column; }
  .pillar-divider { width: 100%; height: 1px; }
  .for-whom-inner { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .lead-cta-inner { grid-template-columns: 1fr; }
  .hero-logo-img { width: min(300px, 85vw); height: auto; }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }
  .hero-content {
    padding-block: var(--space-8);
    /* force full width so centering works regardless of container gutter */
    width: 100vw;
    padding-inline: 1.5rem;
    box-sizing: border-box;
  }
  .hero-logo-img {
    width: min(240px, 70vw);
    margin-left: auto;
    margin-right: auto;
  }
  /* Shrink headline aggressively so words don't clip */
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    width: 100%;
  }
  .hero-sub {
    font-size: var(--text-base);
    max-width: 100%;
  }
  .for-whom-quote-box {
    margin-top: var(--space-8);
  }
  .offer-card {
    padding: var(--space-6);
  }
  .lead-cta-mockup {
    display: none;
  }
  .lead-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
