/* Grounded CrossFit — site stylesheet (v1, 2026-09-15)
   Palette: chalk ground, ink text, brass accent. Display = Archivo (semi-condensed), body = Inter. */

:root {
  --chalk: #f4f1ea;
  --chalk-2: #ebe6dc;
  --ink: #14130f;
  --ink-2: #26241f;
  --ink-3: #3a3832;
  --mute: #6b675f;
  --line: rgba(20, 19, 15, 0.12);
  --line-dark: rgba(244, 241, 234, 0.14);
  --brass: #c8a34a;
  --brass-deep: #a8842f;
  --brass-soft: rgba(200, 163, 74, 0.16);
  --display: "Archivo", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --shadow: 0 18px 50px -24px rgba(20, 19, 15, 0.45);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--chalk); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; padding-bottom: 72px;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img, picture { display: block; max-width: 100%; }
picture img { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { padding-left: 1.2em; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap.narrow { width: min(820px, 100% - 2 * var(--gutter)); }
.center { text-align: center; }
.small { font-size: 0.9rem; }
.muted { color: var(--mute); }
.section-dark .muted { color: rgba(244, 241, 234, 0.7); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--brass); color: var(--ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

/* Type */
h1, h2, h3 { font-family: var(--display); font-stretch: 87.5%; letter-spacing: -0.01em; line-height: 1.02; margin: 0 0 0.4em; }
h1 { font-weight: 900; font-size: clamp(2.7rem, 7.5vw, 5.4rem); text-transform: uppercase; }
h2 { font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.3rem); text-transform: uppercase; }
h3 { font-weight: 700; font-size: 1.3rem; line-height: 1.15; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.5; color: var(--ink-3); }
.section-dark .lead, .hero .lead { color: rgba(244, 241, 234, 0.86); }
.eyebrow {
  font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass-deep); margin: 0 0 0.9em;
}
.section-dark .eyebrow { color: var(--brass); }
.hero .eyebrow { display: inline-block; color: var(--chalk); background: rgba(20,19,15,0.78); padding: 9px 14px; border-radius: 999px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-gold { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn-gold:hover { background: #d6b25c; border-color: #d6b25c; }
.btn-dark { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-2); }
.section-dark .btn-dark { background: transparent; color: var(--chalk); border-color: rgba(244,241,234,0.5); }
.btn-ghost { background: transparent; color: var(--chalk); border-color: rgba(244,241,234,0.55); }
.btn-ghost:hover { border-color: var(--chalk); background: rgba(244,241,234,0.08); }
.link-arrow { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; color: var(--brass-deep); }
.link-arrow::after { content: " \2192"; }
.section-dark .link-arrow { color: var(--brass); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(20, 19, 15, 0.92); backdrop-filter: blur(10px); color: var(--chalk); border-bottom: 1px solid var(--line-dark); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand img { height: 58px; width: auto; }
.nav { display: none; gap: 28px; margin-left: 12px; }
.nav a { font-family: var(--display); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,241,234,0.82); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--chalk); border-bottom-color: var(--brass); }
.header-cta { display: none; margin-left: auto; align-items: center; gap: 18px; }
.header-cta .phone { font-weight: 600; color: rgba(244,241,234,0.85); }
.menu-btn { margin-left: auto; width: 44px; height: 44px; background: none; border: 0; display: grid; place-content: center; gap: 5px; cursor: pointer; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--chalk); transition: transform 0.2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: grid; padding: 8px var(--gutter) 20px; border-top: 1px solid var(--line-dark); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.mobile-nav a.strong { color: var(--brass); }
@media (min-width: 900px) {
  .nav, .header-cta { display: flex; }
  .menu-btn, .mobile-nav { display: none !important; }
}

/* Hero */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; color: var(--chalk); background: var(--ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(20,19,15,0.6) 0%, rgba(20,19,15,0.2) 30%, rgba(20,19,15,0.7) 62%, rgba(20,19,15,0.95) 100%); }
.hero-content { position: relative; padding: 120px 0 72px; max-width: 760px; }
@media (min-width: 760px) { .hero-content { padding-bottom: 88px; } }
.hero h1 { margin-bottom: 0.3em; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero .lead { max-width: 560px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.cta-actions.center { justify-content: center; }
.rating { display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(244,241,234,0.85); }
.rating .stars { color: var(--brass); letter-spacing: 2px; font-size: 1rem; }

/* Sections */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-dark { background: var(--ink); color: var(--chalk); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.compact { margin-bottom: 28px; }
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(24px, 4vw, 48px); }
.page-hero h1 { max-width: 14ch; }
.page-hero-split { padding-bottom: 0; }
.split { display: grid; gap: 32px; align-items: center; }
.split-copy .btn { margin-top: 6px; }
.split-media picture { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; max-height: 640px; }
.split-media picture img { width: 100%; height: 100%; object-fit: cover; }
.split-media .caption { margin-top: 12px; color: var(--mute); font-size: 0.95rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .split.reverse .split-media { order: 2; }
}

/* Paths */
.paths { padding-top: 40px; margin-top: 0; position: relative; z-index: 2; }
.path-grid { display: grid; gap: 16px; }
.path-card { display: block; background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform 0.2s, border-color 0.2s; }
.path-card:hover { transform: translateY(-3px); border-color: var(--brass); }
.path-card h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.path-card p { color: var(--ink-3); }
.path-card.alt { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.path-card.alt p { color: rgba(244,241,234,0.8); }
.path-card.alt .eyebrow, .path-card.alt .link-arrow { color: var(--brass); }
@media (min-width: 760px) { .path-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .paths { padding-top: 56px; } }

/* Amenities */
.amenity-grid { display: grid; gap: 22px; }
.amenity-media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); margin-bottom: 16px; }
.amenity-media picture, .amenity-media img { width: 100%; height: 100%; object-fit: cover; }
.amenity-icon { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); }
.amenity-icon::before { content: ""; width: 72px; height: 72px; background: var(--brass); -webkit-mask: var(--ico) center / contain no-repeat; mask: var(--ico) center / contain no-repeat; }
.amenity-icon[data-icon="kids"] { --ico: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='9' cy='7' r='3'/><circle cx='17' cy='9' r='2'/><path d='M3 21v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3'/><path d='M15 21v-2a3 3 0 0 1 3-3h1a3 3 0 0 1 3 3v2'/></svg>"); }
.amenity-icon[data-icon="shower"] { --ico: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4v4a4 4 0 0 0 4 4h0'/><path d='M4 4h1a3 3 0 0 1 3 3'/><path d='M8 12h9a3 3 0 0 0 0-6h-1'/><path d='M6 16v1M9 16v3M12 16v1M15 16v3M18 16v1'/></svg>"); }
.amenity-icon[data-icon="run"] { --ico: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='15' cy='4.5' r='2'/><path d='M10 21l2-6 3 2v4'/><path d='M12 15l-3-2 2-5 4 1 2 3 3 1'/><path d='M5 13l3-4'/></svg>"); }
.amenity h3 { margin-bottom: 0.3em; }
.amenity p { color: rgba(244,241,234,0.78); margin: 0; }
@media (min-width: 640px) { .amenity-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .amenity-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* Community */
.community-grid { display: grid; gap: 36px; align-items: center; }
.community-copy h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.mosaic { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; gap: 12px; }
.mosaic picture { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.mosaic picture img { width: 100%; height: 100%; object-fit: cover; }
.mosaic .m1 { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
@media (min-width: 900px) {
  .community-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic .m1 { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .mosaic .m2 { grid-column: 3; grid-row: 1; }
  .mosaic .m3 { grid-column: 3; grid-row: 2; }
  .mosaic .m4 { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
}

/* Founders */
.founders { background: var(--chalk-2); }
.founders-grid { display: grid; gap: 32px; align-items: center; }
.founders-media picture { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
@media (min-width: 900px) { .founders-grid { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }

/* Coach strip + grid */
.coach-row { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coach-row a { display: grid; justify-items: center; gap: 8px; font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; }
.coach-row picture { width: 100%; max-width: 140px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 3px solid var(--chalk); box-shadow: var(--shadow); transition: transform 0.2s; }
.coach-row picture img { width: 100%; height: 100%; object-fit: cover; }
.coach-row a:hover picture { transform: scale(1.04); border-color: var(--brass); }
@media (min-width: 760px) { .coach-row { grid-template-columns: repeat(8, 1fr); } }
.coach-grid { display: grid; gap: 28px; }
.coach-card { background: var(--ink-2); border-radius: var(--radius); overflow: hidden; scroll-margin-top: 90px; }
.coach-photo { aspect-ratio: 1; overflow: hidden; }
.coach-photo picture img { width: 100%; height: 100%; object-fit: cover; }
.coach-card h3, .coach-card p, .coach-card dl { padding-inline: 22px; }
.coach-card h3 { margin: 18px 0 2px; font-size: 1.35rem; }
.coach-card .role { color: var(--brass); font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.coach-card p { color: rgba(244,241,234,0.8); font-size: 0.98rem; }
.coach-card p:last-child, .coach-card dl { padding-bottom: 22px; }
.facts { margin: 0; display: grid; gap: 4px; font-size: 0.9rem; }
.facts div { display: grid; grid-template-columns: 110px 1fr; gap: 8px; }
.facts dt { color: var(--brass); font-weight: 600; }
.facts dd { margin: 0; color: rgba(244,241,234,0.85); }
@media (min-width: 640px) { .coach-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .coach-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

/* Steps */
.step-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 22px; counter-reset: step; }
.step-list li { position: relative; padding: 26px 24px 24px 24px; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.step-list.light li { border-color: var(--line); background: var(--chalk-2); }
.step-list .num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brass); color: var(--ink); font-family: var(--display); font-weight: 900; font-size: 1.1rem; margin-bottom: 14px; }
.step-list h3 { margin-bottom: 0.3em; }
.step-list p { margin: 0; color: rgba(244,241,234,0.8); }
.step-list.light p { color: var(--ink-3); }
@media (min-width: 760px) { .step-list { grid-template-columns: repeat(3, 1fr); } }

/* Expect / price grids */
.expect-grid, .price-grid { display: grid; gap: 18px; }
.expect-card, .price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.expect-card .num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--brass); font-family: var(--display); font-weight: 900; margin-bottom: 12px; }
.expect-card p, .price-card p { color: var(--ink-3); margin: 0; }
.price-card { display: grid; align-content: start; gap: 10px; }
.price-card.featured { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.price-card.featured p { color: rgba(244,241,234,0.82); }
.price-card .price { font-family: var(--display); font-weight: 900; font-size: 2.4rem; line-height: 1; color: var(--brass-deep); }
.price-card.featured .price { color: var(--brass); }
.price-card .btn { margin-top: 10px; justify-self: start; }
@media (min-width: 760px) { .expect-grid { grid-template-columns: repeat(3, 1fr); } .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }

.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.check-list li { padding-left: 32px; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.35em; width: 20px; height: 20px; border-radius: 50%; background: var(--brass); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='black'/><path d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='black'/><path d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat; }

/* Booking widget */
.widget-frame { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 8px; box-shadow: var(--shadow); }
.widget-frame iframe { display: block; border-radius: 10px; }

/* FAQ */
.faq-item { border-top: 1px solid var(--line); padding: 4px 0; }
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--display); font-weight: 700; font-size: 1.12rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--brass-deep); transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 20px; color: var(--ink-3); max-width: 68ch; }

/* CTA band */
.cta-band { background: var(--brass); color: var(--ink); padding: clamp(48px, 7vw, 80px) 0; }
.cta-inner { display: grid; gap: 24px; align-items: center; }
.cta-band h2 { margin-bottom: 0.2em; }
.cta-band p { margin: 0; font-size: 1.1rem; max-width: 52ch; }
.cta-band .btn-gold { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.cta-band .btn-ghost { color: var(--ink); border-color: rgba(20,19,15,0.5); }
.cta-band .btn-ghost:hover { background: rgba(20,19,15,0.08); border-color: var(--ink); }
.cta-band .cta-actions { margin: 0; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.2fr auto; } }

/* Footer */
.site-footer { background: var(--ink); color: var(--chalk); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 36px; }
.footer-grid h3 { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.footer-brand img { width: 170px; height: auto; margin-bottom: 14px; }
.footer-brand .tagline { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.site-footer address { font-style: normal; margin-bottom: 12px; }
.site-footer a:hover { color: var(--brass); }
.hours { margin: 0; display: grid; gap: 6px; }
.hours div { display: grid; grid-template-columns: 90px 1fr; gap: 10px; font-size: 0.95rem; }
.hours dt { color: rgba(244,241,234,0.7); }
.hours dd { margin: 0; }
.footer-links { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.social { display: flex; gap: 14px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: grid; gap: 6px; font-size: 0.9rem; }
.footer-bottom p { margin: 0; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } .footer-bottom { grid-template-columns: 1fr auto; } }

/* Mobile action bar */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px)); background: rgba(244,241,234,0.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
@media (min-width: 900px) { .mobile-bar { display: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Promo: Lean for Halloween */
.promo { --brass: #e5793a; --brass-deep: #c45f22; }
.promo-hero { background: radial-gradient(120% 90% at 80% 0%, #3a2416 0%, var(--ink) 55%); color: var(--chalk); padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px); }
.promo-hero h1 { font-size: clamp(3rem, 9vw, 6.4rem); }
.promo-hero .accent { color: var(--brass); }
.promo-hero .lead { max-width: 640px; color: rgba(244,241,234,0.86); }
.promo-hero .eyebrow { color: var(--brass); }
.promo-hero .deadline { color: rgba(244,241,234,0.8); margin: 0; }
.entry-grid { display: grid; gap: 18px; margin-bottom: 18px; }
.entry-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: grid; align-content: start; gap: 6px; }
.entry-card.featured { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.entry-card .who { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; color: var(--brass-deep); margin: 0; }
.entry-card.featured .who { color: var(--brass); }
.entry-card .price { font-family: var(--display); font-weight: 900; font-size: 3rem; line-height: 1; margin: 4px 0; }
.entry-card .note { color: var(--mute); margin-bottom: 12px; }
.entry-card.featured .note { color: rgba(244,241,234,0.75); }
.entry-card .check-list { margin-bottom: 18px; }
.entry-card .btn { justify-self: start; }
@media (min-width: 760px) { .entry-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.score-grid { display: grid; gap: 14px; margin: 8px 0 18px; }
.score { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 16px 18px; border: 1px solid var(--line-dark); border-radius: 12px; }
.score .pts { font-family: var(--display); font-weight: 900; font-size: 1.8rem; color: var(--brass); white-space: nowrap; }
.prize-box { background: var(--ink-2); border-radius: var(--radius); padding: 28px; }
.prize-box h3 { margin-bottom: 16px; }
.prize-box .check-list { margin: 0; }
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.timeline li { position: relative; padding: 0 0 28px 34px; border-left: 2px solid var(--line); }
.timeline li::before { content: ""; position: absolute; left: -9px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--brass); border: 3px solid var(--chalk); }
.timeline li:last-child { border-left-color: transparent; }
.timeline .when { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--brass-deep); }
.timeline h3 { margin: 4px 0 6px; }
.timeline p { margin: 0; color: var(--ink-3); }
.inbody { background: var(--chalk-2); }
.inbody-media { display: grid; justify-items: center; }
.inbody-media picture { aspect-ratio: auto; max-height: none; box-shadow: none; width: min(320px, 70%); background: #fff; border-radius: var(--radius); padding: 18px; }
.inbody-media picture img { object-fit: contain; height: auto; }
.promo-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; background: var(--ink); color: var(--chalk); border-radius: 12px; padding: 12px 16px; margin-bottom: 18px; border: 1px solid var(--line-dark); }
.promo-banner .tag { background: #e5793a; color: var(--ink); font-family: var(--display); font-weight: 900; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 8px; border-radius: 6px; }
.promo-banner .text { font-size: 0.95rem; line-height: 1.4; }
.promo-banner .link-arrow { color: #e5793a; }
@media (max-width: 600px) { .promo-banner { grid-template-columns: auto 1fr; } .promo-banner .link-arrow { grid-column: 2; } }

/* Where we are */
.where-address { font-style: normal; font-weight: 600; margin: 4px 0 18px; }
.where-address a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.towns-label { font-size: 0.85rem; color: var(--mute); margin: 0 0 8px; }
.towns { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.towns li { font-size: 0.9rem; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(20,19,15,0.18); background: rgba(255,255,255,0.6); }
.about-line { max-width: 34ch; line-height: 1.5; }

/* Reviews */
.reviews-tight { padding-top: 0; }
.review-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .review-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } .review-grid.two { grid-template-columns: repeat(2, 1fr); } }
.review { margin: 0; background: var(--chalk); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.section-dark .review { background: rgba(255,255,255,0.05); border-color: var(--line-dark); }
.review .stars { color: var(--brass); letter-spacing: 2px; font-size: 1rem; }
.review p { margin: 0; font-size: 1.02rem; line-height: 1.55; }
.review footer { font-size: 0.9rem; color: var(--mute); margin-top: auto; }
.review footer strong { color: inherit; }
.reviews .center { margin-top: 24px; text-align: center; }
a.amenity { color: inherit; text-decoration: none; }
a.amenity:hover h3 { color: var(--brass); }
