:root{
  --cream:#f6ede0;
  --cream-soft:#efe3d0;
  --ink:#17333a;
  --ink-soft:#3f5a5f;
  --teal:#2d6e6a;
  --teal-bright:#238f89;
  --teal-dark:#123338;
  --coral:#f0684a;
  --coral-dark:#d8543a;
  --line:rgba(23,51,58,0.12);
  --radius:14px;
  --shadow:0 18px 40px -18px rgba(18,51,56,0.35);
  font-size:16px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3,h4{font-family:'Fraunces',Georgia,serif;font-weight:600;margin:0 0 .5em;line-height:1.12;}
p{margin:0 0 1em;color:var(--ink-soft);}
ul{margin:0;padding:0;list-style:none;}
table{border-collapse:collapse;}

.wrap{max-width:1160px;margin:0 auto;padding:0 24px;}

.pill{
  display:inline-block;
  font-size:.78rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--teal);
  background:rgba(45,110,106,0.1);
  border:1px solid rgba(45,110,106,0.25);
  padding:6px 14px;
  border-radius:99px;
  margin-bottom:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 26px;
  border-radius:99px;
  font-weight:600;
  font-size:.95rem;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-coral{background:var(--coral);color:#fff;box-shadow:0 10px 24px -10px rgba(240,104,74,0.65);}
.btn-coral:hover{background:var(--coral-dark);transform:translateY(-1px);}
.btn-outline{border:1.5px solid var(--line);color:var(--ink);width:100%;}
.btn-outline:hover{background:var(--ink);border-color:var(--ink);color:#fff;}

/* header */
.site-header{background:var(--cream);position:sticky;top:0;z-index:50;border-bottom:1px solid var(--line);}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding-top:18px;padding-bottom:18px;gap:24px;}
.logo{display:flex;align-items:center;gap:8px;font-family:'Fraunces',serif;font-weight:600;font-size:1.35rem;color:var(--ink);flex:0 0 auto;}
.logo-dot{width:12px;height:12px;border-radius:50%;background:var(--coral);display:inline-block;}
.logo-accent{color:var(--coral);}
.main-nav{display:flex;gap:32px;font-weight:600;font-size:.95rem;}
.main-nav a:hover{color:var(--teal);}
.header-right{display:flex;align-items:center;gap:22px;}
.phone{font-weight:600;font-size:.95rem;}
.phone:hover{color:var(--teal);}

/* hero */
.hero{padding:72px 0 56px;}
.hero-inner{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;}
.hero-copy h1{font-size:clamp(2.4rem,4.2vw,3.4rem);color:var(--ink);}
.accent-teal{color:var(--teal-bright);font-style:italic;}
.hero-lede{font-size:1.08rem;max-width:46ch;}
.hero-ctas{display:flex;align-items:center;gap:26px;flex-wrap:wrap;margin-top:8px;}
.text-cta{font-weight:600;font-size:.95rem;color:var(--ink);}
.text-cta span{display:block;font-weight:400;color:var(--ink-soft);font-size:.85rem;margin-top:2px;}

.hero-photos{position:relative;min-height:420px;}
.photo{position:absolute;border-radius:var(--radius);object-fit:cover;box-shadow:var(--shadow);border:6px solid var(--cream);}
.photo-main{top:0;right:0;width:78%;height:290px;}
.photo-marsh{left:0;bottom:0;width:46%;height:170px;}
.photo-bike{right:2%;bottom:-18px;width:34%;height:150px;}
.badge-price{
  position:absolute;left:38%;bottom:130px;
  background:var(--coral);color:#fff;
  width:104px;height:104px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;text-align:center;
  font-weight:700;font-size:.82rem;line-height:1.2;
  box-shadow:0 14px 28px -10px rgba(240,104,74,0.6);
  transform:rotate(-8deg);
  padding:8px;
}

/* info bar */
.info-bar{background:var(--teal);color:#fff;}
.info-bar-inner{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:14px 32px;
  padding:18px 24px;font-size:.92rem;font-weight:500;
}
.info-bar-inner p{margin:0;color:#eef7f6;}

/* fleet */
.fleet{padding:88px 0 100px;}
.fleet h2{font-size:clamp(1.9rem,3vw,2.6rem);}
.section-lede{max-width:56ch;font-size:1.02rem;}
.fleet-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:44px;}

.ride-card{background:#fff;border-radius:var(--radius);padding:18px 18px 22px;box-shadow:0 10px 30px -18px rgba(23,51,58,0.25);}
.ride-photo{position:relative;border-radius:10px;overflow:hidden;height:160px;margin-bottom:16px;}
.ride-photo img{width:100%;height:100%;object-fit:cover;}
.ride-price{
  position:absolute;top:10px;right:10px;background:var(--teal-dark);color:#fff;
  padding:6px 10px;border-radius:8px;font-weight:700;font-size:.9rem;
}
.ride-price small{font-weight:500;font-size:.68rem;opacity:.75;}
.ride-kind{color:var(--coral);font-weight:700;font-size:.72rem;letter-spacing:.07em;text-transform:uppercase;margin-bottom:4px;}
.ride-card h3{font-size:1.18rem;margin-bottom:6px;}
.ride-card p{font-size:.9rem;min-height:3em;}

.ride-card-multiday{background:var(--teal-dark);color:#fff;display:flex;flex-direction:column;justify-content:center;}
.multiday-kicker{color:#8fd6cf;font-weight:700;font-size:.72rem;letter-spacing:.07em;text-transform:uppercase;margin-bottom:6px;}
.ride-card-multiday h3{color:#fff;font-size:1.3rem;margin-bottom:14px;}
.rate-mini{width:100%;font-size:.9rem;}
.rate-mini td{padding:7px 0;border-top:1px solid rgba(255,255,255,0.15);color:#dceceb;}
.rate-mini td:last-child{text-align:right;font-weight:700;color:#fff;}

/* delivery */
.delivery{padding:0 0 100px;}
.delivery-inner{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.delivery-copy h2{font-size:clamp(1.8rem,2.8vw,2.3rem);max-width:14ch;}
.delivery-option{background:var(--cream-soft);border-radius:12px;padding:16px 20px;margin-bottom:14px;}
.delivery-option-head{display:flex;justify-content:space-between;align-items:center;gap:12px;}
.delivery-option-head h4{font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;margin:0;color:var(--ink);}
.delivery-option p{margin:6px 0 0;font-size:.9rem;}
.tag{font-weight:700;font-size:.82rem;white-space:nowrap;}
.tag-free{color:var(--teal);}
.tag-plus{color:var(--coral-dark);}
.checklist{margin-top:22px;display:flex;flex-direction:column;gap:10px;}
.checklist li{font-size:.92rem;color:var(--ink-soft);padding-left:26px;position:relative;}
.checklist li::before{content:"✓";position:absolute;left:0;color:var(--teal);font-weight:700;}
.delivery-photo img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;height:420px;object-fit:cover;}

/* cta banner */
.cta-banner{position:relative;overflow:hidden;border-radius:0;margin:0;isolation:isolate;}
.cta-banner .wrap{padding-top:0;padding-bottom:0;}
.cta-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;}
.cta-banner::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(18,51,56,0.88) 0%,rgba(18,51,56,0.55) 55%,rgba(18,51,56,0.25) 100%);z-index:-1;}
.cta-inner{padding:80px 24px;max-width:640px;}
.cta-inner h2{color:#fff;font-size:clamp(1.7rem,3vw,2.3rem);max-width:16ch;}
.cta-inner p{color:#e4efee;margin-bottom:24px;}

/* footer */
.site-footer{background:var(--teal-dark);color:#cfe3e1;}
.footer-inner{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:32px;padding:56px 24px 40px;}
.footer-brand{font-family:'Fraunces',serif;font-weight:600;color:#fff;font-size:1.2rem;margin-bottom:10px;}
.footer-heading{font-weight:700;color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:10px;}
.footer-col p{font-size:.9rem;color:#b9d2cf;margin-bottom:0;}
.footer-col a:hover{color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.12);padding:18px 24px;}
.footer-bottom p{margin:0;font-size:.78rem;color:#8fb0ac;}
.footer-bottom a{text-decoration:underline;text-underline-offset:2px;}
.footer-bottom a:hover{color:#fff;}

/* responsive */
@media (max-width:960px){
  .hero-inner{grid-template-columns:1fr;}
  .hero-photos{margin-top:20px;min-height:340px;}
  .fleet-grid{grid-template-columns:repeat(2,1fr);}
  .delivery-inner{grid-template-columns:1fr;}
  .delivery-photo{order:-1;}
  .delivery-photo img{height:260px;}
  .footer-inner{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .main-nav{display:none;}
  .fleet-grid{grid-template-columns:1fr;}
  .info-bar-inner{justify-content:flex-start;flex-direction:column;}
  .footer-inner{grid-template-columns:1fr;}
  .badge-price{width:84px;height:84px;font-size:.72rem;}
}
