/* ============================================================
   THEME  —  the only block you edit to re-skin for a customer
   ============================================================ */
:root{
  --navy:#1C3A4A;         /* header / dark chrome            */
  --navy-deep:#142B37;    /* deep sections / footer          */
  --navy-soft:#25485A;    /* raised dark cards               */
  --cream:#F3EEE6;        /* main content background         */
  --cream-2:#FBF8F1;      /* cards on cream                  */
  --amber:#F0A867;        /* accent — buttons, links         */
  --amber-hover:#E9974C;
  --on-amber:#4A2C08;     /* text on amber                   */
  --ink:#16323E;          /* headings on light               */
  --body:#3C4E56;         /* body text on light              */
  --muted:#6E8189;        /* secondary text on light         */
  --cream-muted:#B9CAD2;  /* secondary text on dark          */
  --line:#E2DACB;         /* hairline on cream               */
  --line-dark:#2E4C5C;    /* hairline on navy                */
  --radius:14px;
  --maxw:1160px;

  --font-display:'Playfair Display',Georgia,serif;
  --font-script:'Yellowtail',cursive;
  --font-body:'Figtree',system-ui,-apple-system,sans-serif;
}

/* ============================================================
   BASE
   ============================================================ */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font-body);color:var(--body);background:var(--cream);
  line-height:1.7;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--font-display);color:var(--ink);font-weight:600;line-height:1.15}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px}
.eyebrow{font-family:var(--font-body);font-weight:600;font-size:12px;letter-spacing:2.5px;
  text-transform:uppercase;color:var(--amber)}
.script{font-family:var(--font-script);color:var(--amber);font-weight:400}
.btn{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-body);
  font-weight:600;font-size:15px;padding:13px 26px;border-radius:40px;cursor:pointer;
  border:1.5px solid transparent;transition:.18s ease;white-space:nowrap}
.btn-primary{background:var(--amber);color:var(--on-amber)}
.btn-primary:hover{background:var(--amber-hover);transform:translateY(-1px)}
.btn-ghost{background:transparent;color:#F3EEE6;border-color:rgba(243,238,230,.4)}
.btn-ghost:hover{border-color:#F3EEE6;background:rgba(243,238,230,.08)}
.btn-ghost-dark{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost-dark:hover{border-color:var(--ink)}

/* ============================================================
   WATERLINE DIVIDER  —  signature element (echoes the logo)
   ============================================================ */
.waterline{display:block;width:100%;height:26px}
.waterline path{fill:none;stroke-width:2.4;stroke-linecap:round}

/* DURATION BANNER */
.duration{background:var(--cream-2);text-align:center;padding:40px 28px;border-bottom:1px solid var(--line)}
.duration .inner{max-width:760px;margin:0 auto;display:flex;align-items:center;
  justify-content:center;gap:18px;flex-wrap:wrap}
.duration .cal{width:44px;height:44px;border-radius:12px;background:var(--bg-accent,#FBEEDD);
  border:1px solid var(--amber);display:flex;align-items:center;justify-content:center;flex:none}
.duration .cal svg{width:22px;height:22px;color:#C97B2C}
.duration p{font-size:clamp(17px,2.2vw,21px);font-family:var(--font-display);
  color:var(--ink);margin:0;line-height:1.4;text-align:left;flex:1;min-width:240px}
.duration p b{color:#C97B2C;font-weight:600}

/* ============================================================
   NAV
   ============================================================ */
header.nav{position:sticky;top:0;z-index:50;background:var(--navy);
  border-bottom:1px solid var(--line-dark);transition:box-shadow .2s}
header.nav.scrolled{box-shadow:0 6px 24px rgba(0,0,0,.22)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;
  height:92px;max-width:var(--maxw);margin:0 auto;padding:0 28px}
.brand{display:flex;align-items:center;gap:13px}
.brand svg{width:158px;height:auto;flex:none}
.brand .wordmark{display:flex;align-items:baseline;gap:10px}
.brand .name{font-family:var(--font-display);color:var(--cream);font-size:30px;
  letter-spacing:.5px;font-weight:600}
.brand .tag{font-family:var(--font-script);color:var(--amber);font-size:22px}
.nav-links{display:flex;align-items:center;gap:30px}
.nav-links a.link{font-size:14.5px;color:var(--cream-muted);font-weight:500;transition:.15s}
.nav-links a.link:hover{color:var(--cream)}
.nav-toggle{display:none;background:none;border:0;color:var(--cream);cursor:pointer}
.nav-toggle svg{width:26px;height:26px}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;min-height:92vh;display:flex;flex-direction:column;
  justify-content:center;color:var(--cream);overflow:hidden}
/* HERO PHOTO: swap the url() for your own boat photo when ready */
.hero-photo{position:absolute;inset:0;z-index:0;
  background:#1C3A4A url('assets/hero.jpg') center 40%/cover no-repeat;
}
.hero-overlay{position:absolute;inset:0;z-index:2;
  background:
    radial-gradient(120% 90% at 22% 92%,rgba(15,32,42,.78) 0%,rgba(15,32,42,.4) 40%,rgba(15,32,42,0) 66%),
    linear-gradient(90deg,rgba(20,43,55,.55) 0%,rgba(20,43,55,.28) 34%,rgba(20,43,55,0) 62%),
    linear-gradient(180deg,rgba(20,43,55,.2) 0%,rgba(20,43,55,0) 30%,rgba(20,43,55,.5) 72%,rgba(20,43,55,.94) 100%)}
.hero-content{position:relative;z-index:3;width:100%;max-width:var(--maxw);
  margin:0 auto;padding:40px 28px}
.hero h1{font-size:clamp(40px,7vw,76px);color:var(--cream);font-weight:600;
  letter-spacing:-.5px;text-shadow:0 2px 24px rgba(11,24,31,.6),0 1px 3px rgba(11,24,31,.5);
  margin-top:14px}
.hero .eyebrow{margin-bottom:6px;font-size:16px;letter-spacing:3.5px}
.hero h1 .script{display:block;font-size:clamp(30px,5vw,52px);line-height:1;
  margin-top:-4px}
.hero p.sub{font-size:clamp(16px,2vw,20px);max-width:520px;margin:24px 0 38px;
  color:#EAF3F2;text-shadow:0 1px 14px rgba(11,24,31,.4);line-height:1.75}
.hero-cta{display:flex;gap:16px;flex-wrap:wrap}
.scroll-cue{position:absolute;left:50%;bottom:26px;z-index:3;transform:translateX(-50%);
  width:42px;height:42px;border-radius:50%;border:1.5px solid rgba(243,238,230,.45);
  display:flex;align-items:center;justify-content:center;color:var(--cream);
  animation:bob 2.4s ease-in-out infinite}
.scroll-cue svg{width:20px;height:20px}
@keyframes bob{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)}}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section{position:relative}
.pad{padding:88px 0}
.section-head{max-width:640px;margin-bottom:48px}
.section-head.center{margin:0 auto 48px;text-align:center}
.section-head h2{font-size:clamp(30px,4.4vw,46px);margin:12px 0 0}
.section-head p{margin-top:16px;font-size:17px;color:var(--muted)}

/* ABOUT */
.about{background:var(--cream)}
.about-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.about-copy p{font-size:17px;margin-bottom:18px;color:var(--body)}
.about-copy p:last-child{margin-bottom:0}
.about-media{position:relative;aspect-ratio:4/5;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line);
  /* ABOUT PHOTO: swap the url() for your own dock / lake photo */
  background:#2E8B99 url('assets/about.jpg') center/cover no-repeat}
.about-media .ph-tag{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  font-size:11px;letter-spacing:2px;color:rgba(255,255,255,.85);font-weight:600}
.about-stats{display:flex;gap:34px;margin-top:34px;flex-wrap:wrap}
.about-stats .stat .n{font-family:var(--font-display);font-size:30px;color:var(--ink);font-weight:600}
.about-stats .stat .l{font-size:13px;color:var(--muted);letter-spacing:.3px}

/* RENTALS */
.rentals{background:var(--navy-deep);color:var(--cream)}
.rentals .section-head h2{color:var(--cream)}
.rentals .section-head p{color:var(--cream-muted)}
.fleet{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,400px),1fr));
  gap:26px;max-width:1100px;margin:0 auto}
.fleet:has(.boat:only-child){max-width:600px}
.boat{background:var(--navy-soft);border:1px solid var(--line-dark);border-radius:var(--radius);
  overflow:hidden;display:flex;flex-direction:column}
.boat-photo{aspect-ratio:16/10;position:relative;
  /* PHOTO PLACEHOLDER: swap for the boat's photo */
  background:linear-gradient(150deg,#2E8B99 0%,#57B0BC 50%,#8FC96E 100%)}
.boat-photo .tag{position:absolute;top:14px;left:14px;background:rgba(20,43,55,.82);
  color:var(--cream);font-size:11px;font-weight:600;letter-spacing:1.5px;
  padding:5px 12px;border-radius:20px;backdrop-filter:blur(2px)}
.boat-photo .ph-tag{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  font-size:11px;letter-spacing:2px;color:rgba(255,255,255,.85);font-weight:600}
.boat-body{padding:24px 26px 26px;display:flex;flex-direction:column;flex:1}
.boat-body h3{color:var(--cream);font-size:26px}
.boat-body .blurb{color:var(--cream-muted);font-size:15px;margin:8px 0 18px}
.specs{display:flex;gap:22px;flex-wrap:wrap;padding:16px 0;
  border-top:1px solid var(--line-dark);border-bottom:1px solid var(--line-dark)}
.spec{display:flex;align-items:center;gap:9px;color:var(--cream);font-size:14.5px}
.spec svg{width:19px;height:19px;color:var(--amber);flex:none}
.spec .sl{color:var(--cream-muted);font-size:12px;display:block;line-height:1.2}
.spec .sv{font-weight:600;line-height:1.2}
.boat-foot{margin-top:22px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.boat-foot .price{font-size:14px;color:var(--cream-muted)}
.boat-foot .price b{font-family:var(--font-display);font-size:24px;color:var(--cream);font-weight:600}
.addon-note{margin-top:30px;text-align:center;font-size:17px;color:var(--cream);
  max-width:680px;margin-left:auto;margin-right:auto;line-height:1.6}
.addon-note svg{width:20px;height:20px;color:var(--amber);vertical-align:-4px;margin-right:7px}

/* DELIVERY */
.delivery{background:var(--cream)}
.deliver-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));gap:22px}
.dcard{background:var(--cream-2);border:1px solid var(--line);border-radius:var(--radius);
  padding:30px 26px}
.dcard .icon{width:46px;height:46px;border-radius:12px;background:var(--amber);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px}
.dcard .icon svg{width:24px;height:24px;color:var(--on-amber)}
.dcard h3{font-size:21px;margin-bottom:8px}
.dcard p{font-size:15px;color:var(--body)}
.deliver-foot{text-align:center;margin-top:36px;font-size:17px;color:var(--body);max-width:620px;margin-left:auto;margin-right:auto}

/* FAQ */
.faq{background:var(--cream)}
.faq-list{max-width:780px;margin:0 auto}
.qa{border-bottom:1px solid var(--line)}
.qa button{width:100%;background:none;border:0;cursor:pointer;text-align:left;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:24px 4px;font-family:var(--font-display);font-size:19px;color:var(--ink);font-weight:500}
.qa button .chev{flex:none;width:22px;height:22px;color:var(--amber);transition:transform .25s}
.qa.open button .chev{transform:rotate(180deg)}
.qa .ans{max-height:0;overflow:hidden;transition:max-height .3s ease}
.qa .ans p{padding:0 4px 24px;font-size:16px;color:var(--body);max-width:680px}

/* CONTACT */
.contact{background:var(--navy);color:var(--cream)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.contact .section-head h2{color:var(--cream)}
.contact-copy .lead{font-size:17px;color:var(--cream-muted);margin-bottom:30px;max-width:440px}
.contact-rows{display:flex;flex-direction:column;gap:20px}
.crow{display:flex;gap:15px;align-items:flex-start}
.crow svg{width:22px;height:22px;color:var(--amber);flex:none;margin-top:3px}
.crow .k{font-size:12px;letter-spacing:1.5px;text-transform:uppercase;color:var(--cream-muted)}
.crow .v{font-size:16.5px;color:var(--cream)}
.crow a.v:hover{color:var(--amber)}
.contact-map{aspect-ratio:1/1;border-radius:var(--radius);overflow:hidden;
  border:1px solid var(--line-dark);position:relative;background:var(--navy-soft)}
.contact-map .ph-tag{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  font-size:11px;letter-spacing:2px;color:rgba(255,255,255,.8);font-weight:600}
.contact-cta{margin-top:36px}

/* FOOTER */
footer.foot{background:var(--navy-deep);color:var(--cream-muted);
  border-top:1px solid var(--line-dark)}
.foot-inner{max-width:var(--maxw);margin:0 auto;padding:46px 28px 30px;
  display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap}
.foot .brand .name{font-size:20px}
.foot-links{display:flex;gap:26px;font-size:14px}
.foot-links a:hover{color:var(--cream)}
.foot-legal{max-width:var(--maxw);margin:0 auto;padding:0 28px 34px;
  font-size:12.5px;color:#5B7885;display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
.foot-legal a{color:#8AA3AE;transition:color .15s}
.foot-legal a:hover{color:var(--cream)}
.foot-policy{display:flex;gap:22px;flex-wrap:wrap}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:860px){
  .nav-inner{height:78px}
  .hero{justify-content:flex-start}
  .hero-content{padding-top:56px;padding-bottom:56px}
  .brand svg{width:88px}
  .brand .wordmark{gap:7px}
  .brand .name{font-size:22px}
  .brand .tag{font-size:16px}
  .btn{white-space:normal;max-width:100%;text-align:center}
  .foot-links{flex-wrap:wrap;gap:16px 22px;justify-content:center}
  .foot-inner{justify-content:center;text-align:center}
  .foot-legal{justify-content:center;text-align:center;flex-direction:column;align-items:center;gap:14px}
  .foot-policy{justify-content:center}
  .duration p{text-align:center}
  .nav-links{position:fixed;inset:78px 0 auto 0;background:var(--navy);flex-direction:column;
    gap:0;padding:8px 0 18px;border-bottom:1px solid var(--line-dark);
    transform:translateY(-120%);transition:transform .28s ease;box-shadow:0 12px 30px rgba(0,0,0,.3)}
  .nav-links.open{transform:translateY(0)}
  .nav-links a.link{padding:14px 28px;width:100%}
  .nav-links .btn{margin:10px 28px 0}
  .nav-toggle{display:block}
  .about-grid,.contact-grid{grid-template-columns:1fr;gap:38px}
  .about-media{max-width:420px}
  .pad{padding:66px 0}
}
@media(max-width:400px){
  .brand svg{width:72px}
  .brand .name{font-size:19px}
  .brand .tag{font-size:14px}
  .brand{gap:9px}
  .nav-inner{padding:0 18px}
  .wrap{padding:0 20px}
  .hero-content{padding:32px 20px}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important;transition:none!important}
}
