/* home.css — page-specific hero + layout styles */

/* logo center */
.cz-logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}

#czLogo {
  height: 46px;
  width: auto;
  transition: opacity 0.3s ease;
}

.hero {
  min-height:100vh;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(
  180deg,
  #baccdf 0%,
  #c1cde1 18%,
  #6e7db3 52%,
  #3b4a8f 72%,
  #25336f 82%,
  #1d2b63 100%
);
}

/* keep inner content constrained left side like the video */
.hero-inner{
  width:44%;
  padding-left:9%;
  margin-top: 21vh;
}

/* Hero headline — inter feel */
.hero-heading {
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.94);
  max-width: none;
  margin-top: 1%;
}

.hero-heading .line-1 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3.6rem, 4.25vw, 4.25rem);
  font-weight: 300;
  margin-left: 0.6ch;
}

.hero-heading .line-2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(3.6rem, 5vw, 5rem);
  font-weight: 330;
  margin-left: 0;
}

.hero-cta {
  display: inline-block;
  margin-top: 27px;
  margin-left: 10px;

  padding: 12px 28px;
  border-radius: 999px;

  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-weight: 500;

  color: rgba(0,0,0,0.75);
  border: 1px solid rgba(0,0,0,0.25);
  text-decoration: none;

  background: transparent;

  /* motion */
  opacity: 0;
  transform: translateY(6px);
  animation: heroCtaFade 0.8s ease forwards;
  animation-delay: 0.45s;

  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.hero-cta:hover {
  color: rgba(223, 223, 223, 0.95);
  border-color: rgba(223, 223, 223, 0.5);
}

@keyframes heroCtaFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Atmosphere Section */
.home-atmosphere {
  background: linear-gradient(
    180deg,
    #1d2b63 0%,
    #18245a 30%,
    #121c46 65%,
    #0f1738 100%
  );
  padding: 0px 0 120px;
  color: rgba(255,255,255,0.92);

  /* KEY */
  position: relative;
}

.atmosphere-inner {
  max-width: 920px;
  padding-left: 9%;

  /* PULL CONTENT UP */
  transform: translateY(10px);
}

.atmosphere-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
}

.atmosphere-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.atmosphere-description {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.atmosphere-secondary {
  margin-top: 18px;
}

.atmosphere-points {
  display: flex;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

/* ============================= */
/* EXPERIENCE SECTION            */
/* ============================= */
.home-experience {
  background: linear-gradient(
    180deg,
    #0f1738 0%,
    #0c142f 40%,
    #0a1128 100%
  );
  padding: 120px 0 140px;
  color: rgba(255,255,255,0.92);
}

.experience-inner {
  max-width: 1100px;
}

.experience-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  padding-left: 8.75%;
}

.experience-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  padding-left: 8.75%;
}

.experience-description {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin-bottom: 60px;
  padding-left: 8.75%;
}

/* Grid */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 80px;
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.experience-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;        /* preserves artwork integrity */
  object-position: center;
  border-radius: 14px;
  display: block;
}

.experience-card-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.experience-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.experience-link:hover {
  color: rgba(255,255,255,0.95);
}

/* Ambient audio */
.experience-audio {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.experience-audio-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.experience-audio-link {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.experience-audio-link:hover {
  text-decoration: underline;
}

/* ============================= */
/* CONTACT — REFINED CLOSE       */
/* ============================= */

.home-contact {
  min-height:65vh;
  background: linear-gradient(
    180deg,
    #0a1128 0%,
    #080e20 55%,
    #0a1024 100%
  );
  padding: 120px 0 140px;
  color: rgba(255,255,255,0.9);
}

.contact-inner {
  max-width: 720px;
  padding-left: 1%;

  /* PULL CONTENT UP */
  transform: translateY(-45px);
}

.contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.contact-title {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.contact-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 420px;
}

.contact-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.25);
  transition: background 0.3s ease;
}

.contact-link:hover::after {
  background: rgba(255,255,255,0.9);
}

/* =====================================================
   RESPONSIVE — TABLET & DOWN (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {

  .hero {
    min-height: 70vh;
    padding: 84px 0 60px;
  }

  .hero-inner {
    width: 86%;
    padding-left: 6%;
    margin-top: 18vh;
  }

  .hero-heading {
    font-size: 36px;
    line-height: 1.15;
  }

  .home-atmosphere,
  .home-experience,
  .home-contact {
    padding-left: 6%;
    padding-right: 6%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience-audio {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* =====================================================
   RESPONSIVE — SMALL DEVICES (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {

  .hero-inner {
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
    margin-top: 16vh;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-heading .line-1,
  .hero-heading .line-2 {
    white-space: normal;
  }

  .hero-cta {
    margin-left: 0;
  }

  .atmosphere-points {
    flex-direction: column;
    gap: 14px;
  }

  .contact-inner {
    transform: none;
  }
}

/* =====================================================
   RESPONSIVE — VERY SMALL DEVICES (≤ 400px)
   ===================================================== */
@media (max-width: 400px) {

  .hero-heading {
    font-size: 28px;
  }

  .hero-inner {
    margin-top: 14vh;
  }
}
