/* =========================================================
   Double Down Fishing Charters — stylesheet
   Palette: charcoal ink / rust orange / dockside pine / warm parchment
   A deliberately different look from the navy/gold charter-site template —
   bold condensed display type, flat ticket-stub cards, offset "stamp" shadows.
   ========================================================= */

:root {
  --navy: #221d19;        /* charcoal ink (primary dark) */
  --navy-dark: #16120f;   /* deeper ink (footer, mobile nav) */
  --teal: #3c5d4f;        /* dockside pine (secondary accent) */
  --amber: #c1440e;       /* rust orange (primary accent) */
  --amber-dark: #9c3509;  /* rust, darker (hover states) */
  --cream: #f6efe1;       /* warm parchment page background */
  --white: #fffcf6;       /* warm paper (card surfaces) */
  --ink: #221d19;
  --ink-soft: #5c5248;
  --border: #e3d7c2;
  --shadow: 5px 5px 0 rgba(34, 29, 25, 0.16);
  --radius: 5px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); letter-spacing: 0.3px; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--amber-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1em; padding-left: 1.2em; color: var(--ink-soft); }
li { margin-bottom: 0.4em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: var(--radius);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--navy); }
.btn-primary { background: var(--amber); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); box-shadow: 4px 4px 0 rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--navy); box-shadow: 0 0 0 rgba(255,255,255,0.3); }
.btn-navy { background: var(--navy); color: var(--cream); border-color: var(--navy); box-shadow: 4px 4px 0 var(--amber); }
.btn-navy:hover { background: var(--navy-dark); box-shadow: 0 0 0 var(--amber); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 4px solid var(--navy);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: flex;
  flex-direction: column;
  color: var(--navy);
  font-family: 'Anton', sans-serif;
  line-height: 1.05;
}
.brand strong {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.brand span {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  margin-top: 3px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25em;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 0.86rem;
  padding: 0.6em 0.85em;
  border-radius: 4px;
  display: block;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(193, 68, 14, 0.12);
  color: var(--amber-dark);
}
.main-nav .nav-cta a {
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
}
.main-nav .nav-cta a:hover { background: var(--amber-dark); color: var(--white); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 4px solid var(--navy);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 480px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.5rem; }
  .main-nav a { padding: 0.9em 0.5em; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav .nav-cta { margin-top: 0.6em; }
  .main-nav .nav-cta a { text-align: center; border-radius: var(--radius); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  --hero-img: none;
  border-top: 6px solid var(--amber);
  background:
    linear-gradient(100deg, rgba(22,18,15,0.94) 0%, rgba(22,18,15,0.82) 38%, rgba(22,18,15,0.4) 75%),
    linear-gradient(0deg, rgba(22,18,15,0.55), transparent 55%),
    var(--hero-img) center/cover no-repeat,
    var(--navy);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}
.hero.hero-tall { padding: 7rem 0 5.5rem; }
.hero::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 46%;
  min-width: 260px;
  height: 10px;
  background: var(--amber);
  clip-path: polygon(0 100%, 100% 100%, 88% 0, 0 0);
}
.hero .container { position: relative; z-index: 1; }
.eyebrow,
.hero .eyebrow,
.hero-page .eyebrow,
.section-head .eyebrow {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  padding: 0.4em 0.9em;
  border-radius: 3px;
  transform: rotate(-1.5deg);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); max-width: 850px; }
.hero p.lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 640px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-page {
  position: relative;
  --hero-img: none;
  border-top: 6px solid var(--amber);
  background:
    linear-gradient(100deg, rgba(22,18,15,0.92) 0%, rgba(22,18,15,0.8) 45%, rgba(22,18,15,0.5) 100%),
    var(--hero-img) center/cover no-repeat,
    var(--navy);
  padding: 3.6rem 0;
  text-align: left;
  overflow: hidden;
}
.hero-page::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 36%;
  min-width: 220px;
  height: 8px;
  background: var(--amber);
  clip-path: polygon(0 100%, 100% 100%, 88% 0, 0 0);
}
.hero-page .container { position: relative; z-index: 1; }
.hero-page h1 { color: var(--white); }
.breadcrumb-note { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin: 0; }

/* ---------- Sections ---------- */
section { padding: 4.2rem 0; }
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.82); }
.section-head { max-width: 720px; margin: 0 auto 2.6rem; text-align: center; }
.section-head .eyebrow { margin-bottom: 0.8rem; }

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 1.85rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy);
}
.card h3 { margin-bottom: 0.5rem; }
.card .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(193,68,14,0.14);
  border-radius: 4px;
  margin-bottom: 1rem;
  color: var(--amber);
}
.card .icon svg { width: 26px; height: 26px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}
.split img { border-radius: 2px; box-shadow: var(--shadow); border: 6px solid var(--white); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}
.stat-row .stat { min-width: 120px; }
.stat strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--amber);
}
.stat span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.75); }

/* ---------- Feature list ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.5rem;
}
@media (max-width: 620px) { .feature-list { grid-template-columns: 1fr; } }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}
.feature-list li::before {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--amber);
  margin-top: 0.55em;
}

/* ---------- Rates table ---------- */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy);
}
.rates-table th, .rates-table td {
  padding: 1.1em 1.3em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.rates-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
  border-bottom: 3px solid var(--amber);
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table td.price { font-weight: 700; color: var(--amber-dark); font-size: 1.1rem; }

.policy-box {
  background: rgba(60,93,79,0.12);
  border: 1px solid rgba(60,93,79,0.4);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}
.policy-box h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }

/* ---------- Form ---------- */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem;
  border: 2px solid var(--navy);
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4em;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--white);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.3rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: -0.5rem; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-alert {
  padding: 1em 1.2em;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border: 2px solid;
}
.form-alert.success { background: #eaf2ea; color: #1e5e2c; border-color: #1e5e2c; }
.form-alert.error { background: #fbe9e4; color: #9c3509; border-color: #9c3509; }
.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-box .captcha-code {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 7px;
  background: var(--navy);
  color: var(--amber);
  padding: 0.45em 0.9em;
  border-radius: 4px;
  user-select: none;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .gallery-cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(0deg, rgba(22,18,15,0.88), transparent);
  color: var(--white);
  font-size: 0.82rem;
  padding: 1.6rem 0.8rem 0.6rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-cap { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(16,13,11,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 2px; border: 6px solid var(--white); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox .lb-cap { color: var(--white); text-align: center; margin-top: 1rem; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ---------- Testimonial / socials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy);
  border-left: 5px solid var(--amber);
}
.testimonial-card p.quote {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
}
.testimonial-card .who { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.fb-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0.5em 1.1em;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}

/* ---------- Map / location ---------- */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--navy);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--amber);
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 3.2rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-grid h4 {
  color: var(--white);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.6em; }
.footer-grid a { color: rgba(255,255,255,0.78); }
.footer-grid a:hover { color: var(--amber); }
.footer-brand strong { color: var(--white); font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; font-size: 1.3rem; }
.social-row { display: flex; gap: 0.7rem; margin-top: 1rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.social-row a:hover { background: var(--amber); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-credit { color: rgba(255,255,255,0.55); }
.footer-credit a { color: rgba(255,255,255,0.72); font-weight: 600; }
.footer-credit a:hover { color: var(--amber); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
