
:root {
  --navy: #062c46;
  --navy-2: #0a3d5b;
  --blue: #0d6d91;
  --aqua: #33a7ba;
  --sand: #f5f0e7;
  --foam: #f7fbfc;
  --white: #ffffff;
  --ink: #132632;
  --muted: #546873;
  --gold: #d5a946;
  --line: rgba(6,44,70,.14);
  --shadow: 0 18px 48px rgba(6,44,70,.14);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1,h2,h3 { line-height: 1.08; color: var(--navy); margin-top: 0; font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-weight: 800; }
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -.035em; }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: #e8f6fa; max-width: 760px; }
.section { padding: 86px 0; }
.section-tight { padding: 56px 0; }
.section-sand { background: var(--sand); }
.section-foam { background: var(--foam); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: #84d1dc; }
.muted { color: var(--muted); }
.center { text-align: center; }
.stack { display: grid; gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.announcement {
  background: var(--navy);
  color: var(--white);
  font-size: .93rem;
}
.announcement .wrap {
  min-height: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
}
.announcement a { font-weight: 800; text-decoration: none; color: #bdeaf0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; color: var(--navy); }
.brand img { width: 165px; height: 56px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; font-weight: 720; font-size: .95rem; color: var(--navy); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-weight: 800;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  background: var(--gold);
  color: #102a3a;
  border: 2px solid var(--gold);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.15); }
.button.secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.button.outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.button.small { min-height: 42px; padding: 0 16px; font-size: .9rem; }
.button.needs-setup { outline: 3px dashed #e28d3b; outline-offset: 3px; }
.hero {
  min-height: 760px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(2,26,42,.94) 0%, rgba(2,34,53,.77) 46%, rgba(2,34,53,.2) 100%),
    url("../images/catch-redfish-1.webp") center 34%/cover no-repeat;
  color: var(--white);
}
.hero-content { padding: 112px 0 92px; max-width: 840px; }
.hero h1 { color: var(--white); max-width: 900px; margin-bottom: 22px; }
.hero .eyebrow { color: #9cdee6; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.hero-badges span {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 750;
  font-size: .92rem;
}
.trust-strip { margin-top: -32px; position: relative; z-index: 2; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}
.trust-card strong { display: block; font-size: 1.35rem; color: var(--navy); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(6,44,70,.08);
  padding: 28px;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #e1f3f5; color: var(--navy); font-size: 1.35rem; margin-bottom: 18px;
}
.trip-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.trip-image { min-height: 370px; background: url("../images/catch-trout-1.webp") center/cover no-repeat; }
.trip-copy { padding: 38px; }
.trip-copy h2, .trip-copy h3 { color: var(--white); }
.trip-prices { display: grid; gap: 10px; margin: 24px 0; }
.price-row { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 12px; }
.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; font-weight: 900; color: var(--aqua);
}
.gallery { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-auto-rows: 250px; gap: 15px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 18px; }
.gallery figure:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  position: relative; padding: 26px 26px 26px 84px; background: var(--white);
  border: 1px solid var(--line); border-radius: 18px;
}
.step::before {
  counter-increment: step; content: counter(step); position: absolute; left: 24px; top: 26px;
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--navy); color: white; font-weight: 900;
}
.calendar-shell {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.calendar-shell iframe { width: 100%; min-height: 660px; border: 0; border-radius: 14px; }
.notice {
  border-left: 5px solid var(--gold); background: #fff8e8; color: #493b1f;
  padding: 18px 20px; border-radius: 10px;
}
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 850; color: var(--navy); font-size: 1.08rem; }
.faq p { margin-bottom: 0; color: var(--muted); }
.cta-band {
  border-radius: 30px;
  padding: clamp(34px,6vw,68px);
  background:
    linear-gradient(110deg, rgba(6,44,70,.96), rgba(13,109,145,.87)),
    url("../images/catch-redfish-2.webp") center/cover no-repeat;
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.site-footer { background: #031f32; color: #c8d7df; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 38px; }
.site-footer h3 { color: var(--white); }
.site-footer a { color: #d8edf2; text-decoration: none; }
.footer-bottom { margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
.page-hero {
  padding: 94px 0 78px;
  background:
    linear-gradient(105deg, rgba(3,31,50,.96), rgba(8,74,105,.80)),
    url("../images/catch-cooler.webp") center/cover no-repeat;
  color: var(--white);
}
.page-hero h1 { color: var(--white); max-width: 880px; }
.page-hero p { max-width: 760px; color: #e9f5f7; font-size: 1.18rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; text-align: center; }
.mobile-bar { display: none; }

@media (max-width: 900px) {
  .grid-2,.grid-3,.grid-4,.footer-grid,.contact-cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure:first-child { grid-row: span 1; grid-column: span 2; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute; top: 82px; left: 20px; right: 20px; display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px;
    background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .header-cta { display: none; }
  .hero { min-height: 690px; background-position: 62% center; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .section { padding: 66px 0; }
  .announcement .wrap { text-align: center; padding: 8px 0; flex-wrap: wrap; }
  .brand img { width: 140px; }
  .hero { min-height: 720px; background-position: 64% center; }
  .hero-content { padding: 96px 0 88px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .trust-strip { margin-top: -20px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery figure:first-child { grid-column: span 1; }
  .calendar-shell iframe { min-height: 600px; }
  body { padding-bottom: 70px; }
  .mobile-bar {
    position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; min-height: 66px;
    display: grid; grid-template-columns: repeat(3,1fr); background: var(--navy); box-shadow: 0 -8px 30px rgba(0,0,0,.22);
  }
  .mobile-bar a {
    display: grid; place-items: center; text-decoration: none; color: white; font-size: .82rem; font-weight: 850;
    border-right: 1px solid rgba(255,255,255,.18);
  }
  .mobile-bar a:last-child { background: var(--gold); color: #102a3a; border: 0; }
}

/* Legal-document pages */
.legal-copy h2 { margin-top: 2.2rem; padding-top: .4rem; border-top: 1px solid var(--line); font-size: 1.45rem; }
.legal-copy p { max-width: 82ch; }
.legal-sub { margin-left: 1.5rem; }
.legal-warning { margin: 1rem 0; padding: 1rem 1.1rem; border-left: 6px solid #9b1c1c; background: #fff0f0; color: #6f1515; }
.signature-line { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; padding: .25rem 0; }
.legal-check { font-weight: 700; }


/* v4 service, booking, resource, and social components */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(6,44,70,.10);
  overflow: hidden;
}
.service-card-header {
  padding: 28px 28px 18px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}
.service-card-header h2,
.service-card-header h3 { color: white; margin-bottom: 8px; }
.service-card-header p { margin: 0; color: #dceef3; }
.service-card-body { padding: 26px 28px 30px; }
.option-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.option-row:first-child { border-top: 0; padding-top: 0; }
.option-row strong { color: var(--navy); font-size: 1.18rem; }
.option-meta { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.deposit-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .82rem;
  font-weight: 850;
  color: var(--navy);
  background: #e4f4f6;
  margin-top: 12px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.resource-card {
  display: block;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(6,44,70,.12);
}
.resource-card h3 { margin-bottom: 8px; }
.social-row { display: flex; flex-wrap: wrap; gap: 12px; }
.social-button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 820;
  background: white;
  color: var(--navy);
}
.social-button:hover { border-color: var(--blue); color: var(--blue); }
.booking-note {
  background: #eef8fa;
  border: 1px solid #c7e8ed;
  padding: 18px 20px;
  border-radius: 14px;
}
.legal-copy h2 { margin-top: 38px; font-size: 1.65rem; }
.legal-copy h3 { margin-top: 26px; }
.legal-sub { padding-left: 24px; }
.legal-warning {
  margin: 20px 0;
  padding: 20px;
  border: 3px solid #9c1a1a;
  background: #fff2f2;
  color: #551111;
}
.signature-line { margin: 20px 0; }
.legal-check { margin: 16px 0; padding-left: 10px; }
.brand img { background: white; border-radius: 8px; }

@media (max-width: 900px) {
  .service-grid, .resource-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .option-row { grid-template-columns: 1fr; }
  .option-row .button { width: 100%; }
}

.hero-promise {
  font-size: clamp(1.15rem, 2.2vw, 1.42rem);
  font-weight: 850;
  color: #bdeaf0;
  margin: 0 0 12px;
}
