/* =========================================
   VARIABLES
========================================= */

:root {
  --black: #171714;
  --black-soft: #22221e;

  --cream: #eee9df;
  --cream-dark: #ddd5c7;

  --white: #fdfcf9;

  --brown: #8d7258;
  --gray: #77736c;

  --border: #cfc8bb;
}


/* =========================================
   RESET
========================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  background: var(--cream);

  color: var(--black);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;
}


body.menu-open {
  overflow: hidden;
}


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


img {
  width: 100%;
  display: block;
}


button,
input,
select,
textarea {
  font: inherit;
}


button {
  border: 0;
}


.container {
  width: min(1200px, 90%);
  margin: auto;
}


.section {
  padding: 120px 0;
}


/* =========================================
   TIPOGRAFÍA
========================================= */

h1,
h2,
blockquote {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 400;
}


em {
  font-weight: 400;
  color: var(--brown);
}


.eyebrow {
  display: block;

  color: #b9b5ad;

  font-size: .65rem;
  font-weight: 800;

  letter-spacing: 2.5px;

  margin-bottom: 22px;
}


.eyebrow.dark {
  color: var(--brown);
}


.section-index {
  display: block;

  font-size: .65rem;
  font-weight: 800;

  margin-bottom: 45px;

  color: #8b877f;
}


/* =========================================
   HEADER
========================================= */

.header {
  position: absolute;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 100;

  color: white;
}


.navbar {
  height: 100px;

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

  border-bottom:
    1px solid rgba(255,255,255,.25);
}


.logo {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.45rem;

  letter-spacing: 2px;
}


.logo span {
  color: #c7a887;
}


.nav-links {
  display: flex;

  align-items: center;

  gap: 32px;

  list-style: none;
}


.nav-links a {
  font-size: .72rem;

  letter-spacing: 1px;
}


.nav-links a:hover {
  color: #c7a887;
}


.book-link {
  padding-bottom: 5px;

  border-bottom:
    1px solid white;

  font-size: .65rem;
  font-weight: 700;

  letter-spacing: 1.3px;
}


.menu-btn {
  display: none;

  background: transparent;

  color: white;

  font-size: 1.7rem;

  cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
  background: var(--black);

  color: white;

  min-height: 900px;

  position: relative;

  overflow: hidden;
}


.hero-grid {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 80px;

  align-items: center;

  min-height: 820px;

  padding-top: 100px;
}


.hero-copy {
  position: relative;

  z-index: 2;
}


.hero h1 {
  font-size:
    clamp(4.2rem, 8vw, 8.5rem);

  line-height: .82;

  letter-spacing: -6px;

  margin-bottom: 35px;
}


.hero h1 em {
  color: #c5a585;
}


.hero-copy > p {
  max-width: 420px;

  color: #aaa69f;

  font-size: .95rem;
}


.circle-link {
  width: 130px;
  height: 130px;

  margin-top: 50px;

  border:
    1px solid #6d6963;

  border-radius: 50%;

  display: flex;

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

  padding: 20px;

  transition: .3s;
}


.circle-link span {
  font-size: .58rem;
  font-weight: 800;

  letter-spacing: 1px;
}


.circle-link strong {
  font-size: 1.3rem;

  font-weight: 400;
}


.circle-link:hover {
  background: #c5a585;

  border-color: #c5a585;

  color: var(--black);
}


.hero-image {
  height: 650px;

  position: relative;

  overflow: hidden;
}


.hero-image img {
  height: 100%;

  object-fit: cover;

  filter: saturate(.75);
}


.image-caption {
  position: absolute;

  bottom: 0;
  left: 0;

  background: var(--cream);

  color: var(--black);

  padding: 15px 20px;

  font-size: .58rem;
  font-weight: 800;

  letter-spacing: 1px;
}


.image-caption span {
  color: var(--brown);

  margin-right: 15px;
}


.hero-marquee {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  background: #b89878;

  color: var(--black);

  overflow: hidden;

  padding: 16px 0;

  white-space: nowrap;
}


.hero-marquee div {
  width: max-content;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-style: italic;

  font-size: 1.1rem;

  animation:
    marquee 25s linear infinite;
}


@keyframes marquee {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}


/* =========================================
   SERVICIOS
========================================= */

.services {
  background: var(--cream);
}


.section-intro {
  display: grid;

  grid-template-columns:
    .25fr 1fr;

  margin-bottom: 80px;
}


.section-intro h2 {
  font-size:
    clamp(3.5rem, 7vw, 7rem);

  line-height: .9;

  letter-spacing: -5px;
}


.service-list {
  border-top:
    1px solid var(--border);
}


.service {
  display: grid;

  grid-template-columns:
    .2fr 1fr .3fr .2fr;

  gap: 30px;

  align-items: center;

  padding: 32px 0;

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

  transition: .25s;
}


.service:hover {
  padding-left: 20px;

  padding-right: 20px;

  background: var(--black);

  color: white;
}


.service-number {
  color: var(--brown);

  font-size: .65rem;
}


.service-name h3 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 2rem;

  font-weight: 400;
}


.service-name p {
  color: var(--gray);

  font-size: .8rem;
}


.service:hover
.service-name p {
  color: #aaa;
}


.service-time {
  color: var(--gray);

  font-size: .65rem;

  letter-spacing: 1px;
}


.service-price {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.2rem;

  text-align: right;
}


.price-note {
  color: var(--gray);

  font-size: .7rem;

  margin-top: 20px;
}


/* =========================================
   ESTUDIO
========================================= */

.studio {
  padding: 130px 0;

  background: var(--black);

  color: white;
}


.studio-grid {
  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  gap: 100px;

  align-items: center;
}


.studio-images {
  position: relative;

  min-height: 700px;
}


.studio-image-main {
  width: 80%;
  height: 650px;

  overflow: hidden;
}


.studio-image-main img {
  height: 100%;

  object-fit: cover;
}


.studio-image-small {
  position: absolute;

  width: 45%;
  height: 300px;

  right: 0;
  bottom: 0;

  border:
    10px solid var(--black);

  overflow: hidden;
}


.studio-image-small img {
  height: 100%;

  object-fit: cover;
}


.light-index {
  color: #777;
}


.studio-content h2 {
  font-size:
    clamp(3rem, 5vw, 5.2rem);

  line-height: .95;

  letter-spacing: -4px;

  margin-bottom: 30px;
}


.studio-content h2 em {
  display: block;

  color: #c5a585;
}


.studio-content > p {
  max-width: 500px;

  color: #a6a39d;

  margin-bottom: 17px;

  font-size: .9rem;
}


.studio-stats {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin-top: 55px;

  padding-top: 25px;

  border-top:
    1px solid #393936;
}


.studio-stats strong {
  display: block;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  color: #c5a585;

  font-size: 2rem;

  font-weight: 400;
}


.studio-stats span {
  color: #777;

  font-size: .6rem;

  text-transform: uppercase;

  letter-spacing: .7px;
}


/* =========================================
   GALERÍA
========================================= */

.work {
  background: var(--white);
}


.work-heading {
  display: grid;

  grid-template-columns:
    1fr .5fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 70px;
}


.work-heading h2 {
  font-size:
    clamp(3.5rem, 7vw, 7rem);

  line-height: .88;

  letter-spacing: -5px;
}


.work-heading > p {
  max-width: 380px;

  color: var(--gray);
}


.gallery {
  display: grid;

  grid-template-columns:
    1.1fr .9fr;

  grid-template-rows:
    330px 330px;

  gap: 20px;
}


.gallery-item {
  position: relative;

  overflow: hidden;
}


.gallery-item.tall {
  grid-row: 1 / 3;
}


.gallery-item img {
  height: 100%;

  object-fit: cover;

  filter: saturate(.8);

  transition: .5s;
}


.gallery-item:hover img {
  transform: scale(1.04);
}


.gallery-item figcaption {
  position: absolute;

  left: 0;
  bottom: 0;

  padding: 13px 17px;

  background: var(--white);

  font-size: .6rem;

  font-weight: 800;

  letter-spacing: 1px;
}


.gallery-item figcaption span {
  color: var(--brown);

  margin-right: 12px;
}


/* =========================================
   EXPERIENCIA
========================================= */

.experience {
  min-height: 750px;

  position: relative;

  display: flex;

  align-items: center;

  color: white;

  overflow: hidden;
}


.experience-background {
  position: absolute;

  inset: 0;
}


.experience-background img {
  height: 100%;

  object-fit: cover;
}


.experience::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    rgba(10,10,8,.72);
}


.experience-content {
  position: relative;

  z-index: 2;

  text-align: center;

  max-width: 950px;
}


.experience blockquote {
  font-size:
    clamp(3rem, 6vw, 6.5rem);

  line-height: .95;

  letter-spacing: -4px;
}


.experience-content p {
  color: #bbb;

  margin: 30px 0;
}


.experience-content > a {
  display: inline-block;

  border-bottom:
    1px solid white;

  padding-bottom: 5px;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: 1px;
}


/* =========================================
   RESERVACIÓN
========================================= */

.booking {
  padding: 130px 0;

  background: #c3a384;

  color: var(--black);
}


.booking-grid {
  display: grid;

  grid-template-columns:
    .8fr 1.2fr;

  gap: 100px;
}


.booking-copy h2 {
  font-size:
    clamp(3.8rem, 7vw, 7rem);

  line-height: .85;

  letter-spacing: -5px;

  margin-bottom: 30px;
}


.booking-copy h2 em {
  color: var(--black);
}


.booking-copy > p {
  max-width: 400px;

  color: #55483c;

  margin-bottom: 50px;
}


.booking-details {
  display: grid;

  gap: 20px;
}


.booking-details div {
  padding-top: 15px;

  border-top:
    1px solid rgba(0,0,0,.25);
}


.booking-details span {
  display: block;

  font-size: .58rem;
  font-weight: 800;

  letter-spacing: 1px;

  margin-bottom: 5px;
}


.booking-details strong {
  font-size: .78rem;
}


.booking-form {
  padding: 50px;

  background: var(--cream);
}


.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 20px;
}


.field {
  margin-bottom: 25px;
}


.field label {
  display: block;

  font-size: .62rem;
  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-bottom: 8px;
}


.field input,
.field select,
.field textarea {
  width: 100%;

  padding: 13px 0;

  background: transparent;

  border: 0;

  border-bottom:
    1px solid #9e978c;

  outline: none;
}


.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--black);
}


.field textarea {
  min-height: 100px;

  resize: vertical;
}


.booking-button {
  width: 100%;

  min-height: 60px;

  padding: 0 22px;

  display: flex;

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

  background: var(--black);

  color: white;

  cursor: pointer;

  transition: .25s;
}


.booking-button span {
  font-size: .65rem;

  font-weight: 800;

  letter-spacing: 1px;
}


.booking-button strong {
  font-size: 1.3rem;

  font-weight: 400;
}


.booking-button:hover {
  background: var(--brown);
}


/* =========================================
   FOOTER
========================================= */

footer {
  background: var(--black);

  color: white;

  padding: 80px 0 30px;
}


.footer-top {
  display: flex;

  justify-content: space-between;

  gap: 50px;

  padding-bottom: 70px;
}


.footer-logo {
  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(2.5rem, 6vw, 5rem);

  letter-spacing: -3px;
}


.footer-logo span {
  color: #c5a585;
}


.footer-links {
  display: flex;

  gap: 80px;
}


.footer-links div {
  display: flex;

  flex-direction: column;

  gap: 6px;
}


.footer-links span {
  color: #666;

  font-size: .55rem;

  letter-spacing: 1.5px;

  margin-bottom: 8px;
}


.footer-links a {
  color: #aaa;

  font-size: .75rem;
}


.footer-links a:hover {
  color: white;
}


.footer-bottom {
  display: flex;

  justify-content: space-between;

  padding-top: 25px;

  border-top:
    1px solid #333;

  color: #666;

  font-size: .65rem;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 950px) {

  .desktop-book {
    display: none;
  }


  .menu-btn {
    display: block;
  }


  .nav-links {
    display: none;

    position: absolute;

    top: 100px;
    left: 0;

    width: 100%;

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

    padding: 50px 5%;

    background: var(--black);

    flex-direction: column;

    align-items: flex-start;
  }


  .nav-links.active {
    display: flex;
  }


  .nav-links a {
    font-family:
      Georgia,
      "Times New Roman",
      serif;

    font-size: 2rem;
  }


  .hero-grid,
  .studio-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }


  .hero-grid {
    padding: 160px 0 100px;
  }


  .hero-image {
    height: 550px;
  }


  .studio-images {
    max-width: 700px;
  }


  .work-heading {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .section {
    padding: 80px 0;
  }


  .navbar {
    height: 80px;
  }


  .nav-links {
    top: 80px;

    min-height:
      calc(100vh - 80px);
  }


  .hero-grid {
    padding-top: 130px;

    gap: 60px;
  }


  .hero h1 {
    font-size: 4.4rem;

    letter-spacing: -4px;
  }


  .hero-image {
    height: 430px;
  }


  .circle-link {
    width: 110px;
    height: 110px;
  }


  .section-intro {
    grid-template-columns: 1fr;
  }


  .section-intro
  .section-index {
    margin-bottom: 25px;
  }


  .service {
    grid-template-columns:
      35px 1fr auto;

    gap: 10px;
  }


  .service-time {
    display: none;
  }


  .service-name h3 {
    font-size: 1.5rem;
  }


  .studio {
    padding: 80px 0;
  }


  .studio-images {
    min-height: 500px;
  }


  .studio-image-main {
    width: 90%;
    height: 470px;
  }


  .studio-image-small {
    height: 210px;
  }


  .studio-stats {
    grid-template-columns: 1fr;

    gap: 15px;
  }


  .gallery {
    display: grid;

    grid-template-columns: 1fr;

    grid-template-rows: auto;
  }


  .gallery-item,
  .gallery-item.tall {
    height: 420px;

    grid-row: auto;
  }


  .experience {
    min-height: 600px;
  }


  .experience blockquote {
    letter-spacing: -3px;
  }


  .booking {
    padding: 80px 0;
  }


  .form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .booking-form {
    padding: 30px 22px;
  }


  .footer-top {
    flex-direction: column;
  }


  .footer-links {
    flex-direction: column;

    gap: 35px;
  }


  .footer-bottom {
    flex-direction: column;

    gap: 10px;
  }

}