/* First Section */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 125px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  border-radius: 12px 12px 0 0;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 260px at 95% -45%, rgba(223, 78, 25, 0.11), transparent 45%),
    radial-gradient(520px 190px at 5% -55%, rgba(30, 30, 30, 0.08), transparent 44%),
    #ffffff;
  background-size: cover;
  background-position: center;
  filter: none;
  z-index: 0;

  /* Placeholder pattern until images are added */
  background-image: linear-gradient(120deg, rgba(15, 15, 15, 0.82), rgba(26, 26, 26, 0.58)), url('../../src/pics/home-hero.jpg');
}


.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--orange);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.btn-primary:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 13px 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}

.btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  transform: translateY(-1px);
}

/* Explore */
.explore {
  padding: 80px 0 72px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gray);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
  animation: fadeUp 0.4s ease both;
}
.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.12s; }

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
  object-fit: cover;
  display: block;

  /* Placeholder pattern until images are added */
  background-image: repeating-linear-gradient(
    45deg,
    #e8e8e8 0px,
    #e8e8e8 1px,
    #f0f0f0 1px,
    #f0f0f0 12px
  );
}

.feature-body {
  padding: 20px 22px 22px;
}

.feature-tag {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 0.8rem;
  color: #6a6a6a;
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-link {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.feature-link:hover { color: var(--orange); }
.feature-link::after { content: '→'; }

/* About / highlight */
.highlight {
  background: #f6f6f6;
  padding: 80px 0;
}

.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.highlight-img-wrap {
  position: relative;
}

.highlight-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;

  /* Placeholder */
  background-image: repeating-linear-gradient(
    45deg,
    #e0e0e0 0px,
    #e0e0e0 1px,
    #e8e8e8 1px,
    #e8e8e8 12px
  );
  background-color: #e8e8e8;
}

.highlight-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 60%;
  height: 60%;
  background: var(--orange);
  border-radius: 4px;
  z-index: 0;
}
.highlight-img { position: relative; z-index: 1; }

.highlight-text .section-eyebrow { text-align: left; }

.highlight-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--gray);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.highlight-title span { color: var(--orange); }

.highlight-body {
  font-size: 0.85rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.highlight-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid #e2e2e2;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gray);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
  margin-top: 4px;
  display: block;
}

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

@media (max-width: 860px) {
  .explore-grid    { grid-template-columns: 1fr; }
  .highlight-inner  { grid-template-columns: 1fr; gap: 48px; }
  .highlight-img-wrap::before { display: none; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .highlight-stats { gap: 20px; }
}
