@charset "UTF-8";

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

:root {
  --orange:  #f58232;
  --black:   #050505;
  --white:   #ffffff;
  --muted:   #cfcfcf;
}

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

html, html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro",
               "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

body {
  background: var(--black);
  color: var(--white);
}

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

p {
  font-size: 18px;
  text-align: left;
  font-weight: 200;
  letter-spacing: .3px;
}

h1 {
  color: inherit;
  font-weight: 400;
  font-size: 26px;
  text-transform: none;
  margin-bottom: 12px;
}

h2 {
  color: var(--white);
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 26px;
  letter-spacing: 0.04em;
}

h3 {
  color: var(--white);
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 4px;
}

h4 {
  color: var(--white);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===================================
   HEADER + NAV
   =================================== */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 38px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.62) 35%,
    rgba(0,0,0,.22) 70%,
    rgba(0,0,0,0)   100%
  );
}

.logo-link {
  display: inline-block;
}

.style-logo {
  width: 87px;
  height: auto;
  transform: translateY(-8px);
}

.style-bandera {
  width: 26px;
  height: auto;
  margin-left: 8px;
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: block;
  font-size: 26px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

/* Nav container */
.style-nav {
  display: none;
}

.style-nav ul {
  list-style: none;
  font-weight: 300;
}

.style-nav > ul#menu > li {
  position: relative;
}

.style-nav > ul#menu > li > a {
  display: block;
  padding: 6px 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: #f0f0f0;
  font-size: 26px;
  letter-spacing: 2px;
  margin-top: 10px;
}

.style-nav a:hover {
  color: var(--orange);
}

.style-nav ul li {
  position: relative;
}

.style-nav ul ul {
  position: absolute;
  left: 0;
  top: 140%;
  background: #111;
  min-width: 220px;
  display: none;
  padding: 8px 0;
  z-index: 50;
}

.style-nav ul ul li a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  color: #eee;
}

.style-nav > ul#menu > li:hover > ul {
  display: block;
  top: calc(100% - 5px);
}

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

.mainPhoto {
  background-color: #766C6C;
  background-image: url(../images/main/malleo26.jpg);
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.video-bg {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 600px;
  background: #000;
}

.video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.08), rgba(0,0,0,.35)),
    linear-gradient(to right,  rgba(0,0,0,.25), rgba(0,0,0,.02));
  z-index: 2;
  pointer-events: none;
}

.video-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.72);
}

.hero-content {
  position: absolute;
  z-index: 3;
  max-width: 980px;
  bottom: 60px;
  left: 0;
  padding: 0 70px;
  text-align: left;
  color: var(--white);
}

.hero-content * {
  text-shadow: 0 4px 12px rgba(0,0,0,.95), 0 2px 4px rgba(0,0,0,.95);
}

.hero-content h1 {
  font-family: "Oswald", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 900px;
  color: var(--white);
}

.hero-content h2 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 34px;
}

.hero-content h2::before {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: var(--orange);
  margin: 0 0 26px;
}

.hero-subtitle {
  margin-top: 18px;
  font-size: 21px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-subtitle a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,130,50,.7);
}

.hero-subtitle a:hover {
  color: var(--orange);
}

.hero-subtitle span {
  margin: 0 8px;
}

.hero-actions {
  display: flex;
  gap: 28px;
  margin-top: 90px;
}

.hero-actions a {
  padding: 18px 34px;
  border: 1px solid var(--orange);
  color: var(--white);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  transition: background .25s ease;
}

.hero-primary  { background: var(--orange); }
.hero-secondary { background: transparent; }

.hero-actions a:hover {
  background: var(--orange);
}

/* ===================================
   SHARED BUTTON / READ-MORE
   =================================== */

.button,
.read-more {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--white);
  border-radius: 0;
  padding: 15px 30px;
  margin: 10px 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
}

.button:hover,
.read-more:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

/* ===================================
   GRID
   =================================== */

.col {
  width: 100%;
}

.row::before,
.row::after {
  content: "";
  display: table;
}

.row::after {
  clear: both;
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */

.experience-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 130px 30px 100px;
  position: relative;
  margin-top: -120px;
}

.scroll-discover {
  text-align: center;
  margin-bottom: 38px;
}

.scroll-discover span {
  display: block;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 22px;
}

.experience-kicker {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 18px 0 22px;
  white-space: nowrap;
}

.experience-kicker::before,
.experience-kicker::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: var(--orange);
  opacity: .9;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  margin: 0 auto;
  opacity: .8;
}

.experience-title {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 26px;
  color: var(--white);
}

.experience-line {
  width: 80px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 34px;
}

.experience-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #d8d8d8;
  font-weight: 300;
}

.experience-trust {
  margin: 34px auto 0;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.experience-trust a {
  color: var(--orange);
  text-decoration: none;
}

.experience-trust a:hover {
  text-decoration: underline;
}

/* ===================================
   MAIN DESCRIPTION BLOCK
   =================================== */

.info-main-description {
  background-color: var(--white);
  text-align: right;
}

.info-box-light-grey {
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.60)),
    url("../images/patagonia-dark.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 140px 110px 140px 140px;
  text-align: left;
}

.info-box-light-grey p {
  color: #dddddd;
  line-height: 2;
  margin-bottom: 34px;
  max-width: 900px;
}

.info-box-light-grey h5,
.info-box-light-grey .script-subtitle {
  font-family: 'Allura', cursive;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--orange);
  text-transform: none;
  line-height: 1.18;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
  margin: 0 0 60px 0;
}

.info-box-light-grey h5::after,
.info-box-light-grey .script-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
}

/* ===================================
   FEATURE SECTIONS: LODGES & PRIVATE WATERS
   =================================== */

.info-box-tan,
.private-waters {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 80px 32px 180px;
  margin: 0;
  min-height: 46vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.info-box-tan  { background-image: url("../images/lodges.jpg"); }
.private-waters {
  background-image: url("../images/raising.jpg");
  padding-left: 95px;
}

.info-box-tan::before,
.private-waters::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.74);
  z-index: 0;
}

.info-box-tan > *,
.private-waters > * {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 820px;
  margin-left: 0;
  margin-right: auto;
}

.info-box-tan p,
.private-waters p,
.info-box-tan a,
.private-waters a {
  color: var(--white);
}

/* Feature title (Allura script) */
.feature-title {
  font-family: 'Allura', cursive;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--orange);
  position: relative;
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 34px 0;
  text-align: left;
}

.feature-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--orange);
  margin-top: 14px;
}

.feature-text-group {
  max-width: 720px;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-text-group p,
.feature-sections p {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 300;
  text-align: left;
  color: #e0e0e0;
}

.info-box-tan .read-more,
.private-waters .read-more {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: fit-content;
  background: transparent;
}

.info-box-tan .read-more:hover,
.private-waters .read-more:hover {
  background: var(--orange);
  color: #000;
}

/* ===================================
   ABOUT US IMAGE
   =================================== */

.img-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.7);
}

.about-cta-wrapper {
  text-align: center;
  margin-top: 22px;
  margin-bottom: 10px;
}

.about-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 42px;
  border-radius: 40px;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta:hover {
  background: var(--orange);
  color: #000;
}

/* ===================================
   OLD FOOTER CLASSES (kept for other pages)
   =================================== */

.style-social {
  background-color: #1F1F1F;
  width: 100%;
  font-size: 20px;
  color: #88A2C6;
  font-weight: 300;
  padding: 30px 10px 20px 30px;
  letter-spacing: 1px;
}

.style-social a,
.style-social a span { color: #88A2C6; }
.style-social a:hover,
.style-social a:hover span { color: #FFCA00; }

.style-nav-footer {
  background-color: #1F1F1F;
  font-weight: 100;
  font-size: 14px;
  text-align: left;
  letter-spacing: 1px;
}

.style-nav-footer ul { list-style-type: none; }
.style-nav-footer ul li { display: block; padding: 3px 0 2px 30px; }
.style-nav-footer ul li a { color: #88A2C6; padding: 5px 2px 10px 6px; }
.style-nav-footer ul li a:hover { color: #FFCA00; }

/* ===================================
   NEW CINEMATIC FOOTER
   =================================== */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 55px 70px 50px;
  color: #d6d6d6;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 760px;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: #cfcfcf;
  margin-bottom: 46px;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  transition: transform .22s ease, opacity .22s ease;
}

.footer-social-icons a:hover {
  transform: translateY(-3px);
  opacity: .85;
}

.footer-social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  opacity: .95;
  filter:
    brightness(0) saturate(100%)
    invert(57%) sepia(89%) saturate(1263%)
    hue-rotate(343deg) brightness(101%) contrast(92%);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 280px;
}

.footer-nav a {
  color: #9ea7b3;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .22s ease, transform .22s ease;
}

.footer-nav a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* ===================================
   MEDIA QUERIES
   =================================== */

/* ~600px – small tablet */
@media (min-width: 600px) {
  .style-logo  { width: 170px; }
  h1           { font-size: 26px; }
  h2           { font-size: 20px; }
  .hero-content { padding-top: 140px; }
  .video-bg    { height: 85vh; }
}

/* ~768px – tablet landscape / small desktop */
@media (min-width: 768px) {
  .col-md-one-half { width: 50%; }

  .col {
    float: left;
    padding: 0 7px 14px;
  }

  .hero-content { padding-top: 160px; }

  .style-logo { width: 200px; }
}

/* ≥1440px — full desktop nav */
@media (min-width: 1440px) {
  .nav-toggle { display: none; }

  .style-nav {
    display: block;
    margin-left: auto;
    margin-right: 0;
  }

  .style-nav > ul#menu {
    display: flex;
    gap: 18px;
  }
}

/* ~900px */
@media (min-width: 900px) {
  .col-md-one-half { vertical-align: top; }
}

/* ~1024px – desktop */
@media (min-width: 1024px) {
  .video-bg     { height: 90vh; }
  .hero-content { padding-top: 180px; }
  .style-logo   { width: 150px; }
  h1 { font-size: 34px; }
  h2 { font-size: 30px; }
}

/* Max-width mobile overrides — all combined */
@media (max-width: 1439px) {
  header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .style-logo { max-width: 230px; height: auto; }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .style-nav { display: block; }

  .style-nav ul#menu {
    position: absolute;
    top: 70px;
    right: 10px;
    width: 240px;
    background: rgba(8,8,8,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.5);
    padding: 10px 0;
    list-style: none;
    margin: 0;
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: visible;
  }

  body.nav-open .style-nav ul#menu { display: flex; }

  .style-nav ul#menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .style-nav ul#menu > li:last-child { border-bottom: none; }

  .style-nav ul#menu > li > a {
    display: block;
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #eee;
    text-align: right;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }

  .style-nav ul#menu > li > a:hover { color: var(--orange); }

  /* Submenus hidden by default, open on tap */
  .style-nav ul#menu li ul {
    display: none;
    position: static;
    background: transparent;
    border: none;
    padding: 0 0 14px 16px;
    min-width: unset;
  }

  body.nav-open .style-nav ul#menu li.open > ul { display: block !important; }
  .nav-arrow { float: right; transition: transform .25s; }
  li.open > a .nav-arrow { transform: rotate(90deg); }

  .style-nav ul#menu li ul li a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    text-align: right;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .style-nav ul#menu li ul li a:hover { color: var(--orange); }

  main > .row:first-of-type,
  main > .row:first-of-type > .col {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .video-bg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

@media (max-width: 899px) {
  .col-md-one-half { width: 100%; display: block; }
  .info-box-tan, .private-waters { margin: 26px 0; }
  h2 { font-size: 25px; }
}

@media (max-width: 768px) {
  /* Experience section */
  .experience-section  { padding: 90px 24px 100px; }
  .experience-text     { font-size: 22px; }
  .experience-kicker   { font-size: 10px; letter-spacing: 2.5px; gap: 10px; margin: 8px 0 10px; }
  .experience-kicker::before,
  .experience-kicker::after { max-width: 48px; }
  .scroll-arrow        { width: 16px; height: 16px; margin-top: 6px; }

  /* Hero */
  .video-bg   { height: 82vh; min-height: 620px; }
  .hero-content { padding: 220px 30px 0; text-align: left; }
  .hero-content h1 {
    font-size: 38px;
    letter-spacing: 0.06em;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .hero-content h2  { font-size: 17px; line-height: 1.6; }
  .hero-actions     { margin-top: 38px; flex-direction: column; gap: 14px; max-width: 280px; }
  .hero-actions a   { width: 100%; text-align: center; padding: 13px 18px; font-size: 11px; letter-spacing: 1.4px; }

  /* Feature sections */
  .feature-title    { font-size: 36px; margin-bottom: 28px; }
  .info-box-tan,
  .private-waters   { padding-left: 26px; padding-right: 26px; }
  .feature-text-group   { gap: 8px; }
  .feature-text-group p { font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
  .feature-title    { font-size: 38px; letter-spacing: 0; }

  /* Info box */
  .info-box-light-grey { padding: 90px 34px 90px 26px; }
  .info-box-light-grey h5,
  .info-box-light-grey .script-subtitle {
    font-size: 34px;
    line-height: 1.2;
    margin-top: 24px;
    margin-bottom: 32px;
    white-space: normal;
  }
  .info-box-light-grey h5::after,
  .info-box-light-grey .script-subtitle::after { bottom: 4px; }
  .info-box-light-grey p:first-of-type { margin-top: 12px; }

  /* Footer */
  .site-footer    { padding: 70px 28px 60px; }
  .footer-inner   { flex-direction: column; gap: 60px; }
  .footer-brand p { font-size: 17px; line-height: 1.7; }
  .footer-nav a   { font-size: 18px; }
  .footer-social-icons { gap: 18px; }
  .footer-social-icons img { width: 28px; height: 28px; }
}
