/* ============================================================
   MEADOWBROOK + THE DRA — DESIGN TOKENS
   Colors, type, spacing, radii, shadows.
   Drawn from the physical site — warm, papery, natural.
   ============================================================ */

/* Core: Plus Jakarta Sans (UI + body across all zones). */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");

/* Brand fonts — served from /fonts. */
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-Light.otf")     format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-Regular.otf")   format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-Medium.otf")    format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-Bold.otf")      format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-ExtraBold.otf") format("opentype"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Rexton";   src: url("/fonts/Rexton-Black.otf")     format("opentype"); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Billiard"; src: url("/fonts/Billiard.otf")         format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lobster";  src: url("/fonts/Lobster_1.3.otf")      format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }

:root {
  --paper:        #FBF0DF;
  --paper-deep:   #F4E4CB;
  --sand:         #D1B08B;
  --bone:         #FFFFFF;

  --green:        #74A953;
  --green-light:  #A7C756;
  --green-dark:   #4D7A33;

  --sun:          #F9D21E;
  --sky:          #1DB5EF;

  --night:        #3C3C3A;
  --ember:        #A73916;

  --ink:          #28201A;
  --ink-soft:     #5B4E42;
  --ink-mute:     #8B7C6E;

  --bg:           var(--paper);
  --bg-elevated:  #FFFBF2;
  --bg-deep:      var(--paper-deep);
  --bg-block:     var(--sand);
  --fg:           var(--ink);
  --fg-soft:      var(--ink-soft);
  --fg-mute:      var(--ink-mute);
  --fg-on-dark:   var(--bone);
  --accent:       var(--green);
  --accent-2:     var(--sun);
  --accent-3:     var(--sky);
  --warn:         var(--ember);

  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;

  --fs-display:    3.5rem;
  --fs-display-s:  2.75rem;
  --fs-headline:   2rem;
  --fs-headline-s: 1.75rem;
  --fs-title:      1.375rem;
  --fs-body:       1rem;
  --fs-body-s:     0.875rem;
  --fs-label:      0.75rem;
  --fs-label-s:    0.6875rem;

  --lh-display:  1.05;
  --lh-headline: 1.15;
  --lh-body:     1.6;
  --lh-tight:    1.3;

  --tracking-display: -0.02em;
  --tracking-body:    0;
  --tracking-label:   0.05em;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;
  --fw-black:   800;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-pill: 999px;

  --shadow-float: 0 20px 40px rgba(40, 35, 32, 0.06);
  --shadow-press: 0 2px 6px rgba(40, 35, 32, 0.08);
  --shadow-pop:   0 30px 80px -20px rgba(40, 35, 32, 0.18);

  --ease-natural: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:     140ms;
  --dur-base:     220ms;
  --dur-slow:     420ms;

  --content-max: 1200px;
  --content-narrow: 720px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, .h-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--tracking-display);
  font-weight: var(--fw-bold);
  margin: 0;
  text-wrap: balance;
}

h2, .h-headline {
  font-family: var(--font-display);
  font-size: var(--fs-headline);
  line-height: var(--lh-headline);
  letter-spacing: -0.01em;
  font-weight: var(--fw-medium);
  margin: 0;
  text-wrap: balance;
}

h3, .h-title {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  line-height: var(--lh-tight);
  font-weight: var(--fw-semibold);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

.eyebrow, .label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--fg-soft);
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
a:hover { text-decoration-thickness: 2px; }

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

/* ============================================================
   ZONE THEMES
   ============================================================ */
.zone-extravaganza {
  --bg: #F9D21E; --bg-elevated: #FFE352; --bg-deep: #E8BE0A;
  --fg: var(--ink); --accent: #A73916; --accent-2: var(--green);
  --font-display: "Abril Fatface", "Plus Jakarta Sans", serif;
}
.zone-pool {
  --bg: #20B9DB; --bg-elevated: #45BFDF; --bg-deep: #1098B7;
  --fg: #000000; --fg-soft: rgba(0,0,0,0.7);
  --accent: #000000; --accent-2: var(--bone);
  --font-display: "Rexton", "Plus Jakarta Sans", sans-serif;
}
.zone-snooker {
  --bg: #004D26; --bg-elevated: #006633; --bg-deep: #181C1B;
  --fg: var(--bone); --fg-soft: rgba(255,255,255,0.7);
  --accent: var(--bone); --accent-2: #F9D21E;
  --font-display: "Billiard", "Plus Jakarta Sans", serif;
}
.zone-scuba {
  --bg: #0490A4; --bg-elevated: #06A6BD; --bg-deep: #036B7B;
  --fg: var(--bone); --accent: var(--bone);
}
.zone-muga {
  --bg: #222426; --bg-elevated: #2C2E30; --bg-deep: #1A1C1E;
  --fg: var(--bone); --fg-soft: rgba(255,255,255,0.7);
  --accent: var(--bone); --accent-2: #F9D21E;
}
.zone-fields {
  --bg: #228B22; --bg-elevated: #2BA32B; --bg-deep: #166916;
  --fg: var(--bone); --accent: var(--bone);
  --font-display: "Oswald", "Plus Jakarta Sans", sans-serif;
}
.zone-playground {
  --bg: #FFA500; --bg-elevated: #FFB72E; --bg-deep: #E68A00;
  --fg: var(--ink); --accent: #FF4500; --accent-2: var(--sky);
  --font-display: "Nunito", "Plus Jakarta Sans", sans-serif;
}
.zone-dra {
  --bg: var(--paper); --fg: var(--ink); --accent: var(--green);
  --font-display: "Lobster", "Plus Jakarta Sans", cursive;
}
.zone-bike {
  --bg: #F04E23; --bg-elevated: #FF6A40; --bg-deep: #C53A14;
  --fg: #000000; --accent: #000000;
  --font-display: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
}
.zone-studio {
  --bg: #F5DEB3; --bg-elevated: #FBEACB; --bg-deep: #E8C98A;
  --fg: #4A2A0A; --accent: #8B4513; --accent-2: #D2691E;
  --font-display: "Josefin Sans", "Plus Jakarta Sans", sans-serif;
}
.zone-lounge {
  --bg: #401D00; --bg-elevated: #5A2A05; --bg-deep: #2A1200;
  --fg: #EEC776; --accent: #EEC776;
  --font-display: "Righteous", "Plus Jakarta Sans", sans-serif;
}
.zone-sauna {
  --bg: #A0522D; --bg-elevated: #B36340; --bg-deep: #7A3F22;
  --fg: var(--bone); --accent: var(--bone);
}
.zone-bar {
  --bg: #1A1A1A; --bg-elevated: #2A2A2A;
  --fg: var(--bone); --accent: #F9D21E;
}

/* ============================================================
   LAYOUT / KIT
   ============================================================ */
.mw-wrap { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 var(--gutter); }
.mw-app { min-height: 100vh; background: var(--bg); color: var(--fg); display: flex; flex-direction: column; }
.mw-app main { flex: 1; }

section.mw-sect { padding: var(--space-8) 0; }
section.mw-sect.tight { padding: var(--space-6) 0; }
section.mw-sect.tall { padding: var(--space-9) 0; }

/* ---------- Nav ---------- */
.mw-nav { position: sticky; top: 0; z-index: 50; background: #5A3F38; color: #fff; transition: background var(--dur-base) var(--ease-natural); }
.mw-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
.mw-nav-brand { display: flex; align-items: center; gap: 20px; text-decoration: none; }
.mw-nav-brand img { height: 38px; width: auto; flex: none; }
.mw-nav-brand .mark { font-family: var(--font-body); font-weight: 700; font-size: 24px; color: #fff; letter-spacing: -0.01em; line-height: 1; }
.mw-nav-brand small { display: block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.78); font-weight: 600; margin-top: 3px; }
.mw-nav-links { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; align-items: center; }
.mw-nav-link { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: #fff; text-decoration: none; padding: 8px 14px; border-radius: var(--r-pill); transition: background var(--dur-fast) var(--ease-natural); cursor: pointer; background: none; border: 0; display: inline-block; }
.mw-nav-link:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.mw-nav-link.active { background: rgba(255,255,255,0.18); }

/* Mega menu */
.mw-nav-links .has-mega { position: static; }
.mw-mega { position: absolute; top: 100%; left: 0; right: 0; background: #5A3F38; padding: var(--space-6) 0 var(--space-7); box-shadow: 0 12px 28px rgba(0,0,0,0.25); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-6px); transition: opacity var(--dur-base) var(--ease-natural), transform var(--dur-base) var(--ease-natural), visibility 0s linear var(--dur-base); z-index: 49; }
.mw-mega::before { content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 32px; }
.has-mega:hover .mw-mega,
.has-mega:focus-within .mw-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition: opacity var(--dur-base) var(--ease-natural), transform var(--dur-base) var(--ease-natural), visibility 0s linear 0s; }
.mw-mega-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.mw-mega-tile { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; min-height: 110px; padding: 14px 16px; border-radius: var(--r-md); color: #fff; text-decoration: none; transition: transform var(--dur-fast) var(--ease-natural); overflow: hidden; position: relative; }
.mw-mega-tile:hover { transform: translateY(-2px); text-decoration: none; }
.mw-mega-tile .eyebrow { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; opacity: 0.85; }
.mw-mega-tile .name { font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.15; letter-spacing: -0.01em; }
.mw-mega-tile.pool { background: #20B9DB; color: #002a35; }
.mw-mega-tile.bike { background: #F04E23; color: #2a0a02; }
.mw-mega-tile.snooker { background: #004D26; }
.mw-mega-tile.playground { background: #FFA500; color: var(--ink); }
.mw-mega-tile.fields { background: #228B22; }
.mw-mega-tile.studio { background: #F5DEB3; color: #4A2A0A; }
.mw-mega-tile.lounge { background: #401D00; color: #EEC776; }
.mw-mega-tile.bar { background: #2B1A0A; color: #F4C26B; }
.mw-mega-tile.sauna { background: #6E2A1A; color: #FBF0DF; }
.mw-mega-tile.scuba { background: #0490A4; color: #fff; }
.mw-mega-tile.muga { background: #222426; color: #fff; }
.mw-mega-tile.core { background: rgba(255,255,255,0.08); color: #fff; }
@media (max-width: 720px) {
  .mw-mega { display: none; }
}

/* ---------- Buttons ---------- */
.mw-btn { font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: var(--r-pill); border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: background var(--dur-base) var(--ease-natural), transform var(--dur-fast) var(--ease-natural); white-space: nowrap; line-height: 1; text-decoration: none; }
.mw-btn:active { transform: scale(0.97); }
.mw-btn:hover { text-decoration: none; }
.mw-btn-primary { background: var(--accent, var(--green)); color: #fff; }
.mw-btn-primary:hover { background: var(--green-dark); }
.mw-btn-ink { background: var(--ink); color: #fff; }
.mw-btn-ink:hover { background: #1A130E; }
.mw-btn-sun { background: var(--sun); color: var(--ink); }
.mw-btn-sun:hover { background: #E6BE0A; }
.mw-btn-secondary { background: var(--bg-elevated, var(--paper-deep)); color: var(--fg, var(--ink)); }
.mw-btn-ghost { background: transparent; color: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.mw-btn-ghost:hover { background: rgba(255,255,255,0.1); }
.mw-btn-sm { padding: 9px 16px; font-size: 13px; }
.mw-btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Eyebrow ---------- */
.mw-eyebrow { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--accent, var(--green-dark)); display: inline-flex; align-items: center; gap: 12px; }
.mw-eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; flex: none; }
.mw-eyebrow.no-line::before { display: none; }

/* ---------- Cards ---------- */
.mw-card { background: var(--bone); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur-base) var(--ease-natural); cursor: pointer; border: 0; padding: 0; text-align: left; font: inherit; color: inherit; display: block; width: 100%; text-decoration: none; }
.mw-card:hover { transform: translateY(-2px); text-decoration: none; }
.mw-card .img { aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: var(--paper-deep); position: relative; }
.mw-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; }
.mw-card .body h3 { font-family: var(--font-body); font-size: 20px; font-weight: 600; margin: 0; color: var(--ink); }
.mw-card .body p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.mw-card .body .meta { margin-top: 10px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.mw-card .badge { position: absolute; top: 12px; right: 12px; background: var(--ink); color: #fff; padding: 6px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Footer ---------- */
.mw-footer { background: var(--night); color: #fff; padding: var(--space-8) 0 var(--space-6); margin-top: var(--space-9); }
.mw-footer h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.55); margin: 0 0 14px; }
.mw-footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; display: block; padding: 4px 0; }
.mw-footer a:hover { color: #fff; text-decoration: underline; }
.mw-footer .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-7); }
.mw-footer p { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; margin: 0 0 8px; }
.mw-footer .footer-bottom { margin-top: var(--space-6); padding-top: var(--space-4); font-size: 12px; color: rgba(255,255,255,0.45); }
.mw-footer .footer-bottom a { display: inline; color: rgba(255,255,255,0.65); }

/* ---------- Zone tiles ---------- */
.mw-zone-tile { aspect-ratio: 4/5; border-radius: var(--r-lg); padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; cursor: pointer; position: relative; overflow: hidden; transition: transform var(--dur-base) var(--ease-natural); border: 0; text-align: left; font: inherit; text-decoration: none; }
.mw-zone-tile:hover { transform: translateY(-3px); text-decoration: none; }
.mw-zone-tile.pizzalogica h3,
.mw-zone-tile.things-happen-here h3 { display: none; }
.mw-zone-tile.pizzalogica .tile-photo { background-size: contain; background-repeat: no-repeat; background-position: center; }

.mw-zone-tile.has-photo { padding: 0; background-image: none; }
.mw-zone-tile.has-photo::before { display: none; }
.mw-zone-tile.has-photo .tile-photo { position: static; }
.mw-zone-tile.has-photo h3 { padding: 14px 16px 16px; }
.mw-zone-tile .tile-photo { flex: 1; min-height: 0; background-size: cover; background-position: center; }
.mw-zone-tile .eyebrow { position: absolute; top: 16px; left: 16px; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; opacity: 0.9; }
.tile-pill { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--r-pill); background: var(--pill-bg, rgba(0,0,0,0.7)); color: var(--pill-fg, #fff); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.mw-zone-tile.pool    { --pill-bg: #0d8fa8; }
.mw-zone-tile.bike    { --pill-bg: #c03010; }
.mw-zone-tile.snooker { --pill-bg: #002d15; }
.mw-zone-tile.playground { --pill-bg: #c47800; }
.mw-zone-tile.fields  { --pill-bg: #155a15; }
.mw-zone-tile.studio  { --pill-bg: #4A2A0A; --pill-fg: #F5DEB3; }
.mw-zone-tile.lounge  { --pill-bg: #2a0e00; --pill-fg: #EEC776; }
.mw-zone-tile.bar     { --pill-bg: #111; }
.mw-zone-tile.sauna   { --pill-bg: #5a1a0a; }
.mw-zone-tile.core    { --pill-bg: #2a2018; }
.mw-zone-tile.scuba   { --pill-bg: #036e80; }
.mw-zone-tile.muga    { --pill-bg: #111; }
.mw-zone-tile h3 { margin: 0; line-height: 0.95; }

.mw-zone-tile.pool { background: #20B9DB url("/assets/textures/pool-tile.png") center/cover; color: #000; }
.mw-zone-tile.pool::before { content: ""; position: absolute; inset: 0; background: rgba(32,185,219,0.3); }
.mw-zone-tile.pool > * { position: relative; z-index: 1; }
.mw-zone-tile.pool h3 { font-family: "Rexton", sans-serif; font-weight: 300; font-size: 20px; letter-spacing: 0.12em; text-transform: uppercase; color: #000; }

.mw-zone-tile.bike { background: #F04E23; color: #000; }
.mw-zone-tile.bike h3 { font-family: "Bebas Neue", sans-serif; font-size: 56px; letter-spacing: 0.01em; }

.mw-zone-tile.snooker { background: #004D26; }
.mw-zone-tile.snooker h3 { font-family: "Billiard", serif; font-size: 42px; }

.mw-zone-tile.playground { background: #FFA500; color: var(--ink); }
.mw-zone-tile.playground h3 { font-family: "Nunito", sans-serif; font-weight: 900; font-size: 28px; letter-spacing: -0.02em; }

.mw-zone-tile.fields { background: #228B22; }
.mw-zone-tile.fields h3 { font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 36px; }

.mw-zone-tile.studio { background: #F5DEB3; color: #4A2A0A; }
.mw-zone-tile.studio h3 { font-family: "Josefin Sans", sans-serif; font-weight: 300; font-size: 36px; letter-spacing: 0.04em; }

.mw-zone-tile.lounge { background: #401D00; color: #EEC776; }
.mw-zone-tile.lounge h3 { font-family: "Righteous", sans-serif; font-size: 34px; }

.mw-zone-tile.extravaganza { background: #F9D21E; color: var(--ink); }
.mw-zone-tile.extravaganza h3 { font-family: "Abril Fatface", serif; font-size: 38px; line-height: 0.95; }

.mw-zone-tile.bar { background: #1A1A1A; color: #fff; }
.mw-zone-tile.bar h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 36px; }

.mw-zone-tile.sauna { background: #A0522D; color: #fff; }
.mw-zone-tile.sauna h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 32px; }

.mw-zone-tile.core { background: #FBF0DF url("/assets/photos/brook.png") center/cover; color: #fff; }
.mw-zone-tile.core::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,35,32,0) 30%, rgba(40,35,32,0.6) 100%); }
.mw-zone-tile.core > * { position: relative; z-index: 1; }
.mw-zone-tile.core h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 30px; }

.mw-zone-tile.scuba { background: #0490A4; color: #fff; }
.mw-zone-tile.scuba h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 32px; }

.mw-zone-tile.muga {
  background-color: #222426;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='375' viewBox='0 0 300 375'%3E%3Cellipse cx='150' cy='260' rx='158' ry='180' fill='none' stroke='white' stroke-width='2.5' opacity='0.38'/%3E%3Cellipse cx='150' cy='260' rx='112' ry='134' fill='none' stroke='white' stroke-width='2.5' opacity='0.38'/%3E%3Cellipse cx='150' cy='260' rx='135' ry='157' fill='none' stroke='white' stroke-width='1.5' stroke-dasharray='10 7' opacity='0.2'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  color: #fff;
}
.mw-zone-tile.muga h3 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 32px; letter-spacing: -0.02em; }

/* ---------- Hero ---------- */
.mw-hero { position: relative; min-height: 540px; overflow: hidden; color: #fff; }
.mw-hero .photo { position: absolute; inset: 0; background: center/cover var(--paper-deep); }
.mw-hero .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,35,32,0.22) 0%, rgba(40,35,32,0) 30%, rgba(40,35,32,0.65) 100%); }
.mw-hero .content { position: relative; min-height: 540px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-end; text-align: right; padding: var(--space-9) var(--gutter); }
.mw-hero h1 { font-family: var(--font-display, var(--font-body)); font-weight: 700; font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.02em; max-width: 18ch; margin: 16px 0 8px; }
.mw-hero p { font-size: 17px; line-height: 1.55; max-width: 50ch; color: rgba(255,255,255,0.88); margin: 0 0 24px; }
.mw-hero .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.mw-hero .mw-eyebrow { color: rgba(255,255,255,0.85); }
.mw-hero .hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 500; letter-spacing: 0.01em; color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.mw-hero h1,
.mw-hero p,
.mw-hero .hero-sub,
.mw-hero .mw-eyebrow { text-shadow: 0 0 3px rgba(0,0,0,0.95), 0 0 12px rgba(0,0,0,0.85), 0 2px 22px rgba(0,0,0,0.7); }

/* ---------- Zone hero ---------- */
.mw-zone-hero { position: relative; padding: var(--space-9) 0 var(--space-8); overflow: hidden; }
.mw-zone-hero .mw-eyebrow { color: currentColor; opacity: 0.78; }
.mw-zone-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 9vw, 7rem); line-height: 0.95; margin: 14px 0 18px; max-width: 14ch; }
.mw-zone-hero p { max-width: 50ch; font-size: 17px; line-height: 1.6; opacity: 0.92; margin: 0 0 26px; }
.zone-bike .mw-zone-hero h1 { letter-spacing: 0.01em; }
.zone-fields .mw-zone-hero h1 { text-transform: uppercase; letter-spacing: 0.01em; }
.zone-playground .mw-zone-hero h1 { letter-spacing: -0.03em; }
.zone-pool .mw-zone-hero h1 { font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.1; }
.zone-pool .mw-zone-hero p, .zone-pool .mw-zone-hero { color: #000; }
.zone-snooker .mw-zone-hero { text-align: center; }
.zone-snooker .mw-zone-hero h1, .zone-snooker .mw-zone-hero p { margin-left: auto; margin-right: auto; }

/* ---------- Section head ---------- */
.mw-sect-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: var(--space-6); flex-wrap: wrap; }
.mw-sect-head h2 { font-family: var(--font-body); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 8px 0 0; color: var(--fg); max-width: 18ch; }
.mw-sect-head .right { text-align: right; font-size: 14px; color: var(--fg-soft, var(--ink-soft)); max-width: 28ch; line-height: 1.5; }
.mw-intro p { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; color: var(--fg-soft); max-width: 70ch; }

/* ---------- Banner / CTA ---------- */
.mw-banner { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%); border-radius: var(--r-xl); padding: var(--space-7) var(--space-6); display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--space-6); align-items: center; }
.mw-banner h3 { font-family: var(--font-body); font-weight: 700; font-size: 28px; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 12px; }
.mw-banner p { color: var(--ink-soft); margin: 0 0 20px; max-width: 460px; }
.mw-banner .visual { aspect-ratio: 5/4; border-radius: var(--r-lg); background-size: cover; background-position: center; background-color: var(--paper-deep); }

/* ---------- Partners ---------- */
.mw-partners { display: flex; flex-wrap: wrap; gap: var(--space-6); align-items: center; justify-content: center; background: var(--night); border-radius: var(--r-lg); padding: var(--space-7) var(--space-6); }
.mw-partners a { display: inline-block; }
.mw-partners img { height: 60px; width: auto; opacity: 0.7; transition: opacity var(--dur-base) var(--ease-natural); }
.mw-partners a:hover img { opacity: 1; }
.mw-supporters { display: flex; flex-wrap: wrap; gap: var(--space-7); align-items: center; justify-content: center; }
.mw-supporters a { display: inline-block; }
.mw-supporters img { height: 50px; width: auto; opacity: 0.6; transition: opacity var(--dur-base) var(--ease-natural); }
.mw-supporters a:hover img { opacity: 1; }

/* ---------- Grids ---------- */
.mw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mw-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mw-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

/* ---------- Article / prose ---------- */
.mw-article { max-width: var(--content-narrow); margin: 0 auto; padding: var(--space-8) 0; }
.mw-article > * + * { margin-top: var(--space-4); }
.mw-article h1 { font-family: var(--font-body); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; line-height: 1.1; }
.mw-article h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.2; margin-top: var(--space-7); }
.mw-article h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; margin-top: var(--space-5); }
.mw-article p { line-height: var(--lh-body); color: var(--fg); }
.mw-article a { color: var(--accent, var(--green-dark)); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
.mw-article a:hover { text-decoration-thickness: 2px; }
.mw-article ul, .mw-article ol { padding-left: 1.4rem; }
.mw-article li { margin: 0.3rem 0; line-height: var(--lh-body); }
.mw-article .lead { font-size: 1.2rem; color: var(--fg-soft); line-height: 1.55; max-width: 60ch; }
.mw-article .eyebrow { color: var(--green-dark); margin-bottom: var(--space-2); display: block; }

/* ---------- Document list ---------- */
.mw-doclist { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.mw-doclist a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: var(--r-md); background: var(--bg-elevated); color: var(--fg); text-decoration: none; font-size: 14px; transition: background var(--dur-fast); }
.mw-doclist a:hover { background: var(--paper-deep); text-decoration: none; }
.mw-doclist a::before { content: ""; width: 18px; height: 18px; flex: none; background: currentColor; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/></svg>") center/contain no-repeat; opacity: 0.6; }

/* ---------- Forms ---------- */
.mw-form .field { margin-bottom: var(--space-4); }
.mw-form label { display: block; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: var(--space-2); }
.mw-form input, .mw-form select, .mw-form textarea {
  width: 100%; padding: 14px 16px; border: 0; border-radius: var(--r-md);
  background: var(--bone); font: inherit; font-size: 16px;
  outline: 2px solid transparent; transition: outline-color var(--dur-fast);
  color: var(--ink);
}
.mw-form input:focus, .mw-form select:focus, .mw-form textarea:focus { outline-color: var(--green); }
.mw-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Booking section ---------- */
.mw-booking { background: var(--bg-elevated); border-radius: var(--r-xl); padding: var(--space-7); margin-top: var(--space-7); }
.mw-booking h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.02em; margin-bottom: var(--space-4); }

/* ---------- Amenities ---------- */
.mw-amenities { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px var(--space-5); }
.mw-amenities li { position: relative; padding-left: 22px; font-size: 15px; color: var(--fg-soft); line-height: 1.5; }
.mw-amenities li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: 0.85; }

/* ---------- Misc ---------- */
.mw-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg-soft); text-decoration: none; padding: var(--space-2) 0; margin-top: var(--space-6); }
.mw-back:hover { color: var(--fg); text-decoration: none; }
.mw-back::before { content: "←"; }

.mw-map-block { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; background: var(--paper-deep); border-radius: var(--r-xl); overflow: hidden; }
.mw-map-block .picture { background: var(--bone); padding: 24px; display: flex; align-items: center; justify-content: center; }
.mw-map-block .picture img { width: 100%; height: auto; max-height: 460px; object-fit: contain; }
.mw-map-block .copy { padding: var(--space-6); align-self: center; }
.mw-map-block h2 { font-family: var(--font-body); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 12px 0; color: var(--ink); }
.mw-map-block p { color: var(--ink-soft); margin: 0 0 18px; max-width: 320px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mw-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mw-grid-3, .mw-grid-2 { grid-template-columns: 1fr; }
  .mw-banner, .mw-map-block { grid-template-columns: 1fr; }
  .mw-banner { padding: var(--space-6); }
  .mw-map-block .copy { padding: var(--space-5); }
  .mw-footer .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .mw-amenities { grid-template-columns: 1fr; }
  .mw-nav-inner { padding-left: var(--space-4); padding-right: var(--space-4); }
}

@media (max-width: 720px) {
  .mw-nav-links { gap: 0; }
  .mw-nav-link { padding: 6px 10px; font-size: 13px; }
  .mw-nav-link.hide-mobile { display: none; }
  .mw-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .mw-booking { padding: var(--space-5) var(--space-4); }
}

/* Mobile menu button — hidden on wide screens */
.mw-nav-menu-btn { display: none; }
.mw-mobile-menu { display: none; }

@media (max-width: 720px) {
  .mw-nav-links { display: none; }

  .mw-nav-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 0;
    border-radius: var(--r-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
    transition: background var(--dur-fast) var(--ease-natural);
  }
  .mw-nav-menu-btn:hover { background: rgba(255,255,255,0.22); }

  .mw-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #5A3F38;
    z-index: 48;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    display: none;
  }
  .mw-mobile-menu.open { display: block; }
  .mw-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: var(--space-3) 0 var(--space-4);
  }
  .mw-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mw-mobile-menu ul li:last-child { border-bottom: 0; padding: var(--space-4) var(--gutter); }
  .mw-mobile-menu ul li a {
    display: block;
    padding: 14px var(--gutter);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background var(--dur-fast) var(--ease-natural);
  }
  .mw-mobile-menu ul li a:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
  .mw-mobile-menu ul li a.active { background: rgba(255,255,255,0.15); font-weight: 600; }
}
