/* ── SECTIONS — Per-section styles ── */

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(44, 40, 37, 0.72) 0%,
      rgba(44, 40, 37, 0.15) 55%,
      transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 6rem;
  max-width: 820px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  text-shadow: 0 1px 12px rgba(44, 40, 37, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold-dark);
  margin-right: 0.8rem;
  vertical-align: middle;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  text-shadow: 0 2px 20px rgba(44, 40, 37, 0.5);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: #8a6a32;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(253, 250, 245, 0.78);
  text-shadow: 0 1px 10px rgba(44, 40, 37, 0.4);
  max-width: 560px;
  margin-bottom: 2.4rem;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253, 250, 245, 0.55);
  writing-mode: vertical-rl;
}

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

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── ABOUT ── */
#about {
  padding: 9rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--white);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.about-badge .label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  opacity: 0.9;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

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

.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

.about-divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}

/* ── SOLUTIONS ── */
#solutions {
  padding: 9rem 0;
  background: var(--cream-dark);
  overflow: hidden;
}

.solutions-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.solutions-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
}

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

.solutions-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-gray);
}

.solutions-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* ── KEY FOCUS ── */
#focus {
  padding: 9rem 0;
  background: var(--white);
}

.focus-header {
  text-align: center;
  margin-bottom: 5rem;
}

.focus-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.focus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.focus-card {
  position: relative;
  overflow: hidden;
}

.focus-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.focus-card:hover .focus-card-img {
  transform: scale(1.04);
}

.focus-card-body {
  background: var(--cream-dark);
  padding: 2.5rem;
  position: relative;
}

.focus-card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.5rem;
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

.focus-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream-deeper);
  line-height: 1;
  position: absolute;
  top: 1.2rem;
  right: 2rem;
}

.focus-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 1rem;
  max-width: 75%;
}

.focus-card-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--warm-gray);
}

/* ── WHY US ── */
#why {
  padding: 9rem 0;
  background: var(--cream-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.why-img-wrap {
  position: sticky;
  top: 120px;
}

.why-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.why-img-caption {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.2rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

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

.why-list {
  list-style: none;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--cream-deeper);
  transition: transform 0.3s ease;
  cursor: default;
}

.why-item:hover {
  transform: translateX(6px);
}

.why-item:first-child {
  border-top: 1px solid var(--cream-deeper);
}

.why-icon {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.why-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-item-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.why-item-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* ── CONTACT ── */
#contact {
  padding: 9rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "INNEXA";
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-tag {
  color: var(--gold-light);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

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

.contact-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(253, 250, 245, 0.6);
  margin-bottom: 2.5rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

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

.contact-img-wrap::after {
  content: "";
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid rgba(184, 150, 90, 0.3);
  z-index: 0;
}

.contact-connect {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-connect-title {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.contact-connect-title::before {
  content: "—";
  margin-right: 0.6rem;
  opacity: 0.6;
}

.contact-connect-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: rgba(253, 250, 245, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-connect-link:hover {
  color: var(--gold-light);
}

.contact-connect-link svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}