:root{
    --black:#0b0b0c;
    --charcoal:#15151a;
    --charcoal-2:#1c1c22;
    --line:rgba(176,141,63,0.22);
    --brass:#b08d3f;
    --brass-light:#d9b873;
    --champagne:#e8dcc4;
    --ivory:#f5f3ee;
    --gray:#9a968d;
    --gray-dim:#65625c;
    --radius:2px;
    --container:1240px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--black);
    color:var(--ivory);
    font-family:'Inter',sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{margin:0; padding:0; list-style:none;}
  h1,h2,h3,h4{font-family:'Fraunces',serif; font-weight:500; margin:0; color:var(--ivory);}
  p{margin:0;}
  button{font-family:inherit; cursor:pointer;}
  .container{max-width:var(--container); margin:0 auto; padding:0 24px;}
  :focus-visible{outline:2px solid var(--brass-light); outline-offset:3px;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
    html{scroll-behavior:auto;}
  }

  /* ---------- Coachline signature motif ---------- */
  .coachline{
    height:6px;
    width:100%;
    position:relative;
    background:linear-gradient(90deg, transparent 0%, var(--brass) 12%, var(--brass-light) 50%, var(--brass) 88%, transparent 100%);
    opacity:.85;
  }
  .coachline::after{
    content:'';
    position:absolute;
    left:14%; right:14%;
    top:50%;
    height:1px;
    background:rgba(11,11,12,0.55);
  }
  .coachline.thin{height:2px;}
  .coachline.short{max-width:120px; margin:0;}

  .eyebrow{
    display:flex; align-items:center; gap:14px;
    font-size:12.5px; letter-spacing:.22em; text-transform:uppercase;
    color:var(--brass-light); font-weight:600; margin-bottom:18px;
  }
  .eyebrow .coachline.short{width:46px;}

  .section{padding:108px 0;}
  .section.alt{background:var(--charcoal);}
  @media (max-width:720px){ .section{padding:72px 0;} }

  .section-head{max-width:680px; margin-bottom:56px;}
  .section-head h2{font-size:clamp(28px,4vw,42px); line-height:1.18; letter-spacing:-.01em;}
  .section-head p{margin-top:16px; color:var(--gray); font-size:16.5px; max-width:560px;}

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:15px 30px; font-size:14.5px; font-weight:600; letter-spacing:.04em;
    text-transform:uppercase; border-radius:1px; border:1px solid transparent;
    transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-gold{background:var(--brass); color:#0b0b0c;}
  .btn-gold:hover{background:var(--brass-light); transform:translateY(-2px);}
  .btn-outline{border-color:rgba(245,243,238,.35); color:var(--ivory); background:transparent;}
  .btn-outline:hover{border-color:var(--brass-light); color:var(--brass-light); transform:translateY(-2px);}
  .btn svg{width:17px; height:17px; flex:none;}

  /* ---------- Reveal animation ---------- */
  .reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}
  .reveal.d1{transition-delay:.08s;}
  .reveal.d2{transition-delay:.16s;}
  .reveal.d3{transition-delay:.24s;}
  .reveal.d4{transition-delay:.32s;}

  /* ---------- Header ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:1000;
    background:rgba(11,11,12,.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid transparent;
    transition:padding .3s ease, border-color .3s ease, background .3s ease;
  }
  header .bar{display:flex; align-items:center; justify-content:space-between; padding:24px 0;}
  header.scrolled .bar{padding:14px 0;}
  header.scrolled{border-bottom-color:var(--line);}

  .logo{display:flex; flex-direction:column; line-height:1;}
  .logo .name{font-family:'Fraunces',serif; font-size:21px; letter-spacing:.04em; color:var(--ivory); font-weight:500;}
  .logo .tag{font-size:9.5px; letter-spacing:.32em; color:var(--brass-light); margin-top:4px;}

  nav.primary-nav{display:flex; align-items:center; gap:34px;}
  nav.primary-nav a{font-size:13.5px; letter-spacing:.03em; color:var(--gray); transition:color .2s;}
  nav.primary-nav a:hover{color:var(--brass-light);}

  .header-actions{display:flex; align-items:center; gap:18px;}
  .phone-link{display:flex; align-items:center; gap:8px; font-size:14.5px; font-weight:500; color:var(--ivory);}
  .phone-link svg{width:16px; height:16px; color:var(--brass-light);}
  .header-actions .btn{padding:12px 22px; font-size:12.5px;}

  .menu-toggle{display:none; flex-direction:column; gap:5px; width:26px; background:none; border:none; padding:6px;}
  .menu-toggle span{height:1.5px; width:100%; background:var(--ivory); transition:transform .3s, opacity .3s;}
  .menu-toggle.active span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
  .menu-toggle.active span:nth-child(2){opacity:0;}
  .menu-toggle.active span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

  .mobile-nav{
    position:fixed; inset:0; background:var(--black); z-index:999;
    display:flex; flex-direction:column; justify-content:center; padding:32px;
    transform:translateY(-100%); transition:transform .35s ease; gap:28px;
  }
  .mobile-nav.open{transform:translateY(0);}
  .mobile-nav a{font-family:'Fraunces',serif; font-size:26px; color:var(--ivory);}
  .mobile-nav .mob-contact{margin-top:24px; display:flex; flex-direction:column; gap:16px;}

  @media (max-width:920px){
    nav.primary-nav{display:none;}
    .header-actions .btn-outline{display:none;}
    .menu-toggle{display:flex;}
  }
  @media (max-width:560px){
    .header-actions .phone-link span{display:none;}
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative; min-height:100vh; display:flex; align-items:flex-end;
    overflow:hidden; background:var(--black);
  }
  .hero-art{position:absolute; inset:0; z-index:0;}
  .hero-art svg{width:100%; height:100%; object-fit:cover;}
  .hero-scrim{
    position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(11,11,12,.35) 0%, rgba(11,11,12,.55) 45%, rgba(11,11,12,.96) 100%);
  }
  .hero-content{position:relative; z-index:2; width:100%; padding:170px 0 56px;}
  .hero-content .eyebrow{color:var(--brass-light);}
  .hero h1{font-size:clamp(34px,5.4vw,64px); line-height:1.08; max-width:920px; letter-spacing:-.01em;}
  .hero .sub{margin-top:22px; max-width:600px; color:var(--champagne); font-size:17px; line-height:1.65;}
  .hero .cta-row{display:flex; gap:18px; margin-top:40px; flex-wrap:wrap;}

  .trust-row{
    margin-top:56px; padding-top:30px; border-top:1px solid var(--line);
    display:flex; gap:40px; flex-wrap:wrap;
  }
  .trust-item{display:flex; align-items:center; gap:10px; font-size:12.5px; letter-spacing:.05em; text-transform:uppercase; color:var(--gray);}
  .trust-item svg{width:18px; height:18px; color:var(--brass-light); flex:none;}

  @media (max-width:720px){
    .hero-content{padding:140px 0 40px;}
    .trust-row{gap:22px 28px;}
  }

  /* ---------- Service cards ---------- */
  .grid-services{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
  .service-card{background:var(--black); padding:38px 30px; transition:background .3s ease;}
  .service-card:hover{background:var(--charcoal-2);}
  .service-card .icon-wrap{
    width:48px; height:48px; border:1px solid var(--line); border-radius:50%;
    display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  }
  .service-card svg{width:21px; height:21px; color:var(--brass-light);}
  .service-card h3{font-size:18px; font-weight:500; margin-bottom:10px;}
  .service-card p{color:var(--gray); font-size:14.5px; line-height:1.55;}
  @media (max-width:980px){ .grid-services{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .grid-services{grid-template-columns:1fr;} }

  /* ---------- Why choose us ---------- */
  .why-wrap{display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:start;}
  .why-visual{position:sticky; top:140px;}
  .why-visual .big-quote{font-family:'Fraunces',serif; font-style:italic; font-size:28px; line-height:1.4; color:var(--champagne); border-left:2px solid var(--brass); padding-left:26px;}
  .why-list{display:grid; grid-template-columns:1fr 1fr; gap:28px 36px;}
  .why-item{display:flex; gap:14px;}
  .why-item .check{
    width:26px; height:26px; border-radius:50%; background:rgba(176,141,63,.12); border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; flex:none; margin-top:2px;
  }
  .why-item svg{width:13px; height:13px; color:var(--brass-light);}
  .why-item h4{font-size:15.5px; font-weight:600; margin-bottom:4px;}
  .why-item p{font-size:13.8px; color:var(--gray); line-height:1.5;}
  @media (max-width:920px){
    .why-wrap{grid-template-columns:1fr; gap:40px;}
    .why-visual{position:static;}
    .why-list{grid-template-columns:1fr;}
  }

  /* ---------- Fleet ---------- */
  .fleet-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
  .fleet-card{background:var(--charcoal); border:1px solid var(--line); display:flex; flex-direction:column;}
  .fleet-card-art{
    position:relative; height:178px; overflow:hidden;
    display:flex; align-items:flex-end; justify-content:center;
    background:radial-gradient(ellipse at 50% 100%, #20201f 0%, #0c0c0d 72%);
  }
  .fleet-card-art img{
    position:relative; z-index:1; max-width:94%; max-height:76%; object-fit:contain;
    margin-bottom:8px; filter:contrast(1.07) brightness(.95) saturate(.82);
  }
  .fc-index{position:absolute; top:12px; left:14px; font-size:10px; letter-spacing:.12em; color:var(--gray-dim); z-index:2;}
  .fc-modeltag{position:absolute; top:12px; right:14px; font-size:9px; letter-spacing:.08em; text-transform:uppercase; color:var(--brass-light); z-index:2; text-align:right; max-width:46%;}
  .fleet-card-body{padding:22px 22px 26px; border-top:1px solid var(--line);}
  .fc-top{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:8px;}
  .fc-top h3{font-size:17px; line-height:1.25;}
  .fc-type{font-size:10px; letter-spacing:.06em; text-transform:uppercase; color:var(--brass-light); border:1px solid var(--line); padding:3px 9px; border-radius:30px; white-space:nowrap;}
  .fc-pax{display:flex; align-items:center; gap:7px; font-size:12.5px; color:var(--gray); margin-bottom:13px;}
  .fc-pax svg{width:14px; height:14px; color:var(--brass-light); flex:none;}
  .fc-desc{font-size:12.8px; color:var(--gray); line-height:1.55; margin-bottom:16px;}
  .fleet-badges{display:flex; flex-wrap:wrap; gap:7px; margin-bottom:20px;}
  .fleet-badge{font-size:10.3px; letter-spacing:.02em; color:var(--champagne); border:1px solid var(--line); padding:5px 10px; border-radius:30px; display:flex; align-items:center; gap:5px;}
  .fleet-badge svg{width:10px; height:10px; color:var(--brass-light); flex:none;}
  .fleet-card-body .btn{width:100%; padding:13px 18px; font-size:12.5px;}
  @media (max-width:1100px){ .fleet-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .fleet-grid{grid-template-columns:1fr;} }

  /* ---------- Service areas ---------- */
  .areas-wrap{display:grid; grid-template-columns:1.2fr .8fr; gap:60px;}
  .county-block{margin-bottom:32px;}
  .county-block h4{font-size:15px; letter-spacing:.06em; text-transform:uppercase; color:var(--brass-light); margin-bottom:14px; font-family:'Inter',sans-serif; font-weight:600;}
  .chip-row{display:flex; flex-wrap:wrap; gap:10px;}
  .chip{
    font-size:13px; padding:8px 16px; border:1px solid var(--line); color:var(--champagne);
    border-radius:30px; transition:border-color .2s, color .2s;
  }
  .chip:hover{border-color:var(--brass); color:var(--brass-light);}
  .note-line{margin-top:6px; font-size:13.5px; color:var(--gray-dim); font-style:italic;}

  .side-panel{background:var(--black); border:1px solid var(--line); padding:34px;}
  .side-panel h4{font-size:14px; letter-spacing:.06em; text-transform:uppercase; color:var(--brass-light); margin-bottom:18px;}
  .airport-row{display:flex; justify-content:space-between; padding:13px 0; border-bottom:1px solid var(--line); font-size:14px;}
  .airport-row span:last-child{color:var(--gray-dim); font-size:12.5px; letter-spacing:.05em;}
  .dest-list{margin-top:30px;}
  .dest-list li{padding:10px 0; border-bottom:1px solid var(--line); font-size:14px; color:var(--gray); display:flex; gap:10px; align-items:center;}
  .dest-list li svg{width:13px; height:13px; color:var(--brass-light); flex:none;}
  @media (max-width:920px){ .areas-wrap{grid-template-columns:1fr;} }

  /* ---------- Testimonials ---------- */
  .testi-shell{max-width:760px; margin:0 auto; text-align:center;}
  .testi-mark{font-family:'Fraunces',serif; font-size:64px; color:var(--brass); line-height:1; margin-bottom:6px;}
  .testi-slide{display:none;}
  .testi-slide.active{display:block; animation:fadeIn .6s ease;}
  @keyframes fadeIn{from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);}}
  .testi-slide p.quote{font-family:'Fraunces',serif; font-size:clamp(19px,2.6vw,25px); line-height:1.55; color:var(--ivory); font-style:italic;}
  .testi-meta{margin-top:24px; display:flex; flex-direction:column; align-items:center; gap:6px;}
  .stars{display:flex; gap:3px;}
  .stars svg{width:15px; height:15px; color:var(--brass-light);}
  .testi-name{font-size:13.5px; letter-spacing:.04em; color:var(--gray); text-transform:uppercase;}
  .testi-controls{display:flex; align-items:center; justify-content:center; gap:24px; margin-top:40px;}
  .testi-controls button{
    width:42px; height:42px; border-radius:50%; border:1px solid var(--line); background:transparent; color:var(--ivory);
    display:flex; align-items:center; justify-content:center; transition:border-color .2s, color .2s;
  }
  .testi-controls button:hover{border-color:var(--brass); color:var(--brass-light);}
  .testi-controls svg{width:16px; height:16px;}
  .testi-dots{display:flex; gap:8px;}
  .testi-dots span{width:6px; height:6px; border-radius:50%; background:var(--line); cursor:pointer; transition:background .2s;}
  .testi-dots span.active{background:var(--brass-light);}
  .testi-disclaimer{margin-top:46px; text-align:center; font-size:11.5px; color:var(--gray-dim); letter-spacing:.02em;}

  /* ---------- Quote form ---------- */
  .quote-wrap{display:grid; grid-template-columns:.85fr 1.15fr; gap:60px;}
  .quote-side h2{font-size:clamp(26px,3.6vw,38px); margin-bottom:18px;}
  .quote-side p{color:var(--gray); font-size:15.5px; margin-bottom:30px;}
  .quote-side .qa-item{display:flex; gap:14px; margin-bottom:22px; align-items:flex-start;}
  .quote-side .qa-item svg{width:18px; height:18px; color:var(--brass-light); margin-top:2px; flex:none;}
  .quote-side .qa-item .t{font-size:14.5px; color:var(--ivory); font-weight:500;}
  .quote-side .qa-item .d{font-size:13px; color:var(--gray-dim);}

  .form-panel{background:var(--charcoal); border:1px solid var(--line); padding:40px;}
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .field{display:flex; flex-direction:column; gap:8px;}
  .field.full{grid-column:1/-1;}
  .field label{font-size:12px; letter-spacing:.05em; text-transform:uppercase; color:var(--gray);}
  .field input, .field textarea, .field select{
    background:var(--black); border:1px solid var(--line); color:var(--ivory);
    padding:12px 14px; font-size:14.5px; font-family:inherit; border-radius:1px;
  }
  .field input:focus, .field textarea:focus, .field select:focus{border-color:var(--brass);}
  .field textarea{resize:vertical; min-height:90px;}
  .time-row{display:flex; gap:8px;}
  .time-row select{
    flex:1; background:var(--black); border:1px solid var(--line); color:var(--ivory);
    padding:12px 8px; font-size:14px; font-family:inherit; border-radius:1px; min-width:0;
  }
  .time-row select:focus{border-color:var(--brass);}
  .time-row select:invalid{color:var(--gray-dim);}
  .form-panel .submit-row{margin-top:8px;}
  .form-panel .submit-row .btn{width:100%;}
  .form-note{font-size:12px; color:var(--gray-dim); margin-top:14px; text-align:center;}

  /* ---------- Pickup date & time picker ---------- */
  .dt-trigger{cursor:pointer; user-select:none;}
  .dt-value{
    background:var(--black); border:1px solid var(--line); color:var(--ivory);
    padding:12px 14px; font-size:14.5px; border-radius:1px; transition:border-color .2s;
  }
  .dt-trigger:hover .dt-value, .dt-trigger:focus .dt-value{border-color:var(--brass);}
  .dt-trigger.has-value .dt-value{color:var(--champagne);}
  .dt-trigger.error .dt-value{border-color:#b5563f;}

  .dt-overlay{
    position:fixed; inset:0; z-index:2000; background:rgba(6,6,7,.72);
    display:none; align-items:center; justify-content:center; padding:20px;
    backdrop-filter:blur(3px);
  }
  .dt-overlay.open{display:flex;}
  .dt-dialog{
    background:var(--charcoal); border:1px solid var(--line); width:340px; max-width:100%;
    padding:28px 26px 22px; position:relative; box-shadow:0 24px 60px rgba(0,0,0,.55);
  }
  .dt-label{font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-dim); margin-bottom:18px;}
  .dt-screen{display:none;}
  .dt-screen.active{display:block; animation:fadeIn .3s ease;}

  .dt-month-nav{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px;}
  .dt-month-nav span{font-family:'Fraunces',serif; font-size:18px; color:var(--ivory);}
  .dt-chev{
    background:none; border:1px solid var(--line); color:var(--ivory); width:32px; height:32px;
    border-radius:50%; font-size:17px; line-height:1; display:flex; align-items:center; justify-content:center;
    transition:border-color .2s, color .2s, opacity .2s;
  }
  .dt-chev:hover{border-color:var(--brass); color:var(--brass-light);}
  .dt-chev:disabled{opacity:.25; cursor:default;}
  .dt-chev:disabled:hover{border-color:var(--line); color:var(--ivory);}

  .dt-weekdays{display:grid; grid-template-columns:repeat(7,1fr); text-align:center; margin-bottom:6px;}
  .dt-weekdays span{font-size:11px; color:var(--gray-dim); letter-spacing:.04em;}
  .dt-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:4px;}
  .dt-day{
    aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:13.5px;
    color:var(--champagne); border-radius:50%; border:1px solid transparent; background:none;
    transition:background .2s, border-color .2s, color .2s;
  }
  .dt-day:hover:not(:disabled){border-color:var(--brass);}
  .dt-day:disabled{color:var(--gray-dim); opacity:.4; cursor:default;}
  .dt-day.is-today{border-color:var(--brass-light);}
  .dt-day.is-selected{background:var(--brass); color:#0b0b0c; border-color:var(--brass);}
  .dt-day.is-blank{visibility:hidden;}

  .dt-actions{display:flex; justify-content:flex-end; gap:22px; margin-top:22px;}
  .dt-text-btn{
    background:none; border:none; color:var(--gray); font-size:13px; letter-spacing:.04em;
    text-transform:uppercase; font-weight:600; padding:8px 4px; transition:color .2s;
  }
  .dt-text-btn:hover{color:var(--ivory);}
  .dt-text-btn.gold{color:var(--brass-light);}
  .dt-text-btn.gold:hover{color:var(--ivory);}
  .dt-text-btn:disabled{opacity:.35; cursor:default; color:var(--gray);}

  .dt-back{
    position:absolute; top:24px; left:26px; background:none; border:none; color:var(--gray);
    font-size:20px; width:28px; height:28px; display:flex; align-items:center; justify-content:center;
    transition:color .2s;
  }
  .dt-back:hover{color:var(--brass-light);}
  .dt-readout{text-align:center; margin-bottom:18px;}
  .dt-day-label{font-size:13px; color:var(--gray); letter-spacing:.03em;}
  .dt-time-label{font-family:'Fraunces',serif; font-size:34px; color:var(--ivory); margin-top:4px;}

  .dt-clock{
    position:relative; width:230px; height:230px; border-radius:50%; background:var(--black);
    border:1px solid var(--line); margin:0 auto 22px;
  }
  .dt-num{
    position:absolute; width:34px; height:34px; border-radius:50%; display:flex; align-items:center;
    justify-content:center; font-size:13px; color:var(--champagne); transform:translate(-50%,-50%);
    transition:background .2s, color .2s;
  }
  .dt-num:hover{color:var(--brass-light);}
  .dt-num.active{background:var(--brass); color:#0b0b0c;}
  .dt-center-dot{position:absolute; top:50%; left:50%; width:6px; height:6px; border-radius:50%; background:var(--brass-light); transform:translate(-50%,-50%); z-index:2;}
  .dt-hand{
    position:absolute; top:50%; left:50%; height:2px; background:var(--brass); transform-origin:0 50%;
    z-index:1;
  }

  .dt-ampm{display:flex; justify-content:center; gap:12px; margin-bottom:6px;}
  .dt-period{
    border:1px solid var(--line); background:transparent; color:var(--gray); font-size:12.5px;
    letter-spacing:.06em; padding:8px 20px; border-radius:30px; transition:all .2s;
  }
  .dt-period:hover{border-color:var(--brass);}
  .dt-period.active{background:var(--brass); color:#0b0b0c; border-color:var(--brass);}

  /* ---------- Direct call popover ---------- */
  .call-overlay{
    position:fixed; inset:0; z-index:2100; background:rgba(6,6,7,.72);
    display:none; align-items:center; justify-content:center; padding:20px;
    backdrop-filter:blur(3px);
  }
  .call-overlay.open{display:flex;}
  .call-dialog{
    position:relative; background:var(--charcoal); border:1px solid var(--line); width:340px; max-width:100%;
    padding:38px 30px 30px; text-align:center; box-shadow:0 24px 60px rgba(0,0,0,.55);
  }
  .call-close{
    position:absolute; top:14px; right:14px; background:none; border:none; color:var(--gray);
    font-size:22px; width:30px; height:30px; line-height:1; transition:color .2s;
  }
  .call-close:hover{color:var(--brass-light);}
  .call-icon-wrap{
    width:54px; height:54px; border-radius:50%; border:1px solid var(--brass); margin:0 auto 18px;
    display:flex; align-items:center; justify-content:center;
  }
  .call-icon-wrap svg{width:22px; height:22px; color:var(--brass-light);}
  .call-label{font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--gray-dim); margin-bottom:10px;}
  .call-number{font-family:'Fraunces',serif; font-size:28px; color:var(--ivory); margin-bottom:24px;}
  .call-actions{display:flex; flex-direction:column; gap:12px;}
  .call-actions .btn{width:100%;}
  .call-note{margin-top:18px; font-size:12px; color:var(--gray-dim);}



  .thanks-panel{display:none; text-align:center; padding:50px 20px;}
  .thanks-panel.show{display:block;}
  .thanks-panel .icon-wrap{width:60px; height:60px; border:1px solid var(--brass); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px;}
  .thanks-panel svg{width:24px; height:24px; color:var(--brass-light);}
  .thanks-panel h3{font-size:22px; margin-bottom:12px;}
  .thanks-panel p{color:var(--gray); font-size:15px; max-width:380px; margin:0 auto;}
  @media (max-width:920px){ .quote-wrap{grid-template-columns:1fr; gap:40px;} }
  @media (max-width:600px){ .form-grid{grid-template-columns:1fr;} .form-panel{padding:26px;} }

  /* ---------- Contact ---------- */
  .contact-wrap{display:grid; grid-template-columns:.9fr 1.1fr; gap:0; border:1px solid var(--line);}
  .contact-info{padding:48px; display:flex; flex-direction:column; gap:26px; background:var(--black);}
  .ci-item{display:flex; gap:16px;}
  .ci-item svg{width:19px; height:19px; color:var(--brass-light); flex:none; margin-top:2px;}
  .ci-item .t{font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--gray-dim); margin-bottom:4px;}
  .ci-item .v{font-size:15.5px; color:var(--ivory);}
  .map-embed{min-height:380px; filter:grayscale(.3) contrast(1.1) brightness(.85);}
  .map-embed iframe{width:100%; height:100%; min-height:380px; border:0; display:block;}
  @media (max-width:920px){ .contact-wrap{grid-template-columns:1fr;} }

  /* ---------- Footer ---------- */
  footer{background:var(--charcoal); padding:80px 0 0;}
  .foot-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:50px; padding-bottom:60px;}
  .foot-col h5{font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--brass-light); margin-bottom:20px; font-weight:600;}
  .foot-col ul li{margin-bottom:11px; font-size:14px; color:var(--gray);}
  .foot-col ul li a:hover{color:var(--brass-light);}
  .foot-about p{color:var(--gray); font-size:13.8px; line-height:1.6; max-width:280px; margin-top:14px;}
  .foot-social{display:flex; gap:12px; margin-top:22px;}
  .foot-social a{width:36px; height:36px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:border-color .2s, color .2s;}
  .foot-social a:hover{border-color:var(--brass); color:var(--brass-light);}
  .foot-social svg{width:15px; height:15px;}
  .foot-bottom{border-top:1px solid var(--line); padding:26px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; font-size:12.5px; color:var(--gray-dim);}
  .foot-bottom .links{display:flex; gap:24px;}
  .foot-bottom .links a:hover{color:var(--brass-light);}
  @media (max-width:860px){ .foot-grid{grid-template-columns:1fr 1fr; gap:40px 30px;} }
  @media (max-width:560px){ .foot-grid{grid-template-columns:1fr;} .foot-bottom{flex-direction:column; align-items:flex-start;} }

  /* ---------- Floating buttons ---------- */
  .floating-stack{position:fixed; right:22px; bottom:26px; z-index:900; display:flex; flex-direction:column; gap:12px; align-items:flex-end;}
  .float-btn{
    width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    box-shadow:0 6px 22px rgba(0,0,0,.45); transition:transform .2s ease;
  }
  .float-btn:hover{transform:scale(1.07);}
  .float-btn svg{width:21px; height:21px;}
  .float-call{background:var(--brass); color:#0b0b0c;}
  .float-text{background:var(--charcoal-2); color:var(--ivory); border:1px solid var(--line);}
  .float-quote{background:var(--ivory); color:#0b0b0c;}
  @media (max-width:560px){
    .float-btn{width:48px; height:48px;}
    .float-btn svg{width:18px; height:18px;}
  }
