/* ========================================
   Landing Page — Clean split layout
   ======================================== */

.page-landing {
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ——— Main split layout ——— */
.landing-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.landing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 60px 2.5rem 0;
  gap: 2rem;
}

/* ——— Left: Text ——— */
.landing-text {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  font-style: italic;
  line-height: 0.95;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  margin: 0;
}

.landing-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* ——— Right: Photo ——— */
.landing-photo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: calc(100vh - 60px);
  padding: 1rem 0;
}

.landing-photo__img {
  width: 100%;
  max-width: 560px;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Social icons — right edge ——— */
.landing-social {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 50;
}

.landing-social a {
  color: #1a1a1a;
  transition: opacity 0.2s;
}

.landing-social a:hover {
  opacity: 0.5;
}

/* ——— Footer ——— */
.landing-footer {
  text-align: center;
  padding: 2rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.02em;
}


/* ========================================
   Responsive
   ======================================== */

@media (max-width: 768px) {
  .landing-header {
    padding: 1.25rem 1.5rem;
  }

  .landing-split {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 2rem;
    min-height: auto;
    gap: 2rem;
  }

  .landing-text {
    padding-left: 0;
    order: 1;
  }

  .landing-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .landing-photo {
    order: 2;
    padding: 0;
    height: auto;
  }

  .landing-photo__img {
    max-width: 100%;
    max-height: 60vh;
    height: auto;
  }

  .landing-social {
    position: fixed;
    right: 1rem;
    top: auto;
    bottom: 1.5rem;
    transform: none;
    flex-direction: row;
    gap: 1rem;
  }

  .landing-nav__links {
    gap: 1.5rem;
  }
}
