/* RESET */

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


/* VARIABLES */

:root{

  --bg-color: #111315;
  --secondary-bg: #181b1f;

  --text-main: #f5f1ea;
  --text-soft: #b9b2aa;

  --accent: #ad2a42;

  --border-color: rgba(255,255,255,0.08);

}


/* BASE */

html{
  scroll-behavior: smooth;
}

body{

  background: radial-gradient(
    circle at top,
    #1b1d22 0%,
    #111315 55%
  );

  color: var(--text-main);

  font-family: 'Inter', sans-serif;

  min-height: 100vh;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  padding-top: 90px;
}


/* NAVBAR */

.navbar{

  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.4rem 7%;

  position: fixed;
  top: 0;
  left: 0;

  backdrop-filter: blur(12px);

  background: rgba(17,19,21,0.55);

  border-bottom: 1px solid var(--border-color);

  z-index: 999;
}


.logo{

  font-family: 'Cormorant Garamond', serif;

  font-size: 1.8rem;
  letter-spacing: 2px;

  font-weight: 600;
}


.nav-links{

  display: flex;
  gap: 2.5rem;
}


.nav-links a{

  position: relative;

  text-decoration: none;

  color: var(--text-soft);

  font-size: 0.95rem;

  transition: 0.3s ease;
}


.nav-links a:hover{

  color: var(--text-main);
}


.nav-links a::after{

  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1px;

  background: var(--text-main);

  transition: 0.3s ease;
}


.nav-links a:hover::after{

  width: 100%;
}



/* HERO */

.hero{

  min-height: calc(100vh - 90px);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 7%;

  gap: 4rem;
}


.hero-content{

  max-width: 650px;
}


.small-title{

  color: var(--accent);

  letter-spacing: 3px;

  font-size: 0.85rem;

  margin-bottom: 1.2rem;
}


.hero h1{

  font-family: 'Cormorant Garamond', serif;

  font-size: 5rem;

  line-height: 0.95;

  font-weight: 500;

  margin-bottom: 2rem;
}


.description{

  color: var(--text-soft);

  line-height: 1.9;

  max-width: 560px;

  margin-bottom: 2.5rem;
}



/* FOTO HERO */

.hero-photo{

  width: 340px;
  height: 340px;

  border-radius: 50%;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}


.hero-photo img{

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    brightness(0.85)
    contrast(1.05);
}



/* BOTONES */

.hero-buttons{

  display: flex;
  gap: 1rem;
}


.btn{

  padding: 1rem 2rem;

  text-decoration: none;

  border-radius: 100px;

  transition: 0.3s ease;

  font-size: 0.95rem;
}


.primary-btn{

  background: var(--text-main);

  color: var(--bg-color);
}


.primary-btn:hover{

  transform: translateY(-2px);

  opacity: 0.9;
}


.secondary-btn{

  border: 1px solid rgba(255,255,255,0.2);

  color: var(--text-main);
}


.secondary-btn:hover{

  background: var(--text-main);

  color: var(--bg-color);
}



/* SECCIONES */

.intro-section{

  padding: 8rem 7%;

  background: var(--secondary-bg);

  border-top: 1px solid var(--border-color);
}


/* GRID REVISTA */

.intro-grid{

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 6rem;

  align-items: center;
}



/* IMAGEN */

.intro-image{

  width: 100%;

  overflow: hidden;

  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35);
}


.intro-image img{

  width: 100%;

  height: 420px;

  object-fit: cover;

  display: block;

  filter:
    brightness(0.72)
    contrast(1.05)
    saturate(0.9);

  transition: transform 0.8s ease;
}


.intro-image:hover img{

  transform: scale(1.03);
}



/* TEXTO */

.intro-text{

  max-width: 520px;
}


.section-label{

  color: var(--accent);

  letter-spacing: 4px;

  font-size: 0.8rem;

  margin-bottom: 1.5rem;
}


.intro-text h2,
.services-content h2{

  font-family: 'Cormorant Garamond', serif;

  font-size: 4.5rem;

  line-height: 0.95;

  margin-bottom: 2rem;

  font-weight: 500;
}


.intro-text p,
.services-content p{

  color: var(--text-soft);

  line-height: 2;

  font-size: 1rem;
}



/* TE ACOMPAÑO */

.companion-section{

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 4rem;
}


.intro-quote-right{

  max-width: 300px;

  padding-left: 2rem;

  border-left: 1px solid rgba(255,255,255,0.1);
}


.intro-quote-right p{

  font-family: 'Cormorant Garamond', serif;

  font-size: 1.8rem;

  line-height: 1.5;

  color: rgba(255,255,255,0.75);
}



/* SERVICIOS */

.services-content{

  width: 100%;
}


.services-boxes{

  display: flex;
  flex-direction: column;

  gap: 1.2rem;

  margin-top: 2.5rem;
}


.service-box{

  width: 100%;

  padding: 1.4rem 1.6rem;

  border: 1px solid rgba(173,42,66,0.6);

  border-radius: 18px;

  background: rgba(255,255,255,0.02);

  text-decoration: none;

  color: var(--text-main);

  font-size: 1rem;

  transition:
    transform 0.3s ease,
    border 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.service-box:hover{

  transform: scale(1.03);

  border: 1px solid var(--accent);

  background: rgba(173,42,66,0.08);

  box-shadow:
    0 10px 30px rgba(173,42,66,0.15);
}


.coffee-box{

  margin-top: 0.8rem;

  background: rgba(173,42,66,0.12);
}



/* FOOTER */

.footer{

  padding: 3rem 7%;

  text-align: center;

  border-top: 1px solid var(--border-color);

  background: rgba(17,19,21,0.6);

  color: var(--text-soft);

  font-size: 0.9rem;
}



/* RESPONSIVE */

@media(max-width: 1100px){

  .intro-grid{

    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .intro-text{

    max-width: 100%;
  }

}


@media(max-width: 1000px){

  .hero{

    flex-direction: column;

    justify-content: center;

    padding-top: 4rem;

    text-align: center;
  }

  .hero-buttons{

    justify-content: center;
  }

  .hero h1{

    font-size: 4rem;
  }

  .hero-photo{

    width: 260px;
    height: 260px;
  }

  .companion-section{

    flex-direction: column;

    text-align: center;
  }

  .intro-quote-right{

    border-left: none;

    border-top: 1px solid rgba(255,255,255,0.1);

    padding-top: 2rem;
    padding-left: 0;
  }

}


@media(max-width: 700px){

  .navbar{

    flex-direction: column;

    gap: 1rem;
  }

  .nav-links{

    gap: 1.2rem;

    flex-wrap: wrap;

    justify-content: center;
  }

  .hero h1{

    font-size: 3rem;
  }

  .intro-text h2,
  .services-content h2{

    font-size: 3rem;
  }

  .intro-image img{

    height: 260px;
  }

  .hero-photo{

    width: 220px;
    height: 220px;
  }

}