/* New Orleans Kayak Rental — bayou daylight design system */
:root {
  --ink: #16241c;
  --bayou: #1d3a2c;
  --moss: #45614f;
  --cream: #f7f2e8;
  --sand: #ede4d0;
  --gold: #d1912f;
  --gold-dark: #b2761c;
  --white: #fffdf8;
  --max: 1160px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.4em; }
p + p { margin-top: 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bayou); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.8rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(247, 242, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.wordmark {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem;
  line-height: 1.05; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--bayou); text-decoration: none;
}
.wordmark span { display: block; color: var(--gold-dark); font-size: 0.82em; }
.site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-size: 0.92rem; font-weight: 500;
  padding: 0.2rem 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active { border-bottom-color: var(--gold); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  border-radius: 999px; padding: 0.7rem 1.6rem; font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-book { background: var(--gold); color: var(--ink); box-shadow: 0 2px 10px rgba(209, 145, 47, 0.35); }
.btn-ghost { border: 1.5px solid var(--white); color: var(--white); }
.btn-dark { background: var(--bayou); color: var(--white); }
.btn-lg { padding: 0.95rem 2.2rem; font-size: 1.05rem; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,28,0.15) 30%, rgba(22,36,28,0.78) 100%);
}
.hero-inner {
  position: relative; z-index: 1; max-width: var(--max);
  margin: 0 auto; width: 100%;
  padding: clamp(2rem, 6vw, 4.5rem);
}
.hero .eyebrow { color: #f2d9ad; }
.hero p.lede { max-width: 34em; font-size: clamp(1.05rem, 2vw, 1.25rem); margin: 1rem 0 1.8rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-sub { position: relative; min-height: 52vh; align-items: center; }
.hero-sub .hero-inner { text-align: left; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem;
  font-weight: 600; color: var(--gold-dark); display: block; margin-bottom: 0.9rem;
}

/* Facts strip */
.facts {
  background: var(--bayou); color: var(--cream);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  padding: 1.6rem clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}
.facts b { display: block; font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--white); }
.facts small { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

/* Sections */
section { padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2.5rem); }
.inner { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; max-width: var(--max); margin: 0 auto; }
.split img { border-radius: 14px; box-shadow: 0 18px 45px rgba(22,36,28,0.18); }
.section-dark { background: var(--bayou); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark a { color: #f2d9ad; }
.section-sand { background: var(--sand); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.6rem; margin-top: 2rem; }
.card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 28px rgba(22,36,28,0.09);
  display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; }
.card .card-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; }
.card .price { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--gold-dark); }

/* Steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
.step { counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--gold);
  display: block; margin-bottom: 0.4rem;
}

/* FAQ */
details {
  border-bottom: 1px solid var(--sand); padding: 1.1rem 0;
}
details summary {
  cursor: pointer; font-weight: 600; font-size: 1.06rem;
  font-family: 'Fraunces', serif; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details summary::after { content: "+"; font-size: 1.4rem; color: var(--gold-dark); flex-shrink: 0; }
details[open] summary::after { content: "\2212"; }
details p { margin-top: 0.7rem; max-width: 62em; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.5rem 0; }
table { border-collapse: collapse; width: 100%; background: var(--white); border-radius: 10px; overflow: hidden; }
th, td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--sand); }
th { background: var(--bayou); color: var(--cream); font-weight: 600; font-size: 0.9rem; }

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.8rem; margin-top: 2rem; }
.post-card { text-decoration: none; color: inherit; }
.post-card h3 { margin-top: 0.9rem; }
.post-card img { border-radius: 12px; aspect-ratio: 3/2; object-fit: cover; }
.post-card small { color: var(--moss); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; }
article.post { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) 1.2rem; }
article.post h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
article.post h2 { font-size: 1.55rem; margin-top: 2.2rem; }
article.post .post-meta { color: var(--moss); font-size: 0.9rem; margin-bottom: 1.8rem; }
article.post img { border-radius: 12px; margin: 1.6rem 0; }
article.post ul, article.post ol { padding-left: 1.4rem; margin: 1em 0; }
article.post li { margin: 0.45em 0; }
.answer-box {
  background: var(--sand); border-left: 4px solid var(--gold);
  padding: 1.1rem 1.4rem; border-radius: 0 10px 10px 0; margin: 1.4rem 0;
}

/* CTA band */
.cta-band { text-align: center; background: var(--bayou); color: var(--cream); }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 36em; margin: 0 auto 1.6rem; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd8d0; padding: 3.5rem clamp(1rem, 4vw, 2.5rem) 2rem; font-size: 0.92rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.7rem; }
.site-footer a { color: #cfd8d0; }
.footer-mark { color: var(--cream); margin-bottom: 0.8rem; }
.footer-mark span { color: var(--gold); }
.colophon { max-width: var(--max); margin: 2.5rem auto 0; padding-top: 1.2rem; border-top: 1px solid #2c3b31; font-size: 0.8rem; opacity: 0.7; }

/* Mobile */
@media (max-width: 900px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--sand); padding: 0.5rem 1.5rem 1rem;
  }
  .site-nav a { padding: 0.7rem 0; }
  body.nav-open .site-nav { display: flex; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 6px;
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }
  .btn-book { margin-left: auto; padding: 0.55rem 1.1rem; }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 72vh; }
}
