:root{
      --bg:#0d1117;
      --bg-2:#121926;
      --bg-3:#1a2333;
      --card:rgba(255,255,255,.06);
      --line:rgba(255,255,255,.12);
      --text:#fbf7f1;
      --muted:#ddd4c8;
      --soft:#b8ae9f;
      --blue:#7ab8ff;
      --champagne:#e8d1ac;
      --green:#76d3a5;
      --shadow:0 20px 60px rgba(0,0,0,.35);
      --radius:24px;
      --max:1180px;
      --sans:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      --serif:Georgia, "Times New Roman", serif;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--sans);
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(43,111,255,.16), transparent 30%),
        radial-gradient(circle at top right, rgba(229,200,155,.13), transparent 25%),
        linear-gradient(180deg, #0b0f15 0%, #101722 100%);
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
      overflow-x:hidden;
    }

    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    button,input,textarea{font:inherit}
    .container{width:min(calc(100% - 28px), var(--max)); margin-inline:auto}
    .section{padding:82px 0}
    .section-title{
      font-family:var(--serif);
      font-size:clamp(2rem, 5vw, 3.4rem);
      line-height:1.05;
      letter-spacing:-.03em;
      margin:0 0 12px;
    }
    .section-subtitle{
      color:var(--muted);
      line-height:1.8;
      max-width:820px;
      margin:0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--champagne);
      background:rgba(229,200,155,.08);
      font-size:.82rem;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      margin-bottom:18px;
      backdrop-filter:blur(12px);
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--champagne);
      box-shadow:0 0 16px rgba(229,200,155,.65);
    }

    .topbar{
      position:sticky;
      top:0;
      z-index:100;
      backdrop-filter:blur(16px);
      background:rgba(8,12,18,.72);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar-inner{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .brand-logo{
      width:62px;height:62px;
      border-radius:0;
      display:grid;place-items:center;
      background:transparent;
      border:0;
      overflow:visible;
      flex:0 0 62px;
    }
    .brand-logo img{
      width:100%;
      height:100%;
      object-fit:contain;
      padding:0;
      filter:drop-shadow(0 6px 14px rgba(0,0,0,.28));
    }
    .brand-name{
      font-weight:800;
      font-size:1rem;
      line-height:1.1;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-sub{
      color:var(--muted);
      font-size:.82rem;
      margin-top:4px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .nav-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:52px;
      padding:14px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:700;
      cursor:pointer;
      transition:.25s ease;
      text-align:center;
    }
    .btn-primary{
      color:#111;
      background:linear-gradient(135deg, var(--champagne), #fff1d5);
      box-shadow:0 12px 30px rgba(229,200,155,.16);
    }
    .btn-primary:hover{transform:translateY(-2px)}
    .btn-secondary{
      color:#fff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.12);
    }
    .btn-secondary:hover{background:rgba(255,255,255,.1)}

    .hero{
      position:relative;
      min-height:78svh;
      display:flex;
      align-items:center;
      overflow:hidden;
      isolation:isolate;
    }
    .hero-media{
      position:absolute;
      inset:0;
      z-index:-3;
    }
    .hero-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
    }
    .hero-overlay{
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(90deg, rgba(8,10,14,.92) 0%, rgba(8,10,14,.76) 45%, rgba(8,10,14,.58) 100%),
        radial-gradient(circle at 20% 20%, rgba(43,111,255,.2), transparent 28%);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:28px;
      align-items:center;
      width:min(calc(100% - 28px), var(--max));
      margin-inline:auto;
      padding:64px 0;
    }
    .hero-copy{
      max-width:760px;
    }
    .hero h1{
      margin:0 0 16px;
      font-family:var(--serif);
      font-size:clamp(2.6rem, 7vw, 5.2rem);
      line-height:.95;
      letter-spacing:-.05em;
    }
    .hero p{
      margin:0 0 26px;
      color:var(--muted);
      line-height:1.82;
      max-width:700px;
      font-size:1.04rem;
    }

    .quick-grid{
      display:grid;
      gap:14px;
      grid-template-columns:1fr;
      margin-top:18px;
    }
    .quick-card{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
      backdrop-filter:blur(12px);
    }
    .quick-card strong{
      display:block;
      margin-bottom:6px;
      font-size:.98rem;
    }
    .quick-card span{
      color:var(--muted);
      font-size:.93rem;
      line-height:1.65;
    }

    .grid-2,.grid-3{
      display:grid;
      gap:18px;
    }
    .glass-card{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
    }

    .bullet-list{
      display:grid;
      gap:12px;
      margin-top:20px;
    }
    .bullet{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:var(--muted);
      line-height:1.7;
    }
    .bullet i{
      width:26px;height:26px;flex:0 0 26px;
      display:grid;place-items:center;
      border-radius:999px;
      background:rgba(118,211,165,.12);
      border:1px solid rgba(118,211,165,.2);
      color:var(--green);
      font-style:normal;
      margin-top:2px;
    }

    .service-box{
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.08);
    }
    .service-box h3{
      margin:0 0 10px;
      font-size:1.08rem;
    }
    .service-box p{
      margin:0;
      color:var(--muted);
      line-height:1.72;
    }

    .city-chips{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .chip{
      padding:11px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      font-size:.92rem;
    }

    .faq{
      display:grid;
      gap:14px;
      margin-top:28px;
    }
    .faq-item{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      overflow:hidden;
    }
    .faq-item button{
      width:100%;
      padding:20px 22px;
      background:none;
      border:none;
      color:#fff;
      font-weight:700;
      text-align:left;
      display:flex;
      justify-content:space-between;
      gap:12px;
      cursor:pointer;
    }
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
      color:var(--muted);
      line-height:1.75;
      padding:0 22px;
    }
    .faq-item.open .faq-answer{
      max-height:220px;
      padding:0 22px 20px;
    }

    .cta-panel{
      display:grid;
      gap:14px;
      align-items:center;
      padding:28px;
      border-radius:30px;
      background:
        linear-gradient(135deg, rgba(229,209,172,.14), rgba(43,111,255,.08)),
        rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
    }
    .cta-panel h2{
      margin:0;
      font-family:var(--serif);
      font-size:clamp(1.8rem, 4vw, 2.8rem);
      line-height:1.05;
    }
    .cta-panel p{
      margin:0;
      color:var(--muted);
      line-height:1.8;
      max-width:760px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:4px;
    }

    .site-footer{
      padding:42px 0 40px;
      border-top:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
      overflow:hidden;
    }
    .footer-grid,
    .footer-grid > div,
    .footer-brand,
    .footer-copy,
    .footer-credits{
      min-width:0;
    }
    .footer-grid{
      display:grid;
      gap:20px;
    }
    .footer-brand{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .footer-brand .brand-logo{
      width:72px;
      height:72px;
      flex-basis:72px;
    }
    .footer-brand > div:last-child{
      min-width:0;
      flex:1 1 auto;
    }
    .site-footer .brand-name,
    .site-footer .brand-sub,
    .footer-copy,
    .footer-credits{
      white-space:normal !important;
      overflow-wrap:anywhere;
      word-break:break-word;
    }
    .footer-copy{
      color:var(--muted);
      line-height:1.7;
      max-width:760px;
      margin:0;
    }
    .footer-credits{
      color:var(--soft);
      line-height:1.7;
      font-size:.94rem;
    }

    @media (min-width: 760px){
      .hero-grid{
        grid-template-columns:1.18fr .82fr;
      }
      .quick-grid{
        grid-template-columns:repeat(3, 1fr);
      }
      .grid-2{
        grid-template-columns:repeat(2, 1fr);
      }
      .grid-3{
        grid-template-columns:repeat(3, 1fr);
      }
      .footer-grid{
        grid-template-columns:1fr .8fr;
        align-items:center;
      }
    }

    @media (max-width: 680px){
      .footer-brand{
        display:grid;
        grid-template-columns:72px 1fr;
        gap:12px;
        align-items:start;
      }
      .site-footer .brand-name{
        font-size:1.05rem;
        line-height:1.2;
      }
      .site-footer .brand-sub{
        font-size:.86rem;
        line-height:1.45;
        margin-top:6px;
      }
    }

    @media (max-width: 580px){
      .topbar-inner{
        padding:10px 0;
        align-items:flex-start;
        flex-direction:column;
      }
      .nav-actions{
        width:100%;
      }
      .nav-actions .btn{
        flex:1 1 0;
      }
      .hero{
        min-height:auto;
      }
      .hero h1{
        font-size:2.5rem;
      }
    }
/* Reusable layout utilities formerly embedded in HTML */
.title-local{font-size:clamp(1.8rem,4vw,2.7rem)}
.mt-14{margin-top:14px}.mt-16{margin-top:16px}.mt-22{margin-top:22px}.mt-28{margin-top:28px}
.heading-card-sm{margin:0 0 10px;font-size:1.4rem}
.heading-card-lg{margin:0 0 10px;font-size:1.7rem;line-height:1.1}
.heading-tight{margin:0 0 6px;font-size:1.65rem}
.heading-link{margin:0 0 8px;font-size:1.4rem}
.muted-copy{margin:0;color:var(--muted);line-height:1.75}
.is-muted{opacity:.86}.section-flush-top{padding-top:0}
