:root{
  --brand:#ed1885;
  --teal:#48f7b9;
  --orange:#fe3207;
  --purple:#5b1aba;
  --lavender:#d2b3e3;
  --ink:#1e293b;
  --ink-soft:#475569;
  --bg:#ffffff;
  --bg-alt:#fffafe;
  --bg-alt2:#fff0fd;
}

html, body { height:100%; }
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
main{ flex:1 0 auto; }   /* main expands to fill available space */
.footer{ margin-top:auto; }

*{box-sizing:border-box} html{scroll-behavior:smooth} body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,'Noto Sans',sans-serif;color:var(--ink);background:var(--bg);}
a{color:var(--purple);text-decoration:none} a:hover{text-decoration:underline}
.container{max-width:1200px;margin:auto;padding:0 16px}
header{position:sticky;top:0;z-index:20;background:#fff;border-bottom:1px solid #e5e7eb}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:10px 0}
.nav .left{display:flex;align-items:center;gap:12px}
.logo{height:100px; margin-left: 10px} @media (max-width:700px){.logo{height:66px}}
nav ul{display:flex;gap:16px;list-style:none;margin:0;padding:0} nav a{color:var(--ink);font-weight:600}
.cta:hover{text-decoration:none;opacity:.95}
.hero{padding:30px 0;background:linear-gradient(180deg,#fff, #fff 60%, var(--bg-alt2));}
.hero h1{font-size:40px;line-height:1.1;margin:12px 0}
.badges{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;max-width:520px}
.badge{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--ink-soft)} .dot{width:10px;height:10px;border-radius:50%}
.row{display:grid;grid-template-columns:repeat(12,1fr);gap:20px} .col-6{grid-column:span 6} .col-5{grid-column:span 5} .col-7{grid-column:span 7} .col-12{grid-column:span 12}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;box-shadow:0 2px 8px rgba(0,0,0,.04)} .card.pad{padding:20px}
.section{padding:40px 0} .h2{font-size:28px;margin:0 0 8px 0} .lead{color:var(--ink-soft);font-size:16px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px} .grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.footer{background:var(--bg-alt);margin-top:40px; border-top:1px solid #e5e7eb;} .footer .cols{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;padding:24px 0} .small{font-size:13px;color:var(--ink-soft)}
.btn{display:inline-block;padding:12px 16px;border-radius:16px;font-weight:700} 
.btn-brand{background:var(--brand);color:#fff} 
.btn-outline{border:2px solid #e5e7eb;color:var(--ink)} 
.btn-green{background:var(--teal);color:#000} 
.btn-orange{background:var(--orange);color:#fff} 
.btn-purple{background:var(--purple);color:#fff}
.banner{background:color-mix(in srgb, var(--teal) 18%, white);border:1px solid color-mix(in srgb, var(--teal) 35%, white);border-radius:16px;padding:16px}
.carousel .dots{ display:none !important;} 

/* Carousel container reserves space and stays in its col-6 */
.carousel{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 6px 14px rgba(0,0,0,.06);

  /* give it height so absolutely-positioned slides have a box */
  height:420px;
}

/* Slides fade between each other */
.carousel .slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;          /* fill the container height */
  object-fit:cover;
  opacity:0;
  transition:opacity 600ms ease;
}
.carousel .slide.show{ opacity:1; }

/* Mobile height */
@media (max-width:900px){
  .carousel{ height:300px; }
}


.footer .quick-row{display:flex;flex-wrap:wrap;gap:10px;padding:8px 0;margin-top:8px; justify-content:center; text-align:center;   } 
.footer .quick-row a{font-size:13px;color:var(--ink)}
.trustbar{display:flex;gap:16px;align-items:center;justify-content:center;padding:0px 0px 16px 0px} .trustbar img{height:40px}
@media (max-width:900px){.row{grid-template-columns:1fr} .col-6,.col-5,.col-7,.col-12{grid-column:span 1} .grid-3{grid-template-columns:1fr} .grid-2{grid-template-columns:1fr} }

/* Milestone counter widget */
.milestone{
  position: relative; overflow: hidden; border-radius:16px; padding:16px; color:#fff;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--purple) 65%, white) 0%,
    color-mix(in srgb, var(--brand) 60%, white) 100%
  );
  box-shadow: 0 6px 16px rgba(91,26,186,.18);
  border: 1px solid rgba(255,255,255,.12);
  width: 100%;
  min-height: 180px;
  display:flex;
  align-items:center;
}
.milestone .burst{
  position:absolute; inset:-40% -10% auto auto; width:260px; height:260px;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
  transform: rotate(12deg); pointer-events:none;
}

.milestone .rowx { display:flex; align-items:center; gap:12px; width: 100%; }

/* Milestone logo chip */
.milestone .logo-chip{
  width:100px; aspect-ratio:1 / 1; border-radius:16px; flex:0 0 100px;
  overflow: hidden;
  background:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.milestone .logo-chip img{
  max-width:100px; max-height:100px; display: block; object-fit:contain; padding:10px; display:block;
}

.milestone .big{ font-size:36px; } /* slightly bigger number too */

.milestone .kicker {
  font-size: 18px; letter-spacing:.12em; text-transform:uppercase; opacity:.9;
}
.milestone .big {
  font-size: 32px; font-weight: 900; line-height: 1;
}
.milestone .sub {
  font-size: 13px; opacity:.95; margin-top:4px;
}

/* Brochure + milestone row */
.brochure-row{
  display:grid; gap:20px;
  grid-template-columns: minmax(0,1fr) 340px;
}

@media (max-width: 900px){
  .brochure-row { grid-template-columns: 1fr; }
}

.small-milestone{font-size:13px;color:#ffffff;}

.site-nav {margin-right: 10px;}
.site-nav ul{display:flex;gap:20px;list-style:none;margin:0;padding:0}
.site-nav a{color:var(--ink);font-weight:600}
.cta{background:var(--brand);color:#fff;padding:10px 16px;border-radius:20px;box-shadow:0 8px 20px rgba(254,13,234,.25)}

.cta, .cta:link, .cta:visited { color:#fff !important; }
.site-nav a.cta { color:#fff !important; }

/* Burger button */
.menu-toggle{
  display:none; background:#fff; border:1px solid #e5e7eb; border-radius:10px;
  padding:8px 10px; color:var(--ink); cursor:pointer; margin-right: 10px; position:relative; z-index:1001;
}

/* Mobile dropdown panel */
.mobile-panel{
  position:absolute; left:0; right:0; top:100%; background:#fff; border-bottom:1px solid #e5e7eb;
  box-shadow:0 10px 18px rgba(0,0,0,.06); z-index:1000;
}
.mobile-panel nav{ display:flex; flex-direction:column; gap:8px; padding:12px 16px }
.mobile-panel a{ background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:10px 12px; font-weight:600; color:var(--ink) }
.mobile-panel .mobile-cta{ background:var(--brand); color:#fff; border-color:transparent; text-align:center }

/* Responsive behavior */
@media (max-width:1050px){
  .site-nav ul{gap:12px}
}
@media (max-width:970px){
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .site-nav{display:none}                /* hide desktop links on mobile */
  .only-desktop{display:none}            /* hide desktop-only CTA */
  .menu-toggle.btn{padding:8px 12px;border-radius:16px;font-weight:700} 
  .menu-toggle.btn-brand{background:var(--brand);color:#fff} 
}

@media (max-width:900px){
  .site-nav .social{display:none}                /* hide desktop links on mobile */

  
}

/* Two-column brochure row: left grows, right fixed width */
.brochure-row{
  display:grid; gap:20px;
  grid-template-columns: minmax(0,1fr) 340px;
}
@media (max-width:900px){
  .brochure-row{ grid-template-columns: 1fr; }
}

/* Inside the brochure card: side-by-side on desktop, stacked on phones */
.brochure-grid{
  display:grid; gap:16px; align-items:start;
  grid-template-columns: 240px 1fr;
}
.brochure-cover{
  width:240px; height:auto; border-radius:12px; border:1px solid #e5e7eb; display:block;
}
.brochure-actions{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap }

/* Phone-friendly stacking */
@media (max-width:700px){
  .brochure-grid{ grid-template-columns: 1fr; }
  .brochure-cover{ width:100%; max-width:420px; margin:0 auto; }
  .brochure-copy{ text-align:left }
  .brochure-actions{ justify-content:flex-start }
}

/* Extra small screens */
@media (max-width:480px){
  .brochure-cover{ width:100%; }
  .btn{ padding:12px 14px } /* make buttons slightly narrower */
}


/* ====== ABOUT PAGE VIBRANT SECTIONS ====== */

/* Generic colourful section bands */
.band { padding:48px 0; }
.band.white { background:#fff; }
.band.soft { background: color-mix(in srgb, var(--lavender) 22%, white); }
.band.gradient {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--purple) 14%, white) 0%,
    color-mix(in srgb, var(--brand) 16%, white) 100%);
  color:#0b0220;
}

/* Headings with playful underline */
.h-underline {
  position:relative; display:inline-block; padding-bottom:4px;
}
.h-underline:after {
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:8px;
  background: linear-gradient(90deg, var(--brand), var(--teal), var(--orange));
  border-radius:6px; opacity:.6;
}



/* Grid helpers (no cards) */
.g2 { display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; }
.g3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.g4 { display:grid; grid-template-columns: repeat(4, 1fr); gap:14px; }
@media (max-width:900px){ .g2,.g3,.g4 { grid-template-columns:1fr; } }

/* Image placeholders you can replace later */
.img-ph {
  position:relative; border-radius:16px; overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.15)),
    repeating-conic-gradient(from 0deg, color-mix(in srgb, var(--brand) 14%, white) 0 25%,
                                     color-mix(in srgb, var(--purple) 12%, white) 0 50%);
  border:1px solid #e5e7eb;
  aspect-ratio: 16 / 10;     /* change per section if you like */
  display:grid; place-items:center;
}
.img-ph.tall { aspect-ratio: 3 / 4; }
.img-ph.wide { aspect-ratio: 21 / 9; }
.img-ph > span {
  background:#fff; color:var(--ink); padding:6px 10px; border-radius:999px;
  font-size:13px; font-weight:700; box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.img-ph img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Feature “chips” and icon bullets */
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; font-weight:700; font-size:13px;
  background:#fff; border:1px solid #e5e7eb; box-shadow:0 2px 6px rgba(0,0,0,.04);
}
.dot { width:10px; height:10px; border-radius:50%; background:var(--teal); }

.ul-clean { margin:0; padding-left:1.3em; }
.ul-clean li { margin:6px 0; }
.ul-icons { list-style:none; padding:0; margin:0; }
.ul-icons li { margin:8px 0; display:flex; gap:10px; }
.ul-icons .ico {
  width:18px; height:18px; flex:0 0 18px; border-radius:4px; background:var(--teal);
}

/* Trust logos neatly in-row */
.trust-inline {
  display:flex; gap:16px; align-items:center; flex-wrap:wrap;
}
.trust-inline img { height:44px; }

/* Soft call-to-action band */
.cta-soft {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--teal) 18%, white),
    color-mix(in srgb, var(--brand) 12%, white));
  border:1px solid color-mix(in srgb, var(--teal) 35%, white);
  border-radius:16px; padding:20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

/* Make headings pop a bit more on colourful bands */
.band.gradient .h2, .band.soft .h2 { color:#241046; }

/* Small helper to constrain max text width when needed */
.maxch { max-width: 72ch; }

/* ===== TEAM PAGE VIBE ===== */

/* Colourful bands to break sections up */
.band { padding:48px 0; }
.band.white { background:#fff; }
.band.soft { background: color-mix(in srgb, var(--lavender) 22%, white); }
.band.gradient {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--purple) 14%, white) 0%,
    color-mix(in srgb, var(--brand) 16%, white) 100%);
}

/* Underline flair */
.h-underline { position:relative; display:inline-block; padding-bottom:4px; }
.h-underline:after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:8px;
  background: linear-gradient(90deg, var(--brand), var(--teal), var(--orange));
  border-radius:6px; opacity:.6;
}

.h-underline-slim:after {
  height: 4px;
  bottom: 0px;
}

/* Grids (no cards) */
.g2 { display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; }
.g3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.g4 { display:grid; grid-template-columns: repeat(4, 1fr); gap:16px; }
@media (max-width:900px){ .g2,.g3,.g4 { grid-template-columns:1fr; } }

/* People tiles — bright & simple */
.person {
  background: #fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:16px;
  display:flex; gap:14px; align-items:center;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.person .avatar{
  flex:0 0 96px; width:96px; height:96px; border-radius:999px; overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.15)),
    radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--brand) 30%, white), transparent 60%),
    radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--teal) 30%, white), transparent 60%);
  border:1px solid #e5e7eb;
}
.person .avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.person h3{ margin:0 0 4px 0; font-size:18px; }
.person p.small{ margin:0; color:var(--ink-soft); }

@media (max-width:520px){
  .person{ flex-direction:column; align-items:flex-start }
  .person .avatar{ width:86px; height:86px; }
}

/* Section chip row */
.chips { display:flex; flex-wrap:wrap; gap:8px; }
.chip {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; font-weight:700; font-size:13px;
  background:#fff; border:1px solid #e5e7eb; box-shadow:0 2px 6px rgba(0,0,0,.04);
}
.dot { width:10px; height:10px; border-radius:50%; background:var(--teal); }

/* Group header blocks */
.group-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
  margin:8px 0 14px 0;
}
.group-head .note{ color:var(--ink-soft); font-size:13px }

/* Drivers list — tighter tiles */
.driver { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:10px; }
.driver .avatar{ flex:0 0 60px; width:60px; height:60px; border-radius:999px; overflow:hidden; background:#f6f8fb; border:1px solid #e5e7eb; }
.driver .avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.driver strong{ font-size:14px }

/* Full-width image placeholder ribbons */
.img-ph {
  position:relative; border-radius:16px; overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.35), rgba(255,255,255,.15)),
    repeating-conic-gradient(from 0deg, color-mix(in srgb, var(--brand) 14%, white) 0 25%,
                                     color-mix(in srgb, var(--purple) 12%, white) 0 50%);
  border:1px solid #e5e7eb;
  aspect-ratio: 21/9; display:grid; place-items:center;
}
.img-ph > span{
  background:#fff; color:var(--ink); padding:6px 10px; border-radius:999px;
  font-size:13px; font-weight:700; box-shadow:0 3px 10px rgba(0,0,0,.08);
}

/* ===== Vibrant availability extras (lightweight) ===== */
  
    .legend {
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      background: linear-gradient(135deg,
        color-mix(in srgb, var(--teal) 18%, white),
        color-mix(in srgb, var(--brand) 12%, white));
      border:1px solid color-mix(in srgb, var(--teal) 35%, white);
      border-radius:16px; padding:12px 14px;
    }
    .pill { display:inline-flex; align-items:center; gap:8px; padding:6px 10px;
      border-radius:999px; background:#fff; border:1px solid #e5e7eb; font-weight:700; font-size:13px; }
    .dot { width:10px; height:10px; border-radius:50%; background:var(--teal); }
    .avail-wrap{
      background:#fff; border:1px solid #e5e7eb; border-radius:16px; padding:0; overflow:hidden;
      box-shadow:0 2px 8px rgba(0,0,0,.04);
    }
    .table-scroller{ overflow:auto; }
    table.avail{ width:100%; border-collapse:separate; border-spacing:0; }
    table.avail thead th{
      position:sticky; top:0; background:var(--bg-alt); z-index:1;
      text-align:left; font-weight:800; padding:12px; border-bottom:1px solid #e5e7eb;
      white-space:nowrap;
    }
    table.avail tbody td{ padding:12px; border-bottom:1px solid #f0f2f6; vertical-align:top; }
    table.avail tbody tr:hover { background: #fafbff; }
    /* Column sizing for desktop */
    col.holiday { width: 40ch; }
    col.code    { width: 8ch; }
    col.from, col.to { width: 12ch; }
    col.days, col.spaces { width: 6ch; }
    col.price   { width: 12ch; }
    /* Price colouring when reduced */
    .price.reduced {
      color: color-mix(in srgb, var(--teal) 70%, #0b0b0b);
      font-weight: 800;
    }

    /* Controls row */
    .controls{
      display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin:10px 0;
    }
    .upload{
      display:flex; align-items:center; gap:10px; flex-wrap:wrap;
      background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:8px 10px;
    }
    .upload input[type="file"]{ max-width:240px }
    .btn-mini{ display:inline-block; padding:10px 14px; border-radius:12px; font-weight:700; background:var(--brand); color:#fff; }
    .note{ font-size:13px; color:var(--ink-soft) }
    @media (max-width:900px){
      .legend{ padding:10px 12px }
    }

    /********************************* FAQ grid: you paste your existing <p> + <hr> pairs inside .faq-list */
/* Single-column list */
.faq-list{ display:block; width:100%; margin-top:14px; }
.faq-list hr{ display:none !important; } /* hide old separators */

/* Each Q+A as a friendly tile */
.faq-list p{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:16px 18px;
  margin:0 0 14px 0;                 /* <-- padding between FAQs */
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  position:relative;
  transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.faq-list p:before{
  content:"";
  position:absolute; left:0; top:0; bottom:0; width:6px; border-radius:16px 0 0 16px;
  background: linear-gradient(180deg, var(--brand), var(--teal)); opacity:.8;
}
.faq-list p:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  border-color:#e0e3ea;
}
.faq-list p > strong{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  flex-wrap:nowrap;            /* don't wrap between dot and text */
  line-height:1.2;             /* avoid vertical stretch */
}

.faq-list p > strong::before{
  content:"";
  display:inline-block;        /* ensure it’s a box */
  width:10px;
  height:10px;
  min-width:10px;              /* lock size */
  min-height:10px;
  flex:0 0 10px;               /* no shrinking in flex */
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--brand) 20%, white);
}

.faq-list .small{ display:block; margin-top:6px; color:var(--ink-soft); }

/* (Optional) make the whole FAQ band edge-to-edge:
.faq-full .container{ max-width:none; padding-left:0; padding-right:0; }
*/


.section-brochure {
padding-top: 30px;
padding-bottom: 15px;
}

.section-availability, .section-cards {
padding-top: 15px;
padding-bottom: 30px;
}

.section-cards {
  padding-top: 30px;
  padding-bottom: 10px;
}

.faq-top, .faq-main {
  padding-top: 10px;
  padding-bottom: 0px;
}

.faq-top {
  padding-top: 25px;
}

.faq-main {
  padding-bottom: 25px;
}

/* Button loading state */
.btn.loading {
  pointer-events: none;
  opacity: .9;
}
.btn.loading .spinner {
  display:inline-block; width:16px; height:16px;
  border:2px solid currentColor; border-right-color: transparent;
  border-radius:50%;
  vertical-align:-3px; margin-right:8px;
  animation: jdspin 0.8s linear infinite;
}
@keyframes jdspin { to { transform: rotate(360deg); } }

/* Grouped people tile (shares description) */
.person-group{
  background:#fff; border:1px solid #e5e7eb; border-radius:16px; box-shadow:0 2px 8px rgba(0,0,0,.04);
  padding:16px; display:flex; align-items:center; gap:16px;
}

/* Avatar cluster (2–3 photos together) */
.pg-avatars{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.pg-avatars .avatar{
  width:86px; height:86px; border-radius:999px; overflow:hidden;
  background:#f6f8fb; border:1px solid #e5e7eb;
}
.pg-avatars.trio .avatar{ width:76px; height:76px; } /* slightly smaller when three */

.pg-body h3{ margin:0 0 6px 0; font-size:18px; }
.pg-body .small{ margin:0; color:var(--ink-soft); }

/* Compact on very small screens */
@media (max-width:520px){
  .person-group{ flex-direction:column; align-items:flex-start }
  .pg-avatars{ gap:8px }
  .pg-avatars .avatar{ width:74px; height:74px }
  .pg-avatars.trio .avatar{ width:66px; height:66px }
}

/* Compact avatar collages: drop-in replacement for .avatar */
.avatar-collage{
  flex:0 0 96px; width:96px; height:96px;           /* same footprint as a single avatar */
  border-radius:999px; overflow:hidden; position:relative;
  display:grid; gap:2px; background:#fff;           /* gap = white divider lines */
  border:1px solid #e5e7eb; box-shadow:0 2px 6px rgba(0,0,0,.04);
}
.avatar-collage.duo{  grid-template-columns:repeat(2,1fr); }
.avatar-collage.trio{ grid-template-columns:repeat(3,1fr); }

.avatar-collage img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Small screens: scale down a touch (matches your existing responsive rules) */
@media (max-width:520px){
  .avatar-collage{ flex-basis:86px; width:86px; height:86px; }
}

/* --- Fix driver avatars to behave like person avatars --- */
.driver .avatar{
  position: relative;
  overflow: hidden;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #f6f8fb;
  border: 1px solid #e5e7eb;
}

/* Force images to fill the circle, no matter global img rules */
.driver .avatar img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive, on-brand video embed */
.video-embed{
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
}
.video-embed iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Give more grid space to the video on larger screens */
.video-band .g2{ grid-template-columns: 0.9fr 1.1fr; }
@media (min-width: 1000px){
  .video-band .g2{ grid-template-columns: 0.8fr 1.2fr; }
}
@media (min-width: 1300px){
  .video-band .g2{ grid-template-columns: 0.7fr 1.3fr; }
}

/* Glossy, rounded embed (replaces the thin grey border) */
.video-embed{
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 20px;          /* softer, more obvious rounding */
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border: none;                 /* remove the flat grey line */
}

/* Vibrant gradient border using a mask trick */
.video-embed::before{
  content:"";
  position:absolute; inset:0;
  padding:2px;                  /* border thickness */
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--teal), var(--orange));
  -webkit-mask: 
      linear-gradient(#000 0 0) content-box, 
      linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
}

.video-embed iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

/* Footer socials */
.socials{
  display:flex; align-items:center; gap:12px;
  margin-top:-2px; /* adjust to fit your layout */
}

.site-nav .socials {
  margin-top: -2px;
}
.social{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:10px;
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease;
}


.social img{
  width:38px; height:38px; display:block; fill:#ffffff; /* good contrast */
}

.site-nav .socials .social, .site-nav .social img {
  width:25px; height:25px;
}

.social:hover{ transform:translateY(-1px); box-shadow:0 6px 14px rgba(0,0,0,.08); }
.social:focus-visible{ outline:3px solid color-mix(in srgb, var(--brand) 40%, white); outline-offset:3px; }

/* Visually hidden text (for screen readers) */
.vh{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}


/* Right group in header */
.nav .right{
  display:flex; align-items:center; gap:8px;
}

.label { display:block; font-weight:600; margin-bottom:6px; }
input[type="text"], input[type="email"], textarea, input:not([type]) {
  width:100%; padding:12px 14px; border:1px solid #e5e7eb; border-radius:12px; outline:0;
}

label:has([required]) .label::after {
  content: " *";
  color: #e11900;   /* brand-friendly red */
  font-weight: 700;
}

input:focus, textarea:focus { border-color:#b48cf0; box-shadow:0 0 0 3px rgba(180,140,240,.15); }

.consent { display:flex; align-items:flex-start; gap:10px; font-size:.95rem; }

.hp { position:absolute; left:-9999px; }

/* Container */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  overflow: hidden;         /* so highlight/accents bleed cleanly */
}

/* Rows */
.hours-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 9px 10px 9px 12px; /* left space for the accent bar */
}

/* Use top borders for separators (avoids the “line above today” seam) */
.hours-list li + li {
  border-top: 1px solid #f1f1f3;
}

/* Today highlight: full-row tint + left accent that doesn't affect layout */
.hours-list li.is-today {
  background: #f8f5ff;                     /* soft tint */
  font-weight: 600;
}
.hours-list li.is-today::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;                                  /* cover full row height */
  bottom: 0;
  width: 4px;
  background: #5b1aba;                     /* JollyDays purple */
}

/* Remove any separators touching the highlighted row */
.hours-list li.is-today,
.hours-list li.is-today + li {
  border-top-color: transparent;
}


