/* =========================================================
   NICOLÁS GUEVARA SAXOFONISTA
   Header + Hero / Slider visual
   Desktop base: 1920px
   ========================================================= */

:root {
  --black: #000000;
  --dark: #0c0c0c;
  --dark-2: #171717;
  --gray: #a5a5a5;
  --gray-light: #d9d9d9;
  --off-white: #f3f0eb;
  --white: #ffffff;
  --accent: #a7c1b2;

  --font-sans: "Montserrat", Arial, Helvetica, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --site-max: 1920px;
  --content-max: 1660px;
  --container-pad: 54px;

  --header-height: 116px;
  --radius-sm: 0px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-wrapper {
  width: 100%;
  max-width: var(--site-max);
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
}

.container {
  width: min(calc(100% - (var(--container-pad) * 2)), var(--content-max));
  margin-inline: auto;
}

/* ---------------------------------------------------------
   HEADER + HERO WRAPPER
   --------------------------------------------------------- */
.hero-shell {
  position: relative;
  min-height: 1000px;
  height: min(100vh, 1080px);
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto 0;
  height: var(--header-height);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: absolute;
  top: 46px;
  left: 0;
  width: 226px;
  z-index: 2;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c4c4c4;
}

.desktop-nav a {
  position: relative;
  transition: color .25s ease;
}

.desktop-nav a:not(.nav-reserve)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transition: right .28s var(--ease);
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }

.nav-reserve {
  margin-left: 8px;
  padding: 16px 22px;
  border: 1px solid #6c6c6c;
  color: #eee;
  transition: border-color .25s ease, background .25s ease;
}

.nav-reserve:hover {
  border-color: var(--accent);
  background: rgba(210,155,152,.08);
}

.menu-toggle,
.mobile-menu { display: none; }

/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */
.hero-visual {
  position: absolute;
  z-index: 1;
  top: 66px;
  right: -42px;
  bottom: 0;
  width: 68%;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: contrast(1.04);
  animation: heroIn 1.25s var(--ease) both;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      #000 0%,
      #000 25%,
      rgba(0,0,0,.96) 34%,
      rgba(0,0,0,.69) 45%,
      rgba(0,0,0,.10) 63%,
      rgba(0,0,0,0) 75%),
    linear-gradient(0deg, rgba(0,0,0,.15), transparent 28%);
}

/* ---------------------------------------------------------
   HERO COPY
   --------------------------------------------------------- */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-copy {
  width: min(660px, 44vw);
  margin-top: 56px;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 29px;
  color: #9dbbaa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(74px, 5.35vw, 103px);
  font-weight: 400;
  line-height: .87;
  letter-spacing: -.035em;
  color: #f8f8f8;
}

.hero-title em {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}

.hero-description {
  max-width: 650px;
  margin: 42px 0 0;
  color: #b9b9b9;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-accent {
  min-width: 246px;
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover { background: #7da38d; }

.btn-link {
  position: relative;
  padding-inline: 0;
  color: #f1f1f1;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .28s var(--ease);
}
.btn-link:hover::after { width: 100%; }

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.025) translateX(20px); }
  to   { opacity: 1; transform: scale(1) translateX(0); }
}

/* temporary placeholders to allow anchor testing */
.stage-placeholder { min-height: 20px; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--dark); }
.section-accent { background: var(--accent); }

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1440px) {
  :root { --container-pad: 42px; }
  .hero-shell { min-height: 860px; }
  .brand { width: 190px; top: 36px; }
  .desktop-nav { gap: 28px; font-size: 11px; }
  .hero-copy { width: min(590px, 45vw); }
  .hero-title { font-size: clamp(64px, 5.5vw, 84px); }
  .hero-visual { width: 67%; right: -70px; }
}

@media (max-width: 1100px) {
  :root { --container-pad: 30px; --header-height: 92px; }
  .hero-shell { min-height: 820px; height: auto; }
  .brand { position: static; width: 150px; }
  .desktop-nav { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid #464646;
    background: rgba(0,0,0,.5);
    cursor: pointer;
    z-index: 30;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform .3s ease, opacity .3s ease;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu {
    display: flex;
    position: absolute;
    z-index: 25;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    min-height: 100vh;
    padding: 120px 36px 40px;
    flex-direction: column;
    gap: 26px;
    background: rgba(8,8,8,.98);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mobile-menu a {
    padding-bottom: 14px;
    border-bottom: 1px solid #242424;
    font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .hero-visual { width: 73%; right: -150px; opacity: .78; }
  .hero-overlay {
    background: linear-gradient(90deg,#000 0%,rgba(0,0,0,.95) 40%,rgba(0,0,0,.42) 72%,rgba(0,0,0,.15) 100%);
  }
  .hero-content { min-height: 820px; padding-top: 92px; }
  .hero-copy { width: 56%; margin-top: 40px; }
}

@media (max-width: 768px) {
  :root { --container-pad: 22px; --header-height: 80px; }
  .hero-shell { min-height: 850px; }
  .brand { width: 128px; }
  .hero-content {
    min-height: 850px;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 62px;
  }
  .hero-copy { width: 100%; margin-top: 0; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero-title {
    font-size: clamp(54px, 14vw, 78px);
    line-height: .9;
  }
  .hero-description {
    max-width: 94%;
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-actions { gap: 18px; flex-wrap: wrap; margin-top: 28px; }
  .btn-accent { min-width: 210px; }
  .hero-visual {
    top: 45px;
    right: -150px;
    bottom: auto;
    width: 760px;
    height: 590px;
    opacity: .62;
  }
  .hero-overlay {
    background:
      linear-gradient(0deg,#000 0%,rgba(0,0,0,.98) 30%,rgba(0,0,0,.62) 63%,rgba(0,0,0,.18) 100%),
      linear-gradient(90deg,#000 0%,rgba(0,0,0,.42) 55%,rgba(0,0,0,.05) 100%);
  }
}

@media (max-width: 480px) {
  .hero-shell,
  .hero-content { min-height: 790px; padding: 0 1em 1em; }
  .hero-title { font-size: clamp(48px, 14.8vw, 64px); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .btn-accent { width: 100%; }
  .btn-link { min-height: 34px; }
  .hero-visual { right: -205px; width: 700px; height: 540px; }
  .header-inner { padding-top: 2em; }
  .brand img { margin-left: 1em; }
  .menu-toggle { margin-right: 1em; }
  .hero-overlay {background: none;}
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================
   RESERVAS
========================================================== */

.booking-section {
  position: relative;

  width: 100%;

  background-color: #7da38d;
  color: #ffffff;

  overflow: hidden;
}


/* ----------------------------------------------------------
   CONTAINER
---------------------------------------------------------- */

.booking-container {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1.15fr);

  gap: 100px;

  padding-top: 80px;
  padding-bottom: 80px;
}


/* ==========================================================
   LEFT SIDE
========================================================== */

.booking-info {
  max-width: 600px;
}


/* EYEBROW */

.booking-eyebrow {
  display: block;

  margin-bottom: 30px;

  font-family: var(--font-primary);

  font-size: 12px;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.25em;

  text-transform: uppercase;

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


/* TITLE */

.booking-title {
  margin: 0 0 35px;

  font-family: var(--font-serif);

  font-size: clamp(58px, 4.5vw, 86px);

  font-weight: 400;

  line-height: 0.98;

  letter-spacing: -0.03em;

  color: #ffffff;
}


.booking-title em {
  display: block;

  font-weight: 400;
  font-style: italic;

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


/* DESCRIPTION */

.booking-description {
  max-width: 570px;

  margin-bottom: 45px;

  font-family: var(--font-primary);

  font-size: 15px;

  line-height: 1.8;

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


/* CONTACT */

.booking-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 8px;
}


.booking-contact a {
  position: relative;

  font-family: var(--font-display);

  font-size: 24px;

  line-height: 1.3;

  color: #ffffff;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.booking-contact a:hover {
  color: #e6bbb6;

  transform: translateX(5px);
}


/* ==========================================================
   FORM
========================================================== */

.booking-form-wrapper {
  width: 100%;
}


.booking-form {
  width: 100%;
}


/* ----------------------------------------------------------
   FORM GROUP
---------------------------------------------------------- */

.form-group {
  position: relative;

  width: 100%;

  margin-bottom: 28px;
}


.form-group label {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-primary);

  font-size: 10px;
  font-weight: 500;

  line-height: 1;

  letter-spacing: 0.18em;

  text-transform: uppercase;

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


/* ----------------------------------------------------------
   INPUTS
---------------------------------------------------------- */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 0 0 14px;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);

  outline: none;

  border-radius: 0;

  background-color: transparent;

  font-family: var(--font-primary);

  font-size: 15px;
  font-weight: 400;

  color: #ffffff;

  transition: border-color 0.3s ease;
}


.form-group input {
  min-height: 42px;
}


.form-group select {
  min-height: 42px;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      rgba(255, 255, 255, 0.75) 50%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.75) 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 8px) 17px,
    calc(100% - 3px) 17px;

  background-size: 5px 5px;
  background-repeat: no-repeat;
}


.form-group select option {
  background-color: #171716;

  color: #ffffff;
}


.form-group textarea {
  min-height: 105px;

  resize: vertical;
}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);

  opacity: 1;
}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: #ffffff;
}


/* ----------------------------------------------------------
   TWO COLUMNS
---------------------------------------------------------- */

.form-row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 25px;
}


/* ----------------------------------------------------------
   SUBMIT
---------------------------------------------------------- */

.booking-submit {
  display: flex;

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

  width: 100%;
  min-height: 58px;

  margin-top: 5px;

  padding: 0 25px;

  border: 1px solid #171716;

  background-color: #171716;

  font-family: var(--font-primary);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #ffffff;

  cursor: pointer;

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


.booking-submit:hover {
  background-color: #ffffff;

  border-color: #ffffff;

  color: #171716;

  transform: translateY(-2px);
}


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

.main-footer {
  width: 100%;

  background-color: #111111;

  color: #ffffff;
}


.footer-container {
  min-height: 130px;

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 40px;
}


/* ----------------------------------------------------------
   FOOTER LOGO
---------------------------------------------------------- */

.footer-logo {
  display: inline-flex;

  justify-self: start;

  width: 350px;
  max-width: 100%;
}


.footer-logo img {
  display: block;

  width: 100%;
  height: auto;
}


/* ----------------------------------------------------------
   COPYRIGHT
---------------------------------------------------------- */

.footer-copy {
  margin: 0;

  font-family: var(--font-primary);

  font-size: 10px;
  font-weight: 400;

  letter-spacing: 0.08em;

  text-align: center;

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


/* ----------------------------------------------------------
   BACK TO TOP
---------------------------------------------------------- */

.footer-top {
  justify-self: end;

  font-family: var(--font-primary);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.08em;

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

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}


.footer-top:hover {
  color: #ffffff;

  transform: translateY(-3px);
}


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


/* ----------------------------------------------------------
   SMALL DESKTOP
---------------------------------------------------------- */

@media (max-width: 1440px) {

  .booking-container {
    gap: 75px;

    padding-top: 70px;
    padding-bottom: 70px;
  }

  .booking-title {
    font-size: clamp(54px, 4.6vw, 74px);
  }

  .footer-logo {
    width: 300px;
  }

}


/* ----------------------------------------------------------
   TABLET
---------------------------------------------------------- */

@media (max-width: 1024px) {

  .booking-container {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);

    gap: 55px;

    padding-top: 75px;
    padding-bottom: 75px;
  }

  .booking-title {
    font-size: clamp(48px, 6vw, 64px);
  }

  .booking-description {
    font-size: 14px;
  }

  .booking-contact a {
    font-size: 21px;
  }


  .footer-container {
    min-height: 115px;

    gap: 25px;
  }

  .footer-logo {
    width: 240px;
  }

}


/* ----------------------------------------------------------
   MOBILE
---------------------------------------------------------- */

@media (max-width: 768px) {

  .booking-container {
    display: block;

    padding-top: 65px;
    padding-bottom: 65px;
  }

  .booking-info {
    max-width: none;

    margin-bottom: 60px;
  }

  .booking-eyebrow {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .booking-title {
    margin-bottom: 28px;

    font-size: clamp(44px, 12vw, 60px);
  }

  .booking-description {
    max-width: 520px;
  }


  /* FORM */

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

    gap: 0;
  }

  .form-group {
    margin-bottom: 26px;
  }


  /* FOOTER */

  .footer-container {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;

    min-height: auto;

    padding-top: 38px;
    padding-bottom: 38px;
  }

  .footer-logo {
    width: 280px;

    justify-self: auto;
  }

  .footer-copy {
    order: 3;

    text-align: center;
  }

  .footer-top {
    justify-self: auto;
  }

}


/* ----------------------------------------------------------
   SMALL MOBILE
---------------------------------------------------------- */

@media (max-width: 480px) {

  .booking-container {
    padding-top: 55px;
    padding-bottom: 55px;
    padding: 2em;
  }

  .booking-title {
    font-size: 44px;
  }

  .booking-description {
    font-size: 13px;

    line-height: 1.7;
  }

  .booking-contact a {
    font-size: 20px;
  }

  .booking-submit {
    min-height: 55px;

    font-size: 10px;
  }

  .footer-logo {
    width: 240px;
  }

}