:root{
    --ink:#0b0a08;
    --panel:#151209;
    --gold:#f5b400;
    --gold-bright:#ffd23f;
    --cream:#fff6e2;
    --amber-shadow:#5c3d00;
    --muted:#c9bfa6;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  body{
    background:var(--ink);
    font-family:'Inter',sans-serif;
    color:var(--cream);
    overflow-x:hidden;
  }

  /* ===== HERO ===== */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:28px 20px 60px;
    background:
      radial-gradient(ellipse at 75% 20%, rgba(245,180,0,0.35), transparent 55%),
      radial-gradient(ellipse at 15% 85%, rgba(245,180,0,0.12), transparent 60%),
      linear-gradient(180deg, #0b0a08 0%, #151209 100%);
    overflow:hidden;
  }

  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
      repeating-linear-gradient(115deg, rgba(245,180,0,0.05) 0px, rgba(245,180,0,0.05) 1px, transparent 1px, transparent 60px);
    opacity:.6;
    pointer-events:none;
  }

  /* crack/shine signature line across hero */
  .shine-line{
    position:absolute;
    top:0; left:-10%;
    width:2px; height:140%;
    background:linear-gradient(180deg, transparent, var(--gold-bright), transparent);
    transform:rotate(12deg);
    filter:blur(1px);
  }

  .badge-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
  }
  .shield-icon{
    width:34px;height:34px;
    display:flex;align-items:center;justify-content:center;
    background:var(--gold);
    border-radius:9px;
    color:var(--ink);
    font-size:18px;
  }
  .brand-name{
    font-family:'Unbounded',sans-serif;
    font-weight:700;
    font-size:15px;
    letter-spacing:2px;
    color:var(--cream);
  }

  .pill{
    display:inline-block;
    background:var(--gold);
    color:#1a1300;
    font-weight:700;
    font-size:12px;
    letter-spacing:1.5px;
    padding:7px 16px;
    border-radius:999px;
    margin-bottom:18px;
  }

  h1{
    font-family:'Unbounded',sans-serif;
    line-height:1.05;
  }
  .line-main{
    font-size:clamp(30px, 9vw, 46px);
    font-weight:900;
    color:var(--gold-bright);
    display:block;
    text-shadow:0 2px 24px rgba(245,180,0,0.35);
  }
  .line-sub{
    font-size:clamp(15px, 4.4vw, 20px);
    font-weight:500;
    color:var(--cream);
    display:block;
    margin-top:10px;
    letter-spacing:.3px;
  }

  .tagline{
    margin-top:16px;
    font-size:15px;
    color:var(--muted);
  }

  .cta-row{
    margin-top:28px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  .btn{
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:14.5px;
    padding:15px 22px;
    border-radius:12px;
    border:none;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
  }
  .btn-primary{
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    color:#1a1300;
    box-shadow:0 8px 24px rgba(245,180,0,0.35);
  }
  .btn-secondary{
    background:transparent;
    color:var(--cream);
    border:1.5px solid rgba(255,246,226,0.35);
  }

  /* phone mock */
  .phone-wrap{
    position:relative;
    margin:38px auto 0;
    width:min(92vw, 420px);
    transition: width .3s ease;
  }
  .phone{
    position:relative;
    background:#0e0d0b;
    border:3px solid #2a2517;
    border-radius:34px;
    padding:14px 12px;
    box-shadow:0 30px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(245,180,0,0.15);
  }
  .phone-screen{
    background:linear-gradient(160deg,#1a1608,#0b0a08);
    border-radius:22px;
    padding:16px 14px 20px;
  }
  .screen-brand{
    font-family:'Unbounded',sans-serif;
    font-weight:700;
    font-size:15px;
    color:var(--gold-bright);
    margin-bottom:2px;
  }
  .screen-sub{
    font-size:10.5px;
    color:var(--muted);
    margin-bottom:14px;
  }
  .grid2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
  }
  .cat-card{
    background:rgba(245,180,0,0.08);
    border:1px solid rgba(245,180,0,0.25);
    border-radius:12px;
    padding:10px 8px;
    font-size:11px;
    font-weight:600;
    color:var(--cream);
    text-align:center;
  }
  .cat-card .ico{font-size:20px;display:block;margin-bottom:4px;}

  .float-badge{
    position:absolute;
    top:-14px; right:-18px;
    width:78px;height:78px;
    border-radius:50%;
    background:#141008;
    border:2px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:'Unbounded',sans-serif;
    font-size:9px;
    font-weight:700;
    color:var(--gold-bright);
    line-height:1.2;
    padding:6px;
    box-shadow:0 10px 26px rgba(0,0,0,0.5);
  }

  .trust-row{
    display:flex;
    justify-content:center;
    gap:22px;
    margin-top:22px;
  }
  .trust-item{
    text-align:center;
    font-size:11px;
    color:var(--muted);
    font-weight:600;
  }
  .trust-item .ico{font-size:18px;display:block;margin-bottom:4px;}

  /* ===== STORE / LOCATION BLOCK ===== */
  .store-section{
    background:linear-gradient(180deg, #f5b400, #e0a300);
    padding:50px 20px 60px;
    text-align:center;
  }
  .store-title{
    font-family:'Unbounded',sans-serif;
    font-weight:800;
    font-size:clamp(22px,6vw,30px);
    color:#1a1300;
  }
  .store-addr{
    font-size:14px;
    font-weight:600;
    color:#4a3400;
    margin-top:10px;
  }
  .store-gallery-viewport{
    max-width:1000px;
    margin:44px auto 0;
    overflow:hidden;
  }
  .store-gallery{
    display:flex;
    flex-direction:row;
    gap:16px;
    width:max-content;
  }
  .store-photo{
    width:min(78vw, 340px);
    flex:0 0 auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
    aspect-ratio:4/3;
  }
  .store-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .store-caption{
    max-width:420px;
    margin:18px auto 0;
    font-size:14px;
    color:#3a2800;
    font-weight:500;
    line-height:1.5;
  }

  .cats-row{
    display:flex;
    gap:14px;
    justify-content:center;
    margin-top:30px;
    flex-wrap:wrap;
    perspective:800px;
  }
  .cat-tile{
    width:130px;
    background:#1a1300;
    border-radius:16px;
    overflow:hidden;
    color:var(--cream);
    text-align:center;
  }
  .cat-tile .photo{
    width:100%;
    height:110px;
    background:#1a1300;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }
  .cat-tile .photo img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .cat-tile .label{
    display:block;
    padding:10px 6px 14px;
    font-size:12.5px;
    font-weight:700;
  }
  .cats-more-note{
    text-align:center;
    margin-top:36px;
    font-size:13.5px;
    color:#4a3400;
    font-weight:600;
  }

  /* ===== WHY US ===== */
  .why-section{
    background:linear-gradient(180deg, #151209, #0b0a08);
    padding:56px 20px 60px;
  }
  .why-head{
    text-align:center;
    max-width:520px;
    margin:0 auto 36px;
  }
  .why-eyebrow{
    display:inline-block;
    background:rgba(245,180,0,0.12);
    border:1px solid rgba(245,180,0,0.3);
    color:var(--gold-bright);
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:6px 14px;
    border-radius:999px;
    margin-bottom:14px;
  }
  .why-title{
    font-family:'Unbounded',sans-serif;
    font-weight:800;
    font-size:clamp(24px,6.5vw,32px);
    color:var(--cream);
    line-height:1.15;
  }
  .why-sub{
    margin-top:10px;
    font-size:14.5px;
    color:var(--muted);
  }

  .why-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    max-width:920px;
    margin:0 auto;
  }
  .why-card{
    background:var(--panel);
    border:1px solid rgba(245,180,0,0.15);
    border-radius:16px;
    padding:20px 18px;
    display:flex;
    gap:14px;
    align-items:flex-start;
  }
  .why-card .num{
    flex:0 0 auto;
    width:38px;height:38px;
    border-radius:10px;
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    color:#1a1300;
    font-size:19px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .why-card .txt h3{
    font-family:'Unbounded',sans-serif;
    font-size:15px;
    font-weight:700;
    color:var(--cream);
    margin-bottom:5px;
    line-height:1.3;
  }
  .why-card .txt p{
    font-size:13.5px;
    color:var(--muted);
    line-height:1.5;
  }

  .why-cta{
    text-align:center;
    margin-top:34px;
  }
  .why-cta p{
    font-size:14.5px;
    color:var(--cream);
    margin-bottom:16px;
  }

  /* ===== REVIEWS ===== */
  .reviews-section{
    background:#0b0a08;
    padding:56px 20px 64px;
  }
  .reviews-head{
    text-align:center;
    max-width:520px;
    margin:0 auto 34px;
  }
  .reviews-title{
    font-family:'Unbounded',sans-serif;
    font-weight:800;
    font-size:clamp(24px,6.5vw,32px);
    color:var(--cream);
  }
  .reviews-rating{
    margin-top:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  }
  .stars{
    font-size:20px;
    letter-spacing:2px;
    color:var(--gold-bright);
  }
  .rating-num{
    font-family:'Unbounded',sans-serif;
    font-weight:700;
    font-size:15px;
    color:var(--cream);
  }
  .rating-count{
    font-size:12.5px;
    color:var(--muted);
  }

  .reviews-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
    max-width:920px;
    margin:0 auto;
  }
  .review-card{
    background:var(--panel);
    border:1px solid rgba(245,180,0,0.15);
    border-radius:16px;
    padding:20px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .review-card:hover{
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(245,180,0,0.15);
  }
  .review-card .stars{
    font-size:14px;
    margin-bottom:10px;
    display:block;
  }
  .review-card p{
    font-size:13.5px;
    color:var(--cream);
    line-height:1.55;
    margin-bottom:14px;
  }
  .review-author{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .review-avatar{
    width:34px;height:34px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Unbounded',sans-serif;
    font-weight:700;
    font-size:13px;
    color:#1a1300;
    flex-shrink:0;
  }
  .review-name{
    font-size:13px;
    font-weight:700;
    color:var(--cream);
  }
  .review-meta{
    font-size:11.5px;
    color:var(--muted);
  }

  @media(min-width:640px){
    .reviews-grid{grid-template-columns:1fr 1fr;}
  }
  @media(min-width:960px){
    .reviews-grid{grid-template-columns:repeat(4,1fr);}
  }

  /* ===== CONTACTS ===== */
  .contacts-section{
    background:linear-gradient(180deg, #0b0a08, #151209);
    padding:56px 20px 64px;
  }
  .contacts-head{
    text-align:center;
    max-width:520px;
    margin:0 auto 34px;
  }
  .contacts-title{
    font-family:'Unbounded',sans-serif;
    font-weight:800;
    font-size:clamp(24px,6.5vw,32px);
    color:var(--cream);
  }

  .contacts-wrap{
    max-width:960px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
  }

  .contacts-info{
    background:var(--panel);
    border:1px solid rgba(245,180,0,0.15);
    border-radius:18px;
    padding:26px 22px;
  }
  .contact-row{
    display:flex;
    gap:14px;
    align-items:flex-start;
    margin-bottom:20px;
  }
  .contact-row:last-of-type{margin-bottom:0;}
  .contact-icon{
    flex:0 0 auto;
    width:40px;height:40px;
    border-radius:11px;
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    color:#1a1300;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .contact-row h3{
    font-family:'Unbounded',sans-serif;
    font-size:14px;
    font-weight:700;
    color:var(--cream);
    margin-bottom:4px;
  }
  .contact-row p{
    font-size:13.5px;
    color:var(--muted);
    line-height:1.5;
  }

  .route-btn{
    margin-top:22px;
    width:100%;
    justify-content:center;
    text-align:center;
  }

  .map-frame{
    width:100%;
    height:320px;
    border:0;
    border-radius:18px;
    overflow:hidden;
    filter:grayscale(0.15) contrast(1.05);
  }
  .map-wrap{
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(245,180,0,0.15);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
  }

  @media(min-width:800px){
    .contacts-wrap{grid-template-columns:1fr 1.2fr;align-items:stretch;}
    .map-frame{height:100%;min-height:380px;}
  }

  @media(min-width:640px){
    .why-grid{grid-template-columns:1fr 1fr;}
  }
  @media(min-width:960px){
    .why-grid{grid-template-columns:repeat(3,1fr);}
    .why-card:nth-child(4){grid-column:1 / span 1.5;}
  }

  @media(min-width:640px){
    .hero{padding:60px 40px 80px;}
    .cta-row{justify-content:flex-start;}
  }
  /* ===== WOW EFFECTS ===== */
  .hero{
    background:
      radial-gradient(ellipse at 75% 20%, rgba(245,180,0,0.35), transparent 55%),
      radial-gradient(ellipse at 15% 85%, rgba(245,180,0,0.12), transparent 60%),
      linear-gradient(-45deg, #0b0a08, #151209, #1a1508, #0b0a08);
    background-size: 100% 100%, 100% 100%, 400% 400%;
    animation: heroGradient 14s ease infinite;
  }
  @keyframes heroGradient{
    0%{background-position:0% 0%,0% 0%,0% 50%;}
    50%{background-position:0% 0%,0% 0%,100% 50%;}
    100%{background-position:0% 0%,0% 0%,0% 50%;}
  }

  .cursor-glow{
    position:absolute;
    top:0; left:0;
    width:340px; height:340px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,210,63,0.25), transparent 70%);
    pointer-events:none;
    transform:translate(-50%,-50%);
    transition:opacity .3s;
    z-index:0;
  }

  .btn-primary{
    position:relative;
    overflow:hidden;
    animation: ctaPulse 2.6s ease-in-out infinite;
  }
  @keyframes ctaPulse{
    0%,100%{box-shadow:0 8px 24px rgba(245,180,0,0.35);}
    50%{box-shadow:0 8px 34px rgba(245,180,0,0.65), 0 0 0 6px rgba(245,180,0,0.08);}
  }
  .btn-primary::after{
    content:"";
    position:absolute;
    top:0; left:-60%;
    width:40%; height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform:skewX(-20deg);
    animation: btnShine 3.2s ease-in-out infinite;
  }
  @keyframes btnShine{
    0%{left:-60%;}
    45%{left:130%;}
    100%{left:130%;}
  }

  .cat-tile{
    transition: transform .35s ease, box-shadow .35s ease;
    transform-style: preserve-3d;
    cursor:pointer;
  }
  .cat-tile:hover{
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 34px rgba(0,0,0,0.35), 0 0 0 2px var(--gold);
  }
  .cat-tile .photo{position:relative; overflow:hidden;}
  .cat-tile .photo::after{
    content:"";
    position:absolute;
    top:0; left:-75%;
    width:50%; height:100%;
    background:linear-gradient(120deg, transparent, rgba(245,180,0,0.35), transparent);
    transform:skewX(-20deg);
    transition:left .6s ease;
  }
  .cat-tile:hover .photo::after{ left:130%; }

  .why-card{
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .why-card:hover{
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(245,180,0,0.15);
  }
  .why-card .num{
    transition: transform .3s ease;
  }
  .why-card:hover .num{
    transform: rotate(-8deg) scale(1.15);
  }

  .store-photo{
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .store-photo:hover{
    transform: scale(1.03);
    box-shadow: 0 24px 50px rgba(0,0,0,0.4);
  }

  .phone-wrap img{
    transition: transform .4s ease;
  }
  .phone-wrap:hover img{
    transform: scale(1.02);
  }

  /* ===== FOOTER ===== */
  .site-footer{
    background:#080704;
    padding:44px 20px 26px;
    border-top:1px solid rgba(245,180,0,0.15);
  }
  .footer-wrap{
    max-width:960px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
  }
  .footer-brand{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
  }
  .footer-shield{
    width:32px;height:32px;
    border-radius:9px;
    background:var(--gold);
    color:#1a1300;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
  }
  .footer-brand-name{
    font-family:'Unbounded',sans-serif;
    font-weight:700;
    font-size:15px;
    color:var(--cream);
  }
  .footer-col h4{
    font-family:'Unbounded',sans-serif;
    font-size:14px;
    font-weight:700;
    color:var(--gold-bright);
    margin-bottom:12px;
  }
  .footer-col p{
    font-size:13px;
    color:var(--muted);
    line-height:1.6;
  }
  .footer-bottom{
    max-width:960px;
    margin:34px auto 0;
    padding-top:20px;
    border-top:1px solid rgba(245,180,0,0.1);
    text-align:center;
  }
  .footer-bottom p{
    font-size:12px;
    color:var(--muted);
  }

  @media(min-width:700px){
    .footer-wrap{grid-template-columns:1.2fr 1fr;}
  }

  /* ===== RESPONSIVE: TABLET (≥768px) ===== */
  @media(min-width:768px){
    .hero{
      max-width:640px;
      margin:0 auto;
    }
    .phone-wrap{ width:340px; }
    .cat-tile{ width:150px; }
    .why-grid{ gap:18px; }
    .contacts-info{ padding:30px 26px; }
  }

  /* ===== RESPONSIVE: LAPTOP / DESKTOP (≥1024px) ===== */
  @media(min-width:1024px){
    .hero{
      max-width:1100px;
      padding-left:60px;
      padding-right:60px;
      min-height:auto;
      padding-top:80px;
      padding-bottom:80px;
    }
    .hero-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:60px;
    }
    .hero-text{
      flex:0 0 auto;
      max-width:440px;
    }
    .tagline{ font-size:18px; }
    .phone-wrap{ width:400px; margin:0; }
    .store-section,
    .why-section,
    .reviews-section,
    .contacts-section{
      padding-left:60px;
      padding-right:60px;
    }
    .store-gallery,
    .why-grid,
    .reviews-grid,
    .contacts-wrap{
      max-width:1080px;
    }
    .cats-row{
      max-width:880px;
      margin-left:auto;
      margin-right:auto;
      flex-wrap:wrap;
      justify-content:center;
      gap:16px;
    }
    .cat-tile{ width:160px; flex:0 0 auto; }
    .why-card,
    .review-card{ padding:24px 20px; }
    .footer-wrap{ max-width:1080px; }
    .footer-bottom{ max-width:1080px; }
  }

  /* ===== RESPONSIVE: LARGE DESKTOP (≥1440px) ===== */
  @media(min-width:1440px){
    .hero{ max-width:960px; }
    .phone-wrap{ width:420px; }
  }

  /* ===== CUSTOM CURSOR (desktop/laptop with mouse only) ===== */
  @media(hover:hover) and (pointer:fine){
    body{ cursor:none; }
    a, button, .cat-tile, .why-card, .review-card, .store-photo{ cursor:none; }

    .cursor-dot{
      position:fixed;
      top:0; left:0;
      width:8px; height:8px;
      border-radius:50%;
      background:var(--gold-bright);
      pointer-events:none;
      z-index:9999;
      transform:translate(-50%,-50%);
      box-shadow:0 0 10px rgba(255,210,63,0.8);
    }
    .cursor-ring{
      position:fixed;
      top:0; left:0;
      width:36px; height:36px;
      border-radius:50%;
      border:1.5px solid rgba(245,180,0,0.6);
      pointer-events:none;
      z-index:9998;
      transform:translate(-50%,-50%);
      transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
    }
    .cursor-ring.is-hover{
      width:60px; height:60px;
      background:rgba(245,180,0,0.1);
      border-color:var(--gold-bright);
    }
  }
