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

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-home.jpg') center 32% / cover no-repeat;
  transform: scale(1.08);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.32) 0%, rgba(10,10,10,0.22) 40%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .eyebrow { margin-bottom: 1.6rem; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 8rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 6px 40px rgba(0,0,0,0.4);
}

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

.hero-sub {
  margin-top: 1.8rem;
  max-width: 620px;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--beige);
  letter-spacing: 0.02em;
}

.hero-content .btn { margin-top: 3rem; }

.scroll-indicator {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  overflow: hidden;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--white));
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -60px; }
  100% { top: 60px; }
}

/* ---------- About ---------- */
.about {
  padding: 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
}

.about-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.about-image:hover img { transform: scale(1.06); }

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 106, 0.35);
  z-index: 2;
  pointer-events: none;
}

.about-image-label {
  position: absolute;
  bottom: 2.4rem;
  left: 2.6rem;
  z-index: 3;
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
  line-height: 1;
}

.about-text-wrap {
  display: flex;
  align-items: center;
  padding: 6rem 6vw 6rem 4.5rem;
}

.about-text .display-lg { margin-top: 0.6rem; }

.about-text p {
  margin-top: 1.8rem;
  color: rgba(244, 239, 230, 0.78);
  font-size: 1.02rem;
  font-weight: 300;
  max-width: 560px;
}

.about-highlights {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 560px;
}

.about-highlights li {
  color: rgba(244, 239, 230, 0.78);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.6;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.about-stats div { display: flex; flex-direction: column; gap: 0.3rem; }

.about-stats .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
}

.about-stats .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.6);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; min-height: 0; }
  .about-image { height: 420px; }
  .about-image-label { font-size: 3.4rem; }
  .about-text-wrap { padding: 4rem 6vw; }
}

/* ---------- Leistungen ---------- */
.leistungen {
  padding: 9rem 0;
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 106, 0.08);
  border-bottom: 1px solid rgba(201, 168, 106, 0.08);
}

.leistungen-grid {
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.25rem;
}

.leistung-card {
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.07), rgba(201, 168, 106, 0.015));
  border: 1px solid rgba(201, 168, 106, 0.16);
  border-radius: 26px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease), background 0.6s var(--ease);
}

.leistung-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 106, 0.45);
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.13), rgba(201, 168, 106, 0.03));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 168, 106, 0.08);
}

.leistung-card .icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 14px rgba(201, 168, 106, 0.25));
  transition: transform 0.6s var(--ease);
}

.leistung-card:hover .icon { transform: scale(1.12); }

.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.leistung-card p {
  font-size: 0.86rem;
  color: rgba(244, 239, 230, 0.6);
  font-weight: 300;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .leistungen-grid { grid-template-columns: 1fr; }
}
