/* ============================================================
   Wake District — site styles
   Brand: deep lake navy + teal/aqua, clean and modern
   ============================================================ */

:root {
  --navy: #082f49;
  --navy-2: #0c3b5c;
  --teal: #0e8ea0;
  --aqua: #18b4c7;
  --aqua-bright: #25c9dd;
  --sky: #7fd6e2;
  --sand: #f5efe4;
  --ink: #11242f;
  --muted: #5b7682;
  --bg: #f6fafb;
  --white: #ffffff;
  --line: #e3ecef;
  --shadow: 0 10px 30px rgba(8, 47, 73, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 47, 73, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --head: "Poppins", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--aqua); }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; color: var(--navy); font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 78px 0; }
.section--tight { padding: 52px 0; }
.section--alt { background: var(--white); }
.section--navy { background: var(--navy); color: #dbeef3; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}
.section--navy .eyebrow { color: var(--sky); }

.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--navy .section-head p { color: #aacdd8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--head); font-weight: 600; font-size: 0.96rem;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--aqua); color: #032530; box-shadow: 0 8px 22px rgba(24,180,199,.35); }
.btn--primary:hover { background: var(--aqua-bright); color: #032530; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { background: var(--navy-2); color: #fff; }
.btn--lg { padding: 16px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-fallback { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 800; color: var(--navy); font-size: 1.25rem; letter-spacing: .04em; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy)); color: #fff; font-weight: 800; font-size: .95rem;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { color: var(--navy); font-weight: 500; font-size: .98rem; position: relative; }
.nav-links a.active, .nav-links a:hover { color: var(--teal); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--aqua); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; text-align: center;
  background:
    linear-gradient(180deg, rgba(8,47,73,.62), rgba(8,47,73,.78)),
    var(--hero-img, linear-gradient(135deg, #0c3b5c, #0e8ea0 60%, #18b4c7));
  background-size: cover; background-position: center;
  padding: 110px 0 120px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5.4vw, 3.6rem); letter-spacing: .01em; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero .lead { font-size: clamp(1rem, 2vw, 1.22rem); color: #e7f6f9; margin: 20px auto 34px; max-width: 720px; }
.hero .pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.pill { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 7px 16px; border-radius: 999px; font-size: .86rem; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Experience cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.xp-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.xp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.xp-card .media {
  height: 190px; background: linear-gradient(135deg, var(--teal), var(--navy));
  background-size: cover; background-position: center; position: relative;
}
.xp-card .media .tag {
  position: absolute; left: 14px; bottom: 14px; background: rgba(8,47,73,.78); color: #fff;
  padding: 6px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .03em;
}
.xp-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.xp-card .body h3 { font-size: 1.22rem; }
.xp-card .body p { color: var(--muted); font-size: .96rem; }
.xp-card .body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .media-frame {
  border-radius: var(--radius); min-height: 360px; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--teal), var(--navy)); background-size: cover; background-position: center;
}
.prose p { color: var(--ink); margin-bottom: 16px; font-size: 1.04rem; }
.prose p.lead { font-size: 1.16rem; color: var(--navy); font-weight: 500; }

/* ---------- Pricing / booking options ---------- */
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: .2s; position: relative;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.price-card.popular { border-color: var(--aqua); box-shadow: 0 14px 36px rgba(24,180,199,.22); }
.price-card.popular::before {
  content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--aqua); color: #032530; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: .04em;
}
.price-card .dur { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; color: var(--teal); font-weight: 600; }
.price-card h3 { font-size: 1.18rem; margin: 8px 0; }
.price-card .amt { font-size: 2.1rem; font-weight: 800; color: var(--navy); }
.price-card .amt span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card .btn { margin-top: 16px; }

/* ---------- Booking form ---------- */
.booking-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px;
  border: 1px solid var(--line);
}
.form-row { display: grid; gap: 18px; margin-bottom: 18px; }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.req { color: #d6453c; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fbfdfe; transition: border .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--aqua); box-shadow: 0 0 0 3px rgba(24,180,199,.15); }
textarea { resize: vertical; min-height: 96px; }
.field-hint { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.exp-select { display: grid; gap: 12px; }
.exp-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; background: #fbfdfe; transition: .15s;
}
.exp-option:hover { border-color: var(--aqua); }
.exp-option input { width: auto; }
.exp-option.selected { border-color: var(--aqua); background: rgba(24,180,199,.07); }
.exp-option .meta { display: flex; flex-direction: column; }
.exp-option .meta strong { color: var(--navy); }
.exp-option .meta small { color: var(--muted); }
.exp-option .price { font-weight: 800; color: var(--navy); font-size: 1.1rem; white-space: nowrap; }

.summary { position: sticky; top: 96px; }
.summary h3 { margin-bottom: 18px; }
.summary-line { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.summary-line span:first-child { color: var(--muted); }
.summary-line span:last-child { font-weight: 600; color: var(--navy); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; }
.summary-total .lbl { font-weight: 700; color: var(--navy); }
.summary-total .val { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.trust { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); margin-top: 16px; }
.form-error { background: #fdecea; color: #b3261e; border: 1px solid #f5c6c2; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 16px; display: none; }
.form-error.show { display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--teal); font-weight: 400; transition: .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Locations / info strip ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic { flex: 0 0 44px; height: 44px; border-radius: 11px; background: rgba(24,180,199,.14); color: var(--teal); display: grid; place-items: center; font-size: 1.2rem; }
.info-item h4 { margin-bottom: 3px; font-size: 1.02rem; }
.info-item p { color: var(--muted); font-size: .94rem; }
.section--navy .info-item p { color: #aacdd8; }
.section--navy .info-item .ic { background: rgba(127,214,226,.16); color: var(--sky); }

/* ---------- Testimonial ---------- */
.quote { max-width: 780px; margin: 0 auto; text-align: center; }
.quote blockquote { font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: #fff; font-weight: 500; line-height: 1.5; }
.quote .cite { margin-top: 18px; color: var(--sky); font-weight: 600; letter-spacing: .04em; }
.stars { color: #ffd166; font-size: 1.3rem; margin-bottom: 18px; letter-spacing: 3px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--teal)); color: #fff; border-radius: 22px; padding: 56px 40px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: #d7eef3; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .ic { flex: 0 0 46px; height: 46px; border-radius: 12px; background: rgba(24,180,199,.14); color: var(--teal); display: grid; place-items: center; font-size: 1.2rem; }
.contact-info h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-info a, .contact-info p { color: var(--muted); }
.form-success { display: none; background: #e7f7ee; border: 1px solid #b6e3c9; color: #1d6b3f; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9d6df; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .04em; }
.site-footer a { color: #b9d6df; }
.site-footer a:hover { color: var(--sky); }
.footer-brand .brand-fallback { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #8fb6c2; font-size: .94rem; max-width: 320px; }
.footer-list { list-style: none; display: grid; gap: 10px; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #7ea7b4; }

/* ---------- Helpers ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.hide { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; padding: 18px 22px; gap: 16px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
  }
  .split, .grid-3, .grid-2, .info-strip, .footer-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .form-row.cols-2 { grid-template-columns: 1fr; }
}
