/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
}

.hero__content {
  max-width: 720px;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--amber);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__tagline::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: var(--text-hero);
  line-height: 1.05;
}

.hero h1 .highlight {
  color: var(--amber);
}

.hero__sub {
  color: var(--steel-muted);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
  }
  .hero__sub {
    font-size: var(--text-base);
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── About Preview ── */
.about-preview {
  background: var(--concrete);
  padding: var(--space-4xl) 0;
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Decorative amber corner */
.about-preview__image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--amber);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm) 0 0 0;
  pointer-events: none;
}

.about-preview__image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--amber);
  border-right: 3px solid var(--amber);
  border-radius: 0 0 var(--radius-sm) 0;
  pointer-events: none;
}

.about-preview__text h2 {
  margin-bottom: var(--space-lg);
}

.about-preview__text p {
  color: var(--steel);
  margin-bottom: var(--space-lg);
}

.about-preview__text .btn {
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .about-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .about-preview__image img {
    height: 320px;
  }
}

/* ── Services Preview ── */
.services-preview {
  background: var(--pure-white);
  padding: var(--space-4xl) 0;
}

.services-preview__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services-preview__header h2 {
  margin-bottom: var(--space-sm);
}

.services-preview__header p {
  color: var(--steel-light);
  max-width: 560px;
  margin: 0 auto;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.service-card {
  background: var(--concrete);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  border-color: rgba(217, 164, 65, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--amber);
  stroke-width: 1.5;
  fill: none;
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--steel-light);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ── Founder Journey Strip ── */
.founder-strip {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.founder-strip__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.founder-strip__header h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.founder-strip__header p {
  color: var(--steel-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-sm);
}

.founder-strip__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(198, 40, 40, 0.6) 100%);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--steel-muted);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
