/* ═══════════════════════════════════════════════════════════════
 * wfm-pages.css — the generated Fun@work pages
 *
 * Built to the approved homepage (demo/index.html + demo/styles.css),
 * not to a guess at it. The tokens and component patterns below are
 * lifted from that stylesheet so these pages read as the same site
 * rather than a cousin of it.
 *
 * The language, stated plainly so it is not lost again:
 *
 *   TYPE      headings are Georgia serif at weight 500, line-height
 *             1.02 — editorial, not the heavy sans this file used
 *             before. Body copy is Inter. A gold <span> carries the
 *             emphasis phrase in a heading.
 *   COLOUR    deep navy grounds, cream and paper for light sections,
 *             gold (#d99b3f / #f1bd63) as the single accent. Copper
 *             (#9c6427) is the gold substitute on light backgrounds,
 *             where the brighter tone would not hold contrast.
 *   SHAPE     4px on buttons, 8px on cards and panels, 999px on pills.
 *             Nothing is heavily rounded.
 *   DEPTH     wide soft shadows, gold hairline borders, translucent
 *             fills over navy — never a hard outlined box.
 *
 * Two earlier attempts got this wrong: the first used the right palette
 * with the wrong typography, the second switched to orange and 22px
 * radius entirely. Both are corrected here.
 *
 * Class names stay wfm-prefixed so nothing here can reach the booking
 * flow, the admin, or any existing page.
 * ═══════════════════════════════════════════════════════════════ */

.wfm-page {
  /* Falls back to literals so these pages still hold their shape if
     demo/styles.css ever fails to load. */
  --wfm-navy: var(--navy, #071522);
  --wfm-navy-2: var(--navy-2, #0b2338);
  --wfm-ink: var(--ink, #102033);
  --wfm-muted: var(--muted, #5f6e7d);
  --wfm-paper: var(--paper, #f4efe6);
  --wfm-paper-2: var(--paper-2, #fffaf2);
  --wfm-gold: var(--gold, #d99b3f);
  --wfm-gold-2: var(--gold-2, #f1bd63);
  --wfm-copper: var(--copper, #9c6427);
  --wfm-line: var(--line, rgba(18, 35, 53, .12));
  --wfm-gold-line: var(--gold-line, rgba(217, 155, 63, .34));
  --wfm-shadow: var(--shadow-soft, 0 18px 55px rgba(11, 22, 34, .12));

  background: var(--wfm-paper) !important;
  color: var(--wfm-ink);
}

.wfm-page :focus-visible {
  outline: 2px solid var(--wfm-gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.wfm-shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Headings — Georgia serif, the editorial voice ───────────── */

.wfm-page h1,
.wfm-page h2,
.wfm-card h3,
.wfm-price strong,
.wfm-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  overflow-wrap: break-word;
}

/* ── Hero ────────────────────────────────────────────────────── */

.wfm-hero {
  position: relative;
  padding: 46px 0 58px;
  background:
    radial-gradient(1100px 460px at 84% -12%, rgba(241, 189, 99, .16), transparent 62%),
    radial-gradient(820px 380px at 4% 4%, rgba(16, 51, 79, .85), transparent 66%),
    linear-gradient(158deg, var(--wfm-navy) 0%, var(--wfm-navy-2) 60%, #0d2740 100%);
  color: #fffdf8;
  overflow: hidden;
}

.wfm-hero h1 {
  max-width: 18ch;
  margin: 0 0 18px;
  color: #fffdf8;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.wfm-hero h1 .wfm-accent { color: var(--wfm-gold-2); }

.wfm-lede {
  max-width: min(720px, 100%);
  margin: 0 0 24px;
  color: #e6f0f8;
  font-size: 17px;
  line-height: 1.48;
}

/* The eyebrow pill, with its glowing gold dot */

.wfm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 14px 8px 10px;
  color: #ffe0a1;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(241, 189, 99, .28);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wfm-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--wfm-gold-2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(241, 189, 99, .12), 0 0 20px rgba(241, 189, 99, .45);
}

.wfm-eyebrow a { color: #fff; text-decoration: none; }
.wfm-eyebrow a:hover { color: var(--wfm-gold-2); }

/* The stat block — facts from the registry, never marketing numbers */

.wfm-stats {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(241, 189, 99, .22);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(241, 189, 99, .24), rgba(255, 255, 255, .08), rgba(241, 189, 99, .2));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.wfm-stats li {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 18px 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0)),
    rgba(8, 27, 44, .82);
  transition: background 160ms ease;
}

.wfm-stats li:hover { background: rgba(12, 42, 68, .82); }

.wfm-stats span {
  display: block;
  margin-bottom: 6px;
  color: #adc2d3;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.wfm-stats strong {
  display: block;
  color: var(--wfm-gold-2);
  font-size: 40px;
  line-height: .9;
}

.wfm-stats em {
  display: block;
  margin-top: 5px;
  color: #f8fbff;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  line-height: 1.2;
}

/* Fact pills, for facts with no number in them */

.wfm-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wfm-points li {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 16px 7px 8px;
  color: #f8fbff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(241, 189, 99, .22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.wfm-points i {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wfm-gold-2);
  background: rgba(241, 189, 99, .13);
  border-radius: 50%;
  font-size: 16px;
}

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

.wfm-hero .wfm-note {
  display: inline-block;
  margin: 18px 0 0;
  padding: 9px 16px;
  color: #ffe0a1;
  background: rgba(241, 189, 99, .09);
  border-left: 2px solid var(--wfm-gold);
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  font-weight: 600;
}

/* ── Breadcrumbs ─────────────────────────────────────────────── */

.wfm-crumbs {
  background: var(--wfm-navy);
  padding: 14px 0 0;
}

.wfm-crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.wfm-crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, .3);
}

.wfm-crumbs a { color: #adc2d3; text-decoration: none; }
.wfm-crumbs a:hover { color: var(--wfm-gold-2); }
.wfm-crumbs [aria-current="page"] { color: #fffdf8; font-weight: 700; }

/* ── Sections ────────────────────────────────────────────────── */

.wfm-section { padding: 68px 0; background: var(--wfm-paper); }
.wfm-section-alt { background: var(--wfm-paper-2); }

.wfm-section h2 {
  margin: 0 0 14px;
  color: var(--wfm-ink);
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.04;
}

.wfm-section h2 .wfm-accent { color: var(--wfm-copper); }

.wfm-kicker {
  margin: 0 0 10px;
  color: var(--wfm-copper);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
}

.wfm-section-intro {
  max-width: 64ch;
  margin: 0 0 38px;
  color: #566576;
  font-size: 17px;
  line-height: 1.45;
}

.wfm-muted {
  margin: 8px 0 0;
  color: var(--wfm-muted);
  font-size: 14px;
  line-height: 1.55;
}

.wfm-note {
  margin: 8px 0 0;
  color: var(--wfm-copper);
  font-size: 12.5px;
  font-weight: 800;
}

/* ── Cards ───────────────────────────────────────────────────── */

.wfm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.wfm-grid-products { grid-template-columns: repeat(auto-fill, minmax(370px, 1fr)); }

.wfm-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--wfm-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 242, .94)),
    #fffdf8;
  color: var(--wfm-ink);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(11, 22, 34, .07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.wfm-card::before {
  /* The warm bloom the brand cards carry, kept subtle. */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0 34%, rgba(217, 155, 63, .08) 100%),
    radial-gradient(circle at 82% 82%, rgba(241, 189, 99, .15), transparent 25%);
}

.wfm-card-link:hover,
.wfm-card-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--wfm-gold-line);
  box-shadow: var(--wfm-shadow);
}

/* Media */

.wfm-card-media {
  position: relative;
  height: 208px;
  overflow: hidden;
  background: var(--wfm-paper);
}

.wfm-grid-products .wfm-card-media { height: 228px; }

.wfm-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease;
}

.wfm-card:hover .wfm-card-media img { transform: scale(1.04); }

.wfm-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 34, .88) 0%, rgba(7, 21, 34, .1) 52%, transparent 100%);
  pointer-events: none;
}

.wfm-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  color: #081421;
  background: linear-gradient(180deg, var(--wfm-gold-2), var(--wfm-gold));
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 8px 18px rgba(217, 155, 63, .22);
}

.wfm-badge-quiet {
  color: #ffe0a1;
  background: rgba(7, 21, 34, .72);
  border: 1px solid rgba(241, 189, 99, .3);
  box-shadow: none;
}

.wfm-card-label {
  position: absolute;
  left: 18px;
  bottom: 15px;
  z-index: 2;
  max-width: calc(100% - 36px);
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

/* Body */

.wfm-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.wfm-card h3 {
  margin: 0;
  color: var(--wfm-ink);
  font-size: 23px;
  line-height: 1.12;
}

.wfm-branch-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
}

.wfm-branch-dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--wfm-gold);
  box-shadow: 0 0 0 4px rgba(217, 155, 63, .13);
}

.wfm-branch-fw {
  color: var(--wfm-copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wfm-branch-sep { color: #b9c2cc; font-size: 12px; }
.wfm-branch-loc { color: var(--wfm-ink); font-size: 12.5px; font-weight: 700; }

.wfm-card-divider {
  height: 1px;
  margin: 16px 0;
  background: var(--wfm-line);
}

/* Price — serif numerals, the same voice as the hero stats */

.wfm-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  color: var(--wfm-muted);
  font-size: 13px;
}

.wfm-price-from {
  width: 100%;
  color: #8b97a4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wfm-price strong {
  color: var(--wfm-copper);
  font-size: 36px;
  line-height: .95;
}

/* Amenities */

.wfm-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.wfm-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.wfm-amenity-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wfm-copper);
  background: rgba(241, 189, 99, .14);
  border: 1px solid rgba(217, 155, 63, .2);
  border-radius: 999px;
  font-size: 16px;
}

.wfm-amenity span {
  color: #566576;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

/* Service pills on a centre card */

.wfm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.wfm-pills li {
  padding: 6px 13px;
  color: var(--wfm-ink);
  background: rgba(217, 155, 63, .1);
  border: 1px solid rgba(217, 155, 63, .22);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}

.wfm-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--wfm-copper);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wfm-card-link:hover .wfm-card-cta { gap: 12px; }

/* ── Link lists ──────────────────────────────────────────────── */

.wfm-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wfm-links a {
  display: inline-block;
  padding: 11px 20px;
  color: var(--wfm-ink);
  text-decoration: none;
  background: #fffdf8;
  border: 1px solid var(--wfm-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.wfm-links a:hover {
  color: var(--wfm-copper);
  border-color: var(--wfm-gold-line);
  transform: translateY(-1px);
}

/* ── Buttons — 4px radius, gold gradient, dark ink ───────────── */

.wfm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  color: #081421;
  background: linear-gradient(180deg, var(--wfm-gold-2), var(--wfm-gold));
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .34), 0 12px 28px rgba(217, 155, 63, .18);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wfm-btn:hover {
  color: #081421;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 18px 34px rgba(217, 155, 63, .25);
}

.wfm-btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, .035);
  border-color: rgba(241, 189, 99, .36);
  box-shadow: none;
}

.wfm-btn-ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(241, 189, 99, .7);
  box-shadow: none;
}

/* On paper the ghost button needs ink, not white. */
.wfm-section .wfm-btn-ghost {
  color: #081421;
  background: rgba(8, 20, 33, .03);
  border-color: rgba(8, 20, 33, .22);
}

.wfm-section .wfm-btn-ghost:hover {
  color: #081421;
  background: rgba(8, 20, 33, .06);
  border-color: rgba(8, 20, 33, .38);
}

.wfm-product-body .wfm-btn { align-self: flex-start; margin-top: 20px; }

/* ── Panel, for what is genuinely not sold online ────────────── */

.wfm-panel {
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 242, .94)),
    #fffdf8;
  border: 1px solid var(--wfm-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11, 22, 34, .07);
}

.wfm-panel p {
  max-width: 62ch;
  margin: 0 0 22px;
  color: #566576;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  .wfm-shell { width: calc(100% - 36px); }
  .wfm-section { padding: 48px 0; }
  .wfm-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}

@media (max-width: 640px) {
  .wfm-hero { padding: 30px 0 44px; }
  .wfm-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .wfm-section { padding: 38px 0; }
  .wfm-grid,
  .wfm-grid-products { grid-template-columns: 1fr; gap: 18px; }
  .wfm-card-media { height: 186px; }
  .wfm-card-body { padding: 18px 18px 22px; }
  .wfm-stats strong { font-size: 32px; }
  .wfm-panel { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .wfm-page * { transition: none !important; animation: none !important; }
  .wfm-card-link:hover { transform: none; }
  .wfm-card:hover .wfm-card-media img { transform: none; }
}

/* ── Long-form copy ──────────────────────────────────────────────
 * Measure capped near 70 characters. Depth only helps if it is
 * actually read, and full-width paragraphs are not read. */

.wfm-prose {
  max-width: 74ch;
}

.wfm-prose p {
  margin: 0 0 20px;
  color: #3c4a5a;
  font-size: 17px;
  line-height: 1.72;
}

.wfm-highlights {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.wfm-highlights li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 30px;
  color: var(--wfm-ink);
  font-size: 15.5px;
  line-height: 1.6;
}

.wfm-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wfm-gold);
  box-shadow: 0 0 0 4px rgba(217, 155, 63, .16);
}

/* ── FAQs ────────────────────────────────────────────────────────
 * Native <details>, so the answers are in the HTML whether or not a
 * script runs. That matters twice over: an answer engine reads the
 * markup, and a visitor on a failed JS load still gets the answer. */

.wfm-faqs {
  max-width: 82ch;
}

.wfm-faqs details {
  margin: 0 0 12px;
  background: #fffdf8;
  border: 1px solid var(--wfm-line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.wfm-faqs details[open] {
  border-color: var(--wfm-gold-line);
  box-shadow: 0 10px 30px rgba(11, 22, 34, .06);
}

.wfm-faqs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--wfm-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.wfm-faqs summary::-webkit-details-marker { display: none; }

.wfm-faqs summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--wfm-copper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 160ms ease;
}

.wfm-faqs details[open] summary::after {
  content: "\2212";           /* a true minus sign, not a hyphen */
}

.wfm-faqs summary:hover { color: var(--wfm-copper); }

.wfm-faq-answer {
  padding: 0 22px 20px;
}

.wfm-faq-answer p {
  margin: 0 0 12px;
  color: #566576;
  font-size: 15.5px;
  line-height: 1.7;
}

.wfm-faq-answer p:last-child { margin-bottom: 0; }

/* ── Brand boundary statement ────────────────────────────────────
 * Deliberately readable rather than legal small print: each sentence
 * answers a question a buyer actually has. */

.wfm-boundary {
  max-width: 80ch;
  margin: 34px 0 0;
  padding: 18px 22px;
  color: #566576;
  background: #fffdf8;
  border-left: 3px solid var(--wfm-gold);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .wfm-prose p { font-size: 16px; }
  .wfm-faqs summary { padding: 15px 17px; font-size: 16.5px; }
  .wfm-faq-answer { padding: 0 17px 17px; }
}

/* ── Sold out, said plainly ──────────────────────────────────────
 * A full product keeps its page, its price and its photograph. Only
 * the badge and the button change. Muted rather than alarming: being
 * fully let is a sign of demand, not a failure. */

.wfm-badge-full {
  color: #fffdf8;
  background: rgba(7, 21, 34, .88);
  border: 1px solid rgba(241, 189, 99, .45);
  box-shadow: none;
}

.wfm-soldout {
  margin: 16px 0 0;
  padding: 12px 15px;
  color: #566576;
  background: rgba(217, 155, 63, .07);
  border-left: 2px solid var(--wfm-gold);
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  line-height: 1.6;
}
