:root{
  --paper:#ffffff;
  --ink:#0b0d10;
  --muted: rgba(11,13,16,.68);
  --line: rgba(11,13,16,.10);
  --soft: rgba(11,13,16,.05);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--paper);
  color: var(--ink);
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  padding: 0 18px;
}

/* Header / Nav */
header{
  position: sticky;
  top:0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.nav{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand img{
  height: 30px;
  width:auto;
  display:block;
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 18px;
}
.navlinks a{
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--paper);
  background: transparent;
  white-space: nowrap;
}
.cta:hover{ border-color: rgba(255,255,255,.5); }

.ctaSolid{
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.ctaSolid:hover{ opacity:.92; }

/* Mobile menu button + dropdown */
.menuBtn{
  display:none; /* shown on mobile via media query */
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
}
.menuBtn:hover{ border-color: rgba(255,255,255,.5); }

/* IMPORTANT:
   We now toggle the menu using the HTML `hidden` attribute (JS),
   so CSS should only control its look when it is NOT hidden. */
.mobileMenu{
  position:absolute;
  top: 64px;
  right: 18px;
  left: 18px;
  background: rgba(11,13,16,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.mobileMenu[hidden]{ display:none; }

.mobileMenu a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.mobileMenu a:hover{
  background: rgba(255,255,255,.08);
  opacity: 1;
}
.mobileMenu .mobileCta{
  margin-top: 6px;
  background: var(--paper);
  color: var(--ink);
}

/* HERO (full-bleed) */
.heroFull{
  position: relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
  /* Desktop hero height target */
  min-height: 560px;
}

/* The hero image should always fill the hero area and crop nicely */
.heroImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  /* Slightly favor upper area so faces/logos aren't chopped on mobile */
  object-position: 55% 35%;
  transform: scale(1.01);
}

/* Dark overlay so text stays readable */
.heroFull::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 520px at 20% 18%, rgba(0,0,0,.25), transparent 60%),
    linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.18) 55%, rgba(0,0,0,.08));
  pointer-events:none;
}

.heroInner{
  position:relative;
  width:100%;
  padding: 44px 0 46px;
  color: var(--paper);
}

.heroCard{
  max-width: 720px;
}

/* MOBILE HERO FIX (prevents the "takes over entire screen") */
@media (max-width: 900px){
  .heroFull{
    /* use modern small-viewport height so iOS Safari doesn't blow it up */
    min-height: 420px;
    height: min(62svh, 520px);
  }
  .heroInner{
    padding: 28px 0 28px;
  }
}

@media (max-width: 600px){
  .heroFull{
    min-height: 360px;
    height: min(56svh, 460px);
  }
  .heroImg{
    /* on smaller screens, keep the subject better framed */
    object-position: 58% 28%;
  }
}

@media (max-width: 420px){
  .heroFull{
    min-height: 320px;
    height: min(52svh, 420px);
  }
}

/* Typography */
.kicker{
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1{
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (max-width: 520px){
  h1{ font-size: 38px; }
}

.lead{
  margin: 14px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
}

.heroActions{
  margin-top: 22px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.pill{
  margin-top: 14px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}

/* Buttons */
.btnDark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing:.02em;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btnDark:hover{ opacity:.92; }

.btnOutline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing:.02em;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(11,13,16,.24);
}
.btnOutline:hover{ border-color: rgba(11,13,16,.45); }

/* Light outline button for hero (white border/text) */
.btnOutlineLight{
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btnOutlineLight:hover{
  border-color: rgba(255,255,255,.70);
}

/* General sections */
.section{
  padding: 46px 0;
}

.sectionTitle{
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 900px){
  .grid2{ grid-template-columns: 1fr; }
}

/* Trips cards */
.tripCard h3{
  margin: 0;
  font-size: 18px;
}
.tripCard p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.tripMeta{
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}
.tripMeta strong{ color: var(--ink); }

.btnRow{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* Dark band */
.darkBand{
  background: var(--ink);
  color: var(--paper);
  padding: 44px 0;
}
.darkBand .muted{ color: rgba(255,255,255,.72); }

.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

hr.sep{
  border:0;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}

/* Footer */
footer{
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}
.footGrid{
  display:flex;
  gap: 24px;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footGrid a{ color: var(--muted); font-weight: 600; }
.footGrid a:hover{ color: var(--ink); opacity:1; }

.small{
  font-size: 12px;
  color: rgba(11,13,16,.55);
  margin-top: 16px;
}

/* Embeds + Forms */
.embedWrap{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--paper);
}
.embedHint{
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.embedBox{
  min-height: 760px;
  background: var(--paper);
}

.form{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.input, .textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid rgba(11,13,16,.20);
  border-radius: 12px;
  font-size: 14px;
  outline:none;
}
.input:focus, .textarea:focus{
  border-color: rgba(11,13,16,.55);
}
.textarea{ min-height: 140px; resize: vertical; }
.label{
  font-weight: 800;
  font-size: 12px;
  letter-spacing:.14em;
  text-transform: uppercase;
  color: rgba(11,13,16,.62);
}

/* Responsive: hide desktop navlinks + show menu button */
@media (max-width: 900px){
  .navlinks{ display:none; }
  .brand{ min-width:auto; }
  .menuBtn{ display:inline-flex; }
}
