@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Jost:wght@200;300&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
}

.home {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  background-color: #f7f0e3;
}

.home__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  background-color: #f7f0e3;
  background-image:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(210, 140, 60, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(180, 90, 50, 0.06) 0%, transparent 60%);
}

.home__photo {
  flex: 1;
  background-image: url("/cristiana_sa_background.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home__eyebrow {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(120, 70, 20, 0.85);
  margin-bottom: 1.4rem;
}

.home__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: #2c1a0a;
  text-shadow: 0 2px 40px rgba(200, 130, 60, 0.1);
}

.home__ornament {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
}

.home__ornament-line {
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 110, 45, 0.45));
}

.home__ornament-line:last-child {
  background: linear-gradient(to left, transparent, rgba(180, 110, 45, 0.45));
}

.home__ornament-diamond {
  width: 4px;
  height: 4px;
  background: rgba(180, 110, 45, 0.7);
  transform: rotate(45deg);
}

.home__social {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  margin-bottom: 2.2rem;
}

.home__social a {
  color: rgba(140, 85, 35, 0.45);
  transition: color 0.4s ease, transform 0.3s ease;
  display: flex;
}

.home__social a:hover {
  color: rgba(180, 100, 35, 0.95);
  transform: translateY(-2px);
}

.home__social svg {
  width: 1.1rem;
  height: 1.1rem;
}

.home__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.home__contact-label {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(120, 70, 20, 0.8);
  margin-bottom: 0.4rem;
}

.home__contact-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(44, 26, 10, 0.8);
  text-decoration: none;
  transition: color 0.4s ease;
}

.home__contact-item:hover {
  color: rgba(44, 26, 10, 1);
}

@media (max-width: 768px) {
  .home {
    flex-direction: column;
  }

  .home__photo {
    height: 55vw;
    flex: none;
  }

  .home__content {
    padding: 3rem 2rem;
  }

  .home__name {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }
}
