/* ================= The Lake Norman Experience — design system ================= */
:root {
  --ocean: #075985;
  --ocean-dark: #05466a;
  --aqua: #06B6D4;
  --water: #BAE6FD;
  --sun: #FBBF24;
  --sunlight: #FEF3C7;
  --white: #FFFCF5;
  --sand: #F3E8D3;
  --charcoal: #1F2937;
  --grayblue: #64748B;
  --coral: #F97360;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(7, 89, 133, 0.10);
  --shadow-sm: 0 2px 10px rgba(7, 89, 133, 0.08);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aqua); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3.display { font-family: var(--font-display); font-weight: 400; color: var(--ocean); line-height: 1.12; }
h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(30px, 4vw, 46px); }
.lede { color: var(--grayblue); font-size: 18px; max-width: 62ch; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 700; color: var(--aqua); margin-bottom: 10px; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
.center { text-align: center; }
.icon { width: 24px; height: 24px; stroke-width: 1.5; flex: none; }
.icon-lg { width: 38px; height: 38px; stroke-width: 1.4; }
.muted { color: var(--grayblue); }
.small { font-size: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none !important; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  min-height: 48px;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--ocean); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ocean-dark); }
.btn-sun { background: var(--sun); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn-sun:hover { filter: brightness(1.04); }
.btn-ghost { background: transparent; color: var(--ocean); border: 1.5px solid var(--ocean); }
.btn-ghost:hover { background: rgba(7,89,133,.06); }
.btn-light { background: #fff; color: var(--ocean); border: 1.5px solid #e4ecf2; }
.btn-light:hover { border-color: var(--aqua); }
.btn-aqua { background: var(--aqua); color: #fff; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; min-height: 38px; font-size: 14px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 252, 245, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7,89,133,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: 1180px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; color: var(--ocean); text-decoration: none !important; }
.brand .icon { color: var(--aqua); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--ocean); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--ocean); cursor: pointer; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 18px 24px; gap: 16px; border-bottom: 1px solid rgba(7,89,133,.1); box-shadow: var(--shadow); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; color: #fff; padding: 110px 0 90px;
  background:
    linear-gradient(180deg, rgba(4, 48, 74, 0.55) 0%, rgba(7, 89, 133, 0.45) 55%, rgba(6, 182, 212, 0.35) 100%),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1800&q=70') center/cover no-repeat,
    linear-gradient(180deg, #075985, #06B6D4);
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: rgba(255,255,255,.92); margin: 18px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- search card ---------- */
.search-card {
  margin-top: 44px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 22px; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end;
}
.search-card label { font-size: 13px; font-weight: 700; color: var(--grayblue); display: block; margin-bottom: 6px; }
@media (max-width: 900px) { .search-card { grid-template-columns: 1fr 1fr; } .search-card .btn { grid-column: 1 / -1; } }

/* ---------- trust bar ---------- */
.trustbar { background: var(--ocean); color: #fff; padding: 22px 0; }
.trustbar .row { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.95); }
.trust-item .icon { color: var(--water); width: 21px; height: 21px; }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid #eef2f6; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px; }
.card h3 { font-size: 24px; margin-bottom: 6px; }

/* package cards */
.pkg { position: relative; display: flex; flex-direction: column; gap: 14px; }
.pkg.featured { border: 2px solid var(--aqua); box-shadow: var(--shadow); }
.badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--sun); color: var(--charcoal); font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.pkg .price { font-family: var(--font-display); font-size: 44px; color: var(--ocean); }
.pkg .split { background: var(--water); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 15px; display: grid; gap: 4px; }
.pkg ul { list-style: none; display: grid; gap: 8px; font-size: 15px; }
.pkg ul li { display: flex; gap: 9px; align-items: center; }
.pkg ul .icon { width: 19px; height: 19px; color: var(--aqua); }

/* soft sections */
.section-water { background: var(--water); }
.section-sand { background: var(--sand); }
.section-sunlight { background: var(--sunlight); }
.section-ocean { background: var(--ocean); color: #fff; }
.section-ocean h2 { color: #fff; }
.section-ocean .lede { color: rgba(255,255,255,.85); }

/* feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon-lg { color: var(--ocean); }
.feature h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--charcoal); }

/* steps */
.step-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--ocean); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 12px; }

/* notice */
.notice { border-radius: var(--radius-sm); padding: 16px 18px; font-size: 15px; display: flex; gap: 11px; align-items: flex-start; }
.notice .icon { margin-top: 2px; }
.notice-sun { background: var(--sunlight); color: var(--charcoal); }
.notice-sun .icon { color: #B45309; }
.notice-coral { background: #FEE9E5; color: #9A3324; }
.notice-coral .icon { color: var(--coral); }
.notice-aqua { background: var(--water); color: var(--ocean-dark); }
.notice-aqua .icon { color: var(--ocean); }

/* ---------- forms ---------- */
input, select, textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--charcoal);
  border: 1.5px solid #dbe4ec; border-radius: var(--radius-sm); padding: 12px 14px; width: 100%; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(6,182,212,.15); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.field .req { color: var(--coral); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 10px; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- booking flow ---------- */
.progress { display: flex; gap: 6px; margin: 26px 0 30px; flex-wrap: wrap; }
.progress .pstep { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--grayblue); background: #fff; border: 1.5px solid #e3ebf2; padding: 8px 14px; border-radius: 999px; }
.progress .pstep.active { border-color: var(--aqua); color: var(--ocean); background: var(--water); }
.progress .pstep.done { color: var(--aqua); }
.progress .pnum { width: 22px; height: 22px; border-radius: 50%; background: #e8eef4; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.pstep.active .pnum { background: var(--ocean); color: #fff; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 14px; }
.slot {
  border: 1.5px solid #dbe4ec; border-radius: var(--radius-sm); background: #fff; padding: 16px; cursor: pointer;
  text-align: left; font-family: var(--font-body); transition: border .12s, box-shadow .12s; width: 100%;
}
.slot:hover { border-color: var(--aqua); }
.slot.selected { border-color: var(--aqua); background: var(--water); box-shadow: 0 0 0 3px rgba(6,182,212,.18); }
.slot .time { font-weight: 800; font-size: 17px; color: var(--charcoal); }
.slot .meta { color: var(--grayblue); font-size: 14px; margin-top: 3px; }
.slot .sprice { font-family: var(--font-display); color: var(--ocean); font-size: 22px; margin-top: 8px; }

.extra-row { display: flex; align-items: flex-start; gap: 14px; border: 1.5px solid #e3ebf2; border-radius: var(--radius-sm); padding: 16px; background: #fff; }
.extra-row .icon-lg { color: var(--ocean); margin-top: 2px; }
.extra-row.selected { border-color: var(--aqua); background: var(--water); }

/* summary */
.summary { background: #fff; border: 1px solid #eef2f6; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; position: sticky; top: 90px; }
.sumline { display: flex; justify-content: space-between; padding: 7px 0; font-size: 15px; border-bottom: 1px dashed #e8eef4; }
.sumline:last-child { border-bottom: none; }
.sumline.total { font-weight: 800; font-size: 18px; border-top: 2px solid var(--ocean); border-bottom: none; margin-top: 6px; padding-top: 12px; }
.sumline.deposit { color: var(--ocean); font-weight: 800; background: var(--sunlight); margin: 8px -10px 0; padding: 10px; border-radius: 8px; border: none; }

/* ---------- payment methods ---------- */
.paymethods { display: grid; gap: 16px; }
.paymethod { border: 1.5px solid #e3ebf2; border-radius: var(--radius); background: #fff; padding: 20px; }
.paymethod .pm-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.paymethod .pm-name { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.paymethod .pm-name .icon { color: var(--ocean); }
.paymethod .pm-due { background: var(--sunlight); color: var(--charcoal); font-weight: 800; padding: 6px 12px; border-radius: 999px; font-size: 15px; }
.paymethod .pm-handle { color: var(--grayblue); font-size: 15px; margin: 4px 0 12px; }
.paymethod .pm-note { font-size: 14px; color: var(--grayblue); margin-top: 10px; }
.paymethod .btn { width: 100%; }
.pm-buttons { display: grid; gap: 10px; }
@media (min-width: 620px) { .pm-buttons.two { grid-template-columns: 1fr 1fr; } }
.qr-desktop { display: none; margin-top: 12px; }
@media (min-width: 900px) { .qr-desktop { display: block; } }

/* status badges */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.badge.ok { background: #D8F3E4; color: #14683C; }
.badge.paid { background: #D1FAE5; color: #065F46; }
.badge.warn { background: var(--sunlight); color: #92400E; }
.badge.info { background: var(--water); color: var(--ocean-dark); }
.badge.bad { background: #FEE2E2; color: #991B1B; }
.badge.held { background: #E0E7FF; color: #3730A3; }
.badge.muted { background: #EDF1F5; color: var(--grayblue); }

/* ---------- footer ---------- */
footer { background: var(--ocean); color: rgba(255,255,255,.85); padding: 54px 0 30px; margin-top: 40px; }
footer h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
footer a { color: rgba(255,255,255,.85); }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
@media (max-width: 800px) { footer .cols { grid-template-columns: 1fr 1fr; } }
footer .fine { border-top: 1px solid rgba(255,255,255,.15); margin-top: 36px; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,.6); }

/* ---------- admin ---------- */
.admin-body { background: #F4F7FA; }
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }
.admin-side { background: var(--ocean); color: #fff; padding: 24px 0; }
.admin-side .brand { color: #fff; padding: 0 22px 18px; font-size: 19px; }
.admin-side nav a { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.82); padding: 11px 22px; font-size: 14.5px; font-weight: 600; }
.admin-side nav a:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.admin-side nav a.active { background: rgba(255,255,255,.14); color: #fff; border-left: 3px solid var(--sun); }
.admin-side .icon { width: 19px; height: 19px; }
.admin-main { padding: 30px; min-width: 0; }
@media (max-width: 860px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { display: flex; overflow-x: auto; padding: 10px; align-items: center; gap: 4px; position: sticky; top: 0; z-index: 40; }
  .admin-side .brand { padding: 0 12px; white-space: nowrap; }
  .admin-side nav { display: flex; }
  .admin-side nav a { padding: 9px 12px; white-space: nowrap; border-left: none !important; border-radius: 8px; }
}
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin: 18px 0 26px; }
.stat { background: #fff; border-radius: var(--radius-sm); padding: 16px; box-shadow: var(--shadow-sm); }
.stat .v { font-family: var(--font-display); font-size: 28px; color: var(--ocean); }
.stat .l { font-size: 13px; color: var(--grayblue); font-weight: 700; }
.stat.alert .v { color: var(--coral); }
table.data { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 14.5px; }
table.data th { text-align: left; padding: 12px 14px; background: #EAF2F8; color: var(--ocean-dark); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }
table.data td { padding: 12px 14px; border-top: 1px solid #f0f4f8; vertical-align: top; }
table.data tr:hover td { background: #F8FBFD; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); }
.admin-h { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-h h1 { font-size: 32px; }
.inline-form { display: inline; }
.copy-flash { color: #14683C; font-weight: 700; font-size: 13px; }

/* calendar */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal .dow { font-size: 12px; font-weight: 800; color: var(--grayblue); text-align: center; padding: 6px 0; text-transform: uppercase; }
.cal .day { background: #fff; border-radius: 8px; min-height: 92px; padding: 7px; font-size: 12.5px; box-shadow: var(--shadow-sm); }
.cal .day .dnum { font-weight: 800; color: var(--grayblue); }
.cal .day.off { background: transparent; box-shadow: none; }
.cal .day.blocked { background: #FEE2E2; }
.cal .evt { background: var(--water); color: var(--ocean-dark); border-radius: 6px; padding: 2px 6px; margin-top: 4px; display: block; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal .evt.paid { background: #D1FAE5; color: #065F46; }

@media (max-width: 620px) {
  section { padding: 52px 0; }
  .hero { padding: 80px 0 64px; }
  .btn { width: 100%; }
  .hero-actions .btn, .btn-inline { width: auto; }
}
