:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #60706b;
  --paper: #f7f4ec;
  --surface: #fffdf7;
  --line: rgba(23, 33, 31, 0.14);
  --lake: #1f6f78;
  --pine: #274b39;
  --sun: #e2a748;
  --clay: #b76443;
  --sky: #d9edf0;
  --shadow: 0 18px 50px rgba(26, 44, 40, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  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 {
  font: inherit;
}

.gate {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(11, 31, 34, 0.48), rgba(11, 31, 34, 0.68)),
    url("https://upload.wikimedia.org/wikipedia/commons/c/ce/Norris-lake-tn1.jpg")
      center / cover;
}

.gate-panel {
  width: min(100%, 440px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow);
}

.gate-panel h1,
.hero h1,
.section h2,
.panel h2,
.questions h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.gate-panel h1 {
  font-size: clamp(2.2rem, 9vw, 4.5rem);
}

.gate-panel p {
  color: var(--muted);
}

.gate-panel label {
  display: block;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.gate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.gate-row input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: white;
}

.gate-row button,
.button {
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.gate-row button,
.button.primary {
  background: var(--lake);
  color: white;
}

.demo-link {
  width: 100%;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(31, 111, 120, 0.08);
  color: var(--lake);
  cursor: pointer;
  font-weight: 900;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.gate-error {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: #9a2f24;
  font-weight: 700;
}

.site-shell {
  min-height: 100vh;
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 18px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 26, 28, 0.72), rgba(7, 26, 28, 0.2)),
    linear-gradient(0deg, rgba(7, 26, 28, 0.66), rgba(7, 26, 28, 0)),
    url("https://upload.wikimedia.org/wikipedia/commons/c/ce/Norris-lake-tn1.jpg")
      center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18vh;
  z-index: -1;
  background: linear-gradient(transparent, var(--paper));
}

.hero-content {
  width: min(100%, 1120px);
  margin: 0 auto 9vh;
  color: white;
}

.topbar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  width: min(calc(100% - 36px), 1120px);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(7, 26, 28, 0.28);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe0a8;
}

.hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 12vw, 8.6rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.3vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.status-strip {
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 28px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.status-strip article {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.status-strip article:last-child {
  border-right: 0;
}

.status-strip span,
.mini-table span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-strip strong,
.mini-table strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}

.section,
.dashboard-grid,
.planning-modules,
.bring-board,
.private-board,
.visual-board,
.dossier-grid,
.split-section,
.questions {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro,
.schedule-section,
.questions {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 70px 0 36px;
  align-items: start;
}

.section h2,
.panel h2,
.questions h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
}

.section p,
.plain-list,
.question-list p {
  color: var(--muted);
  font-size: 1.04rem;
}

.private-board {
  padding: 52px 0 24px;
}

.private-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 16px;
}

.private-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

.private-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.private-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.private-card {
  min-height: 270px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.08);
}

.private-card.priority {
  background: var(--pine);
  color: white;
}

.private-card.caution {
  background: rgba(183, 100, 67, 0.08);
}

.private-card.boat-reservation {
  background: rgba(31, 111, 120, 0.08);
}

.private-label {
  display: inline-flex;
  border: 1px solid rgba(31, 111, 120, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--lake);
  background: rgba(31, 111, 120, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.private-card.priority .private-label {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffe0a8;
  background: rgba(255, 255, 255, 0.1);
}

.private-card h3 {
  margin: 16px 0 0;
  font-size: 1.35rem;
  line-height: 1.12;
}

.private-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.private-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.private-card.priority dl div {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.private-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.private-card.priority dt,
.private-card.priority dd {
  color: rgba(255, 255, 255, 0.9);
}

.private-card dd {
  margin: 0;
  font-weight: 800;
}

.compact {
  margin-top: 18px;
}

.private-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.private-checklist li {
  min-height: 44px;
  border: 1px solid rgba(183, 100, 67, 0.26);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.visual-board {
  padding: 34px 0 48px;
}

.visual-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 16px;
}

.visual-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.02;
}

.visual-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.photo-tile {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border-radius: 8px;
  padding: 22px;
  color: white;
  background: var(--pine);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.12);
}

.photo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(7, 26, 28, 0.08), rgba(7, 26, 28, 0.74));
}

.photo-tile span,
.photo-tile strong {
  position: relative;
  z-index: 1;
}

.photo-tile span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-tile strong {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.house-photo {
  background:
    linear-gradient(180deg, rgba(7, 26, 28, 0.05), rgba(7, 26, 28, 0.76)),
    url("https://upload.wikimedia.org/wikipedia/commons/c/ce/Norris-lake-tn1.jpg")
      center / cover;
}

.boat-photo {
  background:
    linear-gradient(180deg, rgba(7, 26, 28, 0.05), rgba(7, 26, 28, 0.76)),
    url("https://sugarhollowmarina.com/wp-content/uploads/2024/03/harris-pontoon-boats-cruiser-210-cs-port-running-2024-44616.jpg")
      center / cover;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 16px;
  padding: 24px 0 54px;
}

.planning-modules {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  padding: 8px 0 54px;
}

.planning-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.08);
}

.planning-card h2,
.bring-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.02;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.meal-grid div {
  min-height: 120px;
  border: 1px solid rgba(31, 111, 120, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(31, 111, 120, 0.06);
}

.meal-grid span {
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 950;
}

.meal-grid strong,
.meal-grid small {
  display: block;
}

.meal-grid strong {
  margin-top: 7px;
  font-size: 1.06rem;
}

.meal-grid small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.seed-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.seed-list li {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.seed-list strong {
  color: var(--ink);
}

.bring-board {
  padding: 0 0 54px;
}

.bring-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 16px;
}

.bring-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.bring-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.08);
}

.bring-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.7fr 1.5fr;
  border-bottom: 1px solid var(--line);
}

.bring-row:last-child {
  border-bottom: 0;
}

.bring-row span {
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 760;
}

.bring-row span:last-child {
  border-right: 0;
}

.bring-head {
  background: var(--pine);
}

.bring-head span {
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guests-header {
  padding-top: 42px;
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 58px;
}

.dossier-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 253, 247, 0.96)),
    var(--surface);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.08);
}

.dossier-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--lake), var(--sun), var(--clay));
}

.dossier-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.rank {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pine);
  color: white;
  font-weight: 950;
}

.status {
  border: 1px solid rgba(31, 111, 120, 0.28);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--lake);
  background: rgba(31, 111, 120, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status.pending {
  border-color: rgba(183, 100, 67, 0.28);
  color: var(--clay);
  background: rgba(183, 100, 67, 0.08);
}

.dossier-card h3 {
  margin: 22px 0 4px;
  font-size: 1.42rem;
  line-height: 1.08;
}

.role {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.dossier-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.dossier-card dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.dossier-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dossier-card dd {
  margin: 0;
  font-weight: 800;
}

.watch {
  margin: 18px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(226, 167, 72, 0.16);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
}

.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(26, 44, 40, 0.08);
}

.card {
  min-height: 330px;
  padding: 24px;
}

.card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.feature {
  background: var(--pine);
  color: white;
}

.feature .eyebrow,
.feature .check-list {
  color: rgba(255, 255, 255, 0.82);
}

.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin: 16px 0;
}

.check-list span {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mini-table {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.mini-table div {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list li {
  margin: 13px 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  border-left: 4px solid var(--sun);
  padding: 2px 0 18px 18px;
}

.timeline time {
  color: var(--lake);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline h3,
.timeline p {
  margin: 4px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 34px 0 54px;
}

.panel {
  padding: 26px;
}

.panel.accent {
  background: var(--sky);
}

.packing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.packing-grid label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.packing-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--lake);
}

.questions {
  padding-bottom: 56px;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.question-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lake);
  color: white;
  font-weight: 900;
}

.question-list p {
  margin: 0;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.text-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero {
    min-height: 88svh;
  }

  .topbar {
    justify-content: flex-start;
  }

  .hero-content {
    margin-bottom: 8vh;
  }

  .status-strip,
  .dashboard-grid,
  .planning-modules,
  .bring-heading,
  .private-heading,
  .private-grid,
  .visual-heading,
  .visual-grid,
  .dossier-grid,
  .split-section,
  .intro,
  .schedule-section,
  .questions {
    grid-template-columns: 1fr;
  }

  .status-strip {
    margin-top: -28px;
  }

  .status-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-strip article:last-child {
    border-bottom: 0;
  }

  .intro,
  .schedule-section,
  .questions {
    gap: 16px;
    padding-top: 48px;
  }

  .dashboard-grid {
    padding-bottom: 34px;
  }

  .meal-grid,
  .bring-row {
    grid-template-columns: 1fr;
  }

  .bring-head {
    display: none;
  }

  .bring-row span {
    border-right: 0;
  }

  .dossier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer {
    display: block;
  }
}

@media (max-width: 520px) {
  .gate-row,
  .private-checklist,
  .dossier-grid,
  .packing-grid {
    grid-template-columns: 1fr;
  }

  .gate-row button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .topbar a {
    font-size: 0.84rem;
    min-height: 34px;
    padding: 7px 10px;
  }
}
