/* =========================================================
   Cascada Mall — Bekaa, Lebanon
   ========================================================= */

:root{
  --ink:      #1A1220;
  --ink-2:    #241834;
  --ink-3:    #33244A;
  --paper:    #FFFFFF;
  --paper-2:  #F7F4F8;
  --paper-3:  #EBE4EE;
  --text:     #2B2233;
  --muted:    #6C6076;
  --muted-2:  #9A8FA3;

  /* Pulled from the Cascada mosaic logo. */
  --magenta:  #BE1272;
  --purple:   #5A3690;
  --gold:     #FBB300;
  --orange:   #F5811F;
  --alert:    #E11D48;

  --grad: linear-gradient(100deg, #5A3690 0%, #BE1272 42%, #F5811F 76%, #FBB300 100%);
  --grad-soft: linear-gradient(100deg, rgba(90,54,144,.16), rgba(190,18,114,.16) 42%, rgba(251,179,0,.18));

  --line:    rgba(43,34,51,.11);
  --line-lt: rgba(255,255,255,.12);

  --font-d: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-b: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --sec-y: clamp(72px, 9vw, 140px);
  --ease: cubic-bezier(.22,.68,.32,1);
  --r: 18px;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:var(--font-b);
  font-size:17px;
  line-height:1.66;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
button{ font:inherit; }

h1,h2,h3{
  font-family:var(--font-d);
  font-weight:500;
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0;
}
h1{ font-size:clamp(2.5rem, 6.2vw, 5.3rem); font-weight:600; }
h2{ font-size:clamp(2rem, 4.2vw, 3.4rem); }
h3{ font-size:clamp(1.2rem, 1.9vw, 1.55rem); font-weight:500; }

p{ margin:0 0 1.1em; }
p:last-child{ margin-bottom:0; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 var(--pad); }

.skip{ position:absolute; left:-9999px; top:0; z-index:300; background:var(--ink); color:#fff; padding:12px 20px; }
.skip:focus{ left:0; }
:focus-visible{ outline:2px solid var(--magenta); outline-offset:3px; border-radius:4px; }

.kicker{
  font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  font-weight:600; color:var(--magenta); margin:0 0 1.1em;
}
.kicker-light{ color:var(--gold); }

em{ font-style:normal; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  padding:14px 26px; border-radius:999px;
  background:var(--ink); color:#fff; border:1px solid var(--ink);
  font-size:.9rem; font-weight:500; text-decoration:none; cursor:pointer;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -14px rgba(26,18,32,.6); }
.btn:active{ transform:translateY(0); }
.btn-lg{ padding:16px 32px; font-size:.95rem; }
.btn-sm{ padding:10px 20px; font-size:.84rem; }
.btn-ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.32); }
.btn-ghost:hover{ background:#fff; color:var(--ink); border-color:#fff; }

/* ---------- scroll progress ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:100%; transform-origin:0 50%;
  transform:scaleX(0); background:var(--grad); z-index:200;
}

/* =========================================================
   HEADER
   ========================================================= */
.head{
  position:fixed; inset:0 0 auto 0; z-index:150;
  transition:background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom:1px solid transparent;
}
.head-in{ display:flex; align-items:center; gap:28px; height:78px; transition:height .4s var(--ease); }

.head.stuck{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px) saturate(1.5);
  -webkit-backdrop-filter:blur(16px) saturate(1.5);
  border-bottom-color:var(--line);
}
.head.stuck .head-in{ height:66px; }

.brand{ display:flex; align-items:center; gap:11px; text-decoration:none; margin-right:auto; color:#fff; transition:color .4s var(--ease); }
.head.stuck .brand{ color:var(--text); }
.brand-text{ font-family:var(--font-d); font-size:1.32rem; font-weight:600; letter-spacing:-.03em; }
.brand-thin{ font-weight:200; opacity:.75; margin-left:.18em; }

.nav{ display:flex; gap:30px; }
.nav a{
  position:relative; font-size:.88rem; font-weight:400; text-decoration:none;
  color:rgba(255,255,255,.8); padding:6px 0; transition:color .3s var(--ease);
}
.nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; border-radius:2px; background:var(--grad); transition:width .35s var(--ease); }
.nav a:hover{ color:#fff; }
.nav a:hover::after{ width:100%; }
.head.stuck .nav a{ color:var(--muted); }
.head.stuck .nav a:hover{ color:var(--text); }

.head-right{ display:flex; align-items:center; gap:16px; }

/* Social cluster in the bar. Bare glyphs, no ring — the header already carries a
   button, and a second bordered shape makes it read as a toolbar. */
.head-social{ display:flex; align-items:center; gap:1px; list-style:none; margin:0; padding:0; }
.head-social a{
  display:grid; place-items:center; width:30px; height:30px; border-radius:50%;
  color:rgba(255,255,255,.72);
  transition:color .3s var(--ease), background .3s var(--ease);
}
.head-social a:hover{ color:#fff; background:rgba(255,255,255,.12); }
.head-social svg{ width:16px; height:16px; display:block; }
.head.stuck .head-social a, .page-head-solid .head-social a{ color:var(--muted); }
.head.stuck .head-social a:hover, .page-head-solid .head-social a:hover{ color:var(--magenta); background:var(--paper-2); }


/* The header CTA is an outline button, matching the hero's "How to find us"
   rather than sitting there as a solid white pill. It fills in on hover. */
.head .btn-sm{ background:transparent; color:#fff; border-color:rgba(255,255,255,.32); }
.head .btn-sm:hover{ background:#fff; color:var(--ink); border-color:#fff; }
/* Same idea inverted once the bar goes light — a white outline would vanish. */
.head.stuck .btn-sm{ background:transparent; color:var(--text); border-color:rgba(43,34,51,.28); }
.head.stuck .btn-sm:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }

.burger{ display:none; width:44px; height:44px; background:none; border:0; cursor:pointer; flex-direction:column; align-items:flex-end; justify-content:center; gap:5px; padding:0; }
.burger span{ display:block; height:2px; border-radius:2px; background:#fff; transition:transform .35s var(--ease), width .35s var(--ease), opacity .25s var(--ease), background .4s var(--ease); }
.burger span:nth-child(1){ width:24px; }
.burger span:nth-child(2){ width:18px; }
.burger span:nth-child(3){ width:22px; }
.head.stuck .burger span{ background:var(--text); }
.burger[aria-expanded="true"] span:nth-child(1){ width:24px; transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ width:24px; transform:translateY(-7px) rotate(-45deg); }

.mobile-nav{ display:none; flex-direction:column; background:var(--ink); padding:12px var(--pad) 30px; }
.mobile-nav a{ font-family:var(--font-d); font-size:1.5rem; font-weight:400; color:#fff; text-decoration:none; padding:15px 0; border-bottom:1px solid var(--line-lt); }
.mobile-nav .mob-cta{ border-bottom:0; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; font-weight:600; }
.mob-social{ display:flex; gap:10px; list-style:none; margin:22px 0 0; padding:0; }
.mobile-nav .mob-social a{
  display:grid; place-items:center; width:42px; height:42px; padding:0;
  border-bottom:0; border-radius:50%; color:rgba(255,255,255,.78);
  background:rgba(255,255,255,.05); box-shadow:inset 0 0 0 1px var(--line-lt);
}
.mobile-nav .mob-social svg{ width:19px; height:19px; display:block; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:min(100svh, 980px);
  display:flex; flex-direction:column; justify-content:center;
  padding:150px 0 90px;
  background:var(--ink); color:#fff; overflow:hidden;
}
.hero-bg{ position:absolute; inset:0; overflow:hidden; }
/* Drone shot of the mall front, sitting under the animated orbs. It is a bright
   daylight photograph, but at 42% over the ink ground and beneath the scrim
   below it measures 6.4:1 behind the headline — no darkening needed. If the
   JPEG ever fails the gradient below still carries the hero. */
.hero-bg::before{
  content:"";
  position:absolute; inset:0;
  background-image:url("../img/hero.jpg");
  background-size:cover; background-position:center 42%;
  opacity:.42;
  transform:scale(1.04);
}
@media (max-width:700px){
  .hero-bg::before{ background-image:url("../img/hero-sm.jpg"); opacity:.34; }
}
.orb{ position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; will-change:transform; }
.orb-1{ width:46vw; height:46vw; min-width:380px; min-height:380px; left:-8vw; top:-10vh; background:radial-gradient(circle at 40% 40%, #5A3690, transparent 68%); animation:float1 22s ease-in-out infinite; }
.orb-2{ width:40vw; height:40vw; min-width:340px; min-height:340px; right:-6vw; top:8vh; background:radial-gradient(circle at 55% 45%, #BE1272, transparent 68%); animation:float2 26s ease-in-out infinite; }
.orb-3{ width:34vw; height:34vw; min-width:280px; min-height:280px; left:34vw; bottom:-16vh; background:radial-gradient(circle at 50% 50%, #FBB300, transparent 68%); opacity:.38; animation:float3 30s ease-in-out infinite; }
@keyframes float1{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(6vw,5vh) scale(1.12);} }
@keyframes float2{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(-5vw,7vh) scale(1.08);} }
@keyframes float3{ 0%,100%{ transform:translate(0,0) scale(1);} 50%{ transform:translate(-6vw,-6vh) scale(1.15);} }

.grid-lines{
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:74px 74px;
  mask-image:radial-gradient(ellipse 76% 62% at 50% 42%, #000 35%, transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 76% 62% at 50% 42%, #000 35%, transparent 100%);
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(26,18,32,.5), rgba(26,18,32,.25) 40%, rgba(26,18,32,.92));
}

.hero-in{ position:relative; z-index:2; }
.hero h1{ max-width:15ch; margin-bottom:.42em; }
.hero h1 .line{ display:block; }
.hero h1 .grad{ background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

.hero-lead{ max-width:56ch; font-size:clamp(1rem,1.3vw,1.15rem); color:rgba(255,255,255,.74); font-weight:300; margin-bottom:2.1em; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:clamp(40px,5vw,64px); }

/* Screen-reader-only, for the labels the search field needs but the design
   does not show. Not display:none -- that would hide it from readers too. */
.vh{
  position:absolute; width:1px; height:1px; margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap; border:0;
}

/* Site-wide search, sitting in the hero above the two buttons. Glass on the
   photograph rather than a white box, which would punch a hole in the image. */
.hero-search{
  position:relative; display:flex; align-items:center; gap:10px;
  width:min(560px,100%); margin:0 0 18px;
  padding:6px 6px 6px 16px; border-radius:999px;
  background:rgba(255,255,255,.10);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.24);
  backdrop-filter:blur(10px) saturate(1.4);
  -webkit-backdrop-filter:blur(10px) saturate(1.4);
  transition:background .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-search:focus-within{
  background:rgba(255,255,255,.16);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.5);
}
.hs-icon{ width:18px; height:18px; color:rgba(255,255,255,.7); flex:none; }
.hero-search input{
  flex:1; min-width:0; border:0; background:transparent; outline:none;
  color:#fff; font:inherit; font-size:.95rem; padding:10px 0;
}
.hero-search input::placeholder{ color:rgba(255,255,255,.6); }
/* Safari draws its own clear button, which sits on top of ours in the wrong colour. */
.hero-search input::-webkit-search-cancel-button{ -webkit-appearance:none; appearance:none; }
.hs-go{ flex:none; background:#fff; color:var(--ink); border-color:#fff; }
.hs-go:hover{ background:var(--magenta); border-color:var(--magenta); color:#fff; }

/* The result list is a light card: it holds shop names, and those have to be
   as readable as they are in the directory. */
.hs-results{
  position:absolute; left:0; right:0; top:calc(100% + 10px); z-index:20;
  background:var(--paper); border-radius:18px; overflow:hidden;
  box-shadow:0 24px 60px rgba(26,18,32,.28), inset 0 0 0 1px var(--line);
  max-height:min(58vh,420px); overflow-y:auto; text-align:left;
}
.hs-hit{
  display:grid; grid-template-columns:1fr auto; align-items:center;
  gap:2px 14px; padding:11px 18px; text-decoration:none;
  border-bottom:1px solid var(--line);
}
.hs-hit:last-child{ border-bottom:0; }
.hs-hit:hover, .hs-hit:focus-visible{ background:var(--paper-2); outline:none; }
/* Every cell is placed explicitly. Leaving the badge to auto-placement let it
   claim column 1 row 1 -- the name's cell -- and the row came out mirrored. */
.hs-name{ grid-column:1; grid-row:1; font-weight:600; font-size:.95rem; color:var(--ink); }
.hs-note{ grid-column:1; grid-row:2; font-size:.8rem; color:var(--muted); }
.hs-kind{
  grid-column:2; grid-row:1 / span 2; align-self:center;
  font-size:.62rem; letter-spacing:.12em; text-transform:uppercase;
  font-weight:700; color:var(--magenta); white-space:nowrap;
}
.hs-none, .hs-more{ margin:0; padding:14px 18px; font-size:.85rem; color:var(--muted); }
.hs-more{ border-top:1px solid var(--line); }
.hero .btn:not(.btn-ghost){ background:#fff; color:var(--ink); border-color:#fff; }

.hero-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(16px,3vw,40px); max-width:820px; }
.hstat .n{ display:block; font-family:var(--font-d); font-size:clamp(1.7rem,3vw,2.6rem); font-weight:600; letter-spacing:-.04em; line-height:1;
  background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:.35em; }
.hstat .l{ display:block; font-size:.76rem; color:rgba(255,255,255,.56); line-height:1.4; }

.scroll-hint{ position:absolute; left:50%; bottom:26px; transform:translateX(-50%); width:26px; height:42px; border:1.5px solid rgba(255,255,255,.3); border-radius:14px; z-index:2; }
.scroll-hint span{ position:absolute; left:50%; top:9px; width:3px; height:7px; border-radius:2px; background:#fff; transform:translateX(-50%); animation:wheel 1.9s var(--ease) infinite; }
@keyframes wheel{ 0%{ opacity:0; transform:translate(-50%,0);} 30%{opacity:1;} 100%{ opacity:0; transform:translate(-50%,15px);} }

/* =========================================================
   ANCHOR MARQUEE
   ========================================================= */
.anchors{ background:var(--ink); padding:0 0 clamp(40px,5vw,64px); overflow:hidden; }
.marquee{ position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track{ display:flex; gap:56px; width:max-content; animation:scrollx 42s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-item{ font-family:var(--font-d); font-size:clamp(1rem,1.5vw,1.28rem); font-weight:300; letter-spacing:.02em; color:rgba(255,255,255,.42); white-space:nowrap; display:flex; align-items:center; gap:56px; }
.marquee-item::after{ content:""; width:5px; height:5px; border-radius:50%; background:var(--gold); opacity:.6; }
@keyframes scrollx{ to{ transform:translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section{ padding:var(--sec-y) 0; }
.sec-head{ max-width:60ch; margin-bottom:clamp(38px,5vw,64px); }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.sec-head h2{ margin-bottom:.5em; }
.sec-sub{ font-size:1.02rem; color:var(--muted); font-weight:300; max-width:56ch; }
.sec-head.center .sec-sub{ margin-inline:auto; }

/* =========================================================
   DIRECTORY
   ========================================================= */
.directory{ background:var(--paper); }

.dir-controls{ display:flex; flex-wrap:wrap; gap:16px; justify-content:space-between; align-items:center; margin-bottom:clamp(28px,4vw,44px); }

.search{ position:relative; display:flex; align-items:center; flex:1 1 300px; max-width:400px; }
.search svg{ position:absolute; left:16px; width:19px; height:19px; color:var(--muted-2); pointer-events:none; }
.search input{
  width:100%; padding:14px 42px 14px 46px; border-radius:999px;
  border:1px solid var(--line); background:var(--paper-2); color:var(--text);
  font-family:var(--font-b); font-size:.94rem; transition:border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.search input::placeholder{ color:var(--muted-2); }
.search input:focus{ outline:none; background:#fff; border-color:var(--magenta); box-shadow:0 0 0 4px rgba(190,18,114,.16); }
.search input::-webkit-search-cancel-button{ display:none; }
.clear{ position:absolute; right:14px; width:24px; height:24px; border:0; border-radius:50%; background:var(--paper-3); color:var(--muted); font-size:16px; line-height:1; cursor:pointer; }
.clear:hover{ background:var(--line); }

.filters{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  padding:10px 18px; border-radius:999px; cursor:pointer;
  border:1px solid var(--line); background:transparent; color:var(--muted);
  font-size:.85rem; font-weight:500;
  transition:color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .25s var(--ease);
}
.chip:hover{ color:var(--text); border-color:var(--muted-2); }
.chip.is-on{ color:#fff; background:var(--ink); border-color:var(--ink); }
.chip .cnt{ opacity:.55; font-weight:400; margin-left:.35em; font-variant-numeric:tabular-nums; }

.dir-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(210px,1fr)); gap:clamp(14px,1.6vw,22px); }

.tile{
  position:relative; display:flex; flex-direction:column; gap:14px;
  padding:26px 22px 22px; border-radius:var(--r);
  background:var(--paper-2); border:1px solid var(--line);
  overflow:hidden; isolation:isolate;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
  animation:tileIn .5s var(--ease) both;
}
@keyframes tileIn{ from{ opacity:0; transform:translateY(14px) scale(.98);} to{ opacity:1; transform:none; } }
.tile::before{
  content:""; position:absolute; inset:0; z-index:-1; opacity:0;
  background:var(--grad-soft); transition:opacity .45s var(--ease);
}
.tile:hover{ transform:translateY(-6px); border-color:transparent; background:#fff; box-shadow:0 22px 44px -22px rgba(43,34,51,.34); }
.tile:hover::before{ opacity:1; }

.tile-logo{ height:82px; display:flex; align-items:center; justify-content:center; }
.tile-logo img{ max-height:100%; max-width:82%; width:auto; object-fit:contain; filter:saturate(.96); transition:transform .5s var(--ease); }
.tile:hover .tile-logo img{ transform:scale(1.06); }

.tile-name{ font-family:var(--font-d); font-size:1.02rem; font-weight:500; letter-spacing:-.02em; line-height:1.25; }
.tile-cat{ font-size:.78rem; color:var(--muted); line-height:1.45; margin-top:-8px; }
.tile-kind{
  position:absolute; top:14px; right:14px;
  font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600;
  padding:5px 9px; border-radius:999px; color:var(--muted);
  background:rgba(255,255,255,.7); border:1px solid var(--line);
}
/* One rule for every section, present and future. --tint is emitted per
   section by build.py from mall.json, so adding a section in the admin needs no
   stylesheet edit. A tile whose section was deleted has no --tint and keeps the
   neutral badge above rather than rendering colourless. */
.tile[data-kind] .tile-kind{
  color:color-mix(in srgb, var(--tint,var(--muted)) 76%, #2B0F22);
  border-color:color-mix(in srgb, var(--tint,var(--line)) 42%, transparent);
  background:color-mix(in srgb, var(--tint,#fff) 14%, transparent);
}

.dir-empty{ text-align:center; color:var(--muted); padding:50px 0 0; }

/* =========================================================
   EXPERIENCE
   ========================================================= */
.experience{ background:var(--ink); color:#fff; position:relative; overflow:hidden; }
.experience::before{ content:""; position:absolute; inset:0; background:radial-gradient(70% 50% at 80% 0%, rgba(251,179,0,.12), transparent 62%); pointer-events:none; }
.experience .wrap{ position:relative; z-index:1; }
.experience h2{ color:#fff; }
.experience .sec-sub{ color:rgba(255,255,255,.62); }

.exp-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(16px,2vw,26px); }
.exp-card{
  position:relative; border-radius:24px; overflow:hidden;
  background:var(--ink-2); border:1px solid var(--line-lt);
  min-height:320px; display:flex; flex-direction:column; justify-content:flex-end;
  transition:transform .5s var(--ease), border-color .5s var(--ease);
}
.exp-card:hover{ transform:translateY(-6px); border-color:rgba(251,179,0,.42); }
.exp-lg{ grid-row:span 2; min-height:480px; }

.exp-art{ position:absolute; inset:0; overflow:hidden; }
.exp-art::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(26,18,32,.94) 8%, rgba(26,18,32,.35) 62%, transparent); }
.exp-art[data-art="cinema"]{ background:linear-gradient(150deg,#3B2352,#0A1420 70%); }
.exp-art[data-art="bowling"]{ background:linear-gradient(150deg,#5A3690,#0A1420 70%); }
.exp-art[data-art="mambo"]{ background:linear-gradient(150deg,#7A2A5E,#0A1420 70%); }
.exp-glow{ position:absolute; width:70%; aspect-ratio:1; border-radius:50%; filter:blur(58px); left:12%; top:6%; opacity:.55;
  background:radial-gradient(circle, var(--gold), transparent 66%); transition:transform .8s var(--ease), opacity .8s var(--ease); }
.exp-card:nth-child(1) .exp-glow{ background:radial-gradient(circle,#5A3690,transparent 66%); }
.exp-card:nth-child(3) .exp-glow{ background:radial-gradient(circle,#FBB300,transparent 66%); }
.exp-card:hover .exp-glow{ transform:scale(1.18) translateY(-6%); opacity:.75; }

.exp-body{ position:relative; z-index:2; padding:clamp(22px,2.4vw,34px); }
.exp-tag{ display:inline-block; font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; color:var(--gold); margin-bottom:.9em; }
.exp-card h3{ color:#fff; margin-bottom:.5em; font-size:clamp(1.3rem,2.1vw,1.85rem); }
.exp-card p{ color:rgba(255,255,255,.62); font-size:.92rem; font-weight:300; max-width:38ch; }

/* The rest of the entertainment line-up. Logo artwork is all that exists for
   these, so they read as a strip of marks rather than faked photo cards. */
.exp-more{ margin-top:clamp(28px,3.4vw,44px); }
.exp-more-h{ font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; font-weight:600; color:var(--gold); margin:0 0 1.4em; }
.exp-logos{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:clamp(12px,1.4vw,18px); }
.exp-logo{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:4px;
  padding:20px 16px 18px; border-radius:var(--r); text-decoration:none;
  background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.09);
  transition:transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.exp-logo:hover{ transform:translateY(-5px); border-color:rgba(251,179,0,.42); background:rgba(255,255,255,.07); }
.exp-logo .el-art{
  display:block; width:100%; height:96px; margin-bottom:13px;
  border-radius:12px; background:#fff; padding:11px;
}
/* Every mark is a different shape — a tall circle, a wide wordmark. Fixed box
   plus object-fit is the only thing that lands them all on one optical line. */
.exp-logo .el-art img{ width:100%; height:100%; object-fit:contain; display:block; }
.el-n{ font-family:var(--font-d); font-size:.98rem; font-weight:500; color:#fff; }
.el-c{ font-size:.76rem; font-weight:300; color:rgba(255,255,255,.55); }

@media (max-width:560px){
  .exp-logos{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .exp-logo{ padding:16px 10px 14px; }
  .exp-logo .el-art{ height:74px; }
}

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities{ background:var(--paper-2); }
.amen-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:clamp(14px,1.8vw,22px); }
.amen{
  background:#fff; border:1px solid var(--line); border-radius:var(--r);
  padding:30px 26px 32px; text-align:center;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.amen:hover{ transform:translateY(-5px); box-shadow:0 20px 40px -22px rgba(43,34,51,.3); }
.amen-ico{ width:46px; height:46px; margin:0 auto 18px; display:grid; place-items:center; border-radius:14px; background:var(--grad-soft); color:var(--ink); }
.amen-ico svg{ width:23px; height:23px; }
.amen h3{ font-size:1.02rem; font-weight:500; }

/* =========================================================
   VISIT
   ========================================================= */
.visit{ background:var(--ink); color:#fff; }
.visit-grid{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:clamp(34px,5vw,72px); align-items:center; }
.visit h2{ color:#fff; margin-bottom:.6em; }

.visit-status{
  display:inline-flex; align-items:center; gap:10px; margin-bottom:2em;
  padding:10px 18px; border-radius:999px; font-size:.86rem;
  border:1px solid var(--line-lt); background:rgba(255,255,255,.05); color:rgba(255,255,255,.86);
}
.visit-status .dot{ width:8px; height:8px; border-radius:50%; background:var(--muted-2); }
.visit-status.open .dot{ background:#22C55E; box-shadow:0 0 0 4px rgba(34,197,94,.2); }
.visit-status.closed .dot{ background:var(--alert); box-shadow:0 0 0 4px rgba(225,29,72,.22); }

.visit-list{ list-style:none; margin:0 0 2.2em; padding:0; border-top:1px solid var(--line-lt); }
.visit-list li{ display:grid; grid-template-columns:120px 1fr; gap:18px; padding:17px 0; border-bottom:1px solid var(--line-lt); }
.vl-k{ font-size:.66rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); padding-top:4px; }
.vl-v{ font-size:.94rem; line-height:1.55; color:rgba(255,255,255,.86); }
.vl-v a{ text-decoration:none; border-bottom:1px solid rgba(255,255,255,.25); transition:border-color .3s var(--ease); }
.vl-v a:hover{ border-color:var(--gold); }
.visit .btn{ background:#fff; color:var(--ink); border-color:#fff; }

.visit-map{ border-radius:24px; overflow:hidden; border:1px solid var(--line-lt); aspect-ratio:1/.86; }
.visit-map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.35) contrast(1.05) brightness(.92); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot{ background:var(--ink); color:rgba(255,255,255,.6); border-top:1px solid var(--line-lt); padding-top:clamp(44px,5vw,64px); }
.foot-in{
  display:grid;
  grid-template-columns:minmax(230px,1.45fr) repeat(3,minmax(140px,1fr));
  gap:clamp(30px,3.4vw,52px);
  align-items:start;
  padding-bottom:clamp(34px,4vw,50px);
}
.foot-brand .brand-text{ display:block; color:#fff; margin-bottom:.55em; }
.foot-brand p{ font-size:.86rem; max-width:34ch; font-weight:300; margin:0 0 1.5em; }

.foot-h{ font-family:var(--font-d); font-size:.68rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); font-weight:600; margin:0 0 1.15em; }
.foot-links{ list-style:none; margin:0; padding:0; }
.foot-links li{ font-size:.85rem; font-weight:300; line-height:1.55; padding:5px 0; }
.foot-links a{ color:rgba(255,255,255,.6); text-decoration:none; transition:color .3s var(--ease); }
.foot-links a:hover{ color:var(--gold); }
.foot-plain{ color:rgba(255,255,255,.48); }

.foot-social{ list-style:none; margin:0; padding:0; display:flex; gap:10px; }
.foot-social a{
  display:grid; place-items:center; width:38px; height:38px; border-radius:50%;
  color:rgba(255,255,255,.72); background:rgba(255,255,255,.04);
  /* Inset ring rather than a border: a border fading to transparent under the
     hover gradient leaves a seam on the circle's edge. */
  box-shadow:inset 0 0 0 1px var(--line-lt);
  transition:color .3s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.foot-social a:hover{ color:#fff; background:var(--grad); box-shadow:inset 0 0 0 1px transparent; transform:translateY(-3px); }
/* The glyphs are pre-centred in a shared 24x24 box, so one size fits all four. */
.foot-social svg{ width:22px; height:22px; display:block; }

.foot-bar{ display:flex; justify-content:center; text-align:center; border-top:1px solid var(--line-lt); padding-top:20px; padding-bottom:24px; font-size:.78rem; color:rgba(255,255,255,.4); }
.foot-bar p{ margin:0; max-width:62ch; }
.foot-bar a{ color:rgba(255,255,255,.6); text-decoration:none; border-bottom:1px solid rgba(255,255,255,.2); transition:color .3s var(--ease), border-color .3s var(--ease); }
.foot-bar a:hover{ color:var(--gold); border-color:var(--gold); }

/* =========================================================
   REVEAL
   ========================================================= */
.js .reveal, .js .rise{ opacity:0; transition:opacity .8s var(--ease) var(--d,0s), transform .8s var(--ease) var(--d,0s); }
.js .reveal{ transform:translateY(24px); }
.js .rise{ transform:translateY(30px); }
.js .reveal.in, .js .rise.in{ opacity:1; transform:none; }

@media (prefers-reduced-motion:reduce){
  .js .reveal, .js .rise{ opacity:1; transform:none; transition:none; }
  .orb, .marquee-track, .scroll-hint span{ animation:none !important; }
  .tile{ animation:none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1040px){
  .nav, .head-right .btn-sm, .head-social{ display:none; }
  .burger{ display:flex; }
  .mobile-nav.open{ display:flex; }
  .head.open{ background:var(--ink); }
  .head.open .brand{ color:#fff; }
  .head.open .burger span{ background:#fff; }
  .exp-grid{ grid-template-columns:1fr; }
  .exp-lg{ grid-row:auto; min-height:340px; }
}

@media (max-width:860px){
  body{ font-size:16px; }
  .foot-in{ grid-template-columns:repeat(2,minmax(0,1fr)); }
  .foot-brand{ grid-column:1 / -1; }
  .foot-brand p{ max-width:46ch; }
  .visit-grid{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:22px 18px; }
  .dir-controls{ flex-direction:column; align-items:stretch; }
  .search{ max-width:none; }
  .filters{ overflow-x:auto; padding-bottom:4px; -webkit-overflow-scrolling:touch; }
  .chip{ white-space:nowrap; }
}

@media (max-width:560px){
  .head-in{ gap:14px; }

  /* At this width the word "Search" costs more than the field it sits next
     to, and the magnifying glass already says what the form is. */
  .hs-go{ display:none; }
  .hero-search{ padding-right:16px; }

  .hero{ padding-top:120px; padding-bottom:70px; min-height:auto; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
  .scroll-hint{ display:none; }
  .dir-grid{ grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; }
  .tile{ padding:20px 16px 18px; }
  .tile-logo{ height:64px; }
  .visit-list li{ grid-template-columns:1fr; gap:5px; }
  .marquee-item, .marquee-track{ gap:34px; }
  .foot-in{ grid-template-columns:1fr; gap:30px; }
}

/* Short laptops — keep the hero composition on one screen. */
@media (min-width:861px) and (max-height:940px){
  .hero{ padding-top:112px; padding-bottom:64px; }
  .hero h1{ font-size:clamp(2.1rem,4.1vw,3.4rem); }
  .hero-lead{ font-size:.98rem; margin-bottom:1.5em; }
  .hero-cta{ margin-bottom:34px; }
  .hstat .n{ font-size:clamp(1.4rem,2.2vw,1.9rem); }
  .scroll-hint{ bottom:14px; }
}

/* Touch targets */
@media (max-width:1040px), (hover:none) and (pointer:coarse){
  .foot-links li{ padding:8px 0; }
  .vl-v a{ display:inline-block; padding:6px 0; }
  .mobile-nav a{ padding:17px 0; }
}

/* =========================================================
   LOGO (real Cascada mark)
   ========================================================= */
.brand{ gap:12px; }
/* Horizontal lockup: the stacked logo is unreadable at header height. */
.brand-logo{ height:46px; width:auto; display:block; transition:height .4s var(--ease); }
.head.stuck .brand-logo{ height:40px; }
.brand-logo.on-light{ display:none; }
.head.stuck .brand-logo.on-dark{ display:none; }
.head.stuck .brand-logo.on-light{ display:block; }
.head.open .brand-logo.on-dark{ display:block; }
.head.open .brand-logo.on-light{ display:none; }
.page-head-solid .brand-logo.on-dark{ display:none; }
.page-head-solid .brand-logo.on-light{ display:block; }
.foot-logo{ height:96px; width:auto; margin-bottom:20px; }

/* =========================================================
   NAV
   ========================================================= */
.nav{ align-items:center; }

/* =========================================================
   INNER PAGE HEADER
   ========================================================= */
.page-head-solid{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(16px) saturate(1.5);
  -webkit-backdrop-filter:blur(16px) saturate(1.5);
  border-bottom-color:var(--line);
}
.page-head-solid .brand{ color:var(--text); }
.page-head-solid .nav a{ color:var(--muted); }
.page-head-solid .nav a:hover{ color:var(--text); }
.page-head-solid .btn-sm{ background:transparent; color:var(--text); border-color:rgba(43,34,51,.28); }
.page-head-solid .btn-sm:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.page-head-solid .burger span{ background:var(--text); }

.page-hero{
  padding:calc(78px + clamp(44px,6vw,82px)) 0 clamp(38px,5vw,58px);
  background:var(--paper-2); border-bottom:1px solid var(--line);
  position:relative; overflow:hidden;
}
.page-hero::after{
  content:""; position:absolute; inset:auto -12% -80% 42%;
  aspect-ratio:1; border-radius:50%; filter:blur(80px); opacity:.16;
  background:var(--grad); pointer-events:none;
}
.page-hero .wrap{ position:relative; z-index:1; }
.page-hero h1{ font-size:clamp(2.1rem,4.6vw,3.6rem); margin-bottom:.35em; }
.page-hero p{ color:var(--muted); max-width:56ch; }
.crumbs{ font-size:.8rem; color:var(--muted); margin-bottom:1.1em; }
.crumbs a{ color:var(--magenta); text-decoration:none; }
.crumbs a:hover{ text-decoration:underline; }
.crumbs span{ opacity:.4; margin:0 .5em; }

/* =========================================================
   VENUE CARDS (with photography)
   ========================================================= */
/* The photo URLs themselves are emitted per venue into a <style> block in the
   page head (see build_index). They cannot live here: a relative url() inside a
   custom property resolves against THIS file, so index's img/venues/x.jpg came
   out as /css/img/venues/x.jpg and 404'd. */
.exp-art{ background-size:cover; background-position:center; transition:transform .9s var(--ease); }
.exp-card:hover .exp-art{ transform:scale(1.045); }

/* =========================================================
   STORE PAGE
   ========================================================= */
.store-wrap{ display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(28px,4vw,64px); align-items:start; }
.store-logo{
  background:var(--paper-2); border:1px solid var(--line); border-radius:24px;
  aspect-ratio:1/.82; --slh:clamp(140px,22vw,260px); display:grid; place-items:center; padding:clamp(30px,7%,52px); position:relative; overflow:hidden;
}
.store-logo::before{ content:""; position:absolute; inset:0; background:var(--grad-soft); opacity:.7; }
/* Fill the padded box and letterbox inside it. The old max-width/max-height
   percentages relied on the img's intrinsic ratio, which the hardcoded 500x500
   attributes were reporting wrongly, so tall logos overflowed and were clipped
   by the box's overflow:hidden. width/height 100% + contain cannot overflow. */
/* max-height is a concrete length, not 100%: a percentage does not reliably
   resolve against a grid parent sized by aspect-ratio, which is how a tall logo
   ended up 141px past the bottom of this box before. Same lesson as .cs-logo. */
.store-logo img{ position:relative; max-width:100%; max-height:var(--slh); width:auto; height:auto; object-fit:contain; }

.store-kind{
  display:inline-block; font-size:.64rem; letter-spacing:.16em; text-transform:uppercase;
  font-weight:700; padding:7px 14px; border-radius:999px; margin-bottom:1.2em;
  color:#fff; background:var(--grad);
}
.store-body h1{ font-size:clamp(1.9rem,3.6vw,2.9rem); margin-bottom:.28em; }
.store-cat{ font-size:1.05rem; color:var(--muted); margin-bottom:1.7em; }

.store-facts{ list-style:none; margin:0 0 2em; padding:0; border-top:1px solid var(--line); }
.store-facts li{ display:grid; grid-template-columns:132px 1fr; gap:18px; padding:16px 0; border-bottom:1px solid var(--line); }
.sf-k{ font-size:.66rem; letter-spacing:.15em; text-transform:uppercase; color:var(--magenta); font-weight:600; padding-top:3px; }
.sf-v{ font-size:.95rem; color:var(--text); }
.sf-v.tbc{ color:var(--muted-2); font-style:italic; }
.sf-v a{ color:var(--magenta); text-decoration:none; border-bottom:1px solid rgba(190,18,114,.35); }

/* The shop's own social links. Same glyph box as the header cluster, but on a
   light card -- so they read as outlined circles rather than bare marks, which
   would disappear next to the fact labels. */
/* Two phone numbers stacked inside one fact row -- a bare <ul> would inherit
   the page's bullet and indent and read as a nested list. */
.plain-list{ list-style:none; margin:0; padding:0; }
.plain-list li + li{ margin-top:3px; }

.sf-social{ display:flex; flex-wrap:wrap; gap:8px; list-style:none; margin:0; padding:0; }
.sf-social a{
  display:grid; place-items:center; width:34px; height:34px; border-radius:50%;
  color:var(--muted); border:0; background:var(--paper-2);
  box-shadow:inset 0 0 0 1px var(--line);
  transition:color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.sf-social a:hover{ color:#fff; background:var(--magenta); box-shadow:inset 0 0 0 1px var(--magenta); }
.sf-social svg{ width:16px; height:16px; display:block; }

.store-actions{ display:flex; flex-wrap:wrap; gap:12px; }
.more-stores{ background:var(--paper-2); border-top:1px solid var(--line); }

/* =========================================================
   BOOKING FORM
   ========================================================= */
.form-grid{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:clamp(32px,5vw,72px); align-items:start; }
.form-card{ background:#fff; border:1px solid var(--line); border-radius:24px; padding:clamp(26px,3.2vw,42px); box-shadow:0 30px 60px -40px rgba(43,34,51,.42); }
.f-row{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; font-weight:600; color:var(--muted); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:12px;
  border:1px solid var(--line); background:var(--paper-2); color:var(--text);
  font-family:var(--font-b); font-size:.95rem;
  transition:border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea{ resize:vertical; min-height:110px; }
.field select{ appearance:none; cursor:pointer; padding-right:36px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; background:#fff; border-color:var(--magenta); box-shadow:0 0 0 4px rgba(190,18,114,.12);
}
.field.err input, .field.err select, .field.err textarea{ border-color:var(--alert); }
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.form-note{ margin-top:14px; font-size:.88rem; min-height:1.3em; color:var(--alert); }
.form-note.ok{ color:#15803D; }
.form-card .btn{ width:100%; }

.book-points{ list-style:none; margin:2em 0 0; padding:0; }
.book-points li{ position:relative; padding:15px 0 15px 34px; border-bottom:1px solid var(--line); font-size:.95rem; color:var(--muted); }
.book-points li::before{ content:""; position:absolute; left:0; top:24px; width:18px; height:2px; border-radius:2px; background:var(--grad); }
.book-points strong{ color:var(--text); font-weight:500; }

/* =========================================================
   MAP — full-bleed with a floating card
   ========================================================= */
.locate{ position:relative; background:var(--paper-2); border-top:1px solid var(--line); isolation:isolate; }
.map-frame{ position:absolute; inset:0; overflow:hidden; }
.map-frame iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.28) contrast(1.03) saturate(.95); }
.map-overlay{
  position:relative; z-index:2; min-height:clamp(460px,54vw,620px);
  display:flex; align-items:center; pointer-events:none;
  padding-top:clamp(48px,6vw,76px); padding-bottom:clamp(48px,6vw,76px);
}
.map-card{
  pointer-events:auto; width:min(432px,100%);
  background:#fff; border:1px solid var(--line); border-radius:24px;
  padding:clamp(28px,3.2vw,42px);
  box-shadow:0 30px 70px -32px rgba(43,34,51,.5);
}
.map-card h2{ font-size:clamp(1.6rem,2.8vw,2.3rem); margin-bottom:.55em; }
.map-blurb{ font-size:.94rem; color:var(--muted); margin-bottom:1.3em; }
.map-meta{ font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; color:var(--magenta);
  padding:13px 0; margin-bottom:1.4em; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.map-card .btn{ width:100%; }

@media (max-width:860px){
  .map-overlay{ min-height:0; padding-top:0; padding-bottom:0; display:block; }
  .map-frame{ position:relative; inset:auto; height:clamp(280px,56vw,380px); }
  .map-card{ width:100%; position:relative; z-index:2; margin-top:-44px; margin-bottom:clamp(44px,7vw,64px); }
  .store-wrap{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
}
@media (max-width:560px){
  .f-row{ grid-template-columns:1fr; gap:0; }
  .store-facts li{ grid-template-columns:1fr; gap:5px; }
  .brand-logo{ height:36px; }
  .head.stuck .brand-logo{ height:32px; }
}

/* whole tile clickable, name still readable by screen readers */
.tile{ position:relative; }
.tile-link{ position:absolute; inset:0; z-index:3; border-radius:inherit; }
.tile-link:focus-visible{ outline:2px solid var(--magenta); outline-offset:2px; }
.nav a.is-active{ color:var(--magenta) !important; }
.nav a.is-active::after{ width:100%; }
/* over the dark hero the magenta is too dim - keep it white, let the underline mark it */
.head:not(.stuck):not(.page-head-solid) .nav a.is-active{ color:#fff !important; }

/* =========================================================
   VENUES PAGE
   ========================================================= */
.hero-cta{ margin-top:clamp(22px,3vw,32px); }

.venue-block{ border-bottom:1px solid var(--line); }
/* The second space sits on tinted ground so the two read as separate rooms
   rather than one long scroll of photographs. */
.venue-alt{ background:var(--paper-2); }
.venue-head{ max-width:64ch; }

.venue-feats{
  list-style:none; margin:1.6em 0 0; padding:0;
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 28px;
}
.venue-feats li{
  position:relative; padding-left:22px;
  font-size:.94rem; color:var(--muted); font-weight:300;
}
.venue-feats li::before{
  content:""; position:absolute; left:0; top:.62em;
  width:8px; height:8px; border-radius:50%; background:var(--grad);
}

.venue-grid{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(14px,1.6vw,22px);
}
.venue-shot{
  margin:0; border-radius:var(--r); overflow:hidden;
  background:var(--paper-3); border:1px solid var(--line);
  /* Fixed against the 9:5 sources, so the grid holds its shape before the
     photographs arrive and nothing jumps as they load. */
  aspect-ratio:9/5;
}
.venue-shot img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .8s var(--ease);
}
@media (hover:hover){
  .venue-shot:hover img{ transform:scale(1.045); }
}

.venue-cta{ border-bottom:0; }
.venue-cta-in{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:clamp(22px,3vw,44px);
  background:var(--ink); color:#fff;
  border-radius:26px; padding:clamp(30px,4vw,52px);
}
.venue-cta-in h2{ margin-bottom:.35em; }
.venue-cta-in p{ color:rgba(255,255,255,.72); font-weight:300; max-width:46ch; margin:0; }
.venue-cta-in .btn{ background:#fff; color:var(--ink); border-color:#fff; flex:none; }
.venue-cta-in .btn:hover{ background:transparent; color:#fff; border-color:rgba(255,255,255,.5); }

@media (max-width:860px){
  .venue-grid{ grid-template-columns:1fr; }
  .venue-feats{ grid-template-columns:1fr; }
  .venue-cta-in{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   MOBILE DEVICE FIXES
   ========================================================= */
@media (max-width:860px), (hover:none) and (pointer:coarse){
  /* iOS Safari zooms the whole page when a focused field is under 16px and
     never zooms back out. 16px on touch screens keeps that from happening. */
  .field input,
  .field select,
  .field textarea,
  .search input{ font-size:16px; }

  /* The uppercase micro-labels drop to 9.6-10.5px, which is below the
     comfortable reading floor on a phone. Lift them over 11px. */
  .tile-kind{ font-size:.7rem; }
  .exp-tag,
  .vl-k,
  .sf-k,
  .store-kind{ font-size:.72rem; }
}

/* =========================================================
   VISIT — full-bleed map with the detail floating over it
   ========================================================= */
.visit-full{
  position:relative;
  overflow:hidden;
  background:var(--ink);
  isolation:isolate;
}
.visit-full .map-frame{ position:absolute; inset:0; z-index:0; }
.visit-full .map-frame iframe{
  width:100%; height:100%; border:0; display:block;
  filter:grayscale(.45) contrast(1.05) brightness(.94) saturate(.9);
}
/* Fade the map away to the left so the detail sits on clean ground. The top
   and bottom edges are left alone — a vertical fade here reads as the whole
   map greying out while you scroll past it. */
.visit-full .map-frame::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(to right,
      var(--ink) 0%,
      var(--ink) 40%,
      rgba(26,18,32,.88) 54%,
      rgba(26,18,32,.42) 66%,
      transparent 80%);
}
.visit-overlay{ position:relative; z-index:2; pointer-events:none; }
.visit-overlay .visit-info{ pointer-events:auto; max-width:560px; }

/* Narrower desktops: the copy column takes a larger share of the width, so
   push the fade stops right to keep the text over solid ground. */
@media (min-width:901px) and (max-width:1200px){
  .visit-full .map-frame::after{
    background:
      linear-gradient(to right,
        var(--ink) 0%,
        var(--ink) 52%,
        rgba(26,18,32,.88) 66%,
        rgba(26,18,32,.42) 78%,
        transparent 90%);
  }
}

@media (max-width:900px){
  /* Stack, with the heading and detail first — the map markup comes first in
     the DOM for the desktop overlay, so reorder it visually here. */
  .visit-full{ display:flex; flex-direction:column; padding-bottom:0; }
  .visit-full .map-frame{
    order:2;
    position:relative; inset:auto;
    height:clamp(280px,52vw,380px);
    margin-top:clamp(34px,5vw,52px);
  }
  .visit-overlay{ order:1; }
  .visit-full .map-frame::after{
    background:linear-gradient(to bottom, var(--ink) 0%, rgba(26,18,32,0) 22%);
  }
  .visit-overlay .visit-info{ max-width:none; }
}

/* ===========================================================
   COMING SOON
   Announced but not yet trading. Deliberately not links: there
   is no store page to open, and a dead link reads as a bug.
   =========================================================== */
/* Bottom padding was zeroed when this block sat above the shop grid. It runs
   after it now, and on the directory page the next thing is the flush map
   section — which has no padding of its own, so the cards sat straight on
   top of it. Back to the standard section rhythm. */
.coming-soon{ --csh:clamp(76px,9vw,104px); }
.coming-soon .cs-grid{
  display:grid; gap:clamp(12px,1.6vw,20px); margin-top:clamp(22px,3vw,34px);
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
}
.cs-card{
  position:relative; display:grid; gap:6px; justify-items:center; text-align:center;
  background:var(--paper); border:1px solid var(--line); border-radius:20px;
  padding:22px 16px 18px; overflow:hidden;
}
/* A quiet ribbon rather than a badge on every card -- the section heading
   already says "coming soon", so this only has to hint. */
.cs-card::after{
  content:""; position:absolute; inset-inline:0; inset-block-start:0; height:3px;
  background:linear-gradient(90deg,var(--tint,var(--magenta)),transparent);
}
/* A fixed height, not an aspect-ratio box. A percentage height on the image
   does NOT resolve against a parent sized only by aspect-ratio -- it silently
   falls back to auto, and a tall logo then runs past the card edge. A concrete
   height always resolves, and every card stays the same height as a result. */
.cs-logo{ display:grid; place-items:center; width:100%; height:var(--csh); }
/* Not greyscaled: a light logo (Tala's beige, The Brand Deal's navy on white)
   disappears entirely under grayscale at low opacity. The ribbon and the
   section heading carry the "not open yet" meaning; the logo just has to be
   recognisable. */
/* Fill the box and letterbox inside it. max-width/max-height relies on the
   image's own ratio and lets a tall logo (Yalla Bites is 1116x1409) run past
   the card edge; width/height 100% with contain cannot overflow. Same fix as
   .store-logo img. */
/* max-height is the SAME concrete length as the box, not 100%: Chrome ignores a
   percentage max-height on a grid item here, so a tall logo kept its intrinsic
   173px inside a 104px box and spilled over the card. A length always applies. */
.cs-logo img{ max-width:100%; max-height:var(--csh); width:auto; height:auto; object-fit:contain; opacity:.88; transition:opacity .3s ease, transform .3s ease; }
.cs-card:hover .cs-logo img{ opacity:1; transform:scale(1.03); }
.cs-name{ font-weight:600; font-size:.95rem; color:var(--ink); }
.cs-cat{ font-size:.76rem; color:var(--muted); line-height:1.35; }
@media (max-width:520px){
  .coming-soon .cs-grid{ grid-template-columns:repeat(auto-fill,minmax(126px,1fr)); }
}
