:root{
  --bg: #cffff4;
  --bg2:#ebfffa;
  --ink:#071a2b;
  --muted:#35546a;

  --card:#ffffff;
  --line: rgba(7,26,43,.12);
  --shadow: 0 18px 48px rgba(7,26,43,.12);

  --brand:#ff7a18;
  --brand2:#ff9c4a;
  --teal:#00c7b7;

  --radius: 22px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(0,199,183,.30), transparent 55%),
    radial-gradient(1200px 800px at 100% 10%, rgba(255,122,24,.22), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color: inherit; }
img{ max-width:100%; display:block; }

.container{
  width:100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.muted{ color: var(--muted); }

/* Topbar */
.topbar{
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}
.topbar-text{
  font-size: 14px;
  color: var(--muted);
}
.topbar-link{
  font-size: 14px;
  text-decoration:none;
  font-weight: 800;
}
.topbar-link:hover{ text-decoration:underline; }
.sep{ opacity:.55; }

.pill{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,199,183,.14);
  border: 1px solid rgba(0,199,183,.26);
  font-weight: 1000;
  font-size: 12px;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(235,255,250,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 0;
}
.brand-logo{
  width:44px;
  height:44px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}
.brand-text{ min-width:0; }
.brand-name{ font-weight: 1000; letter-spacing: .2px; }
.brand-sub{ color: var(--muted); font-size: 13px; margin-top: 2px; }

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  text-decoration:none;
  font-weight: 900;
  color: rgba(7,26,43,.86);
}
.nav-links a:hover{ text-decoration:underline; }

.nav-cta{ display:inline-flex; }

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  background: rgba(7,26,43,.85);
  margin:6px 10px;
  border-radius: 2px;
}

.nav-mobile{
  display:none;
  padding: 0 22px 14px;
}
.nav-mobile.open{
  display:grid;
  gap:10px;
}
.nav-mobile a{
  text-decoration:none;
  font-weight: 900;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(7,26,43,.10);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), #ff6400);
  color: #fff;
  font-weight: 1000;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 28px rgba(255,122,24,.20);
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn:active{ transform: translateY(0px); }

.btn-ghost{
  background: rgba(255,255,255,.88);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(7,26,43,.10);
}
.btn-small{ padding:10px 14px; font-size: 14px; }
.btn-big{ padding:16px 22px; font-size: 16px; }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  padding: 44px 0 32px;
}
.hero-bg{
  position:absolute;
  inset:-1px;
  background:
    linear-gradient(180deg, rgba(204,255,244,.30), rgba(235,255,250,.92)),
    url("images/sunset.jpg");
  background-size: cover;
  background-position: center;
  opacity: .28;
  filter: saturate(1.15);
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}

.hero-logo{
  width: min(420px, 100%);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,26,43,.10);
  background: #fff;
}

.hero h1{
  margin: 18px 0 10px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.06;
  letter-spacing: -.6px;
}
.hero-lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 18px 0 16px;
}

/* New quick details row */
.quick-details{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
}
.qd{
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(7,26,43,.08);
}
.qd-k{
  font-size: 12px;
  color: var(--muted);
  font-weight: 1000;
  margin-bottom: 6px;
}
.qd-v{
  font-weight: 950;
}
.qd-v a{ text-decoration:none; }
.qd-v a:hover{ text-decoration:underline; }

.hero-right{
  position:relative;
  display:grid;
  gap: 12px;
  align-content:start;
}
.hero-photo{
  background:#fff;
  border: 1px solid rgba(7,26,43,.12);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-photo img{ width:100%; height: 520px; object-fit: cover; }
.hero-photo-small img{ height: 190px; }

/* Sections */
.section{ padding: 64px 0; }
.section-tight{ padding-top: 36px; } /* pulls it up closer */

.center-head{
  text-align:center;
  max-width: 78ch;
}
.center-head h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.3px;
}
.center-head p{
  margin:0;
  color: var(--muted);
  font-size: 16px;
}

.expect-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.expect{
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(7,26,43,.10);
}
.expect-title{
  font-weight: 1000;
  font-size: 18px;
  margin-bottom: 6px;
}
.expect-text{ color: var(--muted); }

/* Book section */
.book{
  background:
    radial-gradient(1000px 500px at 20% 0%, rgba(0,199,183,.22), transparent 60%),
    radial-gradient(1000px 600px at 100% 20%, rgba(255,122,24,.18), transparent 60%),
    rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.book-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items:center;
}
.book-photo{
  margin:0;
  background:#fff;
  border: 1px solid rgba(7,26,43,.12);
  border-radius: 28px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.book-photo img{ width:100%; height: 560px; object-fit: cover; }

.book-copy h2{
  margin: 0 0 14px;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.4px;
}

.checklist{
  list-style:none;
  padding:0;
  margin: 10px 0 16px;
  display:grid;
  gap: 10px;
}
.checklist li{
  position: relative;
  padding-left: 30px;
  font-weight: 900;
  color: rgba(7,26,43,.88);
}
.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  box-shadow: 0 8px 18px rgba(255,122,24,.22);
}

.book-text{
  margin: 10px 0;
  color: var(--muted);
  font-size: 16px;
}
.book-text a{ font-weight: 1000; text-decoration:none; }
.book-text a:hover{ text-decoration:underline; }

.book-actions{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Our boat */
.boat-head{
  text-align:center;
}

.boat-head h2{
  margin:0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
}

.boat-head p{
  margin:0 auto;
  max-width:520px;
}
.boat-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
  align-items:start;
}

/* =========================
   OUR BOAT IMAGES
========================= */

.boat-gallery{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
  max-width:520px;
}

/* standard cards */
.boat-img{
  width:100%;
  height:170px;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(7,26,43,.12);
  box-shadow:0 12px 26px rgba(7,26,43,.10);
}

.boat-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* sunset image spans across */
.boat-wide{
  grid-column:1 / -1;
  height:240px;
}

.info-box{
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(7,26,43,.10);
}
.info-title{
  font-weight: 1000;
  font-size: 18px;
  margin-bottom: 10px;
}
.info-list{
  margin:0;
  padding-left: 18px;
  color: rgba(7,26,43,.92);
}
.info-list li{ margin: 8px 0; }
.info-list .muted{ color: var(--muted); list-style: none; padding-left: 0; margin-left: -18px; }

.policy-title{
  margin-top: 16px;
  font-weight: 1000;
}
.policy{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Footer (contact info) */
.footer{
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.1fr 1.3fr auto;
  gap: 16px;
  align-items:start;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-brand img{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7,26,43,.12);
}
.footer-name{ font-weight: 1000; }
.footer-sub{ color: var(--muted); font-size: 13px; margin-top: 2px; }

.footer-contact{
  color: rgba(7,26,43,.92);
  display:grid;
  gap: 6px;
}
.footer-contact a{ text-decoration:none; font-weight: 950; }
.footer-contact a:hover{ text-decoration:underline; }

.footer-links a{
  font-weight: 900;
  text-decoration:none;
}
.footer-links a:hover{ text-decoration:underline; }

.footer-small{
  color: var(--muted);
  font-weight: 900;
  justify-self:end;
  white-space: nowrap;
}

/* MOBILE perfection */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:block; }

  .hero-grid{ grid-template-columns: 1fr; }
  .hero-right{ order: -1; } /* show images first on mobile */
  .hero-photo img{ height: 420px; }
  .hero-photo-small img{ height: 180px; }

  .quick-details{ grid-template-columns: 1fr; }

  .expect-row{ grid-template-columns: 1fr; }

  .book-grid{ grid-template-columns: 1fr; }
  .book-photo img{ height: 420px; }

  .boat-grid{ grid-template-columns: 1fr; }
  .boat-gallery{ grid-template-columns: 1fr; }
  .boat-img img{ height: 190px; }

  .footer-inner{ grid-template-columns: 1fr; }
  .footer-small{ justify-self:start; }

  /* Prevent any horizontal scrolling on mobile */
html, body {
  width: 100%;
  overflow-x: hidden;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}
/* ============================
   MOBILE HERO REWORK (no giant images)
   Logo on top, two photos side-by-side
   ============================ */
@media (max-width: 520px){

  .container{ padding: 0 14px; }

  /* tighten overall hero vertical spacing */
  .hero{
    padding: 18px 0 18px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Keep hero-left first (logo + text), then images */
  .hero-right{
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr; /* side-by-side */
    gap: 10px;
  }

  /* Logo should be the top visual */
  .hero-left{
    order: 1;
  }
  .hero-logo{
    width: 100%;
    max-width: 340px;
    margin: 0 auto 8px;
  }

  /* Headline centered and tighter */
  .hero h1{
    margin: 10px 0 8px;
    font-size: 30px;
    line-height: 1.08;
    text-align: center;
  }
  .hero-lead{
    margin: 0 auto 12px;
    font-size: 15px;
    text-align: center;
  }
  .hero-actions{
    justify-content: center;
    margin: 12px 0 10px;
  }

  /* Two photos same size, not full screen */
  .hero-photo{
    border-radius: 18px;
  }
  .hero-photo img{
    height: 160px;          /* key change: smaller */
    width: 100%;
    object-fit: cover;
  }

  /* Make sure the small sunset photo shows again */
  .hero-photo-small{
    display: block;
  }

  /* Quick details: keep clean and compact */
  .quick-details{
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }
  .qd{
    padding: 12px;
  }

  /* Reduce section padding so it doesn’t feel endless */
  .section{
    padding: 42px 0;
  }
  .section-tight{
    padding-top: 24px;
  }
  /* ============================
   COMPACT QUICK DETAILS (mobile)
   ============================ */
@media (max-width:520px){

  .quick-details{
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 6px;
  }

  .qd{
    padding: 8px 10px;      /* smaller padding */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .qd-k{
    font-size: 11px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--muted);
  }

  .qd-v{
    font-size: 13px;
    font-weight: 700;
    text-align: right;
  }

}
}
/* ============================
   MOBILE HEADER + IMAGE FIXES
   Paste at bottom of styles.css
   ============================ */
@media (max-width:520px){

  /* --- TOPBAR: keep only "Open 7 Days" + hours --- */
  .topbar-inner{
    padding: 8px 0;
    gap: 6px;
  }

  /* hide phone/email row on mobile */
  .topbar-right{
    display: none !important;
  }

  /* make left side full-width and centered */
  .topbar-left{
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  /* Put pill + hours side-by-side and make it fit */
  .pill{
    padding: 6px 10px;
    font-size: 11px;
    flex: 0 0 auto;
  }

  .topbar-text{
    font-size: 12px;
    text-align: left;
    white-space: nowrap;     /* prevents ugly wrapping */
  }

  /* If someone has a super small screen, allow it to wrap nicely */
  @media (max-width:360px){
    .topbar-text{ white-space: normal; text-align: center; }
  }

  /* --- NAV HEADER: reduce "massive" feel --- */
  .nav{
    padding: 10px 0;
  }
  .brand-name{ font-size: 14px; }
  .brand-sub{ font-size: 12px; }

  /* --- HERO: make the 2 photos larger --- */
  .hero-right{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-photo{
    border-radius: 18px;
  }

  .hero-photo img{
    height: 210px;          /* bigger (was too small) */
    width: 100%;
    object-fit: cover;
  }

  /* optional: make them feel more premium */
  .hero-photo{
    box-shadow: 0 18px 40px rgba(7,26,43,.14);
  }
}
/* ============================
   MOBILE: Remove night tile + make sunset tile large
   ============================ */
@media (max-width:520px){

  /* hero-right contains the 2 small tiles */
  .hero-right{
    grid-template-columns: 1fr;   /* single column */
  }

  /* Hide the first hero photo (night view) */
  .hero-right .hero-photo:first-child{
    display: none;
  }

  /* Make the sunset card large like the top logo image card */
  .hero-right .hero-photo-small{
    display: block;
  }

  .hero-right .hero-photo-small img{
    height: 260px;               /* big, but not full-screen */
    border-radius: 22px;
    object-fit: cover;
  }
}
/* Mobile: simplify boat images */
@media (max-width: 700px){

  .boat-gallery{
    display:block;
    max-width:100%;
  }

  .boat-img{
    height:auto;
  }

  .boat-img img{
    width:100%;
    height:auto;
    object-fit:cover;
  }

  /* hide extra images on mobile */
  .boat-gallery .boat-img:nth-child(2),
  .boat-gallery .boat-img:nth-child(3){
    display:none;
  }

}
/* Mobile boat image */
@media (max-width:700px){

  .boat-gallery{
    display:flex;
    justify-content:center;
    padding:0 20px;
  }

  .boat-img{
    width:100%;
    max-width:420px;
  }

  .boat-img img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:18px;
    display:block;
  }

}
/* Tighten spacing between sections */
#boat.section{
  padding-bottom: 28px;   /* was larger */
}

#experience.section{
  padding-top: 28px;      /* was larger */
}

/* Mobile: even tighter */
@media (max-width:700px){
  #boat.section{ padding-bottom: 18px; }
  #experience.section{ padding-top: 18px; }
}
/* tighten space between What to expect and Our Boat */
#experience{
  padding-bottom: 20px;
}

#boat{
  padding-top: 20px;
}
/* Fix header edge spacing */
.header .container {
  padding-left: 18px;
  padding-right: 18px;
}
/* Add breathing room under mobile menu */
.nav-mobile {
  padding-bottom: 16px;
}
.nav-mobile {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
}