:root{
  --ink:#123D3B;
  --ink-2:#1F6762;
  --aqua:#54D4CB;
  --aqua-soft:#E9FBF9;
  --sky:#72BDEB;
  --sky-soft:#EEF8FF;
  --coral:#FF704F;
  --coral-soft:#FFF0EA;
  --sun:#FFD35C;
  --sun-soft:#FFF7D8;
  --mint:#79D8AA;
  --mint-soft:#EEFFF5;
  --paper:#FFFFFF;
  --soft:#F6FAF9;
  --line:#E4ECEA;
  --text:#173432;
  --muted:#6F807D;
  --shadow:0 18px 48px rgba(18,61,59,.10);
  --sans:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:var(--text);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{color:inherit}
img{display:block;max-width:100%}
.demo-ribbon{
  min-height:30px;
  padding:6px 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  background:var(--ink);
  color:#fff;
  font-size:9px;
}
.demo-ribbon strong{
  padding:3px 6px;
  border-radius:999px;
  background:var(--coral);
  font-size:7px;
  letter-spacing:.14em;
}
.demo-ribbon span{opacity:.82}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:70px;
  padding:8px clamp(16px,4vw,58px);
  display:flex;
  align-items:center;
  gap:26px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(18,61,59,.07);
}
.brand{
  width:58px;
  min-width:58px;
  height:58px;
  display:flex;
  align-items:center;
}
.brand img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
}
.desktop-nav{
  margin-left:auto;
  display:flex;
  gap:23px;
  align-items:center;
  font-size:12px;
  font-weight:760;
}
.desktop-nav a{position:relative;padding:9px 0}
.desktop-nav a:after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:4px;height:2px;
  background:var(--coral);
  transition:.18s ease;
}
.desktop-nav a:hover:after{right:0}
.header-search{
  width:38px;height:38px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  font-size:19px;
  cursor:pointer;
}
.menu-button{
  display:none;
  width:40px;height:40px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
}
.menu-button span{
  display:block;
  width:16px;height:1.5px;
  margin:5px auto;
  background:var(--ink);
}
.hero{
  position:relative;
  min-height:565px;
  max-width:1600px;
  margin:0 auto;
  overflow:hidden;
  background:#75cfd3;
}
.hero-media,.hero-shade{
  position:absolute;
  inset:0;
}
.hero-media img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center 54%;
  animation:heroDrift 20s ease-in-out infinite alternate;
}
.hero-shade{
  background:
    linear-gradient(90deg,rgba(6,38,36,.62) 0%,rgba(6,38,36,.30) 42%,rgba(6,38,36,.03) 72%),
    linear-gradient(180deg,rgba(6,38,36,.01) 45%,rgba(6,38,36,.24) 100%);
}
.hero-copy{
  position:relative;
  z-index:2;
  width:min(680px,58%);
  padding:84px 0 78px clamp(22px,6vw,92px);
  color:#fff;
}
.hero-kicker{
  margin:0 0 13px;
  font-size:9px;
  letter-spacing:.22em;
  font-weight:900;
}
.hero-copy h1{
  margin:0;
  font-size:clamp(58px,6.5vw,96px);
  line-height:.9;
  letter-spacing:-.06em;
  font-weight:820;
}
.hero-copy>p:not(.hero-kicker){
  max-width:590px;
  margin:18px 0 0;
  font-size:16px;
  line-height:1.5;
  color:rgba(255,255,255,.9);
}
.search{
  margin-top:27px;
  max-width:650px;
  min-height:58px;
  padding:5px 5px 5px 14px;
  display:flex;
  align-items:center;
  gap:7px;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  box-shadow:0 16px 40px rgba(5,36,34,.18);
}
.search>span{
  color:var(--ink);
  font-size:23px;
}
.search input{
  flex:1;
  min-width:0;
  padding:11px 4px;
  border:0;
  outline:0;
  background:transparent;
  color:var(--text);
  font-size:16px;
}
.search button{
  width:48px;height:48px;
  border:0;border-radius:50%;
  background:var(--ink);
  color:#fff;
  font-size:19px;
  cursor:pointer;
}
.hero-credit{
  position:absolute;
  right:12px;bottom:9px;z-index:2;
  margin:0;
  color:rgba(255,255,255,.7);
  font-size:7px;
}
.live-strip{
  position:relative;
  z-index:5;
  max-width:1380px;
  margin:-28px auto 0;
  padding:0 clamp(14px,3vw,38px);
  display:grid;
  grid-template-columns:1.08fr repeat(6,1fr);
  overflow:hidden;
}
.live-title,
.live-item{
  min-height:112px;
  padding:17px 18px;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.live-title{
  border-left:1px solid var(--line);
  border-radius:18px 0 0 18px;
  display:flex;
  align-items:center;
  gap:10px;
}
.live-title strong,.live-title small{display:block}
.live-title strong{
  font-size:9px;
  letter-spacing:.16em;
  color:var(--ink);
}
.live-title small{
  margin-top:4px;
  font-size:8px;
  color:var(--muted);
}
.live-dot{
  width:9px;height:9px;
  border-radius:50%;
  background:var(--coral);
  animation:pulse 2s infinite;
}
.live-item{
  display:grid;
  align-content:center;
  border-left:1px solid var(--line);
  transition:.16s ease;
}
.live-item:last-child{
  border-right:1px solid var(--line);
  border-radius:0 18px 18px 0;
}
.live-item:hover{background:var(--soft)}
.live-item span{
  font-size:7px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:900;
  color:var(--muted);
}
.live-item strong{
  margin-top:7px;
  font-size:22px;
  color:var(--ink);
  letter-spacing:-.035em;
}
.live-item small{
  margin-top:3px;
  font-size:8px;
  color:var(--muted);
}
.section{
  max-width:1380px;
  margin:0 auto;
  padding:56px clamp(16px,3.2vw,42px);
}
.section-heading{
  margin-bottom:20px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
}
.eyebrow{
  margin:0 0 8px;
  font-size:8px;
  letter-spacing:.20em;
  font-weight:900;
  color:var(--ink);
}
.section-heading h2{
  margin:0;
  max-width:900px;
  color:var(--ink);
  font-size:clamp(35px,4vw,58px);
  line-height:.96;
  letter-spacing:-.05em;
  font-weight:800;
}
.section-heading>a{
  font-size:9px;
  font-weight:850;
  white-space:nowrap;
  color:var(--ink);
}
.happening-layout{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:12px;
}
.feature-story{
  position:relative;
  min-height:500px;
  overflow:hidden;
  border-radius:24px;
  background:#70cbd0;
  color:#fff;
}
.feature-story>img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.feature-story:hover>img{transform:scale(1.025)}
.feature-gradient{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(6,35,33,.01) 28%,rgba(6,35,33,.80) 100%);
}
.feature-copy{
  position:absolute;
  z-index:2;
  left:22px;right:22px;bottom:22px;
}
.feature-copy>span{
  display:inline-flex;
  padding:5px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
  color:var(--ink);
  font-size:7px;
  letter-spacing:.14em;
  font-weight:900;
}
.feature-copy h3{
  max-width:610px;
  margin:11px 0 8px;
  font-size:clamp(31px,3.1vw,46px);
  line-height:.98;
  letter-spacing:-.045em;
}
.feature-copy p{
  max-width:560px;
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:10px;
  line-height:1.55;
}
.feature-copy a{
  display:inline-block;
  margin-top:13px;
  font-size:9px;
  font-weight:850;
}
.happening-list{
  display:grid;
  gap:8px;
}
.happening-row{
  min-height:116px;
  padding:13px 14px;
  display:grid;
  grid-template-columns:66px 1fr auto;
  gap:12px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:17px;
  background:#fff;
  transition:.16s ease;
}
.happening-row:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}
.happening-row time{
  width:58px;height:58px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  border-radius:14px;
  background:var(--soft);
}
.happening-row time strong{
  font-size:15px;
  line-height:1;
  color:var(--ink);
}
.happening-row time span{
  margin-top:5px;
  font-size:6px;
  letter-spacing:.11em;
  font-weight:900;
  color:var(--muted);
}
.row-type{
  display:block;
  margin-bottom:4px;
  font-size:6px;
  letter-spacing:.15em;
  font-weight:900;
}
.row-type.weather{color:#B56B0C}
.row-type.show{color:#B14D38}
.row-type.place{color:#16796F}
.row-type.travel{color:#34779C}
.happening-row h3{
  margin:0;
  font-size:14px;
  line-height:1.08;
  color:var(--ink);
}
.happening-row p{
  margin:5px 0 0;
  font-size:8px;
  color:var(--muted);
}
.happening-row em{
  padding:5px 7px;
  border-radius:999px;
  background:#FFF0C7;
  color:#9B680F;
  font-size:6px;
  letter-spacing:.1em;
  font-style:normal;
  font-weight:900;
}
.happening-row em.ok{
  background:#DFF7EE;
  color:#16765D;
}
.filter-chips{
  margin:0 0 15px;
  display:flex;
  gap:8px;
  overflow-x:auto;
  scrollbar-width:none;
}
.filter-chips::-webkit-scrollbar{display:none}
.filter-chips button,.filter-chips a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  padding:0 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--ink);
  font-size:9px;
  font-weight:760;
  white-space:nowrap;
}
.filter-chips button.active,.filter-chips a.active{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.things-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:10px;
}
.visual-card{
  position:relative;
  min-height:385px;
  overflow:hidden;
  border-radius:22px;
  background:#72cfd3;
  color:#fff;
}
.visual-card.wide{min-height:455px}
.visual-card img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.visual-card:hover img{transform:scale(1.035)}
.visual-card:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(5,33,31,.00) 30%,rgba(5,33,31,.74) 100%);
}
.visual-card>div{
  position:absolute;
  z-index:2;
  left:19px;right:19px;bottom:18px;
}
.visual-card span{
  display:block;
  margin-bottom:6px;
  font-size:7px;
  letter-spacing:.18em;
  font-weight:900;
}
.visual-card strong{
  display:block;
  font-size:27px;
  line-height:1;
  letter-spacing:-.04em;
}
.visual-card small{
  display:block;
  margin-top:5px;
  font-size:8px;
  opacity:.82;
}
.colour-band{
  max-width:1310px;
  min-height:170px;
  margin:8px auto 20px;
  padding:30px clamp(24px,5vw,60px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  border-radius:26px;
  background:
    radial-gradient(circle at 85% 20%,rgba(255,211,92,.65),transparent 10rem),
    linear-gradient(115deg,#35BDB2,#62D8D0 54%,#A3E7D9);
  color:#083F3B;
}
.colour-band p{
  margin:0 0 8px;
  font-size:7px;
  letter-spacing:.17em;
  font-weight:900;
}
.colour-band strong{
  display:block;
  max-width:690px;
  font-size:clamp(26px,3vw,42px);
  line-height:1;
  letter-spacing:-.04em;
}
.colour-band>a{
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  font-size:9px;
  font-weight:850;
  white-space:nowrap;
}
.area-scroll{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding-bottom:3px;
}
.area-scroll::-webkit-scrollbar{display:none}
.area-card{
  min-width:300px;
  max-width:340px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  scroll-snap-align:start;
  transition:.18s ease;
}
.area-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.area-card img{
  width:100%;
  height:245px;
  object-fit:cover;
}
.area-card>div{padding:15px}
.area-card strong{
  font-size:18px;
  color:var(--ink);
}
.area-card p{
  margin:6px 0 0;
  font-size:9px;
  line-height:1.45;
  color:var(--muted);
}
.essentials{
  padding-top:35px;
}
.essential-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8px;
}
.essential-grid a{
  min-height:105px;
  padding:15px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:10px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  transition:.16s ease;
}
.essential-grid a:hover{
  transform:translateY(-2px);
  background:var(--soft);
}
.essential-grid a>span{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--aqua-soft);
  color:var(--ink);
  font-size:20px;
}
.essential-grid strong,.essential-grid small{display:block}
.essential-grid strong{
  font-size:10px;
  color:var(--ink);
}
.essential-grid small{
  margin-top:4px;
  font-size:7px;
  line-height:1.35;
  color:var(--muted);
}
.essential-grid b{
  font-size:13px;
  color:var(--ink);
}
.guide{
  padding-top:42px;
}
.guide-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
}
.guide-card{
  min-height:175px;
  padding:20px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:18px;
  background:
    radial-gradient(circle at 90% 10%,rgba(84,212,203,.12),transparent 7rem),
    #fff;
  transition:.16s ease;
}
.guide-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.guide-card>span{
  font-size:11px;
  color:var(--coral);
  font-weight:850;
}
.guide-card strong{
  margin-top:auto;
  font-size:20px;
  line-height:1.03;
  letter-spacing:-.035em;
  color:var(--ink);
}
.guide-card p{
  margin:8px 0 0;
  font-size:9px;
  line-height:1.5;
  color:var(--muted);
}
.site-footer{
  margin-top:40px;
  padding:42px clamp(18px,4vw,56px) 30px;
  display:grid;
  grid-template-columns:minmax(320px,.9fr) minmax(480px,1.1fr);
  gap:44px;
  align-items:start;
  background:#F5FAF9;
  border-top:1px solid var(--line);
}
.site-footer .footer-brand{display:grid;grid-template-columns:88px minmax(0,1fr);gap:18px;align-items:start}
.site-footer .footer-brand img{
  width:88px;
  height:auto;
  object-fit:contain;
  object-position:top center;
}
.site-footer .footer-brand strong{display:block;color:var(--ink);font-size:16px;line-height:1.3}
.site-footer .footer-brand p{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
}
.site-footer .footer-brand small{display:block;margin-top:9px;color:#7d8e8a;font-size:11px}
.footer-groups{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.site-footer nav{
  display:grid;
  align-content:start;
  gap:9px;
  font-size:12px;
}
.site-footer nav strong{color:var(--ink);font-size:11px;letter-spacing:.08em;text-transform:uppercase}
.site-footer nav a{color:var(--muted)}
.site-footer nav a:hover{color:var(--ink)}
.credit{
  grid-column:1/-1;
  margin:0;
  padding-top:14px;
  border-top:1px solid var(--line);
  font-size:7px;
  color:#82918E;
}
.mobile-dock{display:none}
@media(max-width:900px){.site-footer{grid-template-columns:1fr;gap:28px}.footer-groups{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:600px){.site-footer{padding:30px 18px 96px}.site-footer .footer-brand{grid-template-columns:68px minmax(0,1fr);gap:14px}.site-footer .footer-brand img{width:68px}.footer-groups{grid-template-columns:1fr 1fr;gap:24px 18px}.site-footer nav:last-child{grid-column:1/-1}}
.toast{
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:80;
  transform:translate(-50%,12px);
  padding:11px 15px;
  border-radius:999px;
  background:var(--ink);
  color:#fff;
  font-size:10px;
  opacity:0;
  pointer-events:none;
  transition:.18s;
}
.toast.show{opacity:1;transform:translate(-50%,0)}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@keyframes heroDrift{
  0%{transform:scale(1.01) translate3d(0,0,0)}
  100%{transform:scale(1.045) translate3d(-.4%,.2%,0)}
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,112,79,.28)}
  70%{box-shadow:0 0 0 9px rgba(255,112,79,0)}
  100%{box-shadow:0 0 0 0 rgba(255,112,79,0)}
}
@media(max-width:1120px){
  .desktop-nav{display:none}
  .menu-button{display:block}
  .desktop-nav.open{
    display:flex;
    position:absolute;
    right:14px;
    top:62px;
    min-width:220px;
    flex-direction:column;
    gap:1px;
    padding:11px;
    border:1px solid var(--line);
    border-radius:14px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .desktop-nav.open a{padding:10px 8px}
  .live-strip{grid-template-columns:1.15fr repeat(3,1fr)}
  .live-title{grid-row:1/3}
  .live-item:nth-child(2),.live-item:nth-child(3),.live-item:nth-child(4){border-bottom:0}
  .live-item:last-child{border-radius:0 0 18px 0}
  .things-grid{grid-template-columns:1.25fr 1fr}
  .visual-card:last-child{grid-column:1/3;min-height:310px}
  .essential-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  body{padding-bottom:70px}
  .demo-ribbon{
    justify-content:flex-start;
    white-space:nowrap;
    overflow:hidden;
  }
  .demo-ribbon span{
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .site-header{
    height:60px;
    padding:6px 11px;
  }
  .brand{
    width:150px;
    min-width:150px;
    height:42px;
  }
  .header-search{margin-left:auto}
  .hero{min-height:475px}
  .hero-media img{object-position:58% center}
  .hero-shade{
    background:linear-gradient(180deg,rgba(6,38,36,.10) 8%,rgba(6,38,36,.18) 35%,rgba(6,38,36,.62) 100%);
  }
  .hero-copy{
    width:100%;
    padding:55px 14px 42px;
  }
  .hero-copy h1{
    font-size:50px;
    line-height:.92;
  }
  .hero-copy>p:not(.hero-kicker){
    max-width:90%;
    font-size:12px;
  }
  .search{
    min-height:52px;
    margin-top:20px;
    border-radius:15px;
  }
  .search input{font-size:16px}
  .search button{
    width:42px;height:42px;
  }
  .hero-credit{display:none}
  .live-strip{
    margin:-18px 0 0;
    padding:0 10px;
    display:flex;
    overflow-x:auto;
    gap:7px;
    scroll-snap-type:x mandatory;
  }
  .live-title,
  .live-item,
  .live-item:last-child{
    min-width:46%;
    min-height:104px;
    border:1px solid var(--line);
    border-radius:15px;
    scroll-snap-align:start;
  }
  .live-title{
    min-width:52%;
  }
  .section{
    padding:38px 11px;
  }
  .section-heading{
    align-items:flex-start;
    margin-bottom:15px;
  }
  .section-heading h2{
    font-size:34px;
  }
  .section-heading>a{display:none}
  .happening-layout{
    grid-template-columns:1fr;
  }
  .feature-story{
    min-height:390px;
  }
  .feature-copy h3{
    font-size:29px;
  }
  .happening-list{
    display:flex;
    overflow-x:auto;
    gap:7px;
    scroll-snap-type:x mandatory;
  }
  .happening-row{
    min-width:85%;
    min-height:104px;
    scroll-snap-align:start;
  }
  .things-grid{
    display:flex;
    overflow-x:auto;
    gap:8px;
    scroll-snap-type:x mandatory;
  }
  .visual-card,
  .visual-card.wide,
  .visual-card:last-child{
    min-width:82%;
    min-height:350px;
    grid-column:auto;
    scroll-snap-align:start;
  }
  .colour-band{
    min-height:190px;
    margin:4px 11px 12px;
    padding:24px 18px;
    flex-direction:column;
    align-items:flex-start;
    border-radius:20px;
  }
  .colour-band strong{font-size:31px}
  .area-card{
    min-width:78%;
  }
  .area-card img{
    height:220px;
  }
  .essential-grid{
    display:flex;
    overflow-x:auto;
    gap:7px;
    scroll-snap-type:x mandatory;
  }
  .essential-grid a{
    min-width:74%;
    min-height:92px;
    scroll-snap-align:start;
  }
  .guide-grid{
    display:flex;
    overflow-x:auto;
    gap:8px;
    scroll-snap-type:x mandatory;
  }
  .guide-card{
    min-width:78%;
    min-height:165px;
    scroll-snap-align:start;
  }
  .site-footer{
    grid-template-columns:1fr;
    padding:26px 15px;
  }
  .site-footer nav{gap:13px}
  .mobile-dock{
    position:fixed;
    left:8px;right:8px;bottom:7px;
    z-index:70;
    height:58px;
    padding:4px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:center;
    background:rgba(255,255,255,.97);
    border:1px solid rgba(18,61,59,.11);
    border-radius:18px;
    box-shadow:0 12px 32px rgba(18,61,59,.15);
    backdrop-filter:blur(14px);
  }
  .mobile-dock a,.mobile-dock button{
    height:48px;
    padding:0;
    border:0;
    background:transparent;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:var(--muted);
    font-size:8px;
    font-weight:760;
  }
  .mobile-dock span{
    color:var(--ink);
    font-size:17px;
  }
  .dock-search{
    border-radius:13px!important;
    background:var(--ink)!important;
    color:#fff!important;
  }
  .dock-search span{color:#fff}
  .toast{bottom:76px}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
}

/* V2.6 - visual energy pass: brighter, fresher, more island movement */
body{
  background:
    radial-gradient(circle at 12% 4%,rgba(84,212,203,.08),transparent 24rem),
    radial-gradient(circle at 90% 16%,rgba(255,211,92,.07),transparent 22rem),
    #fff;
}

.hero{
  isolation:isolate;
}

.hero::before{
  content:"";
  position:absolute;
  z-index:1;
  width:360px;
  height:360px;
  right:-80px;
  top:-120px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,211,92,.42) 0%,rgba(255,211,92,.10) 42%,transparent 70%);
  mix-blend-mode:screen;
  animation:islandGlow 8s ease-in-out infinite alternate;
  pointer-events:none;
}

.hero::after{
  content:"";
  position:absolute;
  z-index:1;
  left:-8%;
  right:-8%;
  bottom:-86px;
  height:150px;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  background:rgba(84,212,203,.22);
  filter:blur(3px);
  transform:rotate(-1deg);
  pointer-events:none;
}

.hero-media img{
  filter:saturate(1.18) brightness(1.06) contrast(1.035);
}

.hero-shade{
  z-index:1;
  background:
    linear-gradient(90deg,rgba(5,43,40,.56) 0%,rgba(5,43,40,.24) 43%,rgba(5,43,40,.00) 74%),
    linear-gradient(180deg,rgba(5,43,40,.00) 40%,rgba(5,43,40,.24) 100%);
}

.hero-copy,
.hero-credit{
  z-index:3;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 9px;
  border:1px solid rgba(255,255,255,.30);
  border-radius:999px;
  background:rgba(255,255,255,.13);
  backdrop-filter:blur(8px);
}

.hero-kicker::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--sun);
  box-shadow:0 0 0 6px rgba(255,211,92,.14);
}

.search{
  border:1px solid rgba(255,255,255,.78);
  box-shadow:0 18px 42px rgba(5,36,34,.22);
}

.search button{
  background:linear-gradient(135deg,var(--coral),#FF8A56);
  box-shadow:0 7px 18px rgba(255,112,79,.26);
}

.search button:hover{
  background:linear-gradient(135deg,#F45F42,#FF8A56);
}

.live-strip{
  filter:drop-shadow(0 16px 24px rgba(18,61,59,.08));
}

.live-title{
  background:linear-gradient(145deg,#123D3B,#1D5F5B);
}

.live-title strong,
.live-title small{
  color:#fff;
}

.live-title small{
  opacity:.72;
}

.live-dot{
  background:var(--sun);
}

.live-item{
  position:relative;
  overflow:hidden;
}

.live-item::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
}

.live-item:nth-child(2){
  background:linear-gradient(180deg,#FFF9E7,#fff 72%);
}
.live-item:nth-child(2)::before{background:var(--sun)}

.live-item:nth-child(3){
  background:linear-gradient(180deg,#EDFFF6,#fff 72%);
}
.live-item:nth-child(3)::before{background:var(--mint)}

.live-item:nth-child(4){
  background:linear-gradient(180deg,#EAFBFF,#fff 72%);
}
.live-item:nth-child(4)::before{background:var(--aqua)}

.live-item:nth-child(5){
  background:linear-gradient(180deg,#FFF0EA,#fff 72%);
}
.live-item:nth-child(5)::before{background:var(--coral)}

.live-item:nth-child(6){
  background:linear-gradient(180deg,#FFF8DE,#fff 72%);
}
.live-item:nth-child(6)::before{background:var(--sun)}

.live-item:nth-child(7){
  background:linear-gradient(180deg,#F4F0FF,#fff 72%);
}
.live-item:nth-child(7)::before{background:#8B78C9}

.happening{
  margin-top:34px;
  border-radius:28px;
  background:
    radial-gradient(circle at 96% 6%,rgba(84,212,203,.13),transparent 17rem),
    linear-gradient(180deg,#F7FFFE,#fff 45%);
}

.things{
  position:relative;
}

.things::before{
  content:"";
  position:absolute;
  width:110px;
  height:110px;
  right:1.5%;
  top:15px;
  border-radius:50%;
  background:rgba(255,211,92,.16);
  pointer-events:none;
}

.eyebrow{
  color:#167A73;
}

.section-heading h2{
  position:relative;
  width:fit-content;
}

.section-heading h2::after{
  content:"";
  display:block;
  width:52px;
  height:5px;
  margin-top:12px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--coral),var(--sun));
}

.feature-story,
.visual-card,
.area-card{
  box-shadow:0 12px 32px rgba(18,61,59,.08);
}

.feature-story>img,
.visual-card img,
.area-card img{
  filter:saturate(1.14) brightness(1.04);
}

.happening-row:nth-child(1){background:linear-gradient(100deg,#FFF9E7,#fff 44%)}
.happening-row:nth-child(2){background:linear-gradient(100deg,#FFF0EA,#fff 44%)}
.happening-row:nth-child(3){background:linear-gradient(100deg,#EDFFF6,#fff 44%)}
.happening-row:nth-child(4){background:linear-gradient(100deg,#EEF8FF,#fff 44%)}

.filter-chips button,.filter-chips a{
  transition:transform .16s ease,background .16s ease,border-color .16s ease;
}

.filter-chips button:hover,.filter-chips a:hover{
  transform:translateY(-2px);
  border-color:rgba(18,61,59,.22);
}

.filter-chips button.active,.filter-chips a.active{
  background:linear-gradient(135deg,#123D3B,#236F69);
  box-shadow:0 6px 15px rgba(18,61,59,.14);
}

.colour-band{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 86% 16%,rgba(255,224,109,.95),transparent 9rem),
    radial-gradient(circle at 15% 130%,rgba(255,112,79,.42),transparent 15rem),
    linear-gradient(115deg,#33C8BC,#72E1D7 54%,#B7F0DE);
  box-shadow:0 18px 44px rgba(47,188,177,.18);
}

.colour-band::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  right:-40px;
  bottom:-95px;
  border:18px solid rgba(255,255,255,.26);
  border-radius:50%;
  animation:bandFloat 7s ease-in-out infinite alternate;
}

.colour-band>div,
.colour-band>a{
  position:relative;
  z-index:2;
}

.areas{
  border-radius:28px;
  background:
    radial-gradient(circle at 6% 7%,rgba(255,112,79,.08),transparent 14rem),
    linear-gradient(180deg,#FFFBF7,#fff 50%);
}

.area-card{
  border-color:rgba(18,61,59,.08);
}

.essential-grid a:nth-child(1){background:linear-gradient(145deg,#FFF0EA,#fff)}
.essential-grid a:nth-child(2){background:linear-gradient(145deg,#EAFBFF,#fff)}
.essential-grid a:nth-child(3){background:linear-gradient(145deg,#EDFFF6,#fff)}
.essential-grid a:nth-child(4){background:linear-gradient(145deg,#EEF8FF,#fff)}
.essential-grid a:nth-child(5){background:linear-gradient(145deg,#FFF7D8,#fff)}

.essential-grid a>span{
  background:rgba(255,255,255,.82);
  box-shadow:inset 0 0 0 1px rgba(18,61,59,.07);
}

.guide{
  border-radius:28px;
  background:
    radial-gradient(circle at 92% 8%,rgba(114,189,235,.10),transparent 18rem),
    linear-gradient(180deg,#FAFCFF,#fff 50%);
}

.guide-card:nth-child(1){
  background:linear-gradient(145deg,#EAFBFF,#fff 70%);
}
.guide-card:nth-child(2){
  background:linear-gradient(145deg,#FFF7D8,#fff 70%);
}
.guide-card:nth-child(3){
  background:linear-gradient(145deg,#FFF0EA,#fff 70%);
}

.energy-target{
  transition:opacity .56s ease,transform .56s cubic-bezier(.2,.7,.2,1);
}
.motion-ready .energy-target{
  opacity:.01;
  transform:translateY(15px);
}
.motion-ready .energy-target.in-view{
  opacity:1;
  transform:none;
}

@keyframes islandGlow{
  from{transform:translate3d(0,0,0) scale(.94);opacity:.72}
  to{transform:translate3d(-20px,22px,0) scale(1.08);opacity:1}
}

@keyframes bandFloat{
  from{transform:translate3d(0,0,0) rotate(-8deg)}
  to{transform:translate3d(-16px,-8px,0) rotate(8deg)}
}

@media(max-width:760px){
  .hero::before{
    width:230px;
    height:230px;
    right:-80px;
    top:-70px;
  }

  .hero::after{
    bottom:-100px;
    height:140px;
  }

  .hero-media img{
    filter:saturate(1.20) brightness(1.07) contrast(1.02);
  }

  .happening,
  .areas,
  .guide{
    margin-left:7px;
    margin-right:7px;
    border-radius:22px;
  }

  .section-heading h2::after{
    width:42px;
    height:4px;
    margin-top:10px;
  }

  .live-strip{
    filter:none;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero::before,
  .colour-band::after{
    animation:none!important;
  }

  .motion-ready .energy-target{
    opacity:1!important;
    transform:none!important;
  }
}


/* V2.7 - mobile energy, discovery rails, heritage and food */
.energy-ticker{
  position:relative;
  overflow:hidden;
  margin:20px 0 0;
  padding:11px 0;
  border-top:1px solid rgba(18,61,59,.08);
  border-bottom:1px solid rgba(18,61,59,.08);
  background:linear-gradient(90deg,#FFF8D9,#F1FFFB 52%,#FFF0EA);
}

.ticker-track{
  width:max-content;
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
  animation:tickerMove 30s linear infinite;
}

.ticker-track span{
  font-size:7px;
  letter-spacing:.16em;
  font-weight:900;
  color:#51706C;
}

.ticker-track b{
  font-size:9px;
  color:var(--ink);
}

.ticker-track i{
  color:var(--coral);
  font-style:normal;
}

.must-section{
  position:relative;
  padding-top:34px;
}

.must-section::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:58%;
  z-index:-1;
  border-radius:28px;
  background:
    radial-gradient(circle at 88% 6%,rgba(255,211,92,.18),transparent 15rem),
    linear-gradient(180deg,#FFFDF5,transparent);
}

.must-rail{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:10px;
}

.must-card{
  position:relative;
  min-height:390px;
  overflow:hidden;
  border-radius:23px;
  color:#fff;
  background:#69CBD0;
  box-shadow:0 12px 30px rgba(18,61,59,.08);
  transition:transform .28s cubic-bezier(.2,.7,.2,1),box-shadow .28s ease,opacity .28s ease;
}

.must-card:nth-child(1){
  min-height:450px;
}

.must-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.16) brightness(1.04);
  transition:transform .5s ease;
}

.must-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(5,35,33,.02) 25%,rgba(5,35,33,.76) 100%);
}

.must-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(18,61,59,.13);
}

.must-card:hover img{
  transform:scale(1.035);
}

.must-no{
  position:absolute;
  z-index:3;
  top:14px;
  right:16px;
  font-size:42px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.06em;
  color:rgba(255,255,255,.78);
}

.must-card>div{
  position:absolute;
  z-index:3;
  left:17px;
  right:17px;
  bottom:16px;
}

.must-card strong{
  display:block;
  font-size:22px;
  line-height:1.02;
  letter-spacing:-.035em;
}

.must-card small{
  display:block;
  margin-top:6px;
  font-size:8px;
  opacity:.82;
}

.food-section{
  position:relative;
  border-radius:28px;
  background:
    radial-gradient(circle at 90% 12%,rgba(255,112,79,.12),transparent 16rem),
    radial-gradient(circle at 8% 92%,rgba(255,211,92,.11),transparent 14rem),
    linear-gradient(180deg,#FFF9F5,#fff 52%);
}

.food-layout{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:10px;
}

.food-feature{
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:23px;
  color:#fff;
  background:#E08258;
  box-shadow:0 14px 34px rgba(110,67,43,.10);
}

.food-feature>img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.18) brightness(1.03);
  transition:transform .55s ease;
}

.food-feature:hover>img{
  transform:scale(1.035);
}

.food-feature::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(50,20,8,.02) 26%,rgba(50,20,8,.78) 100%);
}

.food-copy{
  position:absolute;
  z-index:2;
  left:21px;
  right:21px;
  bottom:20px;
}

.food-copy span{
  display:inline-flex;
  padding:5px 7px;
  border-radius:999px;
  background:rgba(255,255,255,.90);
  color:#9B4A34;
  font-size:7px;
  letter-spacing:.15em;
  font-weight:900;
}

.food-copy strong{
  display:block;
  max-width:600px;
  margin-top:11px;
  font-size:34px;
  line-height:.98;
  letter-spacing:-.045em;
}

.food-copy p{
  max-width:580px;
  margin:9px 0 0;
  font-size:9px;
  line-height:1.5;
  color:rgba(255,255,255,.84);
}

.food-picks{
  display:grid;
  gap:9px;
}

.food-pick{
  min-height:145px;
  padding:17px;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:13px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:18px;
  transition:.18s ease;
}

.food-pick:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

.food-pick.coral{background:linear-gradient(135deg,#FFF0EA,#fff)}
.food-pick.aqua{background:linear-gradient(135deg,#EAFBFF,#fff)}
.food-pick.yellow{background:linear-gradient(135deg,#FFF7D8,#fff)}

.food-symbol{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:rgba(255,255,255,.86);
  font-size:22px;
  color:var(--ink);
}

.food-pick span{
  display:block;
  font-size:6px;
  letter-spacing:.15em;
  font-weight:900;
  color:var(--coral);
}

.food-pick strong{
  display:block;
  margin-top:5px;
  font-size:18px;
  color:var(--ink);
}

.food-pick small{
  display:block;
  margin-top:5px;
  font-size:8px;
  color:var(--muted);
}

.heritage-section{
  max-width:1600px;
  margin:42px auto 18px;
  padding:58px max(20px,calc((100vw - 1380px)/2 + 42px)) 62px;
  overflow:hidden;
  background:
    radial-gradient(circle at 86% 12%,rgba(255,211,92,.16),transparent 18rem),
    linear-gradient(135deg,#0F3E3B,#185B56 58%,#216B65);
  color:#fff;
}

.heritage-intro{
  max-width:780px;
  margin-bottom:23px;
}

.heritage-intro .eyebrow{
  color:#8EE1D7;
}

.heritage-intro h2{
  margin:0;
  font-size:clamp(40px,5vw,70px);
  line-height:.94;
  letter-spacing:-.055em;
}

.heritage-intro>p:last-child{
  max-width:650px;
  margin:14px 0 0;
  font-size:11px;
  line-height:1.55;
  color:rgba(255,255,255,.72);
}

.heritage-rail{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  padding-bottom:4px;
}

.heritage-rail::-webkit-scrollbar{
  display:none;
}

.heritage-card{
  position:relative;
  min-width:360px;
  min-height:460px;
  overflow:hidden;
  border-radius:23px;
  scroll-snap-align:start;
  color:#fff;
  background:#2A6E66;
  box-shadow:0 16px 32px rgba(0,0,0,.15);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),opacity .3s ease;
}

.heritage-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.08) brightness(.98);
  transition:transform .5s ease;
}

.heritage-card:hover img{
  transform:scale(1.035);
}

.heritage-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(6,28,26,.03) 24%,rgba(6,28,26,.86) 100%);
}

.heritage-card>div{
  position:absolute;
  z-index:2;
  left:18px;
  right:18px;
  bottom:18px;
}

.heritage-card span{
  display:block;
  font-size:7px;
  letter-spacing:.18em;
  font-weight:900;
  color:#BDF4ED;
}

.heritage-card strong{
  display:block;
  margin-top:7px;
  font-size:26px;
  line-height:1;
  letter-spacing:-.04em;
}

.heritage-card small{
  display:block;
  margin-top:6px;
  max-width:310px;
  font-size:11px;
  line-height:1.45;
  color:rgba(255,255,255,.78);
}

/* Product copy must stay readable across editorial cards. */
.visual-card small,
.must-card small,
.food-pick small{
  font-size:11px;
  line-height:1.4;
}

@keyframes tickerMove{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media(max-width:1050px){
  .must-rail{
    grid-template-columns:repeat(2,1fr);
  }

  .must-card,
  .must-card:nth-child(1){
    min-height:380px;
  }

  .food-layout{
    grid-template-columns:1fr;
  }

  .food-picks{
    grid-template-columns:repeat(3,1fr);
  }

  .food-pick{
    min-height:135px;
  }
}

@media(max-width:760px){
  .energy-ticker{
    margin-top:16px;
    padding:10px 0;
  }

  .ticker-track{
    animation-duration:24s;
  }

  .must-section{
    padding-top:30px;
  }

  .must-rail{
    display:flex;
    overflow-x:auto;
    gap:10px;
    margin-left:-11px;
    margin-right:-11px;
    padding:0 11px 6px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .must-rail::-webkit-scrollbar{display:none}

  .must-card,
  .must-card:nth-child(1){
    min-width:82%;
    min-height:410px;
    scroll-snap-align:center;
    scroll-snap-stop:always;
    transform:scale(.965);
    opacity:.82;
  }

  .must-card.is-active{
    transform:scale(1);
    opacity:1;
  }

  .must-no{
    font-size:38px;
  }

  .food-section{
    margin-left:7px;
    margin-right:7px;
    border-radius:22px;
  }

  .food-feature{
    min-height:380px;
  }

  .food-copy strong{
    font-size:28px;
  }

  .food-picks{
    display:flex;
    overflow-x:auto;
    gap:8px;
    margin-left:-11px;
    margin-right:-11px;
    padding:0 11px 5px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }

  .food-picks::-webkit-scrollbar{display:none}

  .food-pick{
    min-width:76%;
    min-height:125px;
    scroll-snap-align:center;
  }

  .heritage-section{
    margin-top:25px;
    padding:42px 0 45px;
  }

  .heritage-intro{
    padding:0 14px;
    margin-bottom:19px;
  }

  .heritage-intro h2{
    font-size:43px;
  }

  .heritage-rail{
    padding:0 12px 5px;
    gap:9px;
    -webkit-overflow-scrolling:touch;
  }

  .heritage-card{
    min-width:82%;
    min-height:430px;
    scroll-snap-align:center;
    scroll-snap-stop:always;
    transform:scale(.965);
    opacity:.78;
  }

  .heritage-card.is-active{
    transform:scale(1);
    opacity:1;
  }

  .heritage-card strong{
    font-size:28px;
  }
}

@media(prefers-reduced-motion:reduce){
  .must-card,
  .heritage-card{
    opacity:1!important;
  }
}


/* V2.8 - visible motion system */
.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

.hero-slide{
  position:absolute;
  inset:0;
  margin:0;
  opacity:0;
  transform:scale(1.07);
  transition:
    opacity 1.05s ease,
    transform 6.5s cubic-bezier(.2,.65,.2,1);
  pointer-events:none;
}

.hero-slide.is-active{
  opacity:1;
  transform:scale(1);
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 54%;
  filter:saturate(1.18) brightness(1.06) contrast(1.035);
}

.hero-scene{
  position:absolute;
  left:clamp(22px,6vw,92px);
  bottom:23px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
}

.hero-scene-count{
  padding:6px 8px;
  border:1px solid rgba(255,255,255,.26);
  border-radius:999px;
  background:rgba(7,44,41,.22);
  backdrop-filter:blur(8px);
  font-size:7px;
  letter-spacing:.13em;
  font-weight:900;
}

.hero-scene-label{
  font-size:8px;
  letter-spacing:.15em;
  font-weight:850;
  text-shadow:0 1px 8px rgba(0,0,0,.24);
}

.hero-controls{
  position:absolute;
  right:clamp(18px,4vw,55px);
  bottom:19px;
  z-index:5;
  display:flex;
  align-items:center;
  gap:9px;
}

.hero-prev,
.hero-next{
  width:38px;
  height:38px;
  border:1px solid rgba(255,255,255,.34);
  border-radius:50%;
  background:rgba(6,45,42,.30);
  color:#fff;
  backdrop-filter:blur(8px);
  cursor:pointer;
  transition:transform .16s ease,background .16s ease;
}

.hero-prev:hover,
.hero-next:hover{
  transform:scale(1.07);
  background:rgba(6,45,42,.48);
}

.hero-dots{
  display:flex;
  align-items:center;
  gap:6px;
  padding:7px 9px;
  border-radius:999px;
  background:rgba(6,45,42,.25);
  backdrop-filter:blur(8px);
}

.hero-dots button{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.46);
  cursor:pointer;
  transition:width .22s ease,background .22s ease;
}

.hero-dots button.is-active{
  width:23px;
  background:#fff;
}

.hero-progress{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:6;
  height:3px;
  overflow:hidden;
  background:rgba(255,255,255,.18);
}

.hero-progress span{
  display:block;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,var(--sun),var(--coral));
  transform:scaleX(0);
  transform-origin:left center;
}

.hero-progress.is-running span{
  animation:heroProgress 6.2s linear forwards;
}

/* Clearer, visible scroll entrances */
.motion-ready .energy-target{
  opacity:0;
  transform:translateY(34px) scale(.985);
}

.energy-target{
  transition:
    opacity .72s ease,
    transform .72s cubic-bezier(.18,.76,.22,1);
}

.motion-ready .energy-target.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
}

.motion-ready .section-heading{
  transition:transform .7s cubic-bezier(.18,.76,.22,1),opacity .7s ease;
}

.motion-ready .energy-target:not(.in-view) .section-heading{
  opacity:0;
  transform:translateX(-22px);
}

.motion-ready .energy-target.in-view .section-heading{
  opacity:1;
  transform:none;
}

/* Give horizontal rails a one-time hint that they can move */
.rail-peek{
  animation:railPeek 1.05s cubic-bezier(.2,.72,.25,1);
}

/* Slight ongoing life in key cards */
.live-dot{
  animation:pulse 1.6s infinite;
}

.happening-row em.ok{
  position:relative;
  overflow:hidden;
}

.happening-row em.ok::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 20%,rgba(255,255,255,.62) 48%,transparent 74%);
  transform:translateX(-120%);
  animation:statusShine 4.8s ease-in-out infinite;
}

@keyframes heroProgress{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

@keyframes railPeek{
  0%{transform:translateX(0)}
  42%{transform:translateX(-28px)}
  72%{transform:translateX(8px)}
  100%{transform:translateX(0)}
}

@keyframes statusShine{
  0%,68%{transform:translateX(-120%)}
  82%,100%{transform:translateX(120%)}
}

@media(max-width:760px){
  .hero-slide img{
    object-position:58% center;
  }

  .hero-scene{
    left:14px;
    bottom:17px;
    right:132px;
    gap:7px;
  }

  .hero-scene-label{
    max-width:160px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .hero-controls{
    right:11px;
    bottom:12px;
    gap:5px;
  }

  .hero-prev,
  .hero-next{
    width:35px;
    height:35px;
  }

  .hero-dots{
    gap:4px;
    padding:6px 7px;
  }

  .hero-dots button{
    width:6px;
    height:6px;
  }

  .hero-dots button.is-active{
    width:17px;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero-slide{
    transition:opacity .35s ease!important;
    transform:none!important;
  }

  .hero-progress{
    display:none!important;
  }

  .rail-peek,
  .happening-row em.ok::after{
    animation:none!important;
  }
}


/* V2.9 - force visible motion after mobile cache fix */
.hero-slide.is-active img{
  animation:heroKenBurns 6.2s ease-out both;
}

.hero-slide:nth-child(even).is-active img{
  animation-name:heroKenBurnsAlt;
}

.hero-copy{
  animation:heroCopyIn .75s cubic-bezier(.18,.76,.22,1) both;
}

.hero-scene-label{
  transition:opacity .22s ease,transform .22s ease;
}

@keyframes heroKenBurns{
  from{transform:scale(1.08) translate3d(1.2%,.6%,0)}
  to{transform:scale(1.015) translate3d(-.8%,-.4%,0)}
}

@keyframes heroKenBurnsAlt{
  from{transform:scale(1.07) translate3d(-1%,.4%,0)}
  to{transform:scale(1.015) translate3d(.8%,-.5%,0)}
}

@keyframes heroCopyIn{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:none}
}

@media(max-width:760px){
  .hero{
    min-height:520px;
  }

  .hero-copy{
    padding-bottom:118px;
  }

  .hero-scene{
    bottom:76px;
  }

  .hero-controls{
    bottom:70px;
  }

  .hero-progress{
    bottom:60px;
  }
}

@media(prefers-reduced-motion:reduce){
  .hero-slide.is-active img{
    animation:none!important;
    transform:none!important;
  }

  .hero-copy{
    animation:none!important;
  }
}


/* V2.10 - functional motion always works, even when iOS reports reduced motion */
.motion-on .hero-progress{
  display:block!important;
}

.motion-on .hero-progress.is-running span{
  animation:heroProgress 4s linear forwards!important;
}

.motion-on .hero-slide{
  transition:opacity .62s ease,transform 4s cubic-bezier(.2,.65,.2,1)!important;
}

.motion-on .hero-slide.is-active img{
  animation:heroKenBurns 3s ease-out both!important;
}

.motion-on .hero-slide:nth-child(even).is-active img{
  animation-name:heroKenBurnsAlt!important;
}

.motion-on .ticker-track{
  animation:tickerMove 20s linear infinite!important;
}

.motion-on .rail-peek{
  animation:railPeek 1.05s cubic-bezier(.2,.72,.25,1)!important;
}

.motion-on .energy-target{
  opacity:0;
  transform:translateY(34px) scale(.985);
}

.motion-on .energy-target.in-view{
  opacity:1;
  transform:none;
}

.motion-on .energy-target .feature-story,
.motion-on .energy-target .happening-row,
.motion-on .energy-target .visual-card,
.motion-on .energy-target .must-card,
.motion-on .energy-target .area-card,
.motion-on .energy-target .food-feature,
.motion-on .energy-target .food-pick,
.motion-on .energy-target .essential-grid a,
.motion-on .energy-target .heritage-card,
.motion-on .energy-target .guide-card{
  opacity:0;
  transform:translateY(26px) scale(.975);
  transition:
    opacity .58s ease,
    transform .68s cubic-bezier(.18,.76,.22,1),
    box-shadow .2s ease;
}

.motion-on .energy-target.in-view .feature-story,
.motion-on .energy-target.in-view .happening-row,
.motion-on .energy-target.in-view .visual-card,
.motion-on .energy-target.in-view .must-card,
.motion-on .energy-target.in-view .area-card,
.motion-on .energy-target.in-view .food-feature,
.motion-on .energy-target.in-view .food-pick,
.motion-on .energy-target.in-view .essential-grid a,
.motion-on .energy-target.in-view .heritage-card,
.motion-on .energy-target.in-view .guide-card{
  opacity:1;
  transform:none;
}

.motion-on .energy-target.in-view .happening-row:nth-child(2),
.motion-on .energy-target.in-view .visual-card:nth-child(2),
.motion-on .energy-target.in-view .must-card:nth-child(2),
.motion-on .energy-target.in-view .food-pick:nth-child(2),
.motion-on .energy-target.in-view .essential-grid a:nth-child(2),
.motion-on .energy-target.in-view .heritage-card:nth-child(2),
.motion-on .energy-target.in-view .guide-card:nth-child(2){
  transition-delay:.08s;
}

.motion-on .energy-target.in-view .happening-row:nth-child(3),
.motion-on .energy-target.in-view .visual-card:nth-child(3),
.motion-on .energy-target.in-view .must-card:nth-child(3),
.motion-on .energy-target.in-view .food-pick:nth-child(3),
.motion-on .energy-target.in-view .essential-grid a:nth-child(3),
.motion-on .energy-target.in-view .heritage-card:nth-child(3),
.motion-on .energy-target.in-view .guide-card:nth-child(3){
  transition-delay:.16s;
}

.motion-on .energy-target.in-view .happening-row:nth-child(4),
.motion-on .energy-target.in-view .must-card:nth-child(4),
.motion-on .energy-target.in-view .essential-grid a:nth-child(4){
  transition-delay:.24s;
}

.motion-on .energy-target.in-view .essential-grid a:nth-child(5){
  transition-delay:.32s;
}

/* When iOS asks for reduced motion, keep the site alive but tone down travel distance */
.motion-reduced .energy-target{
  transform:translateY(14px) scale(.995);
}

.motion-reduced .energy-target .feature-story,
.motion-reduced .energy-target .happening-row,
.motion-reduced .energy-target .visual-card,
.motion-reduced .energy-target .must-card,
.motion-reduced .energy-target .area-card,
.motion-reduced .energy-target .food-feature,
.motion-reduced .energy-target .food-pick,
.motion-reduced .energy-target .essential-grid a,
.motion-reduced .energy-target .heritage-card,
.motion-reduced .energy-target .guide-card{
  transform:translateY(12px) scale(.99);
}

@media(max-width:760px){
  .motion-on .energy-target{
    transform:translateY(28px) scale(.985);
  }

  .motion-on .hero-slide.is-active img{
    animation-duration:4s!important;
  }
}


/* V2.11 - iOS motion override and stronger visible transitions */
.motion-on.motion-ready .energy-target{
  opacity:0!important;
  transform:translateY(34px) scale(.985)!important;
}

.motion-on.motion-ready .energy-target.in-view{
  opacity:1!important;
  transform:none!important;
}

.motion-on.motion-ready .energy-target .feature-story,
.motion-on.motion-ready .energy-target .happening-row,
.motion-on.motion-ready .energy-target .visual-card,
.motion-on.motion-ready .energy-target .must-card,
.motion-on.motion-ready .energy-target .area-card,
.motion-on.motion-ready .energy-target .food-feature,
.motion-on.motion-ready .energy-target .food-pick,
.motion-on.motion-ready .energy-target .essential-grid a,
.motion-on.motion-ready .energy-target .heritage-card,
.motion-on.motion-ready .energy-target .guide-card{
  opacity:0!important;
  transform:translateY(26px) scale(.975)!important;
}

.motion-on.motion-ready .energy-target.in-view .feature-story,
.motion-on.motion-ready .energy-target.in-view .happening-row,
.motion-on.motion-ready .energy-target.in-view .visual-card,
.motion-on.motion-ready .energy-target.in-view .must-card,
.motion-on.motion-ready .energy-target.in-view .area-card,
.motion-on.motion-ready .energy-target.in-view .food-feature,
.motion-on.motion-ready .energy-target.in-view .food-pick,
.motion-on.motion-ready .energy-target.in-view .essential-grid a,
.motion-on.motion-ready .energy-target.in-view .heritage-card,
.motion-on.motion-ready .energy-target.in-view .guide-card{
  opacity:1!important;
  transform:none!important;
}

.motion-on .hero-progress.is-running span{
  animation-duration:4s!important;
}

.motion-on .hero-slide{
  transition-duration:.62s,4s!important;
}

.motion-on .hero-slide.is-active img{
  animation-duration:4s!important;
}

.motion-on .ticker-track{
  animation-duration:16s!important;
}

.motion-on .live-dot{
  animation:pulse 1.2s infinite!important;
}

@media(max-width:760px){
  .motion-on.motion-ready .energy-target{
    transform:translateY(26px) scale(.988)!important;
  }

  .motion-on .rail-peek{
    animation-duration:1.25s!important;
  }
}


/* V2.12 - confirmed mobile motion + compact live status */
.motion-on .energy-target{
  transition:
    opacity .62s ease!important,
    transform .72s cubic-bezier(.18,.76,.22,1)!important;
}

.motion-on .energy-target .feature-story,
.motion-on .energy-target .happening-row,
.motion-on .energy-target .visual-card,
.motion-on .energy-target .must-card,
.motion-on .energy-target .area-card,
.motion-on .energy-target .food-feature,
.motion-on .energy-target .food-pick,
.motion-on .energy-target .essential-grid a,
.motion-on .energy-target .heritage-card,
.motion-on .energy-target .guide-card{
  transition:
    opacity .56s ease!important,
    transform .66s cubic-bezier(.18,.76,.22,1)!important,
    box-shadow .2s ease!important;
}

.motion-on .energy-target.in-view .feature-story>img,
.motion-on .energy-target.in-view .food-feature>img{
  animation:contentDrift 8s ease-in-out infinite alternate!important;
}

.motion-on .energy-target.in-view .visual-card:first-child img{
  animation:contentDriftAlt 9s ease-in-out infinite alternate!important;
}

.motion-on .heritage-section.in-view .heritage-card.is-active img{
  animation:contentDrift 8.5s ease-in-out infinite alternate!important;
}

@keyframes contentDrift{
  from{transform:scale(1.02) translate3d(0,0,0)}
  to{transform:scale(1.075) translate3d(-1.2%,-.7%,0)}
}

@keyframes contentDriftAlt{
  from{transform:scale(1.065) translate3d(-1%,.4%,0)}
  to{transform:scale(1.02) translate3d(.8%,-.5%,0)}
}

@media(max-width:760px){
  .live-strip{
    position:relative;
    margin:-18px 0 0;
    padding:34px 10px 4px;
    gap:8px;
    background:#fff;
  }

  .live-strip::before{
    content:"TRẠNG THÁI ĐẢO TRỰC TIẾP";
    position:absolute;
    left:12px;
    top:10px;
    color:var(--ink);
    font-size:7px;
    line-height:1;
    letter-spacing:.15em;
    font-weight:900;
  }

  .live-title{
    display:none!important;
  }

  .live-item,
  .live-item:last-child{
    min-width:44%;
    min-height:96px;
    padding:14px 13px;
    border:1px solid var(--line);
    border-radius:15px;
    box-shadow:0 7px 18px rgba(18,61,59,.05);
  }

  .live-item strong{
    font-size:20px;
  }

  .live-item small{
    font-size:7px;
  }
}


/* V2.13 - reliable breaking-news marquee on mobile */
.energy-ticker{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:0;
  padding:0;
  min-height:40px;
}

.ticker-label{
  position:relative;
  z-index:3;
  height:40px;
  padding:0 13px;
  display:flex;
  align-items:center;
  gap:7px;
  background:var(--ink);
  color:#fff;
  white-space:nowrap;
}

.ticker-label>span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--coral);
  box-shadow:0 0 0 0 rgba(255,112,79,.35);
  animation:tickerPulse 1.5s ease-out infinite;
}

.ticker-label strong{
  font-size:7px;
  letter-spacing:.16em;
  font-weight:900;
}

.ticker-window{
  min-width:0;
  overflow:hidden;
  height:40px;
  display:flex;
  align-items:center;
}

.ticker-track{
  flex:none;
  min-width:max-content;
  will-change:transform;
  backface-visibility:hidden;
  transform:translate3d(0,0,0);
  animation:tickerMove 16s linear infinite!important;
}

@keyframes tickerPulse{
  0%{box-shadow:0 0 0 0 rgba(255,112,79,.35)}
  70%{box-shadow:0 0 0 7px rgba(255,112,79,0)}
  100%{box-shadow:0 0 0 0 rgba(255,112,79,0)}
}

@media(max-width:760px){
  .energy-ticker{
    position:relative;
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    min-height:38px;
    margin-top:12px;
    overflow:hidden;
    border-top:1px solid rgba(18,61,59,.08);
    border-bottom:1px solid rgba(18,61,59,.08);
  }

  .ticker-label{
    height:38px;
    padding:0 10px;
  }

  .ticker-label strong{
    font-size:6px;
    letter-spacing:.13em;
  }

  .ticker-label>span{
    width:6px;
    height:6px;
  }

  .ticker-window{
    width:100%;
    height:38px;
    overflow:hidden;
    mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
  }

  .motion-on .ticker-track,
  .ticker-track{
    animation:tickerMoveMobile 10.5s linear infinite!important;
  }
}

@keyframes tickerMoveMobile{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}


/* V2.14 - approved Open Phu Quoc mobile chrome */
.site-header .brand img,
.site-footer img{
  display:block;
  opacity:1;
  visibility:visible;
}

@media(max-width:760px){
  body{
    padding-bottom:calc(72px + env(safe-area-inset-bottom));
  }

  .site-header{
    min-height:64px;
    height:64px;
    padding:7px 12px 7px 14px;
    gap:9px;
  }

  .brand{
    width:48px;
    min-width:48px;
    height:48px;
    margin-right:auto;
    overflow:visible;
  }

  .brand img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:left center;
  }

  .header-search,
  .menu-button{
    width:42px;
    height:42px;
    flex:0 0 42px;
    background:#fff;
    border:1px solid rgba(18,61,59,.12);
    box-shadow:none;
  }

  .mobile-dock{
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:auto;
    min-height:64px;
    padding:5px 6px calc(5px + env(safe-area-inset-bottom));
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    align-items:stretch;
    border:0;
    border-top:1px solid rgba(18,61,59,.10);
    border-radius:0;
    background:rgba(255,255,255,.985);
    box-shadow:0 -8px 24px rgba(18,61,59,.07);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  .mobile-dock a,
  .mobile-dock button{
    position:relative;
    min-width:0;
    height:54px;
    padding:4px 2px 3px;
    border:0;
    border-radius:12px!important;
    background:transparent!important;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:#758582!important;
    font-size:9px;
    line-height:1;
    font-weight:760;
    box-shadow:none!important;
  }

  .mobile-dock span{
    color:currentColor;
    font-size:20px;
    line-height:1;
  }

  .mobile-dock a.active{
    color:var(--ink)!important;
    background:var(--aqua-soft)!important;
  }

  .mobile-dock a.active::before{
    content:"";
    position:absolute;
    top:3px;
    width:20px;
    height:3px;
    border-radius:999px;
    background:var(--coral);
  }

  .mobile-dock .dock-search{
    color:#758582!important;
  }

  .mobile-dock .dock-search:active,
  .mobile-dock a:active{
    background:var(--soft)!important;
    transform:translateY(1px);
  }

  .toast{
    bottom:calc(74px + env(safe-area-inset-bottom));
  }
}


/* V2.15 - scalable app navigation + robust approved-logo rendering */
.brand{
  background:
    url("assets/logo-master.png?v=20260925-tight-master-r1")
    left center / contain no-repeat;
}

.brand img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:left center!important;
  opacity:1!important;
  visibility:visible!important;
}

.more-backdrop{
  position:fixed;
  inset:0;
  z-index:89;
  background:rgba(7,35,33,.34);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  transition:opacity .22s ease;
}

.more-backdrop.is-open{
  opacity:1;
}

.more-sheet{
  position:fixed;
  left:50%;
  bottom:0;
  z-index:90;
  width:min(680px,100%);
  max-height:min(82svh,760px);
  overflow:auto;
  padding:10px 16px calc(22px + env(safe-area-inset-bottom));
  border:1px solid rgba(18,61,59,.10);
  border-bottom:0;
  border-radius:26px 26px 0 0;
  background:#fff;
  box-shadow:0 -20px 60px rgba(18,61,59,.18);
  transform:translate(-50%,105%);
  opacity:0;
  transition:transform .32s cubic-bezier(.2,.78,.2,1),opacity .22s ease;
  overscroll-behavior:contain;
}

.more-sheet.is-open{
  transform:translate(-50%,0);
  opacity:1;
}

.more-handle{
  width:42px;
  height:4px;
  margin:0 auto 12px;
  border-radius:999px;
  background:#D8E3E1;
}

.more-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}

.more-head p,
.more-label{
  margin:0;
  color:#718480;
  font-size:7px;
  letter-spacing:.16em;
  font-weight:900;
}

.more-head h2{
  margin:4px 0 0;
  color:var(--ink);
  font-size:30px;
  line-height:1;
  letter-spacing:-.04em;
}

.more-close{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  color:var(--ink);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.more-group + .more-group{
  margin-top:19px;
}

.more-label{
  margin-bottom:9px;
}

.more-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}

.more-grid a{
  min-height:108px;
  padding:12px 10px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  border:1px solid var(--line);
  border-radius:16px;
  background:linear-gradient(145deg,#fff,var(--soft));
  transition:transform .16s ease,box-shadow .16s ease;
}

.more-grid a:active{
  transform:scale(.98);
}

.more-grid span{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:var(--aqua-soft);
  color:var(--ink);
  font-size:17px;
}

.more-grid strong{
  margin-top:10px;
  color:var(--ink);
  font-size:10px;
  line-height:1.1;
}

.more-grid small{
  margin-top:4px;
  color:var(--muted);
  font-size:7px;
  line-height:1.35;
}

.more-list{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:16px;
}

.more-list a{
  min-height:48px;
  padding:0 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:#fff;
  border-bottom:1px solid var(--line);
  font-size:10px;
  color:var(--ink);
}

.more-list a:last-child{
  border-bottom:0;
}

body.sheet-open{
  overflow:hidden;
}

@media(max-width:1120px){
  .desktop-nav.open{
    display:none!important;
  }
}

@media(max-width:760px){
  .brand{
    width:176px;
    min-width:176px;
    height:45px;
  }

  .more-sheet{
    max-height:78svh;
    padding:9px 12px calc(18px + env(safe-area-inset-bottom));
    border-radius:24px 24px 0 0;
  }

  .more-head h2{
    font-size:27px;
  }

  .more-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }

  .more-grid a{
    min-height:96px;
    padding:11px;
  }

  .more-grid strong{
    font-size:10px;
  }

  .more-grid small{
    font-size:7px;
  }
}


/* V2.16 - logo is embedded in HTML; no secondary image request */
.brand{background:none!important}


/* VisitSingapore-inspired reading rhythm: one strong visual, then a short useful layer. */
.section{padding-top:76px;padding-bottom:76px}
.section-heading{margin-bottom:27px}
.section-heading h2{max-width:760px}
.happening-layout{grid-template-columns:minmax(0,1.35fr) minmax(360px,.82fr);gap:18px}
.feature-story{min-height:560px}
.happening-list{gap:10px}
.happening-row{min-height:126px;padding:16px}
.things-grid{
  grid-template-columns:minmax(0,1.35fr) minmax(260px,.8fr);
  grid-template-rows:1fr 1fr;
  gap:12px;
}
.things-grid .visual-card.wide{grid-row:1/3;min-height:610px}
.things-grid .visual-card:not(.wide){min-height:299px}
.must-rail{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:5px}
.must-rail::-webkit-scrollbar{display:none}
.must-card,.must-card:nth-child(1){min-width:330px;min-height:430px;scroll-snap-align:start}
.must-card:nth-child(1){min-width:430px}
.area-card{min-width:330px}
.area-card img{height:270px}
.food-layout{gap:16px}
.food-feature{min-height:540px}
.food-pick{min-height:166px;padding:20px}
.essential-grid{grid-template-columns:repeat(3,1fr);gap:10px}
.essential-grid a{min-height:122px;padding:18px}
.guide-grid{gap:12px}
.guide-card{min-height:200px;padding:24px}
.heritage-section{margin-top:60px;margin-bottom:30px;padding-top:72px;padding-bottom:74px}
.heritage-intro{margin-bottom:30px}
.heritage-card{min-width:390px;min-height:500px}
.site-footer{margin-top:68px}

@media(max-width:980px){
  .happening-layout{grid-template-columns:1fr}
  .things-grid{grid-template-columns:1.15fr .85fr}
  .essential-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .section{padding-top:49px;padding-bottom:49px}
  .section-heading{margin-bottom:20px}
  .section-heading h2{font-size:36px;line-height:.98}
  .feature-story{min-height:470px}
  .happening-list{padding-bottom:3px}
  .happening-row{min-width:84%;min-height:132px}
  .things-grid{
    display:flex;
    overflow-x:auto;
    gap:9px;
    scroll-snap-type:x mandatory;
    margin:0 -11px;
    padding:0 11px 3px;
  }
  .things-grid .visual-card.wide,
  .things-grid .visual-card:not(.wide){
    min-width:84%;
    min-height:470px;
    scroll-snap-align:center;
  }
  .must-card,.must-card:nth-child(1){min-width:84%;min-height:470px}
  .area-card{min-width:82%}
  .food-layout{grid-template-columns:1fr}
  .food-feature{min-height:470px}
  .food-picks{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}
  .food-pick{min-width:82%;min-height:150px;scroll-snap-align:center}
  .essential-grid{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}
  .essential-grid a{min-width:78%;scroll-snap-align:center}
  .guide-grid{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}
  .guide-card{min-width:82%;scroll-snap-align:center}
  .heritage-section{margin-top:48px;padding-top:52px;padding-bottom:56px}
  .heritage-card{min-width:84%;min-height:480px}
}


/* V2.20 - desktop superapp shell
   Mobile keeps the image-led discovery flow. Desktop behaves like an island workspace. */
@media(min-width:1100px){
  body{background:#F5F8F7}
  #top{
    max-width:1540px;
    margin:0 auto;
    padding:18px 24px 0;
    display:grid;
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:14px;
    align-items:start;
  }
  #top>.hero{
    grid-column:1/9;
    grid-row:1/4;
    width:100%;
    max-width:none;
    min-height:620px;
    margin:0;
    border-radius:28px;
    box-shadow:0 18px 52px rgba(18,61,59,.10);
  }
  #top>.hero .hero-copy{
    width:min(700px,72%);
    padding:72px 48px 68px;
  }
  #top>.hero .hero-copy h1{font-size:clamp(58px,5.6vw,86px)}
  #top>.hero .search{max-width:600px}
  #top>.live-strip{
    grid-column:9/13;
    grid-row:1;
    width:100%;
    max-width:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    overflow:visible;
  }
  #top>.live-strip .live-title{
    grid-column:1/-1;
    min-height:72px;
    padding:13px 15px;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(18,61,59,.05);
  }
  #top>.live-strip .live-item{
    min-height:92px;
    padding:13px 14px;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:0 10px 30px rgba(18,61,59,.04);
  }
  #top>.live-strip .live-item:last-child{border-radius:16px}
  #top>.live-strip .live-item strong{font-size:20px}
  #top>.energy-ticker{
    grid-column:9/13;
    grid-row:2;
    width:100%;
    max-width:none;
    margin:0;
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    background:#fff;
  }
  #top>.task-launcher{
    grid-column:1/-1;
    grid-row:4;
  }
  #top>.essentials{
    grid-column:1/-1;
    grid-row:auto;
    width:100%;
    max-width:none;
    margin:0;
    padding:14px;
    border:1px solid var(--line);
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(18,61,59,.04);
  }
  #top>.essentials .section-heading{margin-bottom:10px;align-items:center}
  #top>.essentials .section-heading .eyebrow{display:none}
  #top>.essentials .section-heading h2{
    font-size:18px;
    line-height:1.05;
    letter-spacing:-.03em;
  }
  #top>.essentials .essential-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:9px;
  }
  #top>.essentials .essential-grid a{
    min-height:76px;
    padding:10px 11px;
    border-radius:14px;
    box-shadow:none;
  }
  #top>.essentials .essential-grid a>span{
    width:30px;height:30px;
    font-size:14px;
  }
  #top>.essentials .essential-grid strong{font-size:11px}
  #top>.essentials .essential-grid small{font-size:8px;line-height:1.35}
  #top>.essentials .essential-grid a:last-child{grid-column:auto}

  #top>.section:not(.essentials),
  #top>.heritage-section,
  #top>.colour-band{
    grid-column:1/-1;
    width:100%;
    max-width:none;
  }
  #top>.section:not(.essentials){padding-left:0;padding-right:0}
  #top>.happening{padding-top:50px}
  #top>.colour-band{margin-left:0;margin-right:0}
  #top>.heritage-section{margin-left:0;margin-right:0}

  .section-heading h2{font-size:clamp(32px,3.2vw,48px)}
  .feature-story{min-height:500px}
  .things-grid .visual-card.wide{min-height:520px}
  .things-grid .visual-card:not(.wide){min-height:254px}
  .food-feature{min-height:470px}
  .heritage-card{min-height:430px}
  .guide-card{min-height:170px}
}

@media(min-width:1400px){
  #top{padding-left:34px;padding-right:34px}
  #top>.hero{grid-column:1/10}
  #top>.live-strip,#top>.energy-ticker{grid-column:10/13}
  #top>.essentials{grid-column:1/-1}
  #top>.essentials .essential-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  #top>.essentials .essential-grid a:last-child{grid-column:auto}
}


/* V2.21 - desktop-first superapp density
   Keep mobile discovery flow; first desktop fold should feel like an island app, not a campaign landing page. */
@media(min-width:1100px){
  #top{
    grid-template-columns:repeat(12,minmax(0,1fr));
    gap:12px;
    padding-top:12px;
  }
  #top>.hero{
    grid-column:1/9;
    grid-row:1/4;
    min-height:545px;
    max-height:545px;
    border-radius:24px;
  }
  #top>.hero .hero-copy{
    width:min(650px,76%);
    padding:58px 42px 46px;
  }
  #top>.hero .hero-copy h1{
    font-size:clamp(52px,4.8vw,72px);
    line-height:.91;
  }
  #top>.hero .hero-copy>p:not(.hero-kicker){
    max-width:580px;
    font-size:13px;
    line-height:1.5;
  }
  #top>.live-strip{
    grid-column:9/13;
    grid-row:1/3;
    gap:6px;
  }
  #top>.live-strip .live-title{min-height:58px;padding:10px 12px;border-radius:15px}
  #top>.live-strip .live-item{min-height:72px;padding:10px 11px;border-radius:14px}
  #top>.live-strip .live-item strong{font-size:18px}
  #top>.live-strip .live-item small{font-size:8px}

  #top>.energy-ticker{
    grid-column:9/13;
    grid-row:3;
    min-height:42px;
    border-radius:14px;
  }

  #top>.essentials{
    grid-column:1/-1;
    grid-row:auto;
    padding:22px;
    border-radius:20px;
  }
  #top>.essentials .section-heading{margin-bottom:8px}
  #top>.essentials .section-heading h2{font-size:16px}
  #top>.essentials .essential-grid{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:9px!important;
    overflow:visible!important;
  }
  #top>.essentials .essential-grid a,
  #top>.essentials .essential-grid a:last-child{
    grid-column:auto!important;
    min-width:0!important;
    min-height:76px!important;
    padding:11px 12px!important;
    border-radius:14px!important;
  }
  #top>.essentials .essential-grid a>span{
    width:27px;height:27px;font-size:13px
  }
  #top>.essentials .essential-grid strong{font-size:10px}
  #top>.essentials .essential-grid small{font-size:7px}
  #top>.essentials .essential-grid b{font-size:13px}

  #top>.happening{padding-top:38px}
  #top>.section:not(.essentials){padding-top:58px;padding-bottom:58px}
  .section-heading{margin-bottom:18px}
}

@media(min-width:1400px){
  #top>.hero{grid-column:1/9}
  #top>.live-strip,#top>.energy-ticker{grid-column:9/13}
  #top>.task-launcher,#top>.essentials{grid-column:1/-1}
  #top>.essentials .essential-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}
}


/* Super App V3 - cross-module search */
.search-shell{
  position:relative;
  width:min(650px,100%);
}
.search-shell .search{max-width:none}
.search-results{
  position:absolute;
  z-index:40;
  top:calc(100% + 9px);
  left:0;
  right:0;
  max-height:min(430px,42vh);
  overflow:auto;
  padding:8px;
  border:1px solid rgba(19,65,61,.12);
  border-radius:22px;
  background:rgba(255,255,255,.985);
  box-shadow:0 24px 70px rgba(5,36,34,.28);
  color:var(--text);
  backdrop-filter:blur(18px);
}
.search-results[hidden]{display:none}
.search-group+.search-group{margin-top:6px;padding-top:6px;border-top:1px solid rgba(19,65,61,.09)}
.search-group-title{padding:7px 12px 3px;color:var(--ink);font-size:10px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}
.search-group[data-search-group="main"]{padding:4px;border-radius:16px;background:#f0f8f6}
.search-group[data-search-group="main"] .search-result strong{font-size:16px}
.search-result{
  position:relative;
  display:grid;
  grid-template-columns:96px minmax(0,1fr) 24px;
  align-items:center;
  gap:12px;
  min-height:58px;
  padding:9px 12px;
  border-radius:15px;
  text-decoration:none;
  color:var(--text);
}
.search-result:hover,
.search-result:focus{
  outline:0;
  background:#f2f7f4;
}
.search-result-type{
  font-size:8px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.12em;
  color:var(--muted);
}
.search-result strong{
  overflow:hidden;
  font-size:14px;
  line-height:1.25;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.search-result-arrow{
  color:var(--coral);
  font-size:17px;
  text-align:right;
}
.search-empty{
  display:grid;
  gap:4px;
  padding:16px 14px;
}
.search-empty strong{font-size:14px}
.search-empty span{font-size:11px;color:var(--muted)}

@media (max-width:760px){
  .search-shell{width:100%}
  .search-results{
    position:fixed;
    top:auto;
    left:10px;
    right:10px;
    bottom:76px;
    max-height:52vh;
    border-radius:22px;
  }
  .search-result{
    grid-template-columns:78px minmax(0,1fr) 20px;
    min-height:56px;
  }
}


/* Super App V3 - app shell */
.app-left-rail,
.app-context-rail{display:none}

.task-launcher{
  max-width:1380px;
  margin:14px auto 0;
  padding:0 clamp(14px,3vw,38px);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
.task-launcher a{
  min-height:86px;
  padding:14px 15px;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  grid-template-rows:auto auto;
  column-gap:10px;
  align-items:center;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  color:var(--text);
  transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;
}
.task-launcher a:hover{
  transform:translateY(-2px);
  border-color:rgba(19,65,61,.24);
  box-shadow:0 12px 28px rgba(9,52,48,.08);
}
.task-launcher a>span{
  grid-row:1 / 3;
  width:30px;height:30px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#eef5f1;
  color:var(--ink);
  font-size:9px;
  font-weight:900;
}
.task-launcher strong{
  align-self:end;
  font-size:13px;
  line-height:1.2;
}
.task-launcher small{
  align-self:start;
  margin-top:3px;
  color:var(--muted);
  font-size:9px;
  line-height:1.35;
}

@media (min-width:1220px){
  body{
    padding-left:168px;
    padding-right:254px;
    background:#f5f8f6;
  }

  .app-left-rail{
    position:fixed;
    z-index:60;
    inset:0 auto 0 0;
    width:168px;
    display:flex;
    flex-direction:column;
    padding:18px 12px 16px;
    border-right:1px solid var(--line);
    background:#fff;
  }
  .app-rail-mark{
    min-height:58px;
    display:flex;
    align-items:center;
    padding:5px 7px 16px;
    border-bottom:1px solid var(--line);
  }
  .app-rail-mark img{
    width:62px;
    height:62px;
    object-fit:contain;
  }
  .app-rail-nav{
    display:grid;
    gap:3px;
    margin-top:16px;
  }
  .app-rail-nav a{
    min-height:44px;
    padding:8px 9px;
    display:grid;
    grid-template-columns:27px 1fr;
    align-items:center;
    gap:7px;
    border-radius:12px;
    color:var(--text);
  }
  .app-rail-nav a:hover{
    background:#f1f6f3;
  }
  .app-rail-nav span{
    width:25px;height:25px;
    display:grid;place-items:center;
    border:1px solid var(--line);
    border-radius:9px;
    color:var(--ink);
    font-size:11px;
  }
  .app-rail-nav strong{
    font-size:11px;
    font-weight:760;
  }
  .app-rail-modules{
    margin-top:auto;
    padding:12px 7px 2px;
    display:grid;
    gap:5px;
    border-top:1px solid var(--line);
  }
  .app-rail-modules a{
    padding:7px 3px;
    color:var(--muted);
    font-size:9px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
  }

  .app-context-rail{
    position:fixed;
    z-index:55;
    inset:0 0 0 auto;
    width:254px;
    display:flex;
    flex-direction:column;
    gap:9px;
    overflow:auto;
    padding:16px 14px 20px;
    border-left:1px solid var(--line);
    background:#f8faf9;
  }
  .app-context-rail .vn-clock{
    width:100%;
    grid-template-columns:1fr;
    row-gap:5px;
    white-space:normal;
  }
  .app-context-rail .vn-clock>span,
  .app-context-rail .vn-clock>strong,
  .app-context-rail .vn-clock>small{
    grid-column:1;
  }
  .app-context-rail .vn-clock>small{
    grid-row:auto;
    padding-left:0;
    padding-top:7px;
    border-left:0;
    border-top:1px solid #DCE8E5;
  }
  .context-head{
    min-height:64px;
    padding:4px 4px 12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    border-bottom:1px solid var(--line);
  }
  .context-head span,
  .context-head strong{display:block}
  .context-head span{
    font-size:8px;
    letter-spacing:.14em;
    font-weight:900;
    color:var(--muted);
  }
  .context-head strong{
    margin-top:3px;
    font-size:15px;
    color:var(--ink);
  }
  .context-card{
    padding:13px 13px 12px;
    display:grid;
    gap:4px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    color:var(--text);
  }
  .context-card>span{
    font-size:8px;
    font-weight:900;
    letter-spacing:.12em;
    color:var(--muted);
  }
  .context-card>strong{
    font-size:19px;
    line-height:1.08;
    color:var(--ink);
  }
  .context-card>small{
    font-size:9px;
    line-height:1.35;
    color:var(--muted);
  }
  .context-card.compact>strong{
    font-size:12px;
    line-height:1.25;
  }
  .context-card.emergency>strong{
    color:#9b3428;
    letter-spacing:.03em;
  }
  .context-map{
    margin-top:auto;
    min-height:62px;
    padding:11px;
    display:grid;
    grid-template-columns:30px 1fr 18px;
    align-items:center;
    gap:8px;
    border-radius:15px;
    background:var(--ink);
    color:#fff;
  }
  .context-map>span{
    width:30px;height:30px;
    display:grid;place-items:center;
    border-radius:10px;
    background:rgba(255,255,255,.12);
  }
  .context-map strong,
  .context-map small{display:block}
  .context-map strong{font-size:11px}
  .context-map small{margin-top:2px;font-size:8px;color:rgba(255,255,255,.7)}

  .site-header{
    position:sticky;
    top:0;
    z-index:45;
    min-height:58px;
    padding-left:20px;
    padding-right:20px;
    border-bottom:1px solid var(--line);
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(14px);
  }
  .site-header .brand,
  .site-header .desktop-nav{display:none}
  .site-header:before{
    content:"OPEN PHU QUOC · ISLAND WORKSPACE";
    color:var(--muted);
    font-size:8px;
    font-weight:900;
    letter-spacing:.13em;
  }
  .site-header .header-clock{margin-left:auto}

  main{min-width:0;background:#fff}

  .hero{
    min-height:338px;
    max-width:none;
    margin:12px 14px 0;
    border-radius:22px;
  }
  .hero-copy{
    width:min(650px,72%);
    padding:42px 36px 50px;
  }
  .hero-copy h1{
    font-size:clamp(43px,4.8vw,64px);
    line-height:.9;
  }
  .hero-copy>p:not(.hero-kicker){
    max-width:520px;
    margin-top:13px;
    font-size:13px;
  }
  .search{margin-top:18px;min-height:52px}
  .search button{width:42px;height:42px}
  .hero-credit{display:none}

  .live-strip{
    max-width:none;
    margin:-22px 14px 0;
    padding:0;
    grid-template-columns:1.08fr repeat(6,.92fr);
  }
  .live-title,.live-item{
    min-height:88px;
    padding:13px 12px;
  }
  .live-item strong{font-size:17px}

  .task-launcher{
    grid-column:1/-1;
    grid-row:4;
    max-width:none;
    margin:12px 14px 0;
    padding:0;
    grid-template-columns:repeat(5,minmax(0,1fr));
  }
  .task-launcher a{min-height:72px;padding:11px 12px}

  .energy-ticker{
    margin-left:14px;
    margin-right:14px;
  }

  .section,
  .heritage-section,
  .colour-band{
    padding-left:22px;
    padding-right:22px;
  }

  .site-footer{
    margin-top:0;
    padding-left:28px;
    padding-right:28px;
    background:#fff;
  }
}

@media (max-width:760px){
  .task-launcher{
    display:flex;
    gap:8px;
    margin-top:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding-bottom:4px;
  }
  .task-launcher::-webkit-scrollbar{display:none}
  .task-launcher a{
    flex:0 0 min(78vw,290px);
    scroll-snap-align:start;
    min-height:78px;
    padding:11px;
  }
  .task-launcher strong{font-size:11px}
  .task-launcher small{font-size:8px}
}

/* V3 review - readable type and calmer information density */
.live-title strong,.task-launcher small,.site-footer>div p,.site-footer>div small,.site-footer nav{font-size:12px}
.live-title small,.live-item small,.context-card>small{font-size:12px;line-height:1.4}
.live-item span,.context-card>span,.context-head span{font-size:11px}
.task-launcher strong{font-size:14px}
.site-footer>div small{display:block;margin-top:7px;color:var(--muted);line-height:1.5}
.credit{font-size:11px;line-height:1.55}

@media (min-width:1220px){
  .app-rail-nav strong{font-size:13px}
  .app-rail-modules a{font-size:11px}
  .site-header:before{content:"OPEN PHU QUOC · TRỢ LÝ TRÊN ĐẢO";font-size:10px}
  .context-head span,.context-card>span{font-size:11px}
  .context-card>small,.context-map small{font-size:11px}
  .context-card.compact>strong,.context-map strong{font-size:13px}
  .hero-copy>p:not(.hero-kicker){font-size:15px}
  .live-item small{font-size:11px}
  .task-launcher small{font-size:11px}
  #top>.live-strip .live-item span{font-size:12px}
  #top>.live-strip .live-item small{font-size:12px;line-height:1.4}
  #top>.essentials .essential-grid strong{font-size:13px}
  #top>.essentials .essential-grid small{font-size:11px;line-height:1.35}
  #top>.essentials .essential-grid b{font-size:15px}
  .ticker-label strong,.ticker-track span{font-size:10px}
  .ticker-track b{font-size:11px}
  .hero-kicker{font-size:11px}
  .hero-scene-count,.hero-scene-label{font-size:10px}
  .search-result-type{font-size:10px}
}

@media (max-width:760px){
  .hero-copy>p:not(.hero-kicker){font-size:15px;line-height:1.5}
  .live-strip{scroll-padding-left:12px}
  .live-title strong{font-size:11px}
  .live-title small,.live-item small{font-size:11px}
  .live-item span{font-size:11px}
  .task-launcher strong{font-size:13px}
  .task-launcher small{font-size:11px}
  .mobile-dock a,.mobile-dock button{font-size:11px}
  .site-footer{padding-bottom:96px}
}

/* V3.1 - five primary journeys must read as one navigation row */
@media (min-width:900px){
  .task-launcher,
  #top>.task-launcher{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
    margin-top:12px;
    margin-bottom:0;
  }
  .task-launcher a{
    min-width:0;
    min-height:82px;
    padding:13px 14px;
    grid-template-columns:34px minmax(0,1fr);
    align-content:center;
  }
  .task-launcher a>span{width:32px;height:32px;font-size:10px}
  .task-launcher strong{font-size:14px;line-height:1.25}
  .task-launcher small{font-size:13px;line-height:1.4}
  #top>.happening{padding-top:34px}
}

@media (min-width:761px) and (max-width:899px){
  .task-launcher{
    grid-template-columns:repeat(6,minmax(0,1fr));
  }
  .task-launcher a{grid-column:span 2}
  .task-launcher a:nth-child(4){grid-column:2 / span 2}
  .task-launcher a:nth-child(5){grid-column:4 / span 2}
  .task-launcher small{font-size:13px;line-height:1.4}
}

@media (max-width:760px){
  .task-launcher{
    padding-left:14px;
    padding-right:14px;
    scroll-padding-left:14px;
  }
  .task-launcher a{
    flex-basis:min(82vw,310px);
    min-height:82px;
  }
  .task-launcher small{font-size:13px;line-height:1.4}
}


/* V3.2 - desktop island pulse + contextual action card */
.now-card{display:none}

@media (min-width:1100px){
  #top{
    gap:10px 12px;
    padding-top:10px;
  }

  #top>.energy-ticker{
    grid-column:1/-1!important;
    grid-row:1!important;
    width:100%;
    min-height:36px;
    height:36px;
    margin:0!important;
    border:1px solid rgba(18,61,59,.10);
    border-radius:12px;
    background:#fff;
    box-shadow:0 6px 18px rgba(18,61,59,.04);
  }
  #top>.energy-ticker .ticker-label,
  #top>.energy-ticker .ticker-window{
    height:34px;
  }
  #top>.energy-ticker .ticker-label{
    padding:0 12px;
    border-radius:11px 0 0 11px;
  }
  #top>.energy-ticker .ticker-window{
    mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%);
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%);
  }
  #top>.energy-ticker .ticker-track{
    gap:16px;
  }
  .motion-on #top>.energy-ticker .ticker-track,
  #top>.energy-ticker .ticker-track{
    animation-duration:23s!important;
  }

  #top>.hero{
    grid-column:1/9!important;
    grid-row:2/4!important;
    min-height:545px;
    max-height:545px;
    margin:0!important;
  }

  #top>.live-strip{
    grid-column:9/13!important;
    grid-row:2!important;
    margin:0!important;
    align-self:start;
  }

  #top>.now-card{
    display:flex;
    grid-column:9/13;
    grid-row:3;
    min-width:0;
    min-height:0;
    align-self:stretch;
    flex-direction:column;
    justify-content:space-between;
    gap:11px;
    padding:16px 16px 14px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    background:
      radial-gradient(circle at 100% 0,rgba(252,188,18,.18),transparent 46%),
      linear-gradient(145deg,#123d3b,#0b302f);
    color:#fff;
    box-shadow:0 12px 30px rgba(18,61,59,.12);
  }
  #top>.now-card:before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:3px;
    background:linear-gradient(90deg,#FCBC12,#ff7757 58%,transparent);
  }
  .now-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }
  .now-card-top span{
    font-size:10px;
    line-height:1.2;
    font-weight:900;
    letter-spacing:.12em;
    color:rgba(255,255,255,.72);
  }
  .now-card-top time{
    font-size:12px;
    font-weight:850;
    color:#fff;
  }
  .now-card-copy{
    display:grid;
    gap:6px;
  }
  .now-card-copy h2{
    margin:0;
    font-size:20px;
    line-height:1.05;
    letter-spacing:-.025em;
    color:#fff;
  }
  .now-card-copy p{
    margin:0;
    font-size:12px;
    line-height:1.45;
    color:rgba(255,255,255,.74);
  }
  .now-card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
  }
  .now-card-actions a{
    min-height:34px;
    padding:8px 10px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.18);
    border-radius:10px;
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    text-decoration:none;
  }
  .now-card-actions a:first-child{
    border-color:#fff;
    background:#fff;
    color:var(--ink);
  }
  .now-card[data-tone="watch"]{
    background:
      radial-gradient(circle at 100% 0,rgba(255,112,79,.25),transparent 48%),
      linear-gradient(145deg,#563b32,#173a38);
  }
  .now-card[data-tone="sunset"]{
    background:
      radial-gradient(circle at 100% 0,rgba(252,188,18,.30),transparent 48%),
      linear-gradient(145deg,#243f3a,#573c2b);
  }

  #top>.task-launcher{
    grid-column:1/-1!important;
    grid-row:4!important;
    margin:2px 0 0!important;
  }
  #top>.happening{
    padding-top:28px;
  }
}

@media (min-width:1400px){
  #top>.hero{grid-column:1/9!important}
  #top>.live-strip,
  #top>.now-card{grid-column:9/13!important}
  #top>.energy-ticker{grid-column:1/-1!important}
}

@media (max-width:1099px){
  .now-card{display:none!important}
}


/* V3.3 - mobile pulse order + compact contextual suggestion */
@media (max-width:1099px){
  #top>.energy-ticker{
    width:auto;
    margin:10px 14px 0!important;
    border:1px solid rgba(18,61,59,.10);
    border-radius:12px;
    background:#fff;
    box-shadow:0 6px 18px rgba(18,61,59,.04);
    overflow:hidden;
  }

  #top>.now-card{
    display:flex!important;
    min-width:0;
    margin:10px 14px 0;
    padding:15px 15px 14px;
    flex-direction:column;
    gap:10px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:
      radial-gradient(circle at 100% 0,rgba(252,188,18,.18),transparent 46%),
      linear-gradient(145deg,#123d3b,#0b302f);
    color:#fff;
    box-shadow:0 10px 26px rgba(18,61,59,.10);
  }

  #top>.now-card:before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:3px;
    background:linear-gradient(90deg,#FCBC12,#ff7757 58%,transparent);
  }

  .now-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }

  .now-card-top span{
    font-size:11px;
    line-height:1.2;
    font-weight:900;
    letter-spacing:.11em;
    color:rgba(255,255,255,.72);
  }

  .now-card-top time{
    font-size:12px;
    line-height:1;
    font-weight:850;
    color:#fff;
  }

  .now-card-copy{
    display:grid;
    gap:5px;
  }

  .now-card-copy h2{
    margin:0;
    font-size:21px;
    line-height:1.08;
    letter-spacing:-.025em;
    color:#fff;
  }

  .now-card-copy p{
    margin:0;
    font-size:13px;
    line-height:1.45;
    color:rgba(255,255,255,.76);
  }

  .now-card-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
  }

  .now-card-actions a{
    min-height:38px;
    padding:9px 11px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.20);
    border-radius:11px;
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    text-decoration:none;
  }

  .now-card-actions a:first-child{
    border-color:#fff;
    background:#fff;
    color:var(--ink);
  }

  .now-card[data-tone="watch"]{
    background:
      radial-gradient(circle at 100% 0,rgba(255,112,79,.25),transparent 48%),
      linear-gradient(145deg,#563b32,#173a38);
  }

  .now-card[data-tone="sunset"]{
    background:
      radial-gradient(circle at 100% 0,rgba(252,188,18,.30),transparent 48%),
      linear-gradient(145deg,#243f3a,#573c2b);
  }

  #top>.task-launcher{
    margin-top:8px;
  }
}

@media (max-width:760px){
  #top>.energy-ticker{
    margin:8px 0 0!important;
    border-left:0;
    border-right:0;
    border-radius:0;
    min-height:38px;
    box-shadow:none;
  }

  #top>.energy-ticker .ticker-label,
  #top>.energy-ticker .ticker-window{
    height:38px;
  }

  #top>.energy-ticker .ticker-label{
    padding:0 11px;
  }

  #top>.energy-ticker .ticker-label strong,
  #top>.energy-ticker .ticker-track span{
    font-size:10px;
  }

  #top>.energy-ticker .ticker-track b{
    font-size:11px;
  }

  .motion-on #top>.energy-ticker .ticker-track,
  #top>.energy-ticker .ticker-track{
    animation-duration:13.5s!important;
  }

  #top>.hero{
    margin-top:8px;
  }

  #top>.now-card{
    margin:10px 14px 0;
    padding:14px;
    border-radius:17px;
  }

  .now-card-copy h2{
    font-size:20px;
  }

  .now-card-copy p{
    font-size:13px;
  }

  .now-card-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }

  .now-card-actions a{
    min-width:0;
    min-height:40px;
    padding:9px 10px;
    font-size:12px;
  }

  #top>.task-launcher{
    margin-top:8px!important;
  }

  #top>.happening{
    padding-top:30px;
  }
}


/* V3.5 - reliable island pulse speed across desktop + iOS */
#top>.energy-ticker{--ticker-duration:14s}

.motion-on .ticker-track,
.ticker-track,
.motion-on #top>.energy-ticker .ticker-track,
#top>.energy-ticker .ticker-track{
  animation-name:tickerMove!important;
  animation-duration:var(--ticker-duration)!important;
  animation-timing-function:linear!important;
  animation-iteration-count:infinite!important;
  animation-play-state:running!important;
}

@media (max-width:760px){
  #top>.energy-ticker{--ticker-duration:8.5s}
  .motion-on #top>.energy-ticker .ticker-track,
  #top>.energy-ticker .ticker-track{
    animation-name:tickerMoveMobile!important;
  }
}

@media (hover:hover) and (pointer:fine){
  #top>.energy-ticker:hover .ticker-track{animation-play-state:paused!important}
}


/* Readability floor - keep operational microcopy legible without enlarging the layout. */
.ticker-label strong,
.ticker-track span,
.live-title strong,
.live-title small,
.live-item span,
.live-item small,
.hero-scene-count,
.hero-scene-label{font-size:11px}
.feature-copy p{font-size:12px}


/* V3.4 - Homepage, Live & Data Foundation Lock 20/09/2026 */
.island-pulse .live-item{
  grid-template-rows:auto auto auto auto;
  align-content:center;
}
.island-pulse .live-item time{
  display:block;
  margin-top:7px;
  font-size:11px;
  line-height:1.35;
  color:#71827f;
}
.island-pulse .live-item b{
  display:inline-block;
  margin-top:7px;
  font-size:11px;
  line-height:1.2;
  font-weight:850;
  color:var(--ink);
}
.island-pulse .live-title strong{
  font-size:11px;
  line-height:1.25;
}
.island-pulse .live-title small{
  font-size:11px;
  line-height:1.4;
}
@media (min-width:1100px){
  #top>.island-pulse{
    grid-template-columns:1fr 1fr;
  }
  #top>.island-pulse .live-title{
    grid-column:1/-1;
  }
  #top>.island-pulse .live-item{
    min-height:88px;
  }
}
@media (max-width:1099px){
  #top>.island-pulse::before{
    content:"PHÚ QUỐC LÚC NÀY";
    font-size:11px;
  }
  #top>.island-pulse .live-item,
  #top>.island-pulse .live-item:last-child{
    min-height:126px;
  }
  #top>.island-pulse .live-item span,
  #top>.island-pulse .live-item small,
  #top>.island-pulse .live-item time,
  #top>.island-pulse .live-item b{
    font-size:11px;
  }
}


/* V3.5 - homepage readability cleanup after visual QA */
.eyebrow,
.section-heading>a,
.feature-copy>span,
.feature-copy a,
.task-launcher a>span{
  font-size:11px;
}
@media (max-width:760px){
  .ticker-label strong,
  .ticker-track span{
    font-size:11px!important;
  }
}


/* V3.6 - Today rail readability after QA */
.hero-kicker,
.happening-row time span,
.row-type,
.happening-row p,
.happening-row em{
  font-size:11px;
}


/* Homepage restructure V2 - 20/09/2026 */
#top>.trip-clock-section,#top>.activity-board-section,#top>.near-me-section,#top>.hot-now-section,#top>.discover-section,#top>.explore-more-section{grid-column:1/-1!important;width:100%;max-width:none}
.compact-heading{margin-bottom:16px}.compact-heading h2{font-size:clamp(30px,3.4vw,48px)}
.surface-loading{padding:18px;border:1px dashed var(--line);border-radius:16px;color:var(--muted);font-size:13px;line-height:1.5;background:#fbfdfc}
.trip-clock-section{padding-top:36px!important}.trip-clock-grid{display:grid;grid-template-columns:minmax(240px,.62fr) minmax(0,1.38fr);gap:12px}.trip-clock-now{padding:22px;border-radius:22px;background:linear-gradient(145deg,#123D3B,#0B302F);color:#fff;min-height:210px;display:flex;flex-direction:column}.trip-clock-now>span{font-size:11px;font-weight:900;letter-spacing:.14em;color:rgba(255,255,255,.72)}.trip-clock-now>strong{margin-top:10px;font-size:56px;line-height:.9;letter-spacing:-.06em;font-variant-numeric:tabular-nums}.trip-clock-now>p{margin:9px 0 0;font-size:13px;color:rgba(255,255,255,.76)}.trip-sunset{margin-top:auto;padding-top:16px;border-top:1px solid rgba(255,255,255,.16);display:flex;justify-content:space-between;align-items:end;gap:10px}.trip-sunset small{font-size:12px;color:rgba(255,255,255,.72)}.trip-sunset b{font-size:22px}
.trip-clock-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.trip-item{padding:16px;border:1px solid var(--line);border-radius:18px;background:#fff;display:grid;gap:7px;align-content:start}.trip-item span{font-size:11px;font-weight:900;letter-spacing:.08em;color:var(--muted)}.trip-item strong{font-size:18px;color:var(--ink);line-height:1.15}.trip-item p{margin:0;font-size:12px;line-height:1.45;color:var(--muted)}.trip-item b{font-size:12px;color:var(--ink)}.trip-item[data-decision="unknown"]{background:#fafcfc}
.activity-board-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.activity-status-card{min-width:0;padding:16px;border:1px solid var(--line);border-radius:18px;background:#fff;display:flex;flex-direction:column;gap:7px}.activity-status-card>span{font-size:11px;font-weight:900;letter-spacing:.08em;color:var(--muted)}.activity-status-card strong{font-size:18px;line-height:1.12;color:var(--ink)}.activity-status-card p{margin:0;font-size:12px;line-height:1.45;color:var(--muted)}.activity-status-card small{margin-top:auto;font-size:11px;line-height:1.4;color:#71827f}.activity-status-card b{font-size:12px;color:var(--ink)}.activity-status-card[data-state="normal"]{border-color:#bde7d8;background:#f4fbf8}.activity-status-card[data-state="watch"]{border-color:#efd89e;background:#fffaf0}.activity-status-card[data-state="bad"]{border-color:#efbbb3;background:#fff6f4}
.plan-b-card{margin-top:10px;padding:16px;border:1px solid #efd89e;border-radius:18px;background:#fffaf0}.plan-b-card>div:first-child{display:flex;gap:10px;align-items:center}.plan-b-card span{font-size:11px;font-weight:900;letter-spacing:.1em;color:#9b680f}.plan-b-card strong{font-size:17px;color:var(--ink)}.plan-b-card p{margin:7px 0 10px;font-size:13px;color:var(--muted)}.plan-b-card>div:last-child{display:flex;flex-wrap:wrap;gap:7px}.plan-b-card a{padding:8px 10px;border-radius:999px;background:#fff;border:1px solid #ead9ad;font-size:12px;font-weight:800;color:var(--ink)}
.near-me-shell{display:grid;grid-template-columns:minmax(250px,.72fr) minmax(0,1.28fr);gap:12px}.near-me-controls,.near-results{padding:18px;border:1px solid var(--line);border-radius:20px;background:#fff}.near-location-btn{width:100%;min-height:48px;border:0;border-radius:14px;background:var(--ink);color:#fff;font-size:13px;font-weight:850;cursor:pointer}.near-manual{display:flex;flex-wrap:wrap;gap:7px;margin-top:10px}.near-manual button{padding:8px 10px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--ink);font-size:12px;font-weight:800;cursor:pointer}.near-manual button.active{background:var(--soft)}.near-me-controls p{margin:12px 0 0;font-size:12px;line-height:1.5;color:var(--muted)}
.near-category-grid{grid-column:2;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.near-category{min-height:76px;padding:12px;border:1px solid var(--line);border-radius:16px;background:#fff;text-align:left;cursor:pointer;color:var(--ink)}.near-category span{display:block;font-size:11px;color:var(--muted);font-weight:900}.near-category strong{display:block;margin-top:7px;font-size:14px}.near-category.active{border-color:#91d7ce;background:#f1fbf8}.near-results{grid-column:1/-1;display:flex;align-items:center;gap:8px;min-height:62px}.near-results strong{font-size:14px;color:var(--ink)}.near-results span{font-size:12px;color:var(--muted)}.near-result-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;width:100%}.near-result-card{padding:13px;border:1px solid var(--line);border-radius:14px}.near-result-card strong,.near-result-card small{display:block}.near-result-card small{margin-top:5px;font-size:11px;color:var(--muted)}
.hot-now-list{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}.hot-card{padding:16px;border:1px solid #efd89e;border-radius:18px;background:#fffaf0}.hot-card span{font-size:11px;font-weight:900;color:#9b680f}.hot-card strong{display:block;margin-top:7px;font-size:18px;color:var(--ink)}.hot-card p{font-size:12px;color:var(--muted);line-height:1.45}
.curiosity-rail{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.curiosity-card{position:relative;min-height:290px;overflow:hidden;border-radius:22px;background:#173f3c;color:#fff}.curiosity-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.curiosity-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,33,31,.05),rgba(5,33,31,.82))}.curiosity-card>div{position:absolute;z-index:2;left:18px;right:18px;bottom:18px}.curiosity-card span{font-size:11px;font-weight:900;letter-spacing:.1em}.curiosity-card strong{display:block;margin-top:8px;font-size:23px;line-height:1.05}.curiosity-card small{display:block;margin-top:8px;font-size:12px;color:rgba(255,255,255,.8)}
.explore-more-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:8px}.explore-more-grid a{min-height:122px;padding:15px;border:1px solid var(--line);border-radius:18px;background:#fff;display:flex;flex-direction:column}.explore-more-grid a>span{font-size:20px;color:var(--coral)}.explore-more-grid strong{margin-top:auto;font-size:16px;color:var(--ink)}.explore-more-grid small{margin-top:5px;font-size:11px;line-height:1.35;color:var(--muted)}
.energy-ticker[hidden]{display:none!important}.island-pulse .live-dot{animation:none;background:#39a77b;box-shadow:none}.island-pulse .live-dot[data-level="noteworthy"]{background:#E99A32;animation:pulse 1.2s ease-out 3}.island-pulse .live-dot[data-level="alert"]{background:#D24F42;animation:pulse 2.4s ease-out infinite}.energy-ticker[data-level="watch"] .ticker-label>span{background:#E99A32;animation:tickerPulse 1.2s ease-out 3}.energy-ticker[data-level="alert"] .ticker-label>span{background:#D24F42;animation:tickerPulse 2.4s ease-out infinite}
@media(max-width:1099px){.trip-clock-grid{grid-template-columns:1fr}.activity-board-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.near-me-shell{grid-template-columns:1fr}.near-category-grid{grid-column:1;grid-template-columns:repeat(3,minmax(0,1fr))}.explore-more-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.trip-clock-section,.activity-board-section,.near-me-section,.hot-now-section,.discover-section,.explore-more-section{padding-top:34px!important;padding-bottom:34px!important}.compact-heading h2{font-size:31px}.trip-clock-now{min-height:180px}.trip-clock-now>strong{font-size:50px}.trip-clock-list,.activity-board-grid,.curiosity-rail,.explore-more-grid{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}.trip-item,.activity-status-card{min-width:78vw;scroll-snap-align:start}.near-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.near-results{display:block}.near-results span{display:block;margin-top:4px}.near-result-list{grid-template-columns:1fr}.hot-now-list{display:flex;overflow-x:auto}.hot-card{min-width:80vw}.curiosity-card{min-width:82vw;scroll-snap-align:start}.explore-more-grid a{min-width:58vw;scroll-snap-align:start}}

/* Trip Clock schedule states - canonical entity hours */
.trip-item[data-decision="active"]{border-color:#9fdac7;background:#f2fbf7}
.trip-item[data-decision="future"]{border-color:#c9dfdc;background:#fbfdfc}
.trip-item[data-decision="past"]{opacity:.72}
.activity-status-card[data-state="info"]{border-color:#c9dfdc;background:#fbfdfc}

/* Homepage data density pass - verified utility + curiosity surfaces */
.near-result-card>span{display:block;margin-bottom:6px;font-size:10px;line-height:1.2;font-weight:900;letter-spacing:.06em;color:#16765D}
.near-result-card>small{display:block;margin-top:5px;font-size:11px;line-height:1.4;color:var(--muted)}
.near-result-card>em{display:block;margin-top:8px;font-size:10px;font-style:normal;color:#7d8e8a}
.hot-card small{display:block;margin-top:9px;font-size:10px;color:#7d8e8a}
.curiosity-card em{display:inline-flex;margin-top:10px;padding:5px 7px;border:1px solid rgba(255,255,255,.28);border-radius:999px;font-size:10px;line-height:1.2;font-style:normal;font-weight:850;color:rgba(255,255,255,.88)}

/* Homepage readability lock - 21/09/2026
   Keep operational/meta copy readable without inflating decorative credits. */
.now-card-top span{font-size:11px}
.near-result-card>span{font-size:11px;line-height:1.3}
.near-result-card>small{font-size:12px;line-height:1.45}
.near-result-card>em{font-size:11px;line-height:1.35}
.hot-card small{font-size:11px;line-height:1.4}
.curiosity-card em{font-size:11px;line-height:1.25}

/* Homepage functional surfaces - 21/09/2026 */
.near-manual-label{margin-top:14px;display:flex;justify-content:space-between;gap:10px;align-items:baseline}
.near-manual-label strong{font-size:12px;color:var(--ink)}
.near-manual-label span{font-size:11px;color:var(--muted)}
.near-result-actions{display:flex;gap:7px;flex-wrap:wrap;margin-top:10px}
.near-result-actions a{padding:7px 9px;border:1px solid var(--line);border-radius:999px;font-size:11px;font-weight:850;color:var(--ink);background:#fff}
.near-home-note{grid-column:1/-1;padding:12px 14px;border:1px solid var(--line);border-radius:14px;background:#f7faf9;display:flex;gap:8px;align-items:baseline}
.near-home-note strong{font-size:12px;color:var(--ink)}
.near-home-note span{font-size:11px;line-height:1.45;color:var(--muted)}
.home-currency-section{padding-top:36px!important}
.home-currency-status{margin:-6px 0 14px;font-size:12px;color:var(--muted)}
.home-currency-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px}
.home-currency-card{min-width:0;padding:16px;border:1px solid var(--line);border-radius:18px;background:#fff;display:flex;flex-direction:column;gap:7px}
.home-currency-card span{font-size:11px;font-weight:900;letter-spacing:.06em;color:var(--muted)}
.home-currency-card strong{font-size:22px;line-height:1;color:var(--ink);font-variant-numeric:tabular-nums}
.home-currency-card small{font-size:11px;line-height:1.4;color:var(--muted)}
.home-currency-empty{grid-column:1/-1;padding:18px;border:1px dashed var(--line);border-radius:16px;color:var(--muted);font-size:13px}
.home-currency-empty a{font-weight:850;color:var(--ink)}
@media(max-width:1099px){.home-currency-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){
  .near-manual-label{align-items:flex-start;flex-direction:column;gap:2px}
  .near-home-note{display:block}
  .near-home-note span{display:block;margin-top:3px}
  .home-currency-grid{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x mandatory}
  .home-currency-card{min-width:72vw;scroll-snap-align:start}
}



/* Homepage logic pass - curiosity cards + lean header */
.site-header .header-search{flex:none}
@media(min-width:1100px){.site-header .header-search{margin-left:0}}
@media(max-width:1099px){.site-header .header-search{margin-left:auto}}

.curiosity-rail{align-items:start}
.curiosity-card{
  min-height:0;
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  color:var(--ink);
  overflow:hidden;
}
.curiosity-card:after{display:none}
.curiosity-toggle{
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  text-align:left;
  cursor:pointer;
}
.curiosity-media{
  position:relative;
  margin:0;
  height:190px;
  overflow:hidden;
  background:#173f3c;
}
.curiosity-card .curiosity-media img{
  position:static;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.curiosity-media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,33,31,.04),rgba(5,33,31,.6));
}
.curiosity-media span{
  position:absolute;
  z-index:2;
  left:14px;
  bottom:12px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(18,61,59,.78);
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
}
.curiosity-question{
  position:static!important;
  padding:16px 17px 17px;
}
.curiosity-question strong{
  display:block;
  margin:0;
  color:var(--ink);
  font-size:22px;
  line-height:1.08;
}
.curiosity-question small{
  display:block;
  margin-top:9px;
  color:var(--muted);
  font-size:12px;
}
.curiosity-answer{
  padding:15px 17px 17px;
  border-top:1px solid var(--line);
  background:#f7faf9;
}
.curiosity-answer[hidden]{display:none}
.curiosity-answer p{
  margin:0;
  color:var(--ink);
  font-size:13px;
  line-height:1.55;
}
.curiosity-answer>div{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.curiosity-answer em{
  display:inline-flex;
  padding:5px 7px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  font-size:10px;
  font-style:normal;
  font-weight:850;
}
.curiosity-answer a{
  color:var(--ink);
  font-size:12px;
  font-weight:900;
}
.curiosity-card[data-open="true"]{
  box-shadow:0 14px 34px rgba(18,61,59,.08);
}
@media(max-width:760px){
  .curiosity-card{min-width:82vw}
  .curiosity-media{height:178px}
  .curiosity-question strong{font-size:21px}
}


/* Homepage human-language + decision UX lock - 21/09/2026 */
#top>.food-now-section,
#top>.island-stories-section{
  grid-column:1/-1!important;
  width:100%;
  max-width:none;
}

@media(min-width:1100px){
  #top>.island-pulse .live-item{
    min-height:102px;
    padding:13px 14px;
  }
  #top>.island-pulse .live-item strong{
    font-size:19px;
    line-height:1.05;
  }
  #top>.island-pulse .live-item small,
  #top>.island-pulse .live-item time,
  #top>.island-pulse .live-item b{
    font-size:10.5px;
  }
  #top>.now-card{
    max-height:235px;
  }
}

.now-card-copy h2{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}
.now-card-copy p{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.trip-clock-grid{
  grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr);
  align-items:start;
}
/* Clock spans only the first row: height follows the eight featured cards,
   never the extra activities revealed in row two. */
.trip-clock-now{
  grid-column:1;
  grid-row:1;
  min-height:0;
  height:auto;
  align-self:stretch;
}
.trip-clock-list{
  grid-column:2;
  grid-row:1;
}
.trip-clock-extra-panel{
  grid-column:2;
  grid-row:2;
  display:grid;
  gap:8px;
  min-width:0;
}
.trip-clock-extra-panel[hidden],.trip-clock-extra-list[hidden]{display:none!important}
.trip-clock-extra-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  min-width:0;
}
.trip-day-left{
  margin-top:26px;
  padding:16px 0 18px;
  border-top:1px solid rgba(255,255,255,.15);
  display:grid;
  gap:6px;
}
.trip-day-left small{
  font-size:10px;
  font-weight:900;
  letter-spacing:.12em;
  color:rgba(255,255,255,.58);
}
.trip-day-left b{
  max-width:340px;
  font-size:19px;
  line-height:1.18;
  color:#fff;
}
.trip-day-left p{
  max-width:360px;
  margin:0;
  font-size:12px;
  line-height:1.5;
  color:rgba(255,255,255,.72);
}
.trip-item{
  min-height:150px;
}
.trip-item span{
  color:#52726e;
}
.trip-item b{
  margin-top:auto;
  line-height:1.4;
  color:#3f625f;
}

.near-location-btn:disabled{
  opacity:.68;
  cursor:wait;
}
.near-home-note a{
  margin-left:auto;
  white-space:nowrap;
  font-size:11px;
  font-weight:900;
  color:var(--ink);
}
.near-result-card>em{display:none!important}

/* Food now is deliberately a compact decision strip, not another large dashboard. */
.food-now-section{
  padding-top:38px!important;
  padding-bottom:42px!important;
}
.food-now-head{
  margin:-5px 0 13px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:baseline;
}
.food-now-head strong{
  font-size:13px;
  color:var(--ink);
}
.food-now-head span{
  max-width:620px;
  font-size:11px;
  line-height:1.45;
  color:var(--muted);
  text-align:right;
}
.food-now-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
.food-now-card{
  min-width:0;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:linear-gradient(145deg,#fffaf5,#fff);
  display:flex;
  flex-direction:column;
  gap:7px;
}
.food-now-card>span{
  font-size:10px;
  letter-spacing:.1em;
  font-weight:900;
  color:#a65d43;
}
.food-now-card>strong{
  font-size:21px;
  line-height:1.06;
  color:var(--ink);
}
.food-now-card>p{
  margin:0;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  font-size:12px;
  line-height:1.5;
  color:var(--muted);
}
.food-now-card>small{
  margin-top:3px;
  font-size:10.5px;
  line-height:1.4;
  color:#7c7168;
}
.food-now-card>b{
  margin-top:auto;
  padding-top:4px;
  font-size:12px;
  color:var(--ink);
}

/* Curiosity: the question leads; the image only gives context. */
.curiosity-card{
  min-height:0;
}
.curiosity-toggle{
  display:grid;
  grid-template-columns:118px minmax(0,1fr);
  min-height:142px;
  align-items:stretch;
}
.curiosity-media{
  height:auto;
  min-height:142px;
}
.curiosity-media:after{
  background:linear-gradient(180deg,rgba(5,33,31,.02),rgba(5,33,31,.18));
}
.curiosity-question{
  padding:17px!important;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.curiosity-question span{
  display:block;
  margin-bottom:8px;
  font-size:10px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.09em;
  color:#4f746f;
}
.curiosity-question strong{
  font-size:20px;
}
.curiosity-question small{
  margin-top:8px;
}

/* Editorial rhythm: not every homepage surface should look like a utility card. */
.island-stories-section{
  padding-top:48px!important;
  padding-bottom:52px!important;
  background:linear-gradient(180deg,#f7faf9 0,#fff 100%);
}
.island-story-grid{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr;
  gap:10px;
}
.island-story-card{
  min-width:0;
  overflow:hidden;
  border-top:1px solid rgba(18,61,59,.14);
  display:grid;
  grid-template-rows:210px auto;
  background:#fff;
}
.island-story-card.lead{
  grid-template-rows:280px auto;
}
.island-story-card figure{
  margin:0;
  overflow:hidden;
  background:#dce9e6;
}
.island-story-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.island-story-card:hover img{
  transform:scale(1.025);
}
.island-story-card>div{
  padding:15px 4px 6px;
}
.island-story-card span{
  font-size:10px;
  letter-spacing:.09em;
  font-weight:900;
  color:#54736f;
}
.island-story-card strong{
  display:block;
  margin-top:8px;
  font-size:24px;
  line-height:1.02;
  letter-spacing:-.025em;
  color:var(--ink);
}
.island-story-card.lead strong{
  font-size:30px;
}
.island-story-card p{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.5;
  color:var(--muted);
}
.island-story-card small{
  display:block;
  margin-top:12px;
  font-size:11px;
  font-weight:850;
  color:var(--ink);
}

@media(max-width:1099px){
  .trip-clock-grid{grid-template-columns:1fr}
  .trip-clock-now{min-height:260px}
  .food-now-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .island-story-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .island-story-card.lead{grid-template-rows:210px auto}
  .island-story-card.lead strong{font-size:24px}
}

@media(max-width:760px){
  .trip-clock-section,
  .food-now-section,
  .near-me-section,
  .hot-now-section,
  .discover-section,
  .island-stories-section,
  .explore-more-section{
    padding-top:32px!important;
    padding-bottom:32px!important;
  }
  .trip-clock-now{
    min-height:250px;
    padding:20px;
  }
  .trip-day-left{
    margin-top:20px;
    padding:13px 0 15px;
  }
  .trip-day-left b{font-size:18px}
  .trip-clock-list{
    display:flex;
    overflow-x:auto;
  }
  .trip-item{
    min-width:76vw;
    min-height:156px;
  }
  .food-now-head{
    display:block;
  }
  .food-now-head span{
    display:block;
    margin-top:5px;
    text-align:left;
  }
  .food-now-grid{
    display:flex;
    overflow-x:auto;
    gap:8px;
    scroll-snap-type:x mandatory;
  }
  .food-now-card{
    min-width:78vw;
    scroll-snap-align:start;
  }
  .near-me-controls{
    padding:14px;
  }
  .near-category-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:6px;
  }
  .near-category{
    min-height:65px;
    padding:10px;
  }
  .near-category strong{
    font-size:12px;
  }
  .near-home-note a{
    display:inline-block;
    margin:7px 0 0;
  }
  .curiosity-toggle{
    grid-template-columns:92px minmax(0,1fr);
    min-height:128px;
  }
  .curiosity-media{
    min-height:128px;
    height:auto;
  }
  .curiosity-question{
    padding:14px!important;
  }
  .curiosity-question strong{
    font-size:18px;
  }
  .curiosity-question small{
    font-size:11px;
  }
  .curiosity-answer>div{
    align-items:flex-start;
    flex-direction:column;
  }
  .island-story-grid{
    display:flex;
    overflow-x:auto;
    gap:9px;
    scroll-snap-type:x mandatory;
  }
  .island-story-card,
  .island-story-card.lead{
    min-width:82vw;
    grid-template-rows:190px auto;
    scroll-snap-align:start;
  }
  .island-story-card strong,
  .island-story-card.lead strong{
    font-size:23px;
  }
}

.near-gps-note{
  grid-column:1/-1;
  width:100%;
  padding:11px 13px;
  border:1px solid #dbe8e5;
  border-radius:13px;
  background:#f7faf9;
}
.near-gps-note strong{font-size:12px;color:var(--ink)}
.near-gps-note span{display:block;margin-top:3px;font-size:11px;line-height:1.45;color:var(--muted)}


/* Homepage single-warning lock + nearest-area GPS fallback - 21/09/2026 */
.energy-ticker[hidden]{display:none!important}
.energy-ticker.is-static{
  padding:0!important;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:stretch;
  overflow:hidden;
}
.energy-ticker.is-static .ticker-label{
  min-height:42px;
  height:auto!important;
  padding:0 13px;
  display:flex;
  align-items:center;
}
.energy-ticker.is-static .ticker-window{
  min-width:0;
  min-height:42px;
  height:auto!important;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.energy-ticker.is-static .ticker-track{
  width:100%;
  min-width:0;
  transform:none!important;
  animation:none!important;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  padding:7px 12px;
  white-space:normal;
}
.energy-ticker.is-static .ticker-track span{
  font-size:10px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.11em;
  color:#58726e;
}
.energy-ticker.is-static .ticker-track b{
  min-width:0;
  font-size:12px;
  line-height:1.35;
  color:var(--ink);
}
.energy-ticker.is-static .ticker-action{
  white-space:nowrap;
  padding:6px 9px;
  border:1px solid rgba(18,61,59,.14);
  border-radius:9px;
  background:rgba(255,255,255,.72);
  font-size:10.5px;
  font-weight:900;
  color:var(--ink);
}
.energy-ticker.is-static[data-level="alert"]{
  background:linear-gradient(90deg,#fff4ec,#fff9e7 58%,#f4fbf8);
}
@media(min-width:1100px){
  #top>.energy-ticker.is-static{
    height:auto!important;
    min-height:42px!important;
  }
}
@media(max-width:760px){
  .energy-ticker.is-static .ticker-label{min-height:46px;padding:0 9px}
  .energy-ticker.is-static .ticker-track{
    min-height:46px;
    grid-template-columns:minmax(0,1fr) auto;
    gap:7px;
    padding:7px 9px;
  }
  .energy-ticker.is-static .ticker-track span{display:none}
  .energy-ticker.is-static .ticker-track b{
    font-size:11px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
  }
  .energy-ticker.is-static .ticker-action{padding:6px 7px;font-size:10px}
}


/* Homepage legibility floor - 21/09/2026 */
#top>.island-pulse .live-item small,
#top>.island-pulse .live-item time,
#top>.island-pulse .live-item b,
.trip-day-left small,
.food-now-card>span,
.food-now-card>small,
.curiosity-question span,
.island-story-card span{
  font-size:11px;
}


/* Homepage decision-flow polish v4 - 21/09/2026 */
.trip-clock-now{
  background:
    linear-gradient(135deg,rgba(10,47,45,.96),rgba(12,58,55,.83)),
    url("assets/hero-local.svg") center/cover no-repeat!important;
  box-shadow:0 18px 40px rgba(18,61,59,.10);
}
.trip-clock-now:before{
  content:"";
  width:96px;
  height:4px;
  margin-bottom:2px;
  border-radius:99px;
  background:linear-gradient(90deg,#ff7757,#FCBC12);
  opacity:.95;
}
.trip-clock-list{align-content:start}

@media(min-width:1100px){
  #top>.now-card{
    grid-column:1/-1!important;
    grid-row:auto!important;
    max-height:none!important;
    min-height:0!important;
    margin:4px 0 10px!important;
    padding:14px 18px!important;
    display:grid!important;
    grid-template-columns:minmax(175px,.42fr) minmax(0,1.35fr) auto!important;
    align-items:center!important;
    gap:18px!important;
    align-self:auto!important;
  }
  #top>.now-card .now-card-top{
    align-self:stretch;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
  }
  #top>.now-card .now-card-copy{min-width:0}
  #top>.now-card .now-card-copy h2{font-size:23px;line-height:1.05}
  #top>.now-card .now-card-copy p{font-size:12.5px;line-height:1.4}
  #top>.now-card .now-card-actions{
    flex-wrap:nowrap;
    justify-content:flex-end;
  }
  #top>.now-card .now-card-actions a{
    min-height:38px;
    padding:9px 12px;
    white-space:nowrap;
  }
}

@media(max-width:760px){
  .trip-clock-list{
    display:grid!important;
    grid-template-columns:1fr!important;
    overflow:visible!important;
    gap:8px!important;
    scroll-snap-type:none!important;
  }
  .trip-item{
    min-width:0!important;
    width:100%!important;
    min-height:0!important;
    padding:14px!important;
  }
  .trip-item strong{font-size:19px}
  .near-category-grid{
    display:flex!important;
    grid-template-columns:none!important;
    overflow-x:auto!important;
    gap:7px!important;
    padding-bottom:4px;
    scrollbar-width:none;
  }
  .near-category-grid::-webkit-scrollbar{display:none}
  .near-category{
    flex:0 0 auto!important;
    min-width:max-content!important;
    min-height:42px!important;
    padding:9px 11px!important;
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    border-radius:999px!important;
  }
  .near-category span,
  .near-category strong{
    display:inline!important;
    margin:0!important;
    font-size:12px!important;
  }
  .near-results{margin-top:8px}
  .near-home-note{margin-top:8px}
}


/* Homepage top-flow + mobile media lock v5 - 21/09/2026 */
.now-card-pager{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
}
.now-card-pager[hidden]{display:none!important}
.now-card-pager button{
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.34);
  cursor:pointer;
  transition:width .2s ease,background .2s ease;
}
.now-card-pager button.is-active{
  width:22px;
  background:#fff;
}

@media(min-width:1100px){
  /* Breaking/update strip stays directly below the main navigation. */
  #top>.energy-ticker{
    grid-column:1/-1!important;
    grid-row:1!important;
    width:100%!important;
    margin:0!important;
  }

  /* First desktop scene: image-led hero + six live tiles. */
  #top>.hero{
    grid-column:1/9!important;
    grid-row:2!important;
    min-height:545px!important;
    max-height:545px!important;
  }
  #top>.live-strip{
    grid-column:9/13!important;
    grid-row:2!important;
    align-self:start!important;
  }

  /* Context suggestion is a separate strip below "Phú Quốc lúc này",
     never squeezed into the live-tile column. */
  #top>.now-card{
    grid-column:1/-1!important;
    grid-row:3!important;
    max-height:none!important;
    min-height:92px!important;
    margin:2px 0 0!important;
    padding:14px 18px!important;
    display:grid!important;
    grid-template-columns:minmax(175px,.40fr) minmax(0,1.3fr) auto auto!important;
    align-items:center!important;
    gap:18px!important;
  }
  #top>.now-card .now-card-top{
    align-self:stretch;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:4px;
  }
  #top>.now-card .now-card-copy{min-width:0}
  #top>.now-card .now-card-actions{
    flex-wrap:nowrap;
    justify-content:flex-end;
  }
  #top>.now-card .now-card-actions a{white-space:nowrap}
  #top>.trip-clock-section{
    grid-column:1/-1!important;
    grid-row:4!important;
    padding-top:34px!important;
  }
}

@media(max-width:1099px){
  .now-card-pager{justify-content:flex-start}
}

@media(max-width:760px){
  /* Lock image geometry before remote images finish loading to avoid layout jumps. */
  .curiosity-card{
    overflow:hidden!important;
  }
  .curiosity-toggle{
    grid-template-columns:104px minmax(0,1fr)!important;
    min-height:132px!important;
    height:132px!important;
    overflow:hidden!important;
  }
  .curiosity-media{
    width:104px!important;
    min-width:104px!important;
    height:132px!important;
    min-height:132px!important;
    max-height:132px!important;
    aspect-ratio:104/132!important;
    overflow:hidden!important;
  }
  .curiosity-card .curiosity-media img{
    display:block!important;
    width:104px!important;
    min-width:104px!important;
    max-width:104px!important;
    height:132px!important;
    min-height:132px!important;
    max-height:132px!important;
    object-fit:cover!important;
    object-position:center!important;
  }
  .curiosity-question{
    min-width:0!important;
    height:132px!important;
    overflow:hidden!important;
  }

  .island-story-card,
  .island-story-card.lead{
    grid-template-rows:190px auto!important;
  }
  .island-story-card figure,
  .island-story-card.lead figure{
    width:100%!important;
    height:190px!important;
    min-height:190px!important;
    max-height:190px!important;
    aspect-ratio:16/10!important;
    overflow:hidden!important;
  }
  .island-story-card img,
  .island-story-card.lead img{
    display:block!important;
    width:100%!important;
    height:190px!important;
    min-height:190px!important;
    max-height:190px!important;
    object-fit:cover!important;
    object-position:center!important;
  }

  .now-card-pager{
    margin-top:-2px;
    padding-top:2px;
  }
}


/* Breaking-news marquee + light contextual suggestion v6 - 21/09/2026 */
/* "Tin nhanh" is the slim moving line. The larger "Tin & cập nhật Phú Quốc"
   remains a normal content section lower on the homepage. */
.energy-ticker,
#top>.energy-ticker{
  display:grid!important;
  grid-template-columns:auto minmax(0,1fr)!important;
  align-items:center!important;
  min-height:40px!important;
  height:40px!important;
  padding:0!important;
  overflow:hidden!important;
  border:1px solid rgba(18,61,59,.09)!important;
  border-radius:12px!important;
  background:linear-gradient(90deg,#fff9e8,#f4fbf8 56%,#fff6f1)!important;
  box-shadow:0 5px 16px rgba(18,61,59,.035)!important;
}
.energy-ticker .ticker-label{
  position:relative;
  z-index:3;
  height:40px!important;
  padding:0 12px!important;
  display:flex!important;
  align-items:center!important;
  gap:7px!important;
  border-radius:11px 0 0 11px!important;
  background:var(--ink)!important;
  color:#fff!important;
  white-space:nowrap!important;
}
.energy-ticker .ticker-label>span{
  width:7px!important;
  height:7px!important;
  flex:0 0 7px;
  border-radius:50%;
  background:var(--coral)!important;
  animation:tickerPulse 1.5s ease-out infinite!important;
}
.energy-ticker .ticker-label strong{
  font-size:8px!important;
  line-height:1!important;
  letter-spacing:.15em!important;
  font-weight:900!important;
  color:#fff!important;
}
.energy-ticker .ticker-window{
  min-width:0!important;
  width:100%!important;
  height:40px!important;
  display:flex!important;
  align-items:center!important;
  overflow:hidden!important;
  mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%)!important;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%)!important;
}
.energy-ticker .ticker-track,
.motion-on .energy-ticker .ticker-track,
#top>.energy-ticker .ticker-track{
  width:max-content!important;
  min-width:max-content!important;
  flex:none!important;
  display:flex!important;
  align-items:center!important;
  gap:12px!important;
  padding:0!important;
  white-space:nowrap!important;
  transform:translate3d(0,0,0);
  animation:tickerMove var(--ticker-duration,11s) linear infinite!important;
  will-change:transform;
  backface-visibility:hidden;
}
.energy-ticker .ticker-track span{
  font-size:9px!important;
  line-height:1!important;
  letter-spacing:.13em!important;
  font-weight:900!important;
  color:#55716d!important;
}
.energy-ticker .ticker-track b{
  font-size:11px!important;
  line-height:1!important;
  font-weight:780!important;
  color:var(--ink)!important;
}
.energy-ticker .ticker-track i{
  font-size:10px!important;
  line-height:1!important;
  font-style:normal!important;
  color:var(--coral)!important;
}
#top>.energy-ticker:hover .ticker-track{animation-play-state:paused!important}
.energy-ticker[data-level="alert"]{
  background:linear-gradient(90deg,#fff3e9,#fff9e8 55%,#f4fbf8)!important;
}
.energy-ticker[data-level="watch"]{
  background:linear-gradient(90deg,#fff8df,#f5fbf7 62%,#fff)!important;
}

/* Contextual suggestion should read as a gentle decision aid, not another dark live panel. */
#top>.now-card{
  border:1px solid rgba(18,61,59,.10)!important;
  background:
    radial-gradient(circle at 96% 0,rgba(252,188,18,.10),transparent 35%),
    linear-gradient(135deg,#f6fbf9,#fffdf7)!important;
  color:var(--ink)!important;
  box-shadow:0 10px 26px rgba(18,61,59,.055)!important;
}
#top>.now-card:before{
  height:3px!important;
  background:linear-gradient(90deg,#ff7757,#FCBC12 45%,#8fd8cf 82%,transparent)!important;
}
#top>.now-card .now-card-top span{
  color:#53716d!important;
}
#top>.now-card .now-card-top time{
  color:#315d59!important;
}
#top>.now-card .now-card-copy h2{
  color:var(--ink)!important;
}
#top>.now-card .now-card-copy p{
  color:#617572!important;
}
#top>.now-card .now-card-actions a{
  border-color:rgba(18,61,59,.15)!important;
  background:rgba(255,255,255,.72)!important;
  color:var(--ink)!important;
}
#top>.now-card .now-card-actions a:first-child{
  border-color:#d9ebe6!important;
  background:#fff!important;
  box-shadow:0 4px 12px rgba(18,61,59,.05);
}
#top>.now-card[data-tone="watch"]{
  background:
    radial-gradient(circle at 96% 0,rgba(255,119,87,.10),transparent 36%),
    linear-gradient(135deg,#fff8f4,#fffdf7)!important;
}
#top>.now-card[data-tone="sunset"]{
  background:
    radial-gradient(circle at 96% 0,rgba(252,188,18,.13),transparent 36%),
    linear-gradient(135deg,#fffaf1,#f7fbf9)!important;
}
#top>.now-card .now-card-pager button{
  background:rgba(18,61,59,.18)!important;
}
#top>.now-card .now-card-pager button.is-active{
  background:#315d59!important;
}

/* Keep the full news section in the regular content flow. */
#top>.hot-now-section{
  grid-column:1/-1!important;
  grid-row:auto!important;
  order:initial!important;
}

@media(max-width:760px){
  .energy-ticker,
  #top>.energy-ticker{
    min-height:38px!important;
    height:38px!important;
    margin-top:10px!important;
  }
  .energy-ticker .ticker-label{
    height:38px!important;
    padding:0 10px!important;
  }
  .energy-ticker .ticker-label strong{font-size:7px!important}
  .energy-ticker .ticker-label>span{
    width:6px!important;height:6px!important;flex-basis:6px!important
  }
  .energy-ticker .ticker-window{height:38px!important}
  .energy-ticker .ticker-track span{font-size:8px!important}
  .energy-ticker .ticker-track b{font-size:10px!important}
  #top>.now-card{
    background:
      radial-gradient(circle at 96% 0,rgba(252,188,18,.09),transparent 35%),
      linear-gradient(135deg,#f6fbf9,#fffdf8)!important;
  }
}
@media(prefers-reduced-motion:reduce){
  .energy-ticker .ticker-track{
    animation-duration:24s!important;
  }
}


/* Desktop editorial image geometry lock v7 - 21/09/2026 */
@media(min-width:1100px){
  /* Curiosity cards: every thumbnail uses the same box, regardless of source image ratio. */
  .curiosity-rail{
    align-items:stretch!important;
  }
  .curiosity-card{
    height:auto!important;
    min-height:0!important;
  }
  .curiosity-toggle{
    display:grid!important;
    grid-template-columns:124px minmax(0,1fr)!important;
    height:150px!important;
    min-height:150px!important;
    max-height:150px!important;
    overflow:hidden!important;
    align-items:stretch!important;
  }
  .curiosity-media{
    width:124px!important;
    min-width:124px!important;
    max-width:124px!important;
    height:150px!important;
    min-height:150px!important;
    max-height:150px!important;
    aspect-ratio:124/150!important;
    overflow:hidden!important;
  }
  .curiosity-card .curiosity-media img{
    display:block!important;
    width:124px!important;
    min-width:124px!important;
    max-width:124px!important;
    height:150px!important;
    min-height:150px!important;
    max-height:150px!important;
    object-fit:cover!important;
    object-position:center!important;
  }
  .curiosity-question{
    min-width:0!important;
    height:150px!important;
    min-height:150px!important;
    max-height:150px!important;
    overflow:hidden!important;
    padding:16px 17px!important;
  }
  .curiosity-question strong{
    display:-webkit-box!important;
    -webkit-box-orient:vertical!important;
    -webkit-line-clamp:3!important;
    overflow:hidden!important;
  }

  /* "Phú Quốc không chỉ có biển": lead and secondary stories share one image height. */
  .island-story-grid{
    align-items:start!important;
  }
  .island-story-card,
  .island-story-card.lead{
    grid-template-rows:230px auto!important;
  }
  .island-story-card figure,
  .island-story-card.lead figure{
    width:100%!important;
    height:230px!important;
    min-height:230px!important;
    max-height:230px!important;
    aspect-ratio:16/10!important;
    overflow:hidden!important;
  }
  .island-story-card img,
  .island-story-card.lead img{
    display:block!important;
    width:100%!important;
    height:230px!important;
    min-height:230px!important;
    max-height:230px!important;
    object-fit:cover!important;
    object-position:center!important;
  }
}


/* Anchor alignment lock - 21/09/2026 */
#today{
  scroll-margin-top:74px;
}
@media(max-width:760px){
  #today{scroll-margin-top:68px}
}


/* Curiosity expanded-answer positioning fix - 21/09/2026 */
.curiosity-card>.curiosity-answer{
  position:static!important;
  inset:auto!important;
  left:auto!important;
  right:auto!important;
  bottom:auto!important;
  z-index:auto!important;
  width:auto!important;
}


/* 21/09 late-night decision + curiosity row fix */
.trip-sunset[hidden]{display:none!important}
.trip-clock-empty{
  grid-column:1/-1;
  min-height:180px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#f7faf9;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.trip-clock-empty strong{font-size:21px;line-height:1.15;color:var(--ink)}
.trip-clock-empty p{margin:8px 0 0;max-width:560px;font-size:13px;line-height:1.55;color:var(--muted)}
.trip-clock-empty>div{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.trip-clock-empty a{padding:9px 12px;border:1px solid var(--line);border-radius:999px;background:#fff;font-size:12px;font-weight:850;color:var(--ink)}
.curiosity-rail{align-items:start!important}
.curiosity-card{align-self:start!important}


/* Public type-case rule: labels uppercase, human values sentence case. */
.eyebrow,.hero-kicker,.more-label,.curiosity-question>span,.island-story-card>div>span{
  text-transform:uppercase
}
.live-item>span,.near-result-card>span,.trip-item>span{
  text-transform:none
}

/* Public knowledge library on the homepage - 23/09/2026 */
#top>.home-library-section{grid-column:1/-1!important;width:100%;max-width:none}
.hero-knowledge-pill{display:inline-flex;align-items:center;gap:9px;max-width:100%;margin-top:13px;padding:10px 15px;border-radius:999px;border:1px solid rgba(255,255,255,.5);background:rgba(8,50,45,.76);color:#fff!important;font-size:14px;font-weight:750;line-height:1.45;text-decoration:none;backdrop-filter:blur(8px)}
.hero-knowledge-pill span{font-size:18px}
.hero-knowledge-pill:hover,.hero-knowledge-pill:focus-visible{background:#123d3b;outline-color:#fff}
.home-library-section{padding-block:32px!important}
.home-library-section>.section-heading h2{max-width:780px}
.home-library-intro{margin:-2px 0 20px;max-width:690px;color:var(--muted);font-size:15px;line-height:1.65}
.home-library-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.home-library-card{display:flex;flex-direction:column;min-height:225px;gap:10px;padding:20px;border-radius:20px;border:1px solid #dbe8e0;background:#fff;color:#173d36;text-decoration:none;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}
.home-library-card:hover,.home-library-card:focus-visible{transform:translateY(-3px);border-color:#6aa38b;box-shadow:0 12px 28px rgba(16,65,51,.1)}
.home-library-topic{font-size:11px;font-weight:850;letter-spacing:.08em;color:#447f61}
.home-library-card strong{font-size:clamp(19px,2vw,23px);font-weight:850;letter-spacing:-.025em;line-height:1.22;color:#123d3b}
.home-library-card small{font-size:14px;line-height:1.55;color:#506961}
.home-library-action{margin-top:auto;padding-top:10px;font-size:14px;font-weight:800;color:#227259}
.home-library-footer{display:flex;flex-wrap:wrap;align-items:center;gap:9px;margin-top:18px;font-size:13px}
.home-library-footer>span{font-weight:750;color:var(--ink)}
.home-library-footer a{display:inline-flex;padding:8px 12px;border:1px solid #ccded6;border-radius:999px;background:#f6faf8;color:#276a55;font-size:13px;font-weight:700;text-decoration:none}
.home-library-footer a:hover,.home-library-footer a:focus-visible{background:#e8f3eb;border-color:#6ea88d}
@media(max-width:1050px){.home-library-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-library-card{min-height:198px}}
@media(max-width:600px){.hero-knowledge-pill{font-size:12px;padding:9px 12px}.home-library-section{padding-block:23px!important}.home-library-intro{font-size:14px}.home-library-grid{grid-template-columns:1fr;gap:9px}.home-library-card{min-height:0;padding:17px;gap:7px}.home-library-card strong{font-size:20px}.home-library-card small{font-size:13px}.home-library-footer{gap:7px}.home-library-footer a{font-size:12px}}

/* One random dish inside the existing homepage "Bây giờ ăn gì?" module. */
#top>.food-now-section{scroll-margin-top:85px}
.food-now-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;gap:10px}
.food-now-actions>a{font-size:13px;font-weight:800;color:#226f5e;text-decoration:none}
.food-now-actions button{border:0;border-radius:999px;padding:11px 17px;background:#174d46;color:#fff;font-size:13px;font-weight:800;cursor:pointer;transition:transform .16s ease}
.food-now-actions button:hover:not(:disabled){transform:translateY(-2px)}
.food-now-actions button:disabled{opacity:.55;cursor:wait}
.food-now-section .food-now-grid{display:block;overflow:visible;scroll-snap-type:none}
.food-now-section .food-now-card.featured-food-card{display:grid;grid-template-columns:minmax(230px,.8fr) minmax(0,1.2fr);gap:0;padding:0;min-width:0;overflow:hidden;scroll-snap-align:none;background:linear-gradient(130deg,#fff9f1,#fff,#f4faf5)}
.food-now-section .featured-food-card .food-now-media{height:100%;min-height:240px;position:relative;margin:0;overflow:hidden;background:#f7eee3}
.food-now-section .featured-food-card .food-now-media img{width:100%;height:100%;min-height:240px;object-fit:cover}
.food-now-section .featured-food-card .food-now-media figcaption{position:absolute;bottom:12px;left:12px;padding:5px 9px;border-radius:999px;background:rgba(20,57,47,.85);color:#fff;font-size:11px;font-weight:750}
.food-now-section .featured-food-card .food-now-media.is-error{display:grid;place-items:center}
.food-now-section .featured-food-card .food-now-media.is-error img,.food-now-section .featured-food-card .food-now-media.is-error figcaption{display:none}
.food-now-section .featured-food-card .food-now-media.is-error:after{content:"Ảnh món hiện chưa tải được";color:#765e4c;font-size:13px;font-weight:700}
.food-now-section .featured-food-card .food-now-media-empty{display:grid;place-items:center;padding:26px;text-align:center;background:linear-gradient(140deg,#f9efe3,#e8f4ed);color:#806956;font-size:13px;font-weight:750}
.food-now-section .food-now-copy{display:flex;flex-direction:column;gap:10px;min-width:0;padding:25px 28px}
.food-now-section .food-now-copy>span{font-size:11px;letter-spacing:.12em;font-weight:900;color:#a25d40}
.food-now-section .food-now-copy h3{margin:0;font-size:clamp(26px,3.7vw,40px);line-height:1.1;letter-spacing:-.035em;color:#143d37}
.food-now-section .food-now-copy p{margin:0;color:#516763;font-size:15px;line-height:1.55;max-width:660px}
.food-now-section .food-now-copy small{font-size:12px;line-height:1.45;color:#836047}
.food-now-section .food-now-copy>a{display:inline-flex;align-self:flex-start;margin-top:auto;padding-top:7px;color:#165c4e;font-size:15px;font-weight:850;text-decoration:none}
@media(max-width:760px){
  .food-now-actions{justify-content:flex-start;width:100%;margin-top:12px}
  .food-now-section .food-now-head{margin-top:8px}
  .food-now-section .food-now-card.featured-food-card{grid-template-columns:minmax(0,1fr);min-width:0!important}
  .food-now-section .featured-food-card .food-now-media,.food-now-section .featured-food-card .food-now-media img{min-height:190px;height:190px}
  .food-now-section .food-now-copy{padding:18px;gap:9px}
  .food-now-section .food-now-copy h3{font-size:30px}
  .food-now-section .food-now-copy p{font-size:14px}
  .food-now-section .food-now-copy>a{font-size:14px}
}

/* Food suggestions: three equal cards, swipeable on small screens. */
.food-now-section .food-now-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;overflow:visible}
.food-now-section .food-now-card.featured-food-card{display:flex;flex-direction:column;min-width:0;border:1px solid #e8ede7;border-radius:17px;background:#fff;overflow:hidden}
.food-now-section .featured-food-card .food-now-media,.food-now-section .featured-food-card .food-now-media img{height:190px;min-height:190px;max-height:190px;display:block}
.food-now-section .featured-food-card .food-now-media img{width:100%;object-fit:cover}
.food-now-section .food-now-copy{flex:1;padding:17px;gap:8px}
.food-now-section .food-now-copy h3{font-size:clamp(22px,2.6vw,29px);line-height:1.12}
.food-now-section .food-now-copy p{font-size:14px;line-height:1.55}
.food-now-section .food-now-copy>a{margin-top:auto}
.bulletin-more{display:inline-flex;align-items:center;padding:11px 15px;border:1px solid #b9d7ca;border-radius:999px;background:#eff8f2;color:#185646;font-weight:800;text-decoration:none}
@media(max-width:900px){.food-now-section .food-now-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.food-now-section .food-now-grid{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(235px,82%);grid-template-columns:none;gap:11px;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:x mandatory;scroll-padding-inline:3px;padding-bottom:12px}.food-now-section .food-now-card.featured-food-card{scroll-snap-align:start}.food-now-section .featured-food-card .food-now-media,.food-now-section .featured-food-card .food-now-media img{min-height:170px;height:170px;max-height:170px}.food-now-section .food-now-copy{padding:15px}.food-now-section .food-now-copy h3{font-size:24px}}

/* Trip clock: ten detailed cards initially, expand without losing the original copy. */
.trip-clock-more{display:flex;align-items:center;justify-content:center;min-height:76px;padding:16px;border:1px solid #b9d7d0;border-radius:18px;background:#f3faf7;color:#155849;font-weight:850;font-size:15px;text-align:center;cursor:pointer;transition:background .15s ease,border-color .15s ease}
.trip-clock-more:hover,.trip-clock-more:focus-visible{background:#e6f4ee;border-color:#6cae9b}
.trip-clock-more:focus-visible{outline:3px solid #54d4cb;outline-offset:2px}
.trip-clock-more-wide{grid-column:1/-1;min-height:58px}
@media(max-width:760px){.trip-clock-more{min-height:60px}.trip-clock-more-wide{grid-column:1/-1}}

/* Eight highlighted cards beside the clock, more activities below them. */
.trip-clock-extra-panel>.trip-clock-more{width:100%;grid-column:1;min-height:58px}
@media(max-width:1099px){
 .trip-clock-now{grid-column:1;grid-row:1;align-self:start}
 .trip-clock-list{grid-column:1;grid-row:2}
 .trip-clock-extra-panel{grid-column:1;grid-row:3}
}
@media(max-width:760px){
 .trip-clock-extra-list{grid-template-columns:1fr}
 .trip-clock-extra-panel>.trip-clock-more{min-height:60px}
}

/* Near Me homepage: quick decisions, not a duplicate of the full /nearme map. */
.near-me-section{padding-top:45px!important;padding-bottom:46px!important}
.near-quick-intro{margin:-3px 0 21px;color:#5d736e;font-size:16px;line-height:1.55}
.near-quick-shell{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.94fr);gap:18px;align-items:stretch}
.near-quick-controls{padding:26px;border:1px solid #d6e8e1;border-radius:26px;background:#fff;box-shadow:0 12px 35px rgba(18,61,59,.04);min-width:0}
.near-quick-search{display:grid;gap:9px}
.near-quick-search-label{font-size:14px;font-weight:850;color:#224f46}
.near-quick-search-wrap{display:flex;gap:10px;align-items:center;border:1px solid #bad5ce;border-radius:15px;background:#fafffd;padding:0 15px;min-height:53px}
.near-quick-search-wrap:focus-within{border-color:#38ab90;box-shadow:0 0 0 3px rgba(56,171,144,.12)}
.near-quick-search-wrap>span{font-size:26px;line-height:1;color:#327866}
.near-quick-search-wrap input{font:inherit;color:#183e38;border:0;outline:0;background:transparent;min-width:0;width:100%;font-size:15px}
.near-quick-search-wrap input::placeholder{color:#83958f}
.near-quick-location-row{display:flex;align-items:center;gap:15px;margin-top:16px;flex-wrap:wrap}
.near-quick-location-row>.near-location-btn{width:auto;min-height:45px;padding:0 19px;font-size:14px;background:#196751;white-space:nowrap}
.near-quick-location-row>span{font-size:14px;color:#556f67;font-weight:650}
.near-quick-areas{display:flex;gap:8px;margin:12px 0 0;flex-wrap:wrap}
.near-quick-areas button{padding:9px 13px;border:1px solid #d7e6df;border-radius:99px;font-size:13px;color:#235a4c;background:#f7fbf9;font-weight:750;cursor:pointer}
.near-quick-areas button.active,.near-quick-areas button[aria-pressed=true]{background:#d7f1e8;border-color:#63ba9e}
.near-quick-location-note{color:#738880;font-size:13px;margin:10px 0 24px;line-height:1.45}
.near-quick-group-label{font-size:17px;font-weight:850;color:#173f36;line-height:1.3;margin-bottom:12px}
#nearCategories.near-quick-categories{display:grid;grid-column:auto;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}
.near-quick-category{display:grid;justify-items:start;text-align:left;gap:8px;min-height:143px;padding:16px;border:1px solid #d8e9df;border-radius:18px;background:#fff;cursor:pointer;color:#1b5545;transition:border-color .15s,background .15s}
.near-quick-category:hover,.near-quick-category.active,.near-quick-category[aria-pressed=true]{border-color:#77cbb1;background:#f0faf5}
.near-quick-category strong{font-size:17px;line-height:1.25;font-weight:850}
.near-quick-category small{font-size:13px;line-height:1.4;color:#667e74}
.near-quick-icon{display:grid;place-items:center;min-width:43px;height:43px;border-radius:13px;padding:0 7px;background:#e4f4e9;font-size:20px;font-weight:900;color:#206b58}
.near-quick-category[data-category=ATM] .near-quick-icon{font-size:13px}
.near-quick-category[data-category=TOILET] .near-quick-icon{font-size:15px}
.near-quick-other-label{margin:23px 0 12px}
.near-quick-more{display:flex;flex-wrap:wrap;gap:8px}
.near-quick-chip{display:flex;align-items:center;gap:7px;padding:10px 12px;border-radius:99px;border:1px solid #d9e8e1;background:#f6faf7;font-weight:750;color:#29604f;font-size:14px;cursor:pointer}
.near-quick-chip>span{color:#36816b;font-weight:850}
.near-quick-chip.active,.near-quick-chip:hover{border-color:#6fc5a9;background:#dff4e9}
.near-quick-results{display:flex;flex-direction:column;gap:17px;padding:27px;border-radius:26px;border:1px solid #cbe4d9;background:linear-gradient(155deg,#f1fbf6,#fbfefd 45%,#e9f7f2);min-width:0}
.near-quick-eyebrow{font-size:12px;font-weight:900;letter-spacing:.12em;color:#33836c}
.near-quick-results-heading h3{font-size:clamp(23px,2.1vw,31px);letter-spacing:-.035em;line-height:1.17;margin:7px 0 10px;color:#173f36}
.near-quick-results-heading p{font-size:14px;line-height:1.5;color:#566f65;margin:0;min-height:22px}
#nearResults.near-results{display:block;grid-column:auto;min-height:0;border:0;padding:0;background:transparent}
.near-quick-empty{border:1px dashed #b9d9cb;border-radius:17px;background:rgba(255,255,255,.8);padding:28px 20px;display:grid;gap:10px}
.near-quick-empty strong{font-size:20px;line-height:1.3}
.near-quick-empty>span{font-size:14px;line-height:1.5;color:#587568}
.near-quick-empty>a{font-size:14px;font-weight:850;color:#1b7359}
.near-quick-result-head{display:flex;justify-content:space-between;gap:14px;align-items:baseline;margin-bottom:12px}
.near-quick-result-head strong{font-size:18px}
.near-quick-result-head span{font-size:13px;line-height:1.3;color:#68827a}
#nearResults .near-result-list{display:grid;grid-template-columns:1fr;gap:10px}
#nearResults .near-quick-result{display:flex;flex-direction:column;gap:8px;padding:17px;border:1px solid #cde4d9;border-radius:17px;background:#fff}
#nearResults .near-quick-result>strong{font-size:18px;line-height:1.25}
#nearResults .near-quick-result>small{font-size:14px;line-height:1.45;color:#506960;margin:0}
#nearResults .near-quick-result>.near-quick-meta{display:block;font-size:13px;font-weight:850;line-height:1.35;color:#31775b}
#nearResults .near-result-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:7px}
#nearResults .near-result-actions a{font-size:14px;padding:10px 13px;border-radius:99px;background:#f3fbf6;color:#1b654b;border:1px solid #cbe5d6;font-weight:850}
#nearResults .near-result-actions a:first-child{background:#176a50;color:#fff;border-color:#176a50}
.near-quick-see-all,.near-quick-directory{display:inline-flex;align-items:center;font-size:14px;font-weight:850;line-height:1.4;color:#166c51}
.near-quick-see-all{margin-top:15px}
.near-quick-directory{margin-top:auto;padding:13px 0 1px;border-top:1px solid #cce4d9;justify-content:space-between;gap:12px}
.near-quick-emergency{grid-column:1/-1;display:grid;grid-template-columns:50px minmax(0,1fr) auto;align-items:center;gap:16px;border-radius:21px;border:1px solid #efd4ca;background:#fff9f7;padding:19px 22px}
.near-quick-emergency-icon{display:grid;place-items:center;color:#a84435;background:#ffe9e1;border-radius:14px;width:48px;height:48px;font-size:27px;font-weight:900}
.near-quick-emergency-copy{display:grid;gap:5px;min-width:0}
.near-quick-emergency-copy strong{font-size:19px;line-height:1.3;color:#61352e}
.near-quick-emergency-copy>span{font-size:14px;line-height:1.45;color:#7b6059}
.near-quick-emergency-actions{display:flex;flex-wrap:wrap;gap:9px;justify-content:flex-end}
.near-quick-emergency-actions a{font-size:14px;font-weight:850;padding:11px 15px;border:1px solid #e9bba9;border-radius:99px;color:#8b4532;background:#fff}
.near-quick-emergency-actions .near-quick-emergency-call{background:#b64e39;border-color:#b64e39;color:#fff}
.near-quick-shell button:focus-visible,.near-quick-shell a:focus-visible{outline:3px solid #71cab0;outline-offset:3px}
@media(max-width:1100px){.near-quick-shell{grid-template-columns:1fr}.near-quick-results{min-height:290px}}
@media(max-width:720px){.near-quick-controls,.near-quick-results{padding:20px;border-radius:21px}.near-quick-category{padding:14px;min-height:126px}.near-quick-category strong{font-size:16px}.near-quick-emergency{grid-template-columns:42px minmax(0,1fr);padding:17px;gap:12px}.near-quick-emergency-icon{width:42px;height:42px}.near-quick-emergency-actions{grid-column:1/-1;justify-content:stretch}.near-quick-emergency-actions a{flex:1;text-align:center}.near-quick-intro{font-size:15px}}
@media(max-width:390px){#nearCategories.near-quick-categories{gap:8px}.near-quick-category{padding:12px}.near-quick-chip{font-size:13px}.near-quick-results-heading h3{font-size:23px}}


/* Footer brand: safe area for approved logo, 2026-09-25. */
.site-footer .footer-brand{
  grid-template-columns:104px minmax(0,1fr);
  gap:20px;
  min-width:0;
}
.site-footer .footer-brand img{
  display:block;
  width:104px;
  height:auto;
  max-width:100%;
  padding:7px;
  box-sizing:border-box;
  object-fit:contain;
  object-position:center center;
  overflow:visible;
  clip-path:none;
}
.site-footer .footer-brand > div{min-width:0}
@media (max-width:600px){
  .site-footer .footer-brand{
    grid-template-columns:82px minmax(0,1fr);
    gap:12px;
  }
  .site-footer .footer-brand img{
    width:82px;
    padding:6px;
  }
}

/* /go launch CTA, companion to the existing 8-slot Trip Clock */
.hero-go-pill{display:inline-flex;flex-wrap:wrap;align-items:center;gap:9px;margin:15px 10px 8px 0;padding:12px 18px;border-radius:999px;background:#fff;color:#165044!important;box-shadow:0 6px 24px rgba(0,0,0,.15);font-weight:850;font-size:15px;line-height:1.35;text-decoration:none}
.hero-go-pill>span{color:#d85b3f;font-size:22px;line-height:.7}.hero-go-pill b{color:#c7573d;font-weight:850}.hero-go-pill:hover{background:#e9f7ed}
.home-go-section{max-width:1420px;margin:26px auto 18px;padding:0 clamp(12px,3vw,34px)}.home-go-story{display:grid;grid-template-columns:1fr .88fr;min-height:440px;overflow:hidden;border:1px solid #deebe4;border-radius:28px;background:linear-gradient(125deg,#fffef9,#ebf8f1);box-shadow:0 15px 48px rgba(18,61,59,.06)}.home-go-copy{padding:clamp(26px,4vw,54px);display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.home-go-eyebrow{font-size:12px;letter-spacing:.13em;font-weight:900;color:#398068}.home-go-copy h2{max-width:710px;margin:12px 0;font-size:clamp(35px,4vw,58px);letter-spacing:-.055em;line-height:1.06;color:#123d3b}.home-go-copy h2 em{font-style:normal;color:#cf6846}.home-go-copy>p{max-width:620px;margin:8px 0 20px;color:#55746c;line-height:1.6;font-size:16px}.home-go-presets{display:flex;flex-wrap:wrap;gap:9px;margin:0 0 20px}.home-go-presets a{padding:10px 13px;border:1px solid #bed7c9;border-radius:999px;background:#fff;color:#2a6352;font-size:13px;font-weight:750;text-decoration:none}.home-go-presets a:hover{background:#dff0e6}.home-go-main{display:inline-flex;align-items:center;justify-content:space-between;gap:28px;min-height:50px;padding:12px 19px;border-radius:13px;background:#d85b3f;color:#fff!important;font-size:15px;font-weight:850;text-decoration:none;box-shadow:0 9px 20px rgba(216,91,63,.17)}.home-go-main:hover{background:#bd4e35}.home-go-copy>small{display:block;margin-top:12px;font-size:12px;color:#718982}.home-go-visual{position:relative;min-height:440px;overflow:hidden;background:#b4cabd}.home-go-visual img{display:block;width:100%;height:100%;position:absolute;inset:0;object-fit:cover}.home-go-visual:after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(8,35,35,.78),transparent 58%)}.home-go-photo-note{position:absolute;z-index:1;left:28px;right:28px;bottom:27px;color:#fff}.home-go-photo-note span{display:block;font-size:11px;font-weight:900;letter-spacing:.15em;color:#e1f8ee}.home-go-photo-note strong{display:block;max-width:400px;margin-top:7px;font-size:clamp(23px,2.5vw,36px);line-height:1.1;letter-spacing:-.035em}
@media(max-width:900px){.home-go-story{grid-template-columns:1fr}.home-go-visual{min-height:315px}.home-go-copy{padding:28px}.home-go-copy h2{font-size:clamp(34px,6vw,50px)}}
@media(max-width:720px){.hero-go-pill{margin:12px 4px 10px 0;padding:11px 14px;font-size:14px}.hero-go-pill b{font-size:12px}.home-go-section{margin:12px auto;padding:0 10px}.home-go-story{border-radius:21px}.home-go-copy{padding:25px 18px 28px}.home-go-eyebrow{font-size:11px}.home-go-copy h2{font-size:38px}.home-go-copy>p{font-size:15px}.home-go-presets a{font-size:12px;padding:10px 11px}.home-go-main{width:100%;justify-content:space-between}.home-go-visual{min-height:235px}.home-go-photo-note{left:19px;right:19px;bottom:18px}.home-go-photo-note strong{font-size:27px}}

/* CMS homepage: food-to-news rhythm v2 (25/09/2026).
   Remove the oversized blank interval without overlapping cards or content. */
#top > .food-now-section {
  padding-bottom: 12px !important;
  margin-bottom: 0 !important;
  min-height: 0 !important;
}
#top > .hot-now-section {
  padding-top: 18px !important;
  margin-top: 0 !important;
  min-height: 0 !important;
}
@media (max-width: 760px) {
  #top > .food-now-section {
    padding-bottom: 8px !important;
  }
  #top > .hot-now-section {
    padding-top: 14px !important;
  }
}

/* Near Me mobile flow: do not preserve desktop left/right semantics on a phone. */
.near-quick-controls{grid-column:1;grid-row:1}
.near-quick-results{grid-column:2;grid-row:1 / span 2}
.near-quick-secondary{grid-column:1;grid-row:2;padding:19px 22px;border:1px solid #d6e8e1;border-radius:20px;background:#f9fcfa;min-width:0}
.near-quick-secondary .near-quick-other-label{margin:0 0 10px}
.near-quick-emergency{grid-row:3}
@media(max-width:1100px){
 .near-quick-controls{grid-column:1;grid-row:auto}
 .near-quick-results{grid-column:1;grid-row:auto}
 .near-quick-secondary{grid-column:1;grid-row:auto}
 .near-quick-emergency{grid-row:auto}
}
@media(max-width:720px){
 .near-me-section{padding-top:34px!important;padding-bottom:36px!important}
 .near-quick-intro{margin-bottom:14px}
 .near-quick-shell{gap:11px}
 .near-quick-controls{padding:16px;border-radius:18px}
 .near-quick-search-label{font-size:13px}
 .near-quick-search-wrap{min-height:48px;padding:0 12px}
 .near-quick-search-wrap input{font-size:14px}
 .near-quick-location-row{gap:9px;margin-top:12px}
 .near-quick-location-row>.near-location-btn{width:100%;min-height:44px}
 .near-quick-location-row>span{display:none}
 .near-quick-areas{display:flex;flex-wrap:nowrap;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:x proximity;padding:0 0 3px;margin-top:10px}
 .near-quick-areas button{flex:0 0 auto;scroll-snap-align:start}
 .near-quick-location-note{margin:8px 0 16px;font-size:12px}
 .near-quick-group-label{font-size:15px;margin-bottom:9px}
 #nearCategories.near-quick-categories{display:flex;overflow-x:auto;gap:8px;scroll-snap-type:x proximity;padding-bottom:3px}
 .near-quick-category{flex:0 0 142px;min-height:92px;padding:12px;gap:5px;scroll-snap-align:start}
 .near-quick-icon{min-width:34px;height:34px;border-radius:10px;font-size:17px}
 .near-quick-category strong{font-size:15px}
 .near-quick-category small{font-size:11px;line-height:1.25}
 .near-quick-results{padding:17px;border-radius:18px;gap:12px;min-height:0}
 .near-quick-results-heading h3{font-size:22px;margin:5px 0 7px}
 .near-quick-results-heading p{font-size:13px;min-height:0}
 .near-quick-empty{padding:18px 15px}
 .near-quick-empty strong{font-size:17px}
 .near-quick-empty>span{font-size:13px}
 .near-quick-result-head{margin-bottom:9px}
 .near-quick-result-head strong{font-size:16px}
 .near-quick-result-head span{font-size:12px}
 #nearResults .near-quick-result{padding:14px}
 #nearResults .near-quick-result>strong{font-size:16px}
 #nearResults .near-quick-result>small{font-size:13px}
 #nearResults .near-result-actions a{font-size:13px;padding:9px 11px}
 .near-quick-secondary{padding:14px 16px;border-radius:17px}
 .near-quick-more{display:flex;flex-wrap:nowrap;overflow-x:auto;gap:7px;padding-bottom:2px}
 .near-quick-chip{flex:0 0 auto;padding:9px 11px;font-size:13px}
 .near-quick-emergency{margin-top:0}
}


/* Compact homepage /go - same idea, less vertical dominance */
.home-go-section{margin:16px auto 12px}
.home-go-story{grid-template-columns:1.12fr .88fr;min-height:260px;border-radius:23px}
.home-go-copy{padding:26px 30px}
.home-go-eyebrow{font-size:10px}
.home-go-copy h2{max-width:650px;margin:7px 0;font-size:clamp(29px,3vw,42px);line-height:1.05}
.home-go-copy>p{max-width:650px;margin:5px 0 13px;font-size:14px;line-height:1.48}
.home-go-presets{gap:7px;margin:0 0 12px}
.home-go-presets a{padding:8px 10px;font-size:12px}
.home-go-main{min-height:43px;padding:9px 15px;font-size:13px}
.home-go-copy>small{margin-top:7px;font-size:11px}
.home-go-visual{min-height:260px}
.home-go-photo-strip{position:absolute;inset:0;display:grid;grid-template-columns:1.15fr .85fr .85fr;gap:2px}
.home-go-photo-strip img{position:static!important;width:100%;height:100%;min-width:0;object-fit:cover}
.home-go-visual:after{background:linear-gradient(0deg,rgba(8,35,35,.72),transparent 62%)}
.home-go-photo-note{left:20px;right:20px;bottom:17px}
.home-go-photo-note span{font-size:9px}
.home-go-photo-note strong{margin-top:4px;font-size:clamp(20px,2vw,28px)}
@media(max-width:900px){
 .home-go-story{grid-template-columns:1fr 1fr;min-height:270px}
 .home-go-copy{padding:23px}
 .home-go-copy h2{font-size:32px}
 .home-go-visual{min-height:270px}
 .home-go-photo-strip{grid-template-columns:1.2fr .8fr}
 .home-go-photo-strip img:nth-child(3){display:none}
}
@media(max-width:720px){
 .home-go-section{margin:10px auto}
 .home-go-story{grid-template-columns:1fr;min-height:0}
 .home-go-copy{padding:21px 17px}
 .home-go-copy h2{font-size:32px}
 .home-go-copy>p{font-size:14px}
 .home-go-visual{min-height:170px;height:170px}
 .home-go-photo-strip{grid-template-columns:repeat(3,1fr)}
 .home-go-photo-strip img:nth-child(3){display:block}
 .home-go-photo-note{left:14px;right:14px;bottom:12px}
 .home-go-photo-note strong{font-size:22px}
}


/* /go homepage rhythm - 25/09/2026
   Desktop/tablet only. Keep the existing copy, three-photo strip and mobile
   layout. The global #top>.section padding was stacking with the Go section
   and producing a large blank interval between Trip Clock and Go. */
@media(min-width:761px){
  #top>.trip-clock-section{
    padding-bottom:12px!important;
  }
  #top>.home-go-section{
    padding-top:0!important;
    padding-bottom:0!important;
    margin-top:0!important;
    margin-bottom:0!important;
  }
  #top>.food-now-section{
    padding-top:18px!important;
  }
}

/* Compact mobile Near Me: the result board opens only after visitor intent. */
.near-mobile-expand{display:none}
@media(max-width:720px){
 .near-me-section{padding-top:25px!important;padding-bottom:27px!important}
 .near-me-section .section-heading{margin-bottom:8px}
 .near-me-section .section-heading h2{font-size:clamp(24px,6.7vw,30px)}
 .near-me-section .section-heading>a{font-size:12px}
 .near-quick-intro{display:none}
 .near-quick-shell{gap:9px}
 .near-quick-controls{border:0;box-shadow:none;background:transparent;padding:2px 0 0;border-radius:0}
 .near-quick-search{gap:0}
 .near-quick-search-label{display:none}
 .near-quick-search-wrap{min-height:46px;background:#fff;border-radius:13px}
 .near-quick-location-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px}
 .near-quick-location-row>.near-location-btn{min-width:0;width:100%;min-height:41px;padding:0 7px;font-size:12px;white-space:normal;line-height:1.2}
 .near-mobile-expand{display:inline-flex;align-items:center;justify-content:space-between;gap:8px;min-width:0;min-height:41px;padding:0 12px;border-radius:12px;border:1px solid #c6dfd3;background:#f7fbf8;color:#1d614e;font-size:12px;font-weight:850;cursor:pointer}
 .near-mobile-expand span{font-size:18px;line-height:1;transition:transform .15s}
 .near-mobile-expand[aria-expanded=true] span{transform:rotate(180deg)}
 .near-quick-areas{display:none;margin-top:10px}
 .near-me-section.near-show-areas #nearManualAreas{display:flex}
 .near-quick-location-note{display:none}
 .near-quick-controls>.near-quick-group-label{display:none}
 #nearCategories.near-quick-categories{margin-top:10px;padding-bottom:3px}
 .near-quick-category{flex:0 0 auto;display:flex;align-items:center;gap:7px;min-height:49px;padding:7px 10px;border-radius:12px}
 .near-quick-category .near-quick-icon{min-width:29px;height:29px;border-radius:8px;padding:0 4px;font-size:13px}
 .near-quick-category[data-category=ATM] .near-quick-icon,.near-quick-category[data-category=TOILET] .near-quick-icon{font-size:10px}
 .near-quick-category strong{font-size:13px;margin:0;white-space:nowrap}
 .near-quick-category small{display:none}
 .near-me-section:not(.near-has-selection) .near-quick-results{display:none!important}
 .near-quick-results{padding:14px;border-radius:16px;gap:10px;scroll-margin-top:78px}
 .near-quick-results-heading h3{font-size:20px}
 .near-quick-secondary{padding:0;border:0;border-radius:0;background:transparent}
 .near-quick-secondary .near-quick-other-label{display:none}
 .near-quick-secondary>.near-mobile-other{display:flex;width:100%;min-height:40px;font-size:13px;padding:0 13px}
 .near-quick-more{display:none}
 .near-me-section.near-show-other #nearQuickMore{display:flex;margin-top:9px}
 .near-quick-emergency{grid-template-columns:32px minmax(0,1fr) auto;gap:9px;padding:11px 12px;border-radius:13px}
 .near-quick-emergency-icon{width:32px;height:32px;border-radius:9px;font-size:19px}
 .near-quick-emergency-copy strong{font-size:13px}
 .near-quick-emergency-copy>span{display:none}
 .near-quick-emergency-actions{grid-column:3;gap:0}
 .near-quick-emergency-actions .near-quick-emergency-call{padding:9px 11px;font-size:12px;white-space:nowrap}
 .near-quick-emergency-actions a:not(.near-quick-emergency-call){display:none}
 .near-quick-secondary button:focus-visible,.near-mobile-expand:focus-visible{outline:3px solid #71cab0;outline-offset:2px}
}


/* Approved close-cropped transparent master (25 Sep): clearer homepage brand. */
@media (min-width:761px){
  .site-header{min-height:78px;height:78px}
  .site-header .brand{width:70px;min-width:70px;height:70px}
}
@media (min-width:1220px){
  .app-rail-mark{min-height:102px;padding:4px 7px 14px}
  .app-rail-mark img{width:86px;height:86px;max-width:100%;object-fit:contain}
}
@media (max-width:760px){
  .site-header .brand{width:52px;min-width:52px;height:52px}
}
.site-footer .footer-brand{grid-template-columns:112px minmax(0,1fr)}
.site-footer .footer-brand img{width:112px;padding:3px}
@media(max-width:600px){
  .site-footer .footer-brand{grid-template-columns:84px minmax(0,1fr)}
  .site-footer .footer-brand img{width:84px;padding:3px}
}
