/* =========================
   BASE
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;

  background: #ffffff;
  color: #111111;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================
   NAVEGACIÓN
========================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  padding: 24px 32px;

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

  z-index: 100;

  font-size: 14px;
  letter-spacing: 0.04em;
}

.nav-brand {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav a {
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.45;
}


/* =========================
   PORTADA
========================= */

.hero {
  width: 100%;
  height: 100svh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 70px 24px 40px;
}

.hero-logo {
  width: min(48vw, 520px);
  aspect-ratio: 1 / 1;

  background-color: #c29548;

  -webkit-mask-image: url("https://res.cloudinary.com/dsppfoxzs/image/upload/v1789863156/ChatGPT_Image_Sep_19_2026_09_08_56_PM_jxjwks.png");
  mask-image: url("https://res.cloudinary.com/dsppfoxzs/image/upload/v1789863156/ChatGPT_Image_Sep_19_2026_09_08_56_PM_jxjwks.png");

  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;
}

.hero-name {
  width: min(35vw, 370px);
  height: auto;
  display: block;

  margin-top: 35px;
}

.hero-logo,
.hero-name {
  opacity: 0;
  transform: translateY(8px);

  animation: aparecer 1.5s ease forwards;
}

.hero-name {
  animation-delay: 0.25s;
}

@keyframes aparecer {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   VIDEO
========================= */

.video-section {
  width: 100%;
  padding: 0 4vw;
}

.video-placeholder {
  width: 100%;
  height: 80vh;

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

  background: #eeeeeb;

  font-size: 12px;
  letter-spacing: 0.15em;
}


/* =========================
   INTRO
========================= */

.intro {
  min-height: 90vh;

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

  padding: 12vw 8vw;

  text-align: center;
}

.intro-content {
  max-width: 900px;
}

.intro-phrase {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;

  margin-bottom: 60px;
}

.intro-text {
  max-width: 620px;
  margin: 0 auto 50px;

  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.4;
}


/* =========================
   BOTONES
========================= */

.button-link {
  display: inline-block;

  padding-bottom: 5px;

  border-bottom: 1px solid #111111;

  font-size: 15px;
  letter-spacing: 0.04em;

  transition: opacity 0.3s ease;
}

.button-link:hover {
  opacity: 0.45;
}


/* =========================
   SECCIONES
========================= */

.section {
  width: 100%;
  min-height: 100vh;

  padding: 120px 7vw;
}

.section-label {
  margin-bottom: 100px;

  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}


/* =========================
   EXPERIENCIAS
========================= */

.experiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 100%;

  border-top: 1px solid #bdbdb8;
  border-bottom: 1px solid #bdbdb8;
}

.experience {
  min-height: 430px;

  padding: 28px 28px 35px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid #bdbdb8;
}

.experience:last-child {
  border-right: none;
}

.experience-number {
  font-size: 12px;
  letter-spacing: 0.08em;

  margin-bottom: auto;
}

.experience h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 300;
  line-height: 0.95;

  margin-bottom: 25px;
}

.experience p {
  font-size: 17px;
  line-height: 1.4;

  max-width: 280px;
}

/* =========================
   SOBRE ÉTER
========================= */

.about-intro {
  max-width: 900px;

  margin-bottom: 140px;
}

.about-intro h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;

  margin-bottom: 50px;
}

.about-intro p {
  max-width: 550px;

  font-size: 20px;
  line-height: 1.45;
}

.people {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 6vw;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;

  background: #eeeeeb;

  margin-bottom: 25px;
}

.person h3 {
  font-size: 32px;
  font-weight: 400;

  margin-bottom: 10px;
}

.person p {
  max-width: 400px;

  font-size: 17px;
  line-height: 1.45;
}

.manifesto-wrapper {
  position: relative;

  width: 100%;
  max-width: 850px;

  padding: 80px 70px;
  margin-bottom: 140px;
}

.manifesto-paper {
  position: absolute;

  top: 18%;
  left: 0;

  width: 100%;
  height: 65%;

  background-image: url("https://res.cloudinary.com/dsppfoxzs/image/upload/v1789875679/42505aee-4587-4167-9abc-102b166b20a4_rw_1920_euatij.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

   filter: grayscale(70%);
   opacity: 0.4;

  z-index: 0;

  will-change: transform;
}

.manifesto {
  position: relative;
  z-index: 1;

  max-width: 700px;
  margin-bottom: 0;
}

.manifesto {
  max-width: 700px;
}

.manifesto p {
  max-width: 700px;

  margin-bottom: 24px;

  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.manifesto-emphasis {
  font-size: 16px !important;
  line-height: 1.45 !important;
  font-weight: 400;

  margin: 24px 0 !important;
}

.manifesto-ending {
  margin-top: 55px;
}

.manifesto-ending p:first-child,
.manifesto-ending p:last-child {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

/* =========================
   AGENDA
========================= */

.agenda-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;

  gap: 50px;

  align-items: end;

  padding: 50px 0;

  border-top: 1px solid #bdbdb8;
  border-bottom: 1px solid #bdbdb8;
}

.agenda-type {
  margin-bottom: 10px;

  font-size: 14px;
  letter-spacing: 0.05em;
}

.agenda-item h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
}

.agenda-info {
  font-size: 17px;
  line-height: 1.5;
}


/* =========================
   ESPACIO
========================= */

.space-intro {
  max-width: 1000px;

  margin-bottom: 100px;
}

.space-intro h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;

  margin-bottom: 50px;
}

.space-intro p {
  max-width: 520px;

  font-size: 20px;
  line-height: 1.45;
}

.space-images {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;

  gap: 30px;

  align-items: end;
}

.space-image {
  width: 100%;
  aspect-ratio: 4 / 5;

  background: #eeeeeb;
}

.space-image:last-child {
  aspect-ratio: 4 / 3;
}


/* =========================
   CONTACTO
========================= */

.contact {
  min-height: 100vh;

  padding: 120px 7vw 50px;

  display: flex;
  flex-direction: column;
}

.contact-main {
  flex: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contact-main h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: .9;
  margin-bottom: 45px;
}

.contact-whatsapp {
  font-size: clamp(1.25rem, 2vw, 2rem);
  border-bottom: 1px solid #111;
}

.contact-links {
  display: flex;
  justify-content: space-between;

  padding-top: 30px;

  border-top: 1px solid #bdbdb8;

  font-size: 15px;
}
/* =========================
   LEGAL
========================= */

.legal-footer {
  margin-top: 80px;
  padding-top: 18px;

  border-top: 1px solid #e2e2de;

  font-size: 12px;
  letter-spacing: 0.03em;
}

.legal-footer sup {
  position: relative;
  top: -0.15em;

  font-size: 7px;
  margin-left: 1px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .nav {
  padding: 18px 12px;

  flex-direction: row;
  align-items: center;
  justify-content: center;

  gap: 14px;

  white-space: nowrap;
}

.nav-brand {
  flex-shrink: 0;

  font-size: 9px;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  width: auto;

  align-items: center;
  justify-content: center;

  gap: 14px;

  overflow: visible;
  white-space: nowrap;

  font-size: 9px;
}


  .hero {
    padding: 60px 20px 30px;
  }

  .hero-logo {
    width: 75vw;
  }

  .hero-name {
    width: 60vw;
    margin-top: 25px;
  }


  .video-section {
    padding: 0 20px;
  }

  .video-placeholder {
    height: 65vh;
  }


  .intro {
    min-height: 80vh;
    padding: 100px 25px;
  }

  .intro-phrase {
    margin-bottom: 40px;
  }


  .section {
    min-height: auto;
    padding: 100px 25px;
  }

  .section-label {
    margin-bottom: 60px;
  }


  .experiences {
  grid-template-columns: repeat(2, 1fr);
}

.experience {
  min-height: 300px;

  padding: 18px 15px 22px;
}

.experience:nth-child(2) {
  border-right: none;
}

.experience:nth-child(1),
.experience:nth-child(2) {
  border-bottom: 1px solid #bdbdb8;
}

.experience h2 {
  font-size: clamp(1.7rem, 7vw, 2.5rem);
  margin-bottom: 18px;
}

.experience p {
  font-size: 14px;
  line-height: 1.35;
}

   .manifesto-paper {
    background-position: left center;
  }

  .people {
    grid-template-columns: 1fr;

    gap: 70px;
  }


  .agenda-item {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .space-images {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .contact {
    padding: 100px 25px 35px;
  }

  .contact-links {
    flex-direction: column;

    gap: 12px;
  }

}
