:root{
  --bg:#F4F7FB; 
  --text:#111111; 
  --text-strong:#000000;
  --card:#243278; 
  --card-hover:#31408c;
  --border:rgba(0,0,0,0.08); 
  --accent:#243278; 
  --shadow:0 8px 30px rgba(0,0,0,0.15);

  --radius:16px; --radius-lg:20px;

  --gap:1.15rem;
  --gap-lg:1.75rem;
  --wrap-x:2rem;
  --wrap-y:2.5rem;

  /* Spacing controls */
  --section-space:5.25rem;       /* larger spacing for sections */
  --section-space-top:2.25rem;   /* smaller spacing before the very first section */

  --maxw:1200px;
  --logo-w:150px; /* permanent small size */
}

@font-face{
  font-family:'AbelCustom';
  src:url('/fonts/Abel-Regular.ttf') format('truetype');
  font-weight:400; font-style:normal; font-display:swap;
}

html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  padding-top:55px; 
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:var(--wrap-y) var(--wrap-x) calc(var(--wrap-y) + 2rem);
}

/* ===== Brandbar — simple logo + tagline + language ===== */
.brandbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:var(--card);
  border-bottom:1px solid var(--border);
}

/* main row */
.brandbar-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:.6rem var(--wrap-x);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--gap);
}

/* left side: logo + tagline in a row */
.brandbar-main{
  display:flex;
  align-items:center;
  gap:1.25rem;
  min-width:0;
}

/* stacked logo */

.twologos{
  margin-right: 10px;
}

.logo-stack{
  display:flex;
  flex-direction:column;
  line-height:.9;
  text-decoration:none;
}
.logo-stack img{
  width:var(--logo-w);
  height:auto;
  display:block;
}
.logo-stack img + img{
  margin-top:-6px;
}

/* tagline text */
.brandbar-tagline{
  margin:0;
  font-family:AbelCustom, ui-sans-serif, system-ui;
  font-size:2.5rem;
  color:#ffffff;
  white-space:nowrap;
}

/* bottom logo wrapper */
.logo-bottom{
  position:relative;
  display:inline-block;
}

/* registered trademark symbol */
.logo-reg{
  position:absolute;
  right:-0.35em;
  bottom:1.35em;
  font-size:0.8em;
  color: #ffffff;
  font-weight:500;
  line-height:1;
  pointer-events:none;
  opacity: 0.8;
}


/* language selector on the right */
.lang-switcher{
  display:flex;
  gap:.3rem;
  align-items:center;
}

.lang-pill{
  padding:.2rem .55rem;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,0.45);
  font-size:.8rem;
  text-decoration:none;
  color:#f9fafb;
  background:transparent;
  text-transform:uppercase;
  letter-spacing:.05em;
  cursor:pointer;
  transition:background 140ms ease, color 140ms ease, border-color 140ms ease, transform 120ms ease;
}

.lang-pill:hover{
  background:rgba(255,255,255,0.12);
  transform:translateY(-1px);
}

.lang-pill.is-active{
  background:#ffffff;
  color:#000000;
  border-color:#ffffff;
}

/* ===== Brandbar responsive tweaks ===== */
@media (max-width:900px){
  .brandbar-inner{
    padding:.5rem 1.25rem;
    gap:.75rem;
  }

  .brandbar-tagline{
    font-size:.98rem;
  }
}

@media (max-width:720px){
  :root{
    --logo-w:120px;
  }

  .brandbar-inner{
    padding:.5rem 1rem;
    gap:.5rem;
  }

  .brandbar-main{
    gap:.75rem;
  }

  .brandbar-tagline{
    font-size:.9rem;
    white-space:normal;
  }

  .lang-switcher{
    gap:.2rem;
  }

  .lang-pill{
    padding:.15rem .45rem;
    font-size:.75rem;
  }
}

/* text + socials stack */
.brandbar-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
}

/* socials under tagline */
.brandbar-socials{
  display:flex;
  justify-content:center;
  gap:.6rem;
  margin-top:.95rem;
  color: #fff;
  font-family: AbelCustom;
}

.brandbar-socials-text {
    font-size: 1rem;
    opacity: .8;
    white-space: nowrap;
	position: relative;
	top: 5px;
}

/* Hide text on mobile */
@media (max-width: 768px) {
    .brandbar-socials-text {
        display: none;
    }
}

.brandbar-socials img{
  width:30px;
  height:auto;
  opacity:.9;
  transition:opacity 140ms ease, transform 140ms ease;
}

.brandbar-socials a:hover img{
  opacity:1;
  transform:translateY(-1px);
}

/* ===== Mobile tweaks ===== */
@media (max-width:720px){
  .brandbar-socials{
    gap:.5rem;
    margin-top:.15rem;
  }

  .brandbar-socials img{
    width:28px;
  }
  
@media (max-width:720px){

  /* keep logo + text on one row (your original layout) */
  .brandbar-main{
    flex-direction:row;
    align-items:center;
  }

  /* make the text column size to the tagline width */
  .brandbar-text{
    display:inline-flex;
    align-items:flex-start;   /* IMPORTANT: prevents full-width centering */
    text-align:left;
    width:auto;
  }

  /* socials centered relative to the tagline width */
  .brandbar-socials{
    width:70%;
    justify-content:center;
	margin-top: 10px !important;
  }
}

}


/* ===== Sections / layout ===== */
section{margin-top:var(--section-space);}
.wrap > section:first-of-type{margin-top:var(--section-space-top);}

.hero{
  display:grid;
  grid-template-columns:1.25fr 1fr;
  gap:calc(var(--gap-lg) + .25rem);
  align-items:start;
}
@media (max-width:900px){
  .hero{grid-template-columns:1fr;}
}

.headline{
  font-family:AbelCustom,ui-sans-serif,system-ui;
  color:var(--text-strong);
  font-size:clamp(2.1rem,4.7vw,3.4rem);
  line-height:1.06;
  margin:0 0 1.1rem;
}
.subhead{
  margin:0 0 1.4rem;
  color:#444;
  max-width:70ch;
}

.hero-card{
  background:var(--card);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:var(--radius-lg);
  padding:1.35rem;
  box-shadow:var(--shadow);
  color:#ffffff;
}
.hero-list{margin:0; padding-left:1.15rem;}
.hero-list li{margin:.45rem 0;}

/* Make "How it works" box shrink to its text on desktop, keep it on the right */
.hero .hero-card{
  justify-self:end;
  align-self:start;
  width:fit-content;
  max-width:clamp(28ch, 36vw, 48ch);
}

/* On mobile, let it fill the width again */
@media (max-width:900px){
  .hero .hero-card{
    width:auto;
    max-width:100%;
    justify-self:stretch;
  }
}


/* === Launch countdown (button-style, compact, responsive) === */

.xh-countdown-wrap{
  display:flex;
  flex-direction:column;
  max-width:260px; /* aligns with your CTA buttons */
}

/* Desktop vs mobile placement */
.xh-countdown--mobile{ 
  display:none; 
}
.xh-countdown--desktop{ 
  display:flex; 
}

/* Countdown button container */
.xh-countdown-box{
  width:100%;
  padding:.7rem .85rem .75rem;   /* slightly taller than normal buttons */
  border-radius:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.35rem;
  box-shadow:var(--shadow);
}

/* Title INSIDE the button */
.xh-countdown-title-inside{
  font-family: AbelCustom, ui-sans-serif, system-ui;
  font-size:.95rem;
  color:#ffffff;
  text-align:center;
  letter-spacing:.04em;
  line-height:1.1;
}

/* Row holding the time units */
.xh-countdown-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.25rem;                    /* tight spacing so it fits */
}

/* Individual time unit */
.xh-cd-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.15rem;
  min-width:40px;
}

/* Big numbers */
.xh-cd-num{
  font-family: AbelCustom, ui-sans-serif, system-ui;
  font-size:1.25rem;
  line-height:1;
}

/* Labels under numbers */
.xh-cd-label{
  font-size:.65rem;
  opacity:.9;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Separators (: :) */
.xh-cd-sep{
  font-size:1rem;
  opacity:.8;
  margin:0 .1rem;
}

/* === Mobile refinements === */
@media (max-width:720px){
  .xh-countdown--desktop{ display:none; }
  .xh-countdown--mobile{ display:flex; }

  .xh-countdown-wrap{
    margin-top:.85rem;   /* spacing under video */
    max-width:200px;     /* matches mobile CTA buttons */
  }

  .xh-countdown-box{
    padding:.6rem .75rem .65rem;
  }

  .xh-countdown-title-inside{
    font-size:.85rem;
  }

  .xh-cd-num{
    font-size:1.1rem;
  }

  .xh-cd-item{
    min-width:34px;
  }
}



/* === Launch strip: video + Early Bird + About — same layout on all screens === */
.launch-strip{
  margin-top:var(--section-space-top);
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:nowrap;
}

/* Left: video thumbnail trigger */
.launch-media button.video-trigger{
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}
.launch-media img{
  display:block;
  flex:0 0 auto;
  width:100%;
  max-width:272px;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}


/* Right: buttons stacked vertically */
.launch-cta{
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  flex:1 1 auto;
}


.launch-sneak{
  display:flex;
  align-items:center;
  gap:0.4rem;
  margin-top:0.25rem;
  font-size:2.0rem;
  color:var(--text-strong);
}

@media (max-width:720px){
	.launch-sneak{
	  font-size:1.1rem;
	}
}

.launch-sneak-arrow{
  width:80px;
  height:auto;
  display:block;
  margin-top: 30px;
}


/* Allow long labels to wrap nicely, both buttons share behaviour */
.btn-early-bird,
.btn-about{
  white-space:normal;
  text-align:left;
  max-width:260px;
}

/* Small-screen tweaks: shrink gap, thumbnail, buttons slightly */
@media (max-width:720px){
  .launch-strip{
    gap:1rem;
  }

  .launch-media img{
    max-width:200px;
  }

  .launch-cta .btn{
    padding:0.65rem 0.9rem;
    font-size:0.9rem;
  }

  .btn-early-bird{
    font-size:.9rem;
    line-height:1.25;
    max-width:180px;
  }

  .video-modal-content{
    max-width:90%;
  }
}

/* === Video Modal === */
.video-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:5000;
}

.video-modal.is-visible{
  opacity:1;
  pointer-events:auto;
}

/* Background dim */
.video-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

/* Popup container */
.video-modal-content{
  position:relative;
  background:#000;
  padding:1rem;
  border-radius:var(--radius-lg);
  max-width:272px;
  width:100%;
  box-shadow:var(--shadow);
  z-index:10;
}

/* Close button */
.video-close{
  position:absolute;
  top:-12px;
  right:-12px;
  width:32px;
  height:32px;
  border-radius:50%;
  border:0;
  background:#ffffff;
  color:#000;
  font-size:1.1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,0.35);
}

/* Video shouldn't exceed modal */
.video-modal-content video{
  width:100%;
  height:auto;
  border-radius:var(--radius);
}

.section-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  margin:0 0 .85rem;
}
.section-title h2{
  font-family:AbelCustom,ui-sans-serif,system-ui;
  color:#ffffff;
  font-size:clamp(1.35rem,2.6vw,1.9rem);
  margin:0;
}
.muted{color:#666; font-size:.98rem;}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:calc(var(--gap-lg) + .25rem);
  margin-top:1.1rem;
  justify-items:center;
}
@media (max-width:1200px){
  .grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:900px){
  .grid{grid-template-columns:1fr;}
}

.card{
  background:var(--card);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  transition:transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  box-shadow:0 2px 8px rgba(0,0,0,0.12);
  color:#ffffff;
  max-width:340px;
  width:100%;
}

.card:hover{
  transform:translateY(-3px);
  background:var(--card-hover);
  border-color:var(--accent);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* ===== Article content ===== */
.article-body{
  font-size:1.05rem;
  line-height:1.6;
  color:var(--text);
  max-width:90ch;
  margin:0 0 2rem;
}

.article-body p{
  margin:0 0 1.1rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4{
  font-family: AbelCustom, ui-sans-serif, system-ui;
  color: var(--text-strong);
  margin: 1.6rem 0 .8rem;
  line-height: 1.25;
}

.article-body h1{font-size:2rem;}
.article-body h2{font-size:1.6rem;}
.article-body h3{font-size:1.3rem;}

/* Mobile scaling */
@media (max-width:720px){
  .article-body{
    font-size:1.0rem;
    line-height:1.65;
    padding:0 1rem;
  }

  .article-body h1{font-size:1.6rem;}
  .article-body h2{font-size:1.4rem;}
  .article-body h3{font-size:1.2rem;}
}

.thumb{
  aspect-ratio:16/9;
  width:100%;
  position:relative;
  background:linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
}
.thumb img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(.9) contrast(1.05);
}

/* clickable link wrapping the image and CTA */
.thumb-link{
  display:block;
  width:100%;
  height:100%;
  position:relative;
}

/* "Book now" button on the image */
.thumb-cta{
  position:absolute;
  right:12px;
  bottom:12px;
  padding:.35rem .8rem;
  border-radius:9999px;
  background:#d6e8ff;
  color:#000;
  font-size:.82rem;
  font-weight:500;
  border:1px solid rgba(36,50,120,0.30);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.thumb-link:hover .thumb-cta{
  background:#c3dcff;
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

/* optional styling for the "Read more" link under description */
.read-more{
  margin:0;
}
.read-more-link{
  font-size:.92rem;
  text-decoration:underline;
}

.card-body{
  padding:1.1rem 1.1rem 1.35rem;
  display:flex;
  flex-direction:column;
  gap:.7rem;
}
.card h3{
  font-family:AbelCustom,ui-sans-serif,system-ui;
  color:#ffffff;
  font-size:1.3rem;
  margin:0;
  overflow:hidden;
}

@media (min-width:900px){
  .card h3{
    min-height:3.2rem;        /* Enough space for 2 lines */
    display:-webkit-box;
    -webkit-line-clamp:2;     /* Always reserve 2 lines */
    -webkit-box-orient:vertical;
  }
}

.card p{
  margin:0;
  color:#f1f1f1;
}
.card a.inline-link{
  color:inherit;
  text-decoration:none;
}
.card a.inline-link:hover{
  text-decoration:underline;
}
.card-actions{
  margin-top:auto;
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.6rem 1rem;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.7);
  color:var(--text-strong);
  text-decoration:none;
  transition:150ms ease;
  background:#ffffff;
}
.btn:hover{
  background:#f5f5f5;
  border-color:var(--accent);
  transform:translateY(-1px);
}

/* primary button variant, used across pages */
.btn-primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}
.btn-primary:hover{
  background:#1b265b;
  color:#ffffff;
}

.other-providers{}

.link-list{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem 1.1rem;
  list-style:none;
  padding:0;
  margin:0;
}

.link-item{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border:1px solid var(--border);
  border-radius:12px;
  background:#f3f4f6;
  color:var(--text-strong);
  text-decoration:none;
  transition:150ms ease;
  line-height:1;
}
.link-item:hover{
  background:#e5e7eb;
  border-color:var(--accent);
  transform:translateY(-1px);
}
.arrow{
  opacity:.9;
  transition:transform 150ms ease;
}
.link-item:hover .arrow{
  transform:translateX(2px);
}

footer{
  margin-top:var(--section-space);
  padding-top:1.25rem;
  border-top:1px solid var(--border);
  font-size:.96rem;
  color:var(--text);
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem 1.1rem;
  margin:.75rem 0 0;
}
.footer-links a{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px dashed transparent;
  transition:color 120ms ease,border-color 120ms ease;
}
.footer-links a:hover{
  color:var(--accent);
  border-color:var(--accent);
}
.footer-links a:focus-visible{
  border-color:var(--accent);
}

.footerdiv{
  margin-top:-100px !important;
}

:focus-visible{
  outline:2px solid(var(--accent));
  outline-offset:2px;
}
@media (prefers-reduced-motion:reduce){
  *{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
  }
}

/* footer socials */
.footer-social{
  display:inline-flex;
  align-items:center;
  border-bottom:none !important;
}

.footer-social img{
  width:20px;
  height:auto;
  opacity:.85;
  transition:opacity 120ms ease, transform 120ms ease;
}

.footer-social:hover img{
  opacity:1;
  transform:translateY(-1px);
}

/* mobile: slightly smaller */
@media (max-width:720px){
  .footer-social img{
    width:18px;
  }
}


/* ===== Desktop enhancements ===== */
@media (min-width:1024px){
  .tagline{
    font-size:1.15rem;
    color:#ffffff;
  }
  .tagline strong{color:#ffffff;}
}

/* ===== Mobile refinements ===== */
@media (max-width:720px){
  :root{
    --section-space:2.25rem;
    --section-space-top:1rem;
    --wrap-y:1.5rem;
  }

  .brandbar-inner{
    padding:.55rem var(--wrap-x);
  }
  .logo-stack img{
    width:130px;
  }
  .tagline{
    max-width:100%;
  }
}

@media (max-width:720px){
  .cta--partner{
    font-size:.85rem;
    padding:.4rem .75rem;
  }
}

/* Tighter hero area on mobile */
@media (max-width:720px){
  .subhead{margin:0 0 .85rem;}
  .hero-card{padding:.95rem;}
  .hero-list{padding-left:1rem;}
  .hero-list li{margin:.3rem 0;}

  .cta{padding:.45rem .8rem; font-size:.92rem;}
  .btn{padding:.5rem .85rem; font-size:.95rem;}
}

/* ========== Category / Booking page additions ========== */

.page-head{
  display:flex;
  flex-direction:column;
  gap:.5rem;
}
.page-head h1{
  font-family:AbelCustom,ui-sans-serif,system-ui;
  color:var(--text-strong);
  font-size:clamp(2rem,4vw,2.6rem);
  margin:0;
}
.page-head .intro{
  color:#444;
  max-width:72ch;
  margin:0;
}

/* Calendar Card */
.calendar-card{
  background:var(--card);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:var(--radius-lg);
  padding:1.1rem;
  box-shadow:var(--shadow);
  color:#ffffff;
}

.calendar{
  display:grid;
  gap:1rem;
}

/* Month header (prev/next + title) */
.calendar-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.calendar-title{
  font-family:AbelCustom, ui-sans-serif, system-ui;
  color:#ffffff;
  font-size:1.25rem;
}

/* Day names + day grid */
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:.35rem;
}
.calendar-dow{
  text-align:center;
  font-size:.9rem;
  color:#e5e5e5;
  padding:.25rem 0;
}
.calendar-day{
  position:relative;
  border:1px solid rgba(255,255,255,0.3);
  background:var(--card);
  color:#ffffff;
  border-radius:12px;
  min-height:62px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.25rem;
  padding:.35rem;
  cursor:pointer;
  transition:transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.calendar-day:hover{
  transform:translateY(-2px);
  background:var(--card-hover);
  border-color:var(--accent);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}
.calendar-day.is-today{
  outline:2px dashed rgba(255,255,255,.6);
  outline-offset:2px;
}
.calendar-day.is-other-month{opacity:.65;}
.calendar-day.is-selected{
  border-color:#fff;
  box-shadow:0 0 0 2px rgba(255,255,255,.45) inset;
}

.calendar-day .num{font-weight:600;}
.calendar-day .badge{
  font-size:.75rem;
  line-height:1;
  padding:.25rem .5rem;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(0,0,0,.12);
}
.badge--available{
  background:rgba(46, 204, 113, .25);
  color:#e6ffe6;
  border-color:rgba(46, 204, 113, .55);
}
.badge--unavailable{
  background:rgba(231, 76, 60, .25);
  color:#ffecec;
  border-color:rgba(231, 76, 60, .55);
}

/* Legend */
.calendar-legend{
  display:flex;
  align-items:center;
  gap:.75rem;
  flex-wrap:wrap;
  color:#f5f5f5;
  font-size:.95rem;
}
.legend-pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.35rem .6rem;
  border-radius:9999px;
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(0,0,0,.18);
}
.legend-pill .dot{
  width:.65rem;
  height:.65rem;
  border-radius:9999px;
  display:inline-block;
}
.dot--available{background:#2ecc71;}
.dot--unavailable{background:#e74c3c;}

/* Timeslots */
.timeslots{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  margin-top:.5rem;
}
.slot{
  border:1px solid rgba(255,255,255,0.3);
  background:var(--card);
  color:#ffffff;
  padding:.5rem .85rem;
  border-radius:9999px;
  cursor:pointer;
  transition:background 140ms ease, border-color 140ms ease, transform 140ms ease;
  user-select:none;
}
.slot:hover{transform:translateY(-1px);}
.slot--available{
  background:rgba(46, 204, 113, .25);
  border-color:rgba(46, 204, 113, .65);
}
.slot--unavailable{
  background:rgba(231, 76, 60, .25);
  border-color:rgba(231, 76, 60, .65);
  opacity:.8;
  cursor:not-allowed;
}
.slot.is-selected{
  outline:2px solid #fff;
  outline-offset:2px;
}

/* Layout spacing for booking page */
.booking-layout{
  display:grid;
  gap:calc(var(--gap-lg) + .25rem);
  grid-template-columns:1.1fr .9fr;
  align-items:start;
}
.booking-form{grid-column:1 / -1;}
@media (max-width:1100px){
  .booking-layout{grid-template-columns:1fr;}
  .booking-form{grid-column:auto;}
}

/* How it works card (right column) */
.howit-card{
  background:var(--card);
  border:1px solid rgba(0,0,0,0.12);
  border-radius:var(--radius-lg);
  padding:1.1rem;
  box-shadow:var(--shadow);
  color:#ffffff;
}
.howit-list{margin:0; padding-left:1.15rem;}
.howit-list li{margin:.45rem 0;}

/* Calendar day: use colored dot instead of text */
.calendar-day .badge{
  background:transparent;
  border:none;
  padding:0;
}

/* dot inside day cell (reuses .dot--available / .dot--unavailable colors) */
.calendar-day .dot{
  width:.7rem;
  height:.7rem;
  border-radius:9999px;
  display:inline-block;
  margin-top:.25rem;
  border:1px solid rgba(255,255,255,.25);
}

/* Keep mobile compact */
@media (max-width:720px){
  .calendar-day{min-height:56px;}
  .timeslots{gap:.4rem;}
}

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

/* Page head with image + text */
.page-head{
  display:grid;
  grid-template-columns:800px 1fr;
  gap:1.5rem;
  align-items:center;
  margin-bottom:2rem;
}
.page-head img{
  width:100%;
  height:auto;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.page-head-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:.75rem;
}
.page-head h1{
  margin:0;
  font-family:AbelCustom, ui-sans-serif, system-ui;
  font-size:clamp(1.8rem, 3vw, 2.6rem);
  color:var(--text-strong);
}
.page-head .intro{
  margin:0;
  color:#444;
  font-size:1.05rem;
  max-width:60ch;
}
@media (max-width:720px){
  .page-head{
    grid-template-columns:1fr;
    text-align:center;
  }
  .page-head-text{align-items:center;}
}

/* Tighter hero spacing on desktop (welcome page) */
@media (min-width:900px){
  /* Less space ABOVE hero */
  .wrap > section.hero{
    margin-top:2.25rem;   /* was 5.25rem via section{} */
  }

  /* Less space BETWEEN hero and the next section (the grid of cards) */
  .hero + section{
    margin-top:2.25rem;   /* instead of 5.25rem */
  }
}

.xh-coming-soon-banner{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) rotate(-22deg);
  z-index:1;
  pointer-events:none;
  user-select:none;

  font-family:"AbelCustom", system-ui, sans-serif;
  text-transform:uppercase;
  white-space:nowrap;
  letter-spacing:0.25em;
  font-weight:bold;

  font-size:clamp(3rem, 16vw, 7rem);
  color:rgba(36, 255, 100, 0.5); /* brand navy with higher opacity */
}

/* Mobile refinement */
@media (max-width:768px){
  .xh-coming-soon-banner{
    transform:translate(-50%, -50%) rotate(-32deg);
    letter-spacing:0.18em;
    font-size:clamp(1.8rem, 14vw, 3.4rem);
    color:rgba(36, 255, 100, 0.5);
  }
}

.static-page{
  max-width:800px;
  padding:0 1.5rem;
}

.static-page h1{
  font-size:2rem;
  margin-bottom:0.75rem;
  color:var(--text-strong, #111827);
}

.static-intro{
  font-size:1.05rem;
  margin-bottom:1.5rem;
  color:var(--muted, #4b5563);
}

.static-body{
  line-height:1.6;
  font-size:0.98rem;
  color:var(--text, #111827);
}


/* === Early Bird popup modal === */
.xh-popup{
  position:fixed;
  inset:0;
  display:none;
  z-index:200; /* above brandbar/video modal */
}

.xh-popup.is-visible{
  display:block;
}

.xh-popup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.xh-popup-panel{
  position:relative;
  top: 196px;
  width:min(560px, calc(100% - 2rem));
  margin:0 auto;
  background:var(--bg, #fff);
  color:var(--text, #111);
  border:1px solid var(--border, rgba(0,0,0,0.08));
  border-radius:var(--radius-lg, 20px);
  box-shadow:var(--shadow, 0 8px 30px rgba(0,0,0,0.25));
  padding:1.25rem 1.25rem 1.1rem;
}

.xh-popup-close{
  position:absolute;
  top:.75rem;
  right:.75rem;
  width:2.25rem;
  height:2.25rem;
  border-radius:999px;
  border:1px solid var(--border, rgba(0,0,0,0.12));
  background:transparent;
  color:inherit;
  font-size:1.1rem;
  line-height:1;
  cursor:pointer;
}

.xh-popup-title{
  margin:0 2.75rem .65rem 0;
  font-size:1.25rem;
  letter-spacing:.2px;
}

.xh-popup-body{
  font-size:1rem;
  line-height:1.45;
  opacity:.95;
}

.xh-popup-actions{
  margin-top:1rem;
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
}

.xh-modal-open{
  overflow:hidden;
}

/* Mobile tweak: bring it up a bit and make spacing tighter */
@media (max-width: 520px){
  .xh-popup-panel{
    top: 176px;
    padding:1.05rem 1.05rem .95rem;
  }
  .xh-popup-title{
    font-size:1.15rem;
  }
}

.static-body img.whoarewe {
    display: block;
    margin: 2.5rem auto;
    max-width: 100%;
	height:500px;
	width:auto;
}

.static-body img.whatsapp {
	height: 25px;
	width: auto;
}

@media (max-width: 520px){
	.static-body img.whoarewe {
	height:300px;
	width:auto;
}
}