@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap");
:root {
  --deep: #071d1d;
  --jungle: #0c3935;
  --river: #0d5f5a;
  --lime: #b9e769;
  --gold: #ff9d45;
  --mist: #eef3e9;
  --white: #fff;
  --muted: #a7b8b2;
  --line: rgba(255, 255, 255, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--deep);
  color: white;
  font-family: Manrope, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.header.inner {
  position: relative;
  background: var(--deep);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Barlow Condensed";
  font-size: 1.4rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.brand-mark {
  width: 43px;
  height: 43px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 1.4rem;
  transform: rotate(-12deg);
}
.brand small {
  display: block;
  font: 500 0.6rem Manrope;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.84rem;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--lime);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  background: var(--lime);
  color: var(--deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  border: 0;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: 0.2s;
}
.btn:hover {
  background: #d1fa86;
  transform: translateY(-2px);
}
.btn.ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  clip-path: none;
}
.menu-btn {
  display: none;
  background: none;
  color: white;
  border: 0;
  font-size: 1.6rem;
}
.hero {
  min-height: 780px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(4, 20, 20, 0.9) 0%, rgba(4, 20, 20, 0.35) 65%),
    url("https://images.unsplash.com/photo-1593069567131-53a0614dde1d?auto=format&fit=crop&w=1900&q=85")
      center/cover;
}
.hero-content {
  padding: 190px 0 120px;
  max-width: 840px;
}
.kicker {
  color: var(--lime);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
}
.hero h1,
.page-hero h1,
.heading {
  font-family: "Barlow Condensed";
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin: 18px 0 24px;
}
.hero p {
  font-size: 1.08rem;
  max-width: 630px;
  color: #d9e3df;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-stats {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin-top: 65px;
  padding-top: 24px;
}
.stat strong {
  font: 700 1.8rem "Barlow Condensed";
  color: var(--lime);
  display: block;
}
.stat span {
  color: var(--muted);
  font-size: 0.75rem;
}
.section {
  padding: 100px 0;
}
.heading {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  margin: 10px 0 22px;
}
.copy {
  color: var(--muted);
  max-width: 660px;
}
.light {
  background: var(--mist);
  color: var(--deep);
}
.light .copy {
  color: #60716b;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  background: #123;
  border: 1px solid var(--line);
}
.exp-card img {
  height: 100%;
  position: absolute;
  inset: 0;
  transition: 0.45s;
}
.exp-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(2, 16, 16, 0.95));
}
.exp-card:hover img {
  transform: scale(1.04);
}
.exp-body {
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding: 28px;
}
.exp-card h3 {
  font: 800 2rem/1 "Barlow Condensed";
  text-transform: uppercase;
  margin: 9px 0;
}
.exp-card p {
  font-size: 0.82rem;
  color: #d7e2de;
}
.pill {
  display: inline-block;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split img {
  height: 600px;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}
.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0;
}
.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.feature b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lime);
  color: var(--lime);
  border-radius: 50%;
}
.feature strong {
  display: block;
}
.feature span {
  color: var(--muted);
  font-size: 0.85rem;
}
.light .feature span {
  color: #60716b;
}
.band {
  background: var(--jungle);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-hero {
  padding: 190px 0 95px;
  background:
    linear-gradient(90deg, rgba(4, 20, 20, 0.9), rgba(4, 20, 20, 0.35)),
    var(--hero-img) center/cover;
  min-height: 540px;
  display: grid;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(3.8rem, 9vw, 7rem);
  margin: 12px 0;
}
.page-hero p {
  max-width: 650px;
  color: #d6e2de;
}
.crumb {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line);
}
.spec {
  background: var(--deep);
  padding: 28px;
}
.spec strong {
  display: block;
  color: var(--lime);
  font: 700 1.4rem "Barlow Condensed";
  text-transform: uppercase;
}
.spec span {
  font-size: 0.76rem;
  color: var(--muted);
}
.day {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 35px;
  padding: 25px 0;
  border-top: 1px solid rgba(7, 29, 29, 0.18);
}
.day b {
  font: 800 1.5rem "Barlow Condensed";
  text-transform: uppercase;
  color: var(--river);
}
.day h3 {
  margin: 0 0 6px;
}
.day p {
  margin: 0;
  color: #60716b;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.gallery img {
  height: 330px;
  transition: 0.4s;
}
.gallery figure:nth-child(1),
.gallery figure:nth-child(5) {
  grid-column: span 2;
}
.gallery figure:hover img {
  transform: scale(1.04);
}
.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 18px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.8rem;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
}
.form {
  background: #103431;
  padding: 34px;
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  display: grid;
  gap: 7px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #092725;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px;
  font: inherit;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.note {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer {
  background: #031313;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 40px;
}
.footer h4 {
  font: 800 1.15rem "Barlow Condensed";
  text-transform: uppercase;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer a:hover {
  color: var(--lime);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #728581;
  font-size: 0.72rem;
}
@media (max-width: 900px) {
  .header {
    position: relative;
    background: var(--deep);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--deep);
    padding: 26px 20px;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 680px;
  }
  .page-hero {
    padding-top: 110px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 70px 0;
  }
  .grid-3,
  .footer-grid,
  .form-grid,
  .spec-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: 100px 0 70px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .exp-card {
    min-height: 420px;
  }
  .split img {
    height: 430px;
  }
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(5) {
    grid-column: span 1;
  }
  .day {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
.nav-links a.btn {
  color: var(--deep);
}
