/* ============================================================
   Slip and Slide Boat Rentals — Canyon Lake, TX
   Mobile-first static styles. No frameworks, no build step.
   Palette: deep water blues + sunset orange/coral.
   ============================================================ */

:root {
  --navy: #07304a;          /* deep water */
  --deep: #041f31;          /* darkest blue */
  --aqua: #0e7c9e;          /* mid water */
  --foam: #e8f4f8;          /* pale blue tint */
  --sunset: #ff6b4a;        /* sunset orange */
  --coral: #ff9a6b;         /* coral accent */
  --sun: #ffc94d;           /* golden highlight */
  --sand: #fff8f0;          /* warm off-white */
  --ink: #123a52;           /* body text */
  --muted: #5b7a8d;         /* muted text */
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 40px -18px rgba(4, 31, 49, 0.35);
  --font: "Bricolage Grotesque", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  font-size: 1.0625rem;
  padding-bottom: 76px; /* room for sticky mobile call bar */
}

@media (min-width: 760px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--deep);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--aqua); }

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

section { padding: 64px 0; }
.section-kicker {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--sunset);
  margin-bottom: 0.6em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9em 1.7em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--sunset), #f04e23);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(255, 107, 74, 0.7);
}
.btn-primary:hover { box-shadow: 0 16px 32px -10px rgba(255, 107, 74, 0.85); }
.btn-light {
  background: var(--white);
  color: var(--deep);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 31, 49, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sunset), var(--sun));
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.nav-links { display: none; }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sunset);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6em 1.2em;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (min-width: 760px) {
  .nav-links { display: flex; gap: 26px; }
  .nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
  }
  .nav-links a:hover { color: #fff; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(255, 107, 74, 0.45), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(14, 124, 158, 0.5), transparent 60%),
    linear-gradient(180deg, #0a3a5c 0%, var(--deep) 100%);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--sun), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 10px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}
.hero-badges li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45em 1em;
  font-size: 0.9rem;
  font-weight: 600;
}
.hero .photo-slot { margin-bottom: -1px; }
.wave-divider { display: block; width: 100%; height: 70px; margin-bottom: -1px; }

/* ---------- Photo slots ----------
   Owner is supplying real photos/video. To swap: drop the file
   into /photos/ with the matching filename. Until then a branded
   gradient + label shows instead of a broken image. */
.photo-slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--aqua), var(--navy) 60%, #0b4a68);
  box-shadow: var(--shadow);
  min-height: 220px;
  display: grid;
  place-items: center;
}
.photo-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 260px at 80% 0%, rgba(255, 154, 107, 0.55), transparent 65%);
  pointer-events: none;
}
.photo-slot .photo-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: center;
  padding: 24px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot.tall { aspect-ratio: 4 / 3; }
@media (min-width: 760px) {
  .photo-slot.tall { aspect-ratio: 16 / 8; }
}

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 20px; }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 48, 74, 0.06);
}
.card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); margin-bottom: 0; }
.card.highlight {
  background: linear-gradient(160deg, var(--navy), #0b4a68);
  color: #fff;
}
.card.highlight h3 { color: #fff; }
.card.highlight p { color: rgba(255, 255, 255, 0.82); }

/* ---------- Occasions ---------- */
.occasions { background: var(--white); }
.occasion-tag {
  display: inline-block;
  background: var(--foam);
  color: var(--navy);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5em 1.1em;
  margin: 0 10px 12px 0;
  font-size: 1rem;
}

/* ---------- Fleet ---------- */
.fleet-card { text-align: left; position: relative; overflow: hidden; }
.fleet-card .capacity {
  display: inline-block;
  background: linear-gradient(135deg, var(--sunset), #f04e23);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.35em 1em;
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.fleet-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.98rem;
}
.fleet-card ul li { margin-bottom: 6px; }
.fleet-card ul li::before { content: "✓ "; color: var(--aqua); font-weight: 800; }

/* ---------- Pricing ---------- */
.pricing { background: linear-gradient(180deg, var(--foam), var(--sand)); }
.price-hero {
  text-align: center;
  background: linear-gradient(160deg, var(--navy), #0b4a68);
  color: #fff;
  border-radius: 28px;
  padding: 44px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 240px at 85% 0%, rgba(255, 107, 74, 0.5), transparent 65%);
}
.price-hero > * { position: relative; }
.price-amount {
  font-size: clamp(3rem, 10vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.price-amount small { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.price-hero p { color: rgba(255, 255, 255, 0.85); }
.included-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 760px) { .included-list { grid-template-columns: 1fr 1fr; } }
.included-list li {
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px -12px rgba(4, 31, 49, 0.25);
}
.included-list li span { display: block; font-weight: 400; color: var(--muted); font-size: 0.95rem; }

/* ---------- Schedule ---------- */
.schedule-note {
  background: #fff8e8;
  border: 2px dashed var(--sun);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  font-weight: 600;
}
.day-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(7, 48, 74, 0.06);
}
.day-block h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.day-block h3 .date-hint { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.boat-row {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--foam);
}
.boat-row:first-of-type { border-top: 0; padding-top: 0; }
.boat-name { font-weight: 800; color: var(--navy); }
.boat-name small { font-weight: 600; color: var(--muted); }
.slot-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-chip {
  background: var(--foam);
  border-radius: 999px;
  padding: 0.5em 1.05em;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}
@media (min-width: 760px) {
  .boat-row { grid-template-columns: 220px 1fr; align-items: center; }
}

/* ---------- Rules / good to know ---------- */
.rules { background: var(--deep); color: #fff; }
.rules h2, .rules h3 { color: #fff; }
.rules .section-kicker { color: var(--coral); }
.rule-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
}
.rule-card p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }
.rule-card strong { color: #fff; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px -16px rgba(4, 31, 49, 0.3);
  border: 1px solid rgba(7, 48, 74, 0.06);
}
.faq summary {
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  color: var(--deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--foam);
  color: var(--sunset);
  font-size: 1.4rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin: 12px 0 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(255, 201, 77, 0.25), transparent 60%),
    linear-gradient(135deg, #f04e23, var(--sunset) 55%, #ff8c42);
  color: #fff;
  text-align: center;
  border-radius: 32px;
  padding: 56px 28px;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.92); max-width: 36em; margin-inline: auto; }
.cta-band .phone-big {
  display: inline-block;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin: 10px 0 22px;
  letter-spacing: 0.01em;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Booking page ---------- */
.book-hero {
  background: linear-gradient(180deg, #0a3a5c, var(--deep));
  color: #fff;
  padding: 56px 0;
}
.book-hero h1 { color: #fff; font-size: clamp(2rem, 6vw, 3rem); }
.book-hero p { color: rgba(255, 255, 255, 0.85); max-width: 40em; }
.call-panel {
  background: linear-gradient(135deg, var(--sunset), #f04e23);
  color: #fff;
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 40px 0;
}
.call-panel h2 { color: #fff; margin-bottom: 0.3em; }
.call-panel p { color: rgba(255, 255, 255, 0.92); }
.call-panel .phone-big {
  display: inline-block;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin: 8px 0 18px;
}
.policy-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border-left: 6px solid var(--sunset);
  margin: 32px 0;
}
.policy-box h3 { margin-bottom: 0.5em; }
.policy-box ul { margin: 0; padding-left: 1.2em; color: var(--muted); }
.policy-box li { margin-bottom: 0.5em; }
.policy-box strong { color: var(--ink); }

/* ---------- Form ---------- */
.booking-form {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  border: 1px solid rgba(7, 48, 74, 0.06);
}
@media (min-width: 760px) { .booking-form { padding: 44px; } }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 760px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: var(--deep);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid #dbe7ee;
  border-radius: 14px;
  padding: 0.8em 1em;
  background: var(--sand);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sunset);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.field .hint { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.form-status {
  border-radius: 16px;
  padding: 18px 22px;
  font-weight: 600;
  display: none;
  margin-top: 20px;
}
.form-status.success { display: block; background: #e6f7ec; color: #14663a; border: 2px solid #9fdcb4; }
.form-status.error { display: block; background: #fdeceb; color: #a4261c; border: 2px solid #f5b5ac; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; } /* honeypot */

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 52px 0 32px;
  font-size: 0.95rem;
}
.site-footer .container {
  display: grid;
  gap: 28px;
}
@media (min-width: 760px) {
  .site-footer .container { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h3 { color: #fff; font-size: 1.05rem; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: flex;
  gap: 10px;
}
.call-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 1em;
  font-size: 1.02rem;
}
.call-bar .call-now {
  background: linear-gradient(135deg, var(--sunset), #f04e23);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(240, 78, 35, 0.8);
}
.call-bar .book-online {
  background: var(--white);
  color: var(--deep);
  box-shadow: var(--shadow);
  border: 2px solid var(--foam);
}
@media (min-width: 760px) { .call-bar { display: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

/* ---------- Videos ---------- */
.videos { background: var(--white); }
.video-grid { align-items: start; }
.video-card {
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-card video { width: 100%; height: auto; display: block; background: #000; }
.video-card.landscape video { aspect-ratio: 16 / 9; }
.video-card.portrait { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
.video-card.portrait video { aspect-ratio: 9 / 16; }
.video-card figcaption {
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
}
