:root {
  --paper: #fffaf2;
  --cream: #f4efe5;
  --cedar: #9f5422;
  --ember: #d96118;
  --ember-dark: #a94712;
  --ink: #102c38;
  --muted: #60717a;
  --lake: #0e5164;
  --moss: #536b45;
  --line: #ded1c0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 36, 43, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(222, 209, 192, 0.72);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(16, 44, 56, 0.12));
}

.brand-main { display: block; font-family: Impact, "Arial Black", sans-serif; font-size: 24px; line-height: 0.95; letter-spacing: 0.03em; }
.brand-sub { display: block; color: var(--cedar); font-size: 10px; letter-spacing: 0.32em; }

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #29414b;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-cta, .button, .icon-button {
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  background: var(--ember);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(217, 97, 24, 0.24);
}

.nav-cta:hover, .button:hover { transform: translateY(-1px); background: var(--ember-dark); }
.button.secondary { background: var(--ink); box-shadow: 0 12px 24px rgba(16, 44, 56, 0.22); }
.button.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.hero .button.ghost, .build .button.ghost {
  background: rgba(255, 250, 242, 0.1);
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.72);
}
.hero .button.ghost:hover, .build .button.ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg { width: 22px; height: 22px; }

.hero {
  min-height: 700px;
  display: grid;
  align-items: end;
  padding: 128px 0 56px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #102c38 url("../images/jackfish-hero-branded.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 35, 45, 0.88) 0%, rgba(13, 35, 45, 0.66) 42%, rgba(13, 35, 45, 0.14) 74%),
    linear-gradient(0deg, rgba(13, 35, 45, 0.42), rgba(13, 35, 45, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffd6b8;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.88;
  max-width: 720px;
}

.hero p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions, .form-actions, .confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-proof {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hero-proof-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  background: rgba(16, 44, 56, 0.36);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof-item svg { width: 20px; height: 20px; flex: 0 0 auto; stroke: #ffc49d; }

section { padding: 76px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.section-head p, .booking-copy p, .build p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.72);
  color: var(--cedar);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.package {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  min-height: 360px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(28, 43, 49, 0.07);
}

.package.featured {
  border-color: rgba(217, 97, 24, 0.5);
  box-shadow: 0 20px 46px rgba(217, 97, 24, 0.12);
}

.package h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
}

.price strong { font-size: 43px; letter-spacing: -0.01em; }
.price span { color: var(--muted); font-size: 13px; font-weight: 850; text-transform: uppercase; }
.package p { margin: 0; color: var(--muted); }

.checks {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checks li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #2e434d;
  font-size: 14px;
}

.checks svg { width: 20px; height: 20px; stroke: var(--moss); }

.build {
  background: var(--ink);
  color: var(--white);
  padding: 0;
}

.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 430px;
}

.build-media {
  background:
    linear-gradient(135deg, rgba(16, 44, 56, 0.1), rgba(217, 97, 24, 0.1)),
    url("../images/jackfish-hero-branded.png") center / cover no-repeat;
}

.build-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 58px max(32px, 6vw);
}

.build h2 { margin: 0; font-size: clamp(36px, 5vw, 60px); line-height: 0.96; }
.build p { color: rgba(255, 255, 255, 0.76); }

.booking {
  background: var(--paper);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 22px;
  align-items: start;
}

.booking-panel, .summary-panel, .confirmation {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(26, 39, 45, 0.08);
}

.booking-panel { padding: 26px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full { grid-column: 1 / -1; }
.field label {
  color: #314751;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fffdf8;
  color: var(--ink);
  padding: 11px 12px;
  outline: 0;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(217, 97, 24, 0.12);
}

.addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.addon {
  display: flex;
  gap: 10px;
  align-items: start;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  background: #fffdf8;
  cursor: pointer;
}

.addon input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ember); }
.addon strong { display: block; font-size: 14px; }
.addon span { display: block; color: var(--muted); font-size: 13px; }

.notice {
  display: none;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(217, 97, 24, 0.35);
  background: #fff4eb;
  color: #7d3912;
  font-weight: 760;
}

.notice.show { display: block; }

.summary-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.summary-panel h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1;
}

.summary-list {
  display: grid;
  gap: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.summary-row strong { color: var(--ink); text-align: right; }
.total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  margin: 18px 0;
  font-weight: 950;
}

.total strong { font-size: 42px; line-height: 1; }
.fineprint { margin: 0; color: var(--muted); font-size: 13px; }

.confirmation {
  display: none;
  margin-top: 22px;
  padding: 22px;
  border-color: rgba(83, 107, 69, 0.45);
  background: #f7fbf3;
}

.confirmation.show { display: block; }
.confirmation h3 { margin: 0 0 8px; font-size: 28px; }
.confirmation p { margin: 0 0 14px; color: #405446; }
.confirmation textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid #c9d8c0;
  background: #ffffff;
  color: var(--ink);
  padding: 12px;
}

.faq {
  background: #eef2ec;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faq-item {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.faq-item h3 { margin: 0 0 10px; font-size: 24px; }
.faq-item p { margin: 0; color: var(--muted); }

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer .logo img { filter: drop-shadow(0 1px 0 rgba(255, 250, 242, 0.36)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24)); }
.footer .brand-main { color: var(--white); }
.footer .brand-sub { color: #ffc49d; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-links {
  display: none;
  padding: 0 0 18px;
  border-top: 1px solid var(--line);
}

.mobile-links.open { display: grid; }
.mobile-links a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero {
    min-height: 760px;
    padding-top: 112px;
    background-position: 58% center;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 35, 45, 0.78) 0%, rgba(13, 35, 45, 0.62) 44%, rgba(13, 35, 45, 0.92) 100%);
  }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .packages, .booking-grid, .faq-grid, .build-grid { grid-template-columns: 1fr; }
  .summary-panel { position: static; }
  .section-head { display: grid; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1160px); }
  .brand-main { font-size: 20px; }
  .brand-sub { font-size: 9px; }
  .logo { width: 50px; height: 50px; }
  .hero { min-height: 680px; padding-bottom: 36px; }
  h1 { font-size: 46px; }
  .hero p { font-size: 17px; }
  .hero-proof { margin-top: 20px; gap: 8px; }
  .hero-proof-item { min-height: 48px; padding: 8px; font-size: 10px; }
  .form-grid, .addons { grid-template-columns: 1fr; }
  .booking-panel, .summary-panel { padding: 18px; }
  .foot { align-items: flex-start; flex-direction: column; }
  .button, .nav-cta { width: 100%; }
  .hero-actions .button { width: auto; flex: 1 1 190px; }
}
