:root{
    --bg:#0B0E14;
    --bg-panel:#11151F;
    --bg-panel-2:#161B27;
    --line:#232838;
    --text:#F5F3EE;
    --text-muted:#9AA1AE;
    --gold:#C9A66B;
    --teal:#3EC6B3;
    --serif:'Fraunces', serif;
    --sans:'Inter', sans-serif;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--sans);
    font-weight:300;
    line-height:1.5;
    overflow-x:hidden;
    cursor:none;
  }
  ::selection{background:var(--gold);color:#0B0E14;}

  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}

  .cursor-dot{
    position:fixed;top:0;left:0;width:8px;height:8px;border-radius:50%;
    background:var(--gold);pointer-events:none;z-index:9999;
    transform:translate(-50%,-50%);transition:transform .15s ease, opacity .2s;
    mix-blend-mode:difference;
  }
  .cursor-ring{
    position:fixed;top:0;left:0;width:36px;height:36px;border-radius:50%;
    border:1px solid var(--gold);pointer-events:none;z-index:9998;
    transform:translate(-50%,-50%);transition:transform .25s ease, width .25s, height .25s, opacity .2s;
    opacity:.6;
  }
  @media (max-width:860px){
    .cursor-dot, .cursor-ring{display:none;}
    body{cursor:auto;}
  }

  .container{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  /* NAV */
  header{
    position:fixed;top:0;left:0;right:0;z-index:500;
    padding:26px 0;
    transition:background .3s ease, padding .3s ease, border-color .3s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    background:rgba(11,14,20,0.85);
    backdrop-filter:blur(10px);
    padding:16px 0;
    border-bottom:1px solid var(--line);
  }
  .nav-inner{
    display:flex;align-items:center;justify-content:space-between;
  }
  .logo{
    font-family:var(--serif);
    font-size:22px;
    letter-spacing:.02em;
    font-weight:500;
  }
  .logo span{color:var(--gold);}
  nav ul{
    list-style:none;display:flex;gap:40px;
  }
  nav a{
    font-size:13px;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--text-muted);
    position:relative;
    padding-bottom:4px;
  }
  nav a::after{
    content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--gold);
    transition:width .3s ease;
  }
  nav a:hover{color:var(--text);}
  nav a:hover::after{width:100%;}
  .nav-cta{
    border:1px solid var(--line);
    padding:10px 20px;
    border-radius:100px;
    font-size:13px;
    letter-spacing:.05em;
  }
  .nav-cta:hover{border-color:var(--gold);color:var(--gold);}

  /* HERO */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    overflow:hidden;
  }
  #particle-canvas{
    position:absolute;inset:0;width:100%;height:100%;z-index:0;opacity:.55;
  }
  .hero-inner{
    position:relative;z-index:2;
    max-width:900px;
  }
  .eyebrow{
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--teal);
    margin-bottom:24px;
    display:flex;align-items:center;gap:12px;
    opacity:0;
    animation:fadeUp .8s ease forwards .1s;
  }
  .eyebrow::before{
    content:'';width:28px;height:1px;background:var(--teal);
  }
  h1{
    font-family:var(--serif);
    font-weight:400;
    font-size:clamp(40px, 6.2vw, 82px);
    line-height:1.05;
    letter-spacing:-.01em;
    opacity:0;
    animation:fadeUp .9s ease forwards .3s;
  }
  h1 em{
    font-style:italic;
    color:var(--gold);
    font-weight:400;
  }
  .hero-sub{
    margin-top:28px;
    max-width:560px;
    font-size:18px;
    color:var(--text-muted);
    font-weight:300;
    opacity:0;
    animation:fadeUp .9s ease forwards .5s;
  }
  .hero-actions{
    margin-top:44px;
    display:flex;
    gap:20px;
    align-items:center;
    opacity:0;
    animation:fadeUp .9s ease forwards .7s;
  }
  .btn-primary{
    background:var(--gold);
    color:#0B0E14;
    padding:16px 32px;
    border-radius:100px;
    font-size:14px;
    font-weight:500;
    letter-spacing:.03em;
    transition:transform .3s ease, box-shadow .3s ease;
    display:inline-block;
  }
  .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(201,166,107,.25);
  }
  .btn-ghost{
    font-size:14px;
    color:var(--text-muted);
    display:flex;align-items:center;gap:10px;
    letter-spacing:.03em;
  }
  .btn-ghost:hover{color:var(--text);}

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

  .scroll-cue{
    position:absolute;
    bottom:40px;left:32px;
    font-size:11px;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--text-muted);
    display:flex;
    align-items:center;
    gap:12px;
  }
  .scroll-line{
    width:1px;height:50px;
    background:linear-gradient(var(--text-muted), transparent);
    position:relative;overflow:hidden;
  }
  .scroll-line::after{
    content:'';position:absolute;top:-50px;left:0;width:100%;height:50%;
    background:var(--gold);
    animation:scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown{
    0%{top:-50%;}
    100%{top:100%;}
  }

  /* SECTION GENERIC */
  section{
    padding:140px 0;
    position:relative;
  }
  .section-head{
    max-width:640px;
    margin-bottom:80px;
  }
  .section-tag{
    font-size:13px;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:20px;
    display:block;
  }
  h2{
    font-family:var(--serif);
    font-weight:400;
    font-size:clamp(30px,4vw,46px);
    line-height:1.15;
  }
  .section-lead{
    color:var(--text-muted);
    font-size:17px;
    margin-top:18px;
    max-width:540px;
  }

  .reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .8s ease, transform .8s ease;
  }
  .reveal.in{
    opacity:1;
    transform:translateY(0);
  }

  /* POSITIONING STATEMENT */
  .statement{
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .statement p{
    font-family:var(--serif);
    font-size:clamp(24px,3.4vw,40px);
    line-height:1.4;
    font-weight:400;
    max-width:920px;
  }
  .statement .accent{color:var(--gold);font-style:italic;}
  .statement .accent2{color:var(--teal);font-style:italic;}

  /* MODULES */
  #modules{
    position:relative;
    overflow:hidden;
  }
  #services-particle-canvas{
    position:absolute;inset:0;width:100%;height:100%;z-index:0;opacity:.65;
    pointer-events:none;
  }
  #modules > .container{
    position:relative;z-index:2;
  }
  .modules-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .module-card{
    background:var(--bg);
    padding:48px 40px;
    transition:background .4s ease;
    position:relative;
  }
  .module-card:hover{background:var(--bg-panel);}
  .module-label{
    font-size:12px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-bottom:28px;
  }
  .module-card h3{
    font-family:var(--serif);
    font-size:26px;
    font-weight:400;
    margin-bottom:16px;
  }
  .module-card p{
    color:var(--text-muted);
    font-size:15px;
    margin-bottom:24px;
  }
  .module-list{
    list-style:none;
    display:flex;flex-direction:column;gap:10px;
  }
  .module-list li{
    font-size:14px;
    color:var(--text);
    padding-left:18px;
    position:relative;
  }
  .module-list li::before{
    content:'';
    position:absolute;left:0;top:8px;
    width:6px;height:1px;background:var(--teal);
  }
  .module-flag{
    margin-top:28px;
    display:inline-block;
    font-size:11px;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--teal);
    border:1px solid rgba(62,198,179,.3);
    padding:6px 14px;
    border-radius:100px;
  }

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

  /* PROOF STRIP */
  .proof{
    background:var(--bg-panel);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .proof-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
  }
  .proof-item{
    text-align:left;
    border-left:1px solid var(--line);
    padding-left:24px;
  }
  .proof-num{
    font-family:var(--serif);
    font-size:52px;
    color:var(--gold);
    line-height:1;
  }
  .proof-label{
    margin-top:10px;
    font-size:13px;
    color:var(--text-muted);
    letter-spacing:.03em;
  }
  @media (max-width:900px){
    .proof-grid{grid-template-columns:repeat(2,1fr);row-gap:40px;}
  }

  /* PROCESS */
  .process-list{
    display:flex;flex-direction:column;
  }
  .process-item{
    display:grid;
    grid-template-columns:80px 1fr 1fr;
    gap:40px;
    padding:36px 0;
    border-top:1px solid var(--line);
    align-items:baseline;
  }
  .process-item:last-child{border-bottom:1px solid var(--line);}
  .process-num{
    font-family:var(--serif);
    color:var(--text-muted);
    font-size:16px;
  }
  .process-item h4{
    font-family:var(--serif);
    font-weight:400;
    font-size:22px;
  }
  .process-item p{
    color:var(--text-muted);
    font-size:15px;
  }
  @media (max-width:760px){
    .process-item{grid-template-columns:1fr;gap:10px;}
  }

  /* CONTACT */
  .contact{
    text-align:left;
  }
  .contact h2{
    max-width:760px;
  }
  .contact-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:40px;
    margin-top:60px;
    padding-top:40px;
    border-top:1px solid var(--line);
  }
  .contact-links{
    display:flex;flex-direction:column;gap:14px;
  }
  .contact-links a{
    font-size:15px;
    color:var(--text-muted);
    display:flex;align-items:center;gap:10px;
  }
  .contact-links a:hover{color:var(--gold);}

  /* ABOUT / FOUNDER */
  .about-grid{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:80px;
    align-items:start;
  }
  .about-portrait{
    aspect-ratio:4/5;
    border:1px solid var(--line);
    border-radius:4px;
    background:linear-gradient(155deg, var(--bg-panel), var(--bg-panel-2));
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .about-portrait::before{
    content:'';
    position:absolute;inset:0;
    background:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size:24px 24px;
    opacity:.3;
  }
  .about-mark{
    font-family:var(--serif);
    font-size:64px;
    color:var(--gold);
    opacity:.5;
    position:relative;
    z-index:1;
  }
  .about-credentials{
    margin-top:24px;
    display:flex;flex-direction:column;gap:10px;
  }
  .about-credentials .cred{
    font-size:13px;
    color:var(--text-muted);
    display:flex;
    gap:10px;
    padding-bottom:10px;
    border-bottom:1px solid var(--line);
  }
  .about-credentials .cred span{color:var(--teal);}
  .about-text p{
    color:var(--text-muted);
    font-size:16px;
    margin-bottom:20px;
    max-width:620px;
  }
  .about-text p strong{color:var(--text);font-weight:500;}
  .about-links{
    margin-top:32px;
    display:flex;gap:28px;
  }
  .about-links a{
    font-size:13px;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:var(--gold);
    border-bottom:1px solid rgba(201,166,107,.3);
    padding-bottom:4px;
  }
  .about-links a:hover{border-color:var(--gold);}
  @media (max-width:800px){
    .about-grid{grid-template-columns:1fr;gap:40px;}
    .about-portrait{max-width:220px;}
  }

  /* PRICING */
  .pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .price-card{
    background:var(--bg);
    padding:44px 36px;
    display:flex;
    flex-direction:column;
  }
  .price-card.featured{
    background:var(--bg-panel);
    position:relative;
  }
  .price-card.featured::before{
    content:'Most requested';
    position:absolute;top:0;left:0;right:0;
    background:var(--gold);
    color:#0B0E14;
    font-size:11px;
    letter-spacing:.08em;
    text-transform:uppercase;
    text-align:center;
    padding:8px 0;
    font-weight:600;
  }
  .price-card.featured{padding-top:76px;}
  .price-name{
    font-size:13px;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:var(--text-muted);
    margin-bottom:16px;
  }
  .price-amount{
    font-family:var(--serif);
    font-size:44px;
    color:var(--gold);
    margin-bottom:6px;
  }
  .price-amount span{
    font-size:15px;
    color:var(--text-muted);
    font-family:var(--sans);
  }
  .price-scope{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:28px;
    padding-bottom:28px;
    border-bottom:1px solid var(--line);
  }
  .price-features{
    list-style:none;
    display:flex;flex-direction:column;gap:12px;
    flex:1;
  }
  .price-features li{
    font-size:14px;
    padding-left:20px;
    position:relative;
  }
  .price-features li::before{
    content:'';
    position:absolute;left:0;top:8px;
    width:8px;height:1px;background:var(--teal);
  }
  .price-note{
    margin-top:28px;
    font-size:12px;
    color:var(--text-muted);
    font-style:italic;
  }
  @media (max-width:900px){
    .pricing-grid{grid-template-columns:1fr;}
    .price-card.featured{padding-top:44px;}
    .price-card.featured::before{position:static;display:block;margin:-44px -36px 28px;}
  }
  .pricing-grid.single{
    grid-template-columns:1fr;
    max-width:460px;
    margin:0 auto;
  }

  /* NOT A FIT */
  .not-fit{
    background:var(--bg-panel);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .not-fit-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
  }
  .not-fit-col h4{
    font-family:var(--serif);
    font-weight:400;
    font-size:20px;
    margin-bottom:20px;
  }
  .not-fit-col.yes h4{color:var(--teal);}
  .not-fit-col.no h4{color:var(--text-muted);}
  .not-fit-list{
    list-style:none;
    display:flex;flex-direction:column;gap:14px;
  }
  .not-fit-list li{
    font-size:15px;
    padding-left:24px;
    position:relative;
    color:var(--text-muted);
  }
  .not-fit-col.yes .not-fit-list li::before{
    content:'+';
    position:absolute;left:0;top:-2px;
    color:var(--teal);
    font-family:var(--serif);
  }
  .not-fit-col.no .not-fit-list li::before{
    content:'–';
    position:absolute;left:0;top:-2px;
    color:var(--text-muted);
    font-family:var(--serif);
  }
  @media (max-width:700px){
    .not-fit-grid{grid-template-columns:1fr;gap:36px;}
  }

  /* FAQ */
  .faq-list{
    border-top:1px solid var(--line);
  }
  .faq-item{
    border-bottom:1px solid var(--line);
  }
  .faq-question{
    width:100%;
    background:none;
    border:none;
    color:var(--text);
    font-family:var(--serif);
    font-size:19px;
    text-align:left;
    padding:28px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    cursor:pointer;
  }
  .faq-icon{
    flex-shrink:0;
    width:20px;height:20px;
    position:relative;
  }
  .faq-icon::before, .faq-icon::after{
    content:'';
    position:absolute;
    background:var(--gold);
    top:50%;left:50%;
    transform:translate(-50%,-50%);
  }
  .faq-icon::before{width:14px;height:1px;}
  .faq-icon::after{width:1px;height:14px;transition:transform .3s ease;}
  .faq-item.open .faq-icon::after{transform:translate(-50%,-50%) rotate(90deg) scaleY(0);}
  .faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
  }
  .faq-answer p{
    color:var(--text-muted);
    font-size:15px;
    padding-bottom:28px;
    max-width:640px;
  }

  footer{
    padding:40px 0;
    border-top:1px solid var(--line);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:var(--text-muted);
    flex-wrap:wrap;
    gap:16px;
  }

  /* PROJECTS */
  .projects-lead-stat{
    font-size:14px;
    color:var(--text-muted);
    margin-top:-40px;
    margin-bottom:56px;
  }
  .projects-lead-stat strong{color:var(--gold);font-weight:500;}
  .projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .project-card{
    background:var(--bg);
    padding:40px 34px;
    transition:background .4s ease;
    display:flex;
    flex-direction:column;
  }
  .project-card:hover{background:var(--bg-panel);}
  .project-kind{
    font-size:11px;
    letter-spacing:.1em;
    text-transform:uppercase;
    margin-bottom:22px;
    display:inline-block;
    padding:5px 13px;
    border-radius:100px;
    border:1px solid;
    align-self:flex-start;
  }
  .project-kind.software{color:var(--teal);border-color:rgba(62,198,179,.35);}
  .project-kind.preprint{color:var(--gold);border-color:rgba(201,166,107,.35);}
  .project-kind.client{color:var(--text-muted);border-color:var(--line);}
  .project-card h3{
    font-family:var(--serif);
    font-size:21px;
    font-weight:400;
    margin-bottom:12px;
  }
  .project-card p{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:24px;
    flex:1;
  }
  .project-link{
    font-size:13px;
    color:var(--gold);
    letter-spacing:.03em;
    border-bottom:1px solid rgba(201,166,107,.3);
    padding-bottom:3px;
    align-self:flex-start;
  }
  .project-link:hover{border-color:var(--gold);}
  @media (max-width:900px){
    .projects-grid{grid-template-columns:1fr;}
    .projects-lead-stat{margin-top:0;}
  }

  /* TESTIMONIALS */
  .testimonials{
    background:var(--bg-panel);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .testimonial-viewport{
    overflow:hidden;
  }
  .testimonial-track{
    display:flex;
    transition:transform .6s cubic-bezier(.65,0,.35,1);
  }
  .testimonial-slide{
    flex:0 0 100%;
    max-width:100%;
  }
  .testimonial-mark{
    font-family:var(--serif);
    font-size:64px;
    color:var(--gold);
    opacity:.4;
    line-height:1;
    margin-bottom:8px;
  }
  .testimonial-quote{
    font-family:var(--serif);
    font-size:clamp(20px,2.6vw,28px);
    line-height:1.5;
    font-weight:400;
    max-width:780px;
  }
  .testimonial-author{
    margin-top:36px;
    display:flex;
    align-items:center;
    gap:16px;
  }
  .testimonial-avatar{
    width:48px;height:48px;
    border-radius:50%;
    background:linear-gradient(155deg, var(--bg-panel-2), var(--line));
    border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
    font-family:var(--serif);
    color:var(--gold);
    font-size:16px;
    flex-shrink:0;
  }
  .testimonial-name{font-size:14px;color:var(--text);}
  .testimonial-role{font-size:13px;color:var(--text-muted);margin-top:2px;}
  .testimonial-controls{
    display:flex;
    align-items:center;
    gap:28px;
    margin-top:56px;
  }
  .testimonial-arrow{
    width:40px;height:40px;
    border:1px solid var(--line);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    color:var(--text-muted);
    cursor:pointer;
    font-size:15px;
    transition:border-color .3s ease, color .3s ease;
    flex-shrink:0;
  }
  .testimonial-arrow:hover{border-color:var(--gold);color:var(--gold);}
  .testimonial-dots{
    display:flex;gap:10px;
  }
  .testimonial-dot{
    width:8px;height:8px;
    border-radius:50%;
    background:var(--line);
    cursor:pointer;
    transition:background .3s ease, transform .3s ease;
  }
  .testimonial-dot.active{background:var(--gold);transform:scale(1.25);}
  @media (max-width:700px){
    .testimonial-controls{margin-top:40px;}
  }

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

  a:focus-visible, button:focus-visible{
    outline:2px solid var(--gold);
    outline-offset:3px;
  }

  /* BOOKING MODAL */
  body.modal-open{overflow:hidden;}
  .modal-overlay{
    position:fixed;inset:0;z-index:2000;
    background:rgba(11,14,20,.75);
    backdrop-filter:blur(6px);
    display:flex;align-items:center;justify-content:center;
    padding:24px;
    opacity:0;pointer-events:none;
    transition:opacity .3s ease;
  }
  .modal-overlay.open{opacity:1;pointer-events:auto;}
  .modal-box{
    background:var(--bg-panel);
    border:1px solid var(--line);
    border-radius:14px;
    max-width:480px;width:100%;
    max-height:85vh;
    overflow-y:auto;
    padding:44px;
    position:relative;
    transform:translateY(20px);
    transition:transform .35s ease;
  }
  .modal-overlay.open .modal-box{transform:translateY(0);}
  .modal-close{
    position:absolute;top:20px;right:20px;
    width:34px;height:34px;
    border-radius:50%;
    border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
    color:var(--text-muted);
    cursor:pointer;
    font-size:15px;
    transition:border-color .3s ease, color .3s ease;
  }
  .modal-close:hover{border-color:var(--gold);color:var(--gold);}
  .modal-title{
    font-family:var(--serif);
    font-size:26px;
    font-weight:400;
    margin-bottom:8px;
    padding-right:30px;
  }
  .modal-sub{
    color:var(--text-muted);
    font-size:14px;
    margin-bottom:32px;
    line-height:1.5;
  }
  .modal-options{display:flex;flex-direction:column;gap:14px;}
  .modal-option{
    display:flex;align-items:center;gap:16px;
    padding:18px 20px;
    border:1px solid var(--line);
    border-radius:10px;
    cursor:pointer;
    transition:border-color .3s ease, background .3s ease;
    text-align:left;
    background:none;
    color:var(--text);
    width:100%;
    font-family:var(--sans);
  }
  .modal-option:hover{border-color:var(--gold);background:rgba(201,166,107,.06);}
  .modal-option-icon{
    width:44px;height:44px;flex-shrink:0;
    border-radius:50%;
    background:var(--bg);
    border:1px solid var(--line);
    display:flex;align-items:center;justify-content:center;
    font-size:18px;
    color:var(--teal);
  }
  .modal-option-text h4{
    font-family:var(--serif);
    font-size:17px;
    font-weight:400;
    margin-bottom:4px;
  }
  .modal-option-text p{font-size:13px;color:var(--text-muted);}
  .modal-back{
    display:inline-flex;align-items:center;gap:8px;
    font-size:13px;color:var(--text-muted);
    margin-bottom:24px;cursor:pointer;
  }
  .modal-back:hover{color:var(--gold);}

  .cal-tz-note{font-style:italic;}
  .cal-dates{
    display:flex;gap:10px;
    overflow-x:auto;
    padding-bottom:8px;
    margin-bottom:28px;
  }
  .cal-date{
    flex-shrink:0;width:60px;
    padding:12px 0;
    border:1px solid var(--line);
    border-radius:10px;
    text-align:center;
    cursor:pointer;
    transition:border-color .3s ease, background .3s ease;
  }
  .cal-date:hover{border-color:var(--gold);}
  .cal-date.selected{border-color:var(--gold);background:rgba(201,166,107,.08);}
  .cal-date .cal-day{
    font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--text-muted);
  }
  .cal-date .cal-num{font-family:var(--serif);font-size:19px;margin-top:4px;}
  .cal-slots{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-bottom:28px;
  }
  .cal-slot{
    padding:12px 0;
    text-align:center;
    border:1px solid var(--line);
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    transition:border-color .3s ease, background .3s ease, color .3s ease;
  }
  .cal-slot:hover:not(.booked){border-color:var(--gold);}
  .cal-slot.selected{border-color:var(--gold);background:var(--gold);color:#0B0E14;}
  .cal-slot.booked{opacity:.35;cursor:not-allowed;text-decoration:line-through;}
  .modal-confirm{
    width:100%;
    text-align:center;
    border:none;
  }
  .modal-success{text-align:center;padding:10px 0;}
  .modal-success-mark{
    font-family:var(--serif);
    font-size:46px;
    color:var(--gold);
    margin-bottom:16px;
  }
  @media (max-width:480px){
    .modal-box{padding:32px 24px;}
  }