/* Shared stylesheet for sub-pages (landing pages, articles). The homepage keeps its own inline CSS.
   Tokens mirror default.php — keep them in sync. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #060608; --dark: #0e0e14; --white: #f0ece8; --dim: rgba(240,236,232,0.62);
  --cyan: #00e5ff; --magenta: #e800c0; --violet: #7b2cff; --peach: #f0a88c;
  --border: rgba(255,255,255,0.10);
  --fd: 'Bebas Neue', Impact, sans-serif; --fu: 'Syne', sans-serif; --fb: 'DM Sans', system-ui, sans-serif;
  --grad: linear-gradient(90deg, var(--cyan), var(--violet) 55%, var(--magenta));
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--black); color: var(--white); font-family: var(--fb); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--magenta); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora i { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .26; }
.aurora i:nth-child(1) { width: 60vw; height: 60vw; left: -18vw; top: 5vh; background: radial-gradient(circle, rgba(0,229,255,.55), transparent 65%); }
.aurora i:nth-child(2) { width: 55vw; height: 55vw; right: -15vw; top: 40vh; background: radial-gradient(circle, rgba(232,0,192,.5), transparent 65%); }

/* nav */
.nav { position: fixed; top: 0; left: 0; right: 0; height: 68px; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; background: rgba(6,6,8,0.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 30px; width: auto; filter: drop-shadow(0 0 8px rgba(0,229,255,.5)); }
.nav-logo span { font-family: var(--fd); font-size: 21px; letter-spacing: 3px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--fu); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,0.6); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--white); }
.nav-lang { font-family: var(--fu); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,229,255,.35); padding: 6px 10px; border-radius: 2px; }
.nav-book { font-family: var(--fu); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--cyan); color: #000; padding: 10px 20px; border-radius: 2px; transition: background .2s, color .2s; }
.nav-book:hover { background: var(--magenta); color: #fff; }
.hbg { display: none; width: 34px; height: 34px; background: none; border: none; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .28s, opacity .28s; }
.hbg.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hbg.open span:nth-child(2) { opacity: 0; } .hbg.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.drawer { position: fixed; top: 68px; left: 0; right: 0; z-index: 199; background: rgba(6,6,8,0.96); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.drawer.open { max-height: 640px; }
.drawer a { font-family: var(--fu); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,0.6); padding: 18px 32px; border-bottom: 1px solid var(--border); }
.drawer a:last-child { border-bottom: none; }

/* layout */
.page { position: relative; z-index: 1; }
.inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.sec { padding: 88px 0; }
.sec-alt { background: rgba(14,14,20,.62); }
.eyebrow { display: flex; align-items: center; gap: 12px; font-family: var(--fu); font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.hdg { font-family: var(--fd); font-size: clamp(42px, 6vw, 84px); letter-spacing: 2px; line-height: .92; text-wrap: balance; }
.hdg em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lede { font-size: 18px; color: var(--dim); max-width: 60ch; margin-top: 18px; }
.btn-fill { font-family: var(--fu); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--grad); color: #000; padding: 16px 34px; border-radius: 2px; display: inline-block; transition: transform .3s, box-shadow .3s; }
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(0,229,255,.35), 0 0 60px rgba(232,0,192,.25); }
.btn-line { font-family: var(--fu); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); padding: 15px 34px; border-radius: 2px; border: 1px solid rgba(240,236,232,.35); display: inline-block; transition: border-color .25s, background .25s; }
.btn-line:hover { border-color: var(--cyan); background: rgba(0,229,255,.08); }

/* page hero: answers price, set, includes, booking above the fold */
.phero { padding: 150px 0 72px; position: relative; overflow: hidden; }
.phero-g { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.phero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.phero-photo { position: relative; border-radius: 4px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--dark); box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.phero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.phero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,8,.75), transparent 45%); }
.facts { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fact { background: rgba(6,6,8,.72); border: 1px solid rgba(240,236,232,.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 12px 14px; border-radius: 3px; }
.fact small { display: block; font-family: var(--fu); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,.5); margin-bottom: 4px; }
.fact b { font-family: var(--fd); font-size: 22px; letter-spacing: 1px; line-height: 1; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fact span { display: block; font-size: 12px; color: var(--dim); margin-top: 3px; line-height: 1.4; }

/* cards */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.card { background: rgba(14,14,20,.75); border: 1px solid var(--border); padding: 30px 28px; border-radius: 4px; }
.card h3 { font-family: var(--fd); font-size: 26px; letter-spacing: 2px; margin-bottom: 8px; font-weight: 400; }
.card p { font-size: 14.5px; color: var(--dim); line-height: 1.75; }

/* steps (a real sequence: enquiry → hold → brief → show) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; counter-reset: s; }
.step { position: relative; padding: 26px 24px 24px; border: 1px solid var(--border); border-radius: 4px; background: rgba(6,6,8,.5); }
.step::before { counter-increment: s; content: counter(s); font-family: var(--fd); font-size: 40px; line-height: 1; color: var(--magenta); display: block; margin-bottom: 10px; }
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--dim); }

/* included list */
.incl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin-top: 36px; list-style: none; }
.incl li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.incl li::before { content: '✦'; color: var(--cyan); font-size: 12px; margin-top: 4px; }
.incl b { color: var(--white); font-weight: 500; }

/* genres */
.gp-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.gp { font-family: var(--fu); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 12px 22px; border: 1px solid rgba(240,236,232,.18); border-radius: 999px; color: rgba(240,236,232,.7); }

/* venues strip */
.venues { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; }
.venues span { font-family: var(--fd); font-size: 26px; letter-spacing: 1px; color: rgba(240,236,232,.5); }
.venues span::after { content: '◆'; color: var(--magenta); font-size: 8px; vertical-align: middle; margin-left: 22px; }
.venues span:last-child::after { content: ''; }

/* faq */
.faq { margin-top: 36px; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; padding: 20px 0; font-size: 17px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--cyan); font-family: var(--fd); font-size: 26px; line-height: 1; }
.faq details[open] summary::after { content: '–'; }
.faq p { padding: 0 0 20px; color: var(--dim); max-width: 70ch; }

/* cta */
.cta { padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.cta .hdg { font-size: clamp(48px, 8vw, 110px); }
.cta p { color: var(--dim); max-width: 52ch; margin: 18px auto 0; }
.wa { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; font-family: var(--fu); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--grad); color: #000; padding: 18px 34px; border-radius: 2px; box-shadow: 0 0 40px rgba(0,229,255,.25), 0 0 80px rgba(232,0,192,.18); }
.wa svg { width: 18px; height: 18px; fill: currentColor; }
.cta-links { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; font-size: 13px; color: var(--dim); }
.cta-links a:hover { color: var(--cyan); }



/* article */
.article { max-width: 720px; margin: 0 auto; }
.article h2 { font-family: var(--fd); font-size: 36px; letter-spacing: 1.5px; margin: 44px 0 14px; font-weight: 400; }
.article p, .article li { color: rgba(240,236,232,.82); font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.article ul { padding-left: 22px; }

@media (max-width: 1024px) { .grid3 { grid-template-columns: repeat(2, 1fr); } .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .nav { padding: 0 20px; height: 62px; } .drawer { top: 62px; }
  .nav-links, .nav-book { display: none; } .hbg { display: flex; }
  .inner { padding: 0 20px; } .sec { padding: 64px 0; }
  .phero { padding: 110px 0 56px; } .phero-g { grid-template-columns: 1fr; gap: 36px; }
  .phero-photo { max-width: 460px; }
  .grid3, .steps, .incl { grid-template-columns: 1fr; }
  .venues span { font-size: 22px; }
  footer { flex-direction: column; text-align: center; }
}

/* services menu (desktop) */
.has-menu { position: relative; }
.nav-btn { background: none; border: none; cursor: pointer; font-family: var(--fu); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,0.6); display: inline-flex; align-items: center; gap: 6px; padding: 0; transition: color .2s; }
.nav-btn i { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.has-menu:hover .nav-btn, .has-menu.open .nav-btn { color: var(--white); }
.menu { position: absolute; top: 100%; left: -18px; padding-top: 18px; display: none; z-index: 210; }
.has-menu:hover .menu, .has-menu.open .menu, .has-menu:focus-within .menu { display: block; }
.menu > div { display: flex; gap: 8px; background: rgba(10,10,16,.96); border: 1px solid rgba(240,236,232,.14); border-radius: 4px; padding: 14px; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 30px 60px rgba(0,0,0,.6); }
.menu-col { display: flex; flex-direction: column; min-width: 180px; }
.menu-col b { font-family: var(--fu); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); padding: 6px 12px 8px; }
.menu-col a { font-family: var(--fb); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 400; color: rgba(240,236,232,.82); padding: 9px 12px; border-radius: 3px; white-space: nowrap; }
.menu-col a:hover, .menu-col a[aria-current] { background: rgba(0,229,255,.08); color: var(--white); }
.drawer b { font-family: var(--fu); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); padding: 16px 32px 4px; }

/* sitemap footer */
.site-foot { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 56px 32px 28px; background: var(--black); }
.foot-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand p { font-size: 13px; color: rgba(240,236,232,.5); max-width: 34ch; margin-top: 14px; line-height: 1.6; }
.foot-brand .fl { display: flex; align-items: center; gap: 10px; font-family: var(--fd); font-size: 18px; letter-spacing: 3px; }
.foot-brand .fl img { height: 24px; width: auto; }
.foot-brand .fl span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.foot-col { display: flex; flex-direction: column; gap: 2px; }
.foot-col b { font-family: var(--fu); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.foot-col a { font-size: 14px; color: rgba(240,236,232,.65); padding: 5px 0; }
.foot-col a:hover { color: var(--white); }
.foot-copy { max-width: 1160px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12px; color: rgba(240,236,232,.35); }
@media (max-width: 860px) { .foot-in { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* articles */
.art-meta { margin-top: 18px; font-family: var(--fu); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,.45); }
.art-cover { border-radius: 4px; overflow: hidden; aspect-ratio: 3 / 2; margin-bottom: 40px; }
.art-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.article h3 { font-size: 19px; font-weight: 600; margin: 30px 0 10px; }
.article table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 15px; }
.article th, .article td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.article th { font-family: var(--fu); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(240,236,232,.5); font-weight: 700; }
.article td.n { font-variant-numeric: tabular-nums; white-space: nowrap; }
.article .tbl { overflow-x: auto; }
.article .callout { border-left: 3px solid var(--magenta); background: rgba(14,14,20,.75); padding: 16px 20px; margin: 24px 0; }
.article .callout p { margin: 0; font-size: 15.5px; }
.article a { color: var(--cyan); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.post-card { display: block; background: rgba(14,14,20,.75); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform .3s, border-color .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(0,229,255,.4); }
.post-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 20%; }
.post-card .tag { display: inline-block; margin: 18px 22px 0; font-family: var(--fu); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); }
.post-card h3 { font-size: 19px; font-weight: 600; margin: 10px 22px 8px; line-height: 1.3; }
.post-card p { font-size: 14px; color: var(--dim); margin: 0 22px 16px; line-height: 1.6; }
.post-card time { display: block; margin: 0 22px 20px; font-size: 12px; color: rgba(240,236,232,.4); }
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* long-form city guide inside a landing page */
.guide .article { max-width: 760px; margin: 0; }
.guide .article > .hdg { margin-bottom: 26px; }
.guide .article h2 { font-family: var(--fd); font-size: 32px; letter-spacing: 1.5px; margin: 40px 0 12px; font-weight: 400; }
.guide .article p, .guide .article li { font-size: 16.5px; }

.jump { margin-top: 18px; font-size: 14px; }
.jump a { color: var(--cyan); border-bottom: 1px solid rgba(0,229,255,.35); }

.art-embed { margin: 0 0 32px; border-radius: 4px; overflow: hidden; background: var(--dark); }
.art-embed iframe { display: block; width: 100%; border: 0; }
