  :root{
    --white:#ffffff;
    --paper:#fbfbfa;
    --blue-tint:#eef2fb;
    --red-tint:#fdeeee;
    --ink:#12182b;
    --ink-soft:#4b5266;
    --navy:#1c3d8f;
    --navy-deep:#0e2557;
    --red:#d5303f;
    --red-deep:#a6222e;
    --line:#dfe3ee;
    --radius:18px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.display{
    font-family:'Fraunces', serif;
    font-weight:700;
    letter-spacing:-0.01em;
    line-height:1.08;
  }
  a{color:inherit;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1080px; margin:0 auto; padding:0 24px;}
  /* Full-bleed container for pages that want the grid to breathe across
     the whole viewport (e.g. the artists page) instead of the narrow
     1080px .wrap — just a decent, classy margin left/right. */
  .container-fluid{width:100%; max-width:1680px; margin:0 auto; padding:0 64px; box-sizing:border-box;}
  section{padding:64px 0;}
  .eyebrow{
    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:13px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--red-deep);
    margin-bottom:12px;
    display:inline-block;
  }
  .center{text-align:center;}
  .lead{color:var(--ink-soft); font-size:17px; max-width:560px;}
  .center .lead{margin-left:auto; margin-right:auto;}

  /* ===== Ticket-stub CTA buttons — the signature element ===== */
  .ticket-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:28px;
  }
  .ticket{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:18px 14px;
    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:9px;
    text-decoration:none;
    border-radius:10px;
    border:2px solid transparent;
    isolation:isolate;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .ticket:active{transform:scale(0.98);}
  .ticket::before{
    content:"";
    position:absolute;
    top:0; bottom:0; right:-1px;
    width:0;
    border-left:2px dashed rgba(255,255,255,0.55);
  }
  .ticket .notch{
    position:absolute;
    width:18px; height:18px;
    background:var(--white);
    border-radius:50%;
    top:50%; transform:translateY(-50%);
  }
  .ticket .notch.left{left:-9px;}
  .ticket .notch.right{right:-9px;}
  .ticket-call{
    background:var(--navy);
    color:#fff;
    box-shadow:0 8px 20px -8px rgba(28,61,143,0.55);
  }
  .ticket-whatsapp{
    background:var(--red);
    color:#fff;
    box-shadow:0 8px 20px -8px rgba(213,48,63,0.55);
  }
  .ticket:hover.ticket-call{background:var(--navy-deep);}
  .ticket:hover.ticket-whatsapp{background:var(--red-deep);}
  .ticket svg{width:20px; height:20px; flex-shrink:0;}

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

  /* ===== Nav ===== */
  .nav{
    position:sticky; top:0; z-index:40;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--line);
  }
  .nav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top:14px; padding-bottom:14px;
  }
  .brand{
    font-family:'Fraunces', serif;
    font-weight:800;
    font-size:20px;
    display:flex; align-items:center; gap:8px;
  }
  .brand .dot{color:var(--red);}
  .nav-call{
    background:var(--navy);
    color:#fff;
    font-weight:700;
    font-size:14px;
    padding:10px 18px;
    border-radius:100px;
    text-decoration:none;
    white-space:nowrap;
  }

  /* ===== Hero ===== */
  .hero{
    background:linear-gradient(180deg, var(--blue-tint) 0%, var(--white) 100%);
    padding:72px 0 56px;
    position:relative;
    overflow:hidden;
  }
  .hero-ribbon{
    position:absolute;
    top:-40px; right:-60px;
    width:260px; height:260px;
    background:conic-gradient(from 90deg, var(--red) 0 25%, var(--navy) 0 50%, var(--red) 0 75%, var(--navy) 0 100%);
    border-radius:50%;
    opacity:0.07;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:48px;
    align-items:start;
    position:relative;
  }
  .hero h1{font-size:44px; margin-bottom:18px;}
  .hero h1 span{color:var(--red);}
  .hero .lead{font-size:18px; margin-bottom:8px;}
  .stat-row{
    display:flex; gap:28px; margin-top:32px; flex-wrap:wrap;
  }
  .stat b{
    font-family:'Fraunces', serif; font-size:28px; color:var(--navy); display:block;
  }
  .stat span{font-size:13px; color:var(--ink-soft);}

  .enquiry-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:0 20px 50px -25px rgba(14,37,87,0.35);
  }
  .enquiry-card h3{font-size:20px; margin-bottom:4px;}
  .enquiry-card .lead{font-size:14px; margin-bottom:18px;}

  form .field{margin-bottom:14px;}
  form label{
    display:block; font-size:12px; font-weight:700; text-transform:uppercase;
    letter-spacing:0.05em; color:var(--ink-soft); margin-bottom:6px;
  }
  form input, form select, form textarea{
    width:100%;
    padding:13px 14px;
    border:1.5px solid var(--line);
    border-radius:10px;
    font-family:'Inter', sans-serif;
    font-size:15px;
    background:var(--paper);
    color:var(--ink);
  }
  form input:focus, form select:focus, form textarea:focus{
    outline:2px solid var(--navy);
    outline-offset:1px;
    background:var(--white);
  }
  .submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:var(--red);
    color:#fff;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    margin-top:4px;
  }
  .submit-btn:hover{background:var(--red-deep);}
  .form-note{font-size:12px; color:var(--ink-soft); margin-top:10px; text-align:center;}

  @media (max-width:860px){
    .hero-grid{grid-template-columns:1fr;}
    .hero h1{font-size:34px;}
  }

  /* ===== Services ===== */
  .services{background:var(--white);}
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-top:36px;
  }
  .service-card{
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:26px;
    background:var(--paper);
    transition:border-color .15s ease, transform .15s ease;
  }
  .service-card:hover{border-color:var(--navy); transform:translateY(-3px);}
  .service-card .icon{
    width:44px; height:44px;
    border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:14px;
    background:var(--blue-tint);
    color:var(--navy);
  }
  .service-card:nth-child(3n-1) .icon{background:var(--red-tint); color:var(--red);}
  .service-card h3{font-size:18px; margin-bottom:6px;}
  .service-card p{font-size:14px; color:var(--ink-soft);}

  @media (max-width:860px){
    .service-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:560px){
    .service-grid{grid-template-columns:1fr;}
  }

  /* ===== Process ===== */
  .process{background:var(--blue-tint);}
  .steps{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
    margin-top:36px;
    counter-reset:step;
  }
  .step{
    background:var(--white);
    border-radius:var(--radius);
    padding:24px 20px;
    position:relative;
    border:1px solid var(--line);
  }
  .step .num{
    font-family:'Fraunces', serif;
    font-size:34px;
    font-weight:700;
    color:var(--red);
    opacity:0.85;
    margin-bottom:10px;
  }
  .step h3{font-size:16px; margin-bottom:6px;}
  .step p{font-size:13.5px; color:var(--ink-soft);}
  @media (max-width:860px){.steps{grid-template-columns:1fr 1fr;}}
  @media (max-width:560px){.steps{grid-template-columns:1fr;}}

  /* ===== Why us ===== */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:36px;
  }
  .why-item{
    text-align:center;
    padding:20px 14px;
  }
  .why-item .icon{
    width:56px; height:56px;
    border-radius:50%;
    background:var(--navy);
    color:#fff;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 14px;
  }
  .why-item:nth-child(2n) .icon{background:var(--red);}
  .why-item h3{font-size:15.5px; margin-bottom:6px;}
  .why-item p{font-size:13px; color:var(--ink-soft);}
  @media (max-width:860px){.why-grid{grid-template-columns:1fr 1fr;}}

  /* ===== Testimonials ===== */
  .testimonials{background:var(--red-tint);}
  .testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:36px;
  }
  .testi-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:24px;
    border:1px solid var(--line);
  }
  .stars{color:var(--red); font-size:15px; margin-bottom:12px; letter-spacing:2px;}
  .testi-card p{font-size:14.5px; color:var(--ink); margin-bottom:16px;}
  .testi-card .who{font-size:13px; font-weight:700; color:var(--navy);}
  @media (max-width:860px){.testi-grid{grid-template-columns:1fr;}}

  /* ===== Contact / big form ===== */
  .contact{background:var(--navy-deep); color:#fff;}
  .contact .eyebrow{color:#ffb3ba;}
  .contact h2{color:#fff;}
  .contact .lead{color:#c7d3ef;}
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:36px;
    align-items:start;
  }
  .contact-form{
    background:#fff;
    border-radius:var(--radius);
    padding:30px;
    color:var(--ink);
  }
  .row-2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .contact-side{padding-top:10px;}
  .contact-side .info-line{
    display:flex; gap:12px; align-items:flex-start; margin-bottom:22px;
  }
  .contact-side .info-line .icon{
    width:38px; height:38px; border-radius:10px;
    background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .contact-side .info-line h4{font-size:14px; margin-bottom:2px;}
  .contact-side .info-line p, .contact-side .info-line a{font-size:14px; color:#c7d3ef; text-decoration:none;}
  @media (max-width:860px){.contact-grid{grid-template-columns:1fr;} .row-2{grid-template-columns:1fr;}}

  /* ===== Footer ===== */
  footer{
    background:var(--ink);
    color:#c9cdda;
    padding:48px 0 0;
    font-size:14px;
  }
  footer .brand{color:#fff; margin-bottom:12px;}
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:32px;
    padding-bottom:40px;
  }
  .footer-brand-col p{color:#9aa2bd; font-size:13.5px; line-height:1.6;}
  .footer-col h4{
    color:#fff; font-family:'Inter', sans-serif; font-size:14px;
    font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
    margin-bottom:16px;
  }
  .footer-links{list-style:none;}
  .footer-links li{margin-bottom:10px;}
  .footer-links a{
    color:#9aa2bd; text-decoration:none; font-size:13.5px;
    transition:color .15s ease;
  }
  .footer-links a:hover{color:#fff;}

  .footer-social{display:flex; gap:10px; margin-bottom:20px;}
  .footer-social a{
    width:34px; height:34px; border-radius:50%;
    background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center;
    color:#c9cdda; transition:background .15s ease, color .15s ease;
  }
  .footer-social a:hover{background:var(--red); color:#fff;}
  .footer-social svg{width:16px; height:16px;}

  .footer-contact-list{list-style:none;}
  .footer-contact-list li{
    color:#9aa2bd; font-size:13.5px; line-height:1.6; margin-bottom:10px;
  }
  .footer-contact-list a{color:#9aa2bd; text-decoration:none; transition:color .15s ease;}
  .footer-contact-list a:hover{color:#fff;}

  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:18px 0 90px;
    text-align:center;
  }
  .footer-bottom p{color:#8b93ad; font-size:12.5px; margin:0;}
  @media (max-width:860px){
    .footer-grid{grid-template-columns:1fr 1fr; gap:28px 20px;}
  }
  @media (max-width:560px){
    .footer-grid{grid-template-columns:1fr; gap:26px;}
  }

  /* ===== Sticky call/WhatsApp bar (desktop + mobile) ===== */
  .sticky-bar{
    display:grid;
    position:fixed;
    bottom:0; left:0; right:0;
    width:100%;
    max-width:100vw;
    margin:0;
    z-index:9999;
    grid-template-columns:1fr 1fr;
    box-shadow:0 -8px 24px -12px rgba(0,0,0,0.25);
    padding-bottom:env(safe-area-inset-bottom, 0px);
    box-sizing:border-box;
  }
  .sticky-bar a{
    text-decoration:none;
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding:16px 10px;
    display:flex; align-items:center; justify-content:center; gap:8px;
    min-width:0;
  }
  .sticky-bar a.call{background:var(--navy);}
  .sticky-bar a.wa{background:var(--red);}
  .sticky-bar svg{width:18px; height:18px; flex-shrink:0;}
  body{padding-bottom:calc(60px + env(safe-area-inset-bottom, 0px));}

  section.section-alt{background:var(--paper);}

  @media (prefers-reduced-motion:reduce){
    *{transition:none !important;}
  }

/* ===== Multi-page nav with mobile toggle ===== */
.nav-links{display:flex; align-items:center; gap:26px;}
.nav-links a{
  font-size:14.5px; font-weight:600; text-decoration:none; color:var(--ink);
  padding:6px 2px; border-bottom:2px solid transparent;
}
.nav-links a:hover, .nav-links a.active{border-bottom-color:var(--red); color:var(--red-deep);}
.nav-actions{display:flex; align-items:center; gap:12px;}
.menu-toggle{
  display:none; background:none; border:none; cursor:pointer;
  width:40px; height:40px; align-items:center; justify-content:center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after{
  content:""; display:block; width:22px; height:2px; background:var(--ink); margin:4px 0;
}
@media (max-width:900px){
  .nav-links{
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:24px; gap:4px; transform:translateX(100%);
    transition:transform .25s ease; overflow-y:auto; z-index:39;
  }
  .nav-links.open{transform:translateX(0);}
  .nav-links a{width:100%; padding:14px 4px; border-bottom:1px solid var(--line);}
  .menu-toggle{display:flex; flex-direction:column;}
  .nav-call-desktop{display:none;}
}

/* ===== Page header banner (used on inner pages) ===== */
.page-banner{
  background:linear-gradient(180deg, var(--blue-tint) 0%, var(--white) 100%);
  padding:56px 0 44px;
  text-align:center;
}
.page-banner h1{font-size:38px; margin-bottom:10px;}
.page-banner .lead{margin:0 auto;}
.breadcrumb{font-size:13px; color:var(--ink-soft); margin-bottom:14px;}
.breadcrumb a{color:var(--navy); text-decoration:none; font-weight:600;}

/* ===== Gallery ===== */
.album-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:36px;
}
.album-card{
  border-radius:var(--radius); overflow:hidden; text-decoration:none; color:var(--ink);
  border:1px solid var(--line); background:var(--paper); display:block;
}
.album-cover{
  aspect-ratio:4/3; width:100%; object-fit:cover; background:var(--blue-tint);
}
.album-card .album-meta{padding:16px 18px;}
.album-card h3{font-size:17px; margin-bottom:4px;}
.album-card p{font-size:13px; color:var(--ink-soft);}
@media (max-width:860px){.album-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.album-grid{grid-template-columns:1fr;}}

.image-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-top:30px;
}
.image-grid .img-item{
  aspect-ratio:1/1; border-radius:12px; overflow:hidden; cursor:pointer;
  border:1px solid var(--line);
}
.image-grid .img-item img{width:100%; height:100%; object-fit:cover;}
@media (max-width:860px){.image-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:560px){.image-grid{grid-template-columns:repeat(2,1fr);}}

.lightbox{
  position:fixed; inset:0; background:rgba(10,14,28,0.92); z-index:100;
  display:none; align-items:center; justify-content:center; padding:24px;
}
.lightbox.open{display:flex;}
.lightbox img{max-width:100%; max-height:85vh; border-radius:8px;}
.lightbox-close{
  position:absolute; top:20px; right:24px; color:#fff; font-size:28px;
  background:none; border:none; cursor:pointer;
}
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,0.15); border:none; color:#fff;
  width:44px; height:44px; border-radius:50%; font-size:20px; cursor:pointer;
}
.lightbox-prev{left:18px;}
.lightbox-next{right:18px;}

.empty-state{
  text-align:center; padding:60px 20px; color:var(--ink-soft);
}

/* ===== Artists ===== */
.artist-filter{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:8px;
}
.filter-pill{
  display:inline-block; padding:7px 16px; border-radius:999px; font-size:13.5px; font-weight:600;
  color:var(--ink-soft); background:var(--paper); border:1px solid var(--line); text-decoration:none;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-pill:hover{border-color:var(--navy); color:var(--navy);}
.filter-pill.active{background:var(--navy); border-color:var(--navy); color:#fff;}

/* Left sidebar filters (category, price, group size, sort) — mirrors the
   .blog-layout / .blog-sidebar pattern used on the blog page. */
.artist-layout{
  display:grid; grid-template-columns:280px 1fr; gap:40px; align-items:start;
}
.artist-sidebar{position:sticky; top:24px;}
.artist-main{min-width:0;}
.artist-sidebar-widget{
  border:1px solid var(--line); background:var(--paper); border-radius:var(--radius); padding:20px 18px; margin-bottom:18px;
}
.artist-sidebar-widget h4{font-size:14.5px; margin-bottom:12px; font-family:'Fraunces',serif;}
.artist-filter-list, .artist-subcategory-list{list-style:none; margin:0; padding:0;}
.artist-filter-list > li{margin-bottom:2px;}
.filter-check-row{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:6px 4px; border-radius:8px; cursor:pointer; font-size:13.5px; font-weight:600; color:var(--ink);
  transition:background .15s ease;
}
.filter-check-row:hover{background:var(--blue-tint);}
.filter-check-label{display:flex; align-items:center; gap:8px;}
.filter-check-label input[type="radio"]{accent-color:var(--navy); width:15px; height:15px;}
.artist-subcategory-list{margin:2px 0 6px 16px; border-left:2px solid var(--line); padding-left:10px;}
.artist-subcategory-list .filter-check-row{font-size:12.5px; font-weight:500;}
.price-range-inputs{display:flex; align-items:center; gap:8px;}
.price-range-inputs input{
  width:0; flex:1; min-width:0; padding:8px 10px; border:1px solid var(--line); border-radius:8px;
  font-size:13.5px; font-family:inherit; color:var(--ink); background:#fff;
}
.price-range-sep{color:var(--ink-soft); font-size:13px;}
.artist-sort-select{
  width:100%; padding:9px 10px; border:1px solid var(--line); border-radius:8px;
  font-size:13.5px; font-family:inherit; color:var(--ink); background:#fff;
}
.artist-filter-apply{width:100%; justify-content:center; border:none; cursor:pointer;}
.artist-filter-clear{
  display:block; text-align:center; margin-top:10px; font-size:13px; font-weight:600;
  color:var(--ink-soft); text-decoration:underline;
}
.artist-filter-clear:hover{color:var(--navy);}

/* The whole filter panel lives inside a <details> so it can collapse on
   mobile (default closed there via JS) instead of always pushing the grid
   down the page; on desktop the summary is just a plain, non-interactive title. */
.artist-filter-details{border:none;}
.artist-filter-summary{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  list-style:none; cursor:pointer; user-select:none;
  font-family:'Fraunces',serif; font-size:17px; font-weight:600; color:var(--navy);
  padding:2px 2px 16px;
}
.artist-filter-summary::-webkit-details-marker{display:none;}
.artist-filter-summary-icon{
  flex:0 0 auto; width:22px; height:22px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:14px; color:var(--ink-soft); line-height:1;
}
.artist-filter-summary-icon::before{content:'\2212';} /* minus, shown when open */
.artist-filter-details:not([open]) .artist-filter-summary-icon::before{content:'+';}

@media (max-width:1200px){
  .container-fluid{padding:0 40px;}
}
@media (max-width:900px){
  .artist-layout{grid-template-columns:1fr;}
  .artist-sidebar{position:static; order:1;}
  .artist-main{order:2;}
  .artist-sidebar-widget{margin-bottom:14px;}
  .container-fluid{padding:0 24px;}
}
@media (max-width:640px){
  .container-fluid{padding:0 16px;}
}
@media (min-width:901px){
  .artist-filter-summary{cursor:default; pointer-events:none;}
  .artist-filter-summary-icon{display:none;}
}

/* Compact grid card: small square image + name, category, price below —
   not a big hero image (matches the .blog-card "cue card" treatment).
   auto-fill/minmax sizes columns off the *available* width (the narrower
   main column next to the sidebar), instead of the full viewport width,
   so cards never blow up to a single oversized column. */
.artist-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(200px, 1fr)); gap:24px; margin-top:32px;
}
.artist-card{
  max-width:280px;
  border-radius:var(--radius); overflow:hidden; border:1px solid var(--line);
  background:var(--paper); display:flex; flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.artist-card:hover{transform:translateY(-4px); box-shadow:0 14px 30px -18px rgba(14,37,87,0.3); border-color:var(--blue-tint);}

.artist-thumb{
  position:relative; aspect-ratio:1/1; width:100%; max-height:220px; overflow:hidden; background:var(--blue-tint);
}
.artist-thumb img{
  width:100%; height:auto; object-fit:cover; display:block; transition:transform .35s ease;
}
.artist-card:hover .artist-thumb img{transform:scale(1.05);}
.artist-thumb-placeholder{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  font-size:36px; color:var(--navy); background:var(--blue-tint);
}

.artist-card-body{padding:16px 16px 18px; display:flex; flex-direction:column; gap:8px; flex:1;}
.artist-tag{
  align-self:flex-start; background:var(--blue-tint); color:var(--navy);
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em;
  padding:4px 10px; border-radius:999px;
}
.artist-card-body h3{font-size:16.5px; margin:0; line-height:1.3;}
.artist-meta{list-style:none; display:flex; flex-direction:column; gap:3px; font-size:12.5px; color:var(--ink-soft); margin:0;}

.artist-price{font-size:15px; font-weight:700; color:var(--navy); margin:2px 0 0;}
.artist-price-old{font-size:13px; font-weight:500; color:#9aa5c0; text-decoration:line-through; margin-right:6px;}
.artist-price-new{color:var(--red);}
.artist-price-unit{font-size:12px; font-weight:500; color:var(--ink-soft);}

.artist-enquire{width:100%; justify-content:center; margin-top:auto;}

/* Makes the thumb/body wrap around the card clickable to the detail page
   without breaking the existing flex layout (the enquire button stays a
   separate link so we never nest an <a> inside another <a>). */
.artist-card-link{display:contents; color:inherit; text-decoration:none;}

/* ===== Artist Detail Page ===== */
.artist-detail-layout{
  display:grid; grid-template-columns:1fr 320px; gap:32px; align-items:start; margin-top:8px;
}
.artist-detail-main{min-width:0;}
.artist-detail-subheading{font-size:20px; margin:36px 0 16px; font-family:'Fraunces',serif;}
.artist-detail-side{position:sticky; top:24px;}
.artist-detail-card{
  border:1px solid var(--line); border-radius:var(--radius); padding:22px;
  background:var(--paper); display:flex; flex-direction:column; gap:12px;
}
.artist-detail-price{font-size:24px; display:flex; align-items:baseline; gap:8px; flex-wrap:wrap;}
.artist-detail-discount-badge{
  align-self:flex-start; background:var(--red); color:#fff; font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.04em; padding:4px 10px; border-radius:999px; margin-top:-6px;
}
.artist-detail-meta{font-size:13.5px; gap:7px; padding-top:4px; border-top:1px solid var(--line); margin-top:2px;}
.artist-detail-meta li{display:flex; gap:6px;}

@media (max-width:760px){
  .artist-detail-layout{grid-template-columns:1fr;}
  .artist-detail-side{position:static;}
}

@media (max-width:640px){
  .artist-grid{grid-template-columns:repeat(auto-fill, minmax(135px, 1fr)); gap:14px;}
  .artist-card{max-width:none;}
  .artist-thumb{max-height:170px;}
  .artist-card-body{padding:12px 12px 14px;}
}



/* ===== Video Gallery ===== */
.video-album-card, .video-item{ position:relative; }
.play-badge{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%; background:rgba(14,37,87,0.82); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:18px; padding-left:4px;
  pointer-events:none; transition:transform .2s ease, background .2s ease;
}
.video-album-card:hover .play-badge, .video-item:hover .play-badge{
  transform:translate(-50%,-50%) scale(1.08); background:var(--red-deep);
}
.video-grid .video-item video{width:100%; height:100%; object-fit:cover;}

.video-lightbox-stage{width:min(920px, 92vw); aspect-ratio:16/9;}
.video-lightbox-stage iframe, .video-lightbox-stage video{width:100%; height:100%; border-radius:8px; border:none;}

/* ===== Blog ===== */
.blog-layout{
  display:grid; grid-template-columns:1fr 280px; gap:40px; align-items:start;
}
.blog-main{min-width:0;}
.blog-sidebar{position:sticky; top:24px;}
.blog-sidebar-widget{
  border:1px solid var(--line); background:var(--paper); border-radius:var(--radius); padding:22px 20px;
}
.blog-sidebar-widget h4{font-size:15px; margin-bottom:14px; font-family:'Fraunces',serif;}
.blog-category-list, .blog-subcategory-list{list-style:none; margin:0; padding:0;}
.blog-category-list > li{margin-bottom:4px;}
.blog-category-list a, .blog-subcategory-list a{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  padding:8px 8px; border-radius:8px; text-decoration:none; color:var(--ink);
  font-size:14px; font-weight:600; transition:background .15s ease, color .15s ease;
}
.blog-category-list a:hover, .blog-subcategory-list a:hover{background:var(--blue-tint);}
.blog-category-list a.is-active, .blog-subcategory-list a.is-active{background:var(--navy); color:#fff;}
.blog-category-list a.is-active .cat-count, .blog-subcategory-list a.is-active .cat-count{color:#fff;}
.blog-subcategory-list{margin:2px 0 6px 14px; border-left:2px solid var(--line); padding-left:10px;}
.blog-subcategory-list a{font-size:13.5px; font-weight:500;}
.cat-count{font-size:12px; color:#9aa5c0; font-weight:600;}
@media (max-width:900px){
  .blog-layout{grid-template-columns:1fr;}
  .blog-sidebar{position:static; order:2;}
  .blog-main{order:1;}
}

/* Compact "cue card" style listing: small featured image + content, not a big hero image */
.blog-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:18px; margin-top:36px;
}
.blog-card{
  display:flex; gap:16px; align-items:flex-start;
  border-radius:var(--radius); overflow:hidden; text-decoration:none; color:var(--ink);
  border:1px solid var(--line); background:var(--paper);
  padding:14px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover{transform:translateY(-3px); box-shadow:0 14px 28px -20px rgba(14,37,87,0.3); border-color:var(--blue-tint);}
.blog-cover{
  width:110px; height:110px; flex:0 0 110px; object-fit:cover; border-radius:10px; background:var(--blue-tint);
}
.blog-card-body{padding:0; min-width:0; flex:1;}
.blog-card-body h3{font-size:16px; margin-bottom:6px; line-height:1.3;}
.blog-card-body p{font-size:13.5px; color:var(--ink-soft); margin-bottom:8px; overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;}
.blog-date{font-size:12px !important; color:#9aa5c0 !important; margin-bottom:0 !important;}
@media (max-width:640px){
  .blog-grid{grid-template-columns:1fr;}
  .blog-cover{width:88px; height:88px; flex-basis:88px;}
}

.blog-content{font-size:16.5px; line-height:1.75; color:var(--ink);}
.blog-content h2{font-size:26px; margin:34px 0 14px;}
.blog-content h3{font-size:21px; margin:28px 0 12px;}
.blog-content p{margin-bottom:18px;}
.blog-content ul, .blog-content ol{margin:0 0 18px 22px;}
.blog-content li{margin-bottom:8px;}
.blog-content a{color:var(--navy); text-decoration:underline;}
.blog-content img{border-radius:12px; margin:18px 0;}
.blog-tags{display:flex; flex-wrap:wrap; gap:8px; margin:8px 0 32px;}
.tag-pill{
  background:var(--blue-tint); color:var(--navy); font-size:12.5px; font-weight:600;
  padding:5px 12px; border-radius:100px;
}

/* ===== Simple content blocks (About / Services pages) ===== */
.content-block{display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center;}
.content-block img{border-radius:var(--radius);}
@media (max-width:860px){.content-block{grid-template-columns:1fr;}}

.value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px;}
.value-card{border:1px solid var(--line); border-radius:var(--radius); padding:24px; background:var(--paper);}
.value-card h3{font-size:17px; margin-bottom:8px;}
.value-card p{font-size:14px; color:var(--ink-soft);}
@media (max-width:860px){.value-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.value-grid{grid-template-columns:1fr;}}

/* =========================================================
   SCROLL-REVEAL ANIMATION SYSTEM
   Add class="reveal" (optionally reveal-left / reveal-right / reveal-scale)
   to any element. main.js toggles ".visible" via IntersectionObserver.
   Stagger children automatically inside [data-stagger].
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s cubic-bezier(.21,.75,.32,1), transform .7s cubic-bezier(.21,.75,.32,1);
  will-change:opacity, transform;
}
.reveal-left{transform:translateX(-32px);}
.reveal-right{transform:translateX(32px);}
.reveal-scale{transform:scale(.92);}
.reveal.visible{opacity:1; transform:none;}

[data-stagger] > *{transition-delay:calc(var(--i, 0) * 90ms);}

/* ===== Hero decorative illustration ===== */
.hero-grid{grid-template-columns:1fr 0.85fr 0.9fr;}
.hero-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-media svg{
  width:100%;
  max-width:340px;
  filter:drop-shadow(0 20px 40px rgba(14,37,87,0.18));
}
.hero-media .sle-beam{transform-origin:300px 40px; animation:sle-sway 5s ease-in-out infinite;}
.hero-media .sle-beam-b{animation-delay:.6s;}
.hero-media .sle-beam-c{animation-delay:1.2s;}
.hero-media .sle-confetti{animation:sle-drift 4.5s ease-in-out infinite;}
.hero-media .sle-c2{animation-delay:.3s;} .hero-media .sle-c3{animation-delay:.6s;}
.hero-media .sle-c4{animation-delay:.9s;} .hero-media .sle-c5{animation-delay:1.2s;}
.hero-media .sle-c6{animation-delay:1.5s;} .hero-media .sle-c7{animation-delay:1.8s;}
.hero-media .sle-c8{animation-delay:2.1s;}
.hero-media .sle-balloon{animation:sle-float 4s ease-in-out infinite;}
.hero-media .sle-balloon-b{animation-delay:1.4s;}

@keyframes sle-sway{
  0%,100%{transform:rotate(0deg);}
  50%{transform:rotate(3deg);}
}
@keyframes sle-drift{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-10px) rotate(12deg);}
}
@keyframes sle-float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-14px);}
}
.sle-spin-slow{animation:sle-spin 40s linear infinite; transform-origin:center;}
@keyframes sle-spin{ to{ transform:rotate(360deg); } }

@media (max-width:1080px){
  .hero-grid{grid-template-columns:1fr 1fr;}
  .hero-media{order:-1; max-width:260px; margin:0 auto;}
}
@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-media{max-width:220px;}
}

/* ===== Ribbon gets a slow ambient rotation ===== */
.hero-ribbon{animation:sle-ribbon-spin 24s linear infinite;}
@keyframes sle-ribbon-spin{ to{ transform:rotate(360deg); } }

/* ===== Photo frame — used for about/photo blocks; supports real uploaded photo
   with automatic fallback to the illustration if no file has been added yet ===== */
.photo-frame{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/3;
  background:var(--blue-tint);
}
.photo-frame img{width:100%; height:100%; object-fit:cover; display:block;}

/* ===== Animated counters (stat numbers count up via main.js) ===== */
.stat b{transition:color .2s ease;}

/* ===== Card hover lift + icon pop ===== */
.service-card, .value-card, .testi-card, .album-card{
  transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.service-card:hover, .value-card:hover, .testi-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 34px -22px rgba(14,37,87,0.35);
}
.album-card:hover{transform:translateY(-5px); box-shadow:0 18px 34px -22px rgba(14,37,87,0.35);}
.service-card .icon{transition:transform .25s ease;}
.service-card:hover .icon{transform:scale(1.12) rotate(-4deg);}
.why-item .icon{transition:transform .25s ease;}
.why-item:hover .icon{transform:scale(1.1);}

/* ===== Ticket CTA buttons get a subtle shine sweep on hover ===== */
.ticket{overflow:hidden;}
.ticket::after{
  content:"";
  position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(115deg, transparent, rgba(255,255,255,0.35), transparent);
  transform:skewX(-20deg);
  transition:left .5s ease;
  pointer-events:none;
}
.ticket:hover::after{left:120%;}

/* ===== Brand dot gentle pulse ===== */
.brand .dot{display:inline-block; animation:sle-pulse 2.4s ease-in-out infinite;}
@keyframes sle-pulse{
  0%,100%{transform:scale(1); opacity:1;}
  50%{transform:scale(1.35); opacity:.65;}
}

/* ===== Homepage "Moments" photo strip (real photos pulled from the gallery/albums admin) ===== */
.moments-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:36px;
}
.moment-item{
  border-radius:14px; overflow:hidden; aspect-ratio:1/1; border:1px solid var(--line);
  position:relative; cursor:pointer;
}
.moment-item img{width:100%; height:100%; object-fit:cover; transition:transform .4s ease;}
.moment-item:hover img{transform:scale(1.08);}
@media (max-width:860px){.moments-grid{grid-template-columns:repeat(2,1fr);}}

/* ===== Reduced-motion: kill keyframe animation but still reveal content ===== */
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1 !important; transform:none !important; transition:none !important;}
  .hero-media *, .hero-ribbon, .brand .dot, .sle-spin-slow{animation:none !important;}
  .moment-item img{transition:none;}
}
