*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg-main);
  color:var(--text-primary);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:100%;
  max-width:var(--container);
  padding:0 var(--pad);
  margin:0 auto;
}

h1,h2,h3{font-family:"Playfair Display", serif; margin:0}
h1{font-size:72px; line-height:1.08; font-weight:600}
h2{font-size:48px; line-height:1.15; font-weight:600}
p{margin:0; color:var(--text-secondary); line-height:1.6}

@media (max-width: 768px){
  h1{font-size:40px}
  h2{font-size:32px}
}

.demo{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 0;
}

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:88px;
  z-index:1000;
  transition: background .2s ease, backdrop-filter .2s ease, border-color .2s ease;
  background: transparent;
}
.site-header.is-sticky{
  background: rgba(10,10,12,.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-inner{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:8px;
  font-family:"Playfair Display", serif;
  letter-spacing:.2px;
}
.brand-mark{
  color: var(--accent);
  font-weight:600;
  font-size:22px;
}
.brand-name{
  color: var(--text-primary);
  font-weight:600;
  font-size:20px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:32px; /* по blueprint */
}
.nav-link{
  font-size:15px;
  font-weight:500;
  letter-spacing:.5px;
  color: var(--text-primary);
  position:relative;
  padding:8px 0;
  opacity:.92;
}
.nav-link:hover{ color: var(--accent); opacity:1; }
.nav-link::after{
  content:"";
  position:absolute;
  left:0; bottom:3px;
  height:1px;
  width:0;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-link:hover::after{ width:100%; }

.header-actions{
  display:flex;
  align-items:center;
  gap:24px;
}

.lang{
  display:flex;
  align-items:center;
  gap:12px;
}
.lang-link{
  font-size:13px;
  letter-spacing:.6px;
  color: var(--text-secondary);
}
.lang-link.is-active{ color: var(--text-primary); }
.lang-link:hover{ color: var(--accent); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:52px;
  padding:0 28px;
  border-radius: var(--radius-sm);
  font-weight:600;
  letter-spacing:.2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn-sm{ height:42px; padding:0 20px; }
.btn-primary{
  background: var(--accent);
  color:#fff;
  box-shadow: none;
}
.btn-primary:hover{
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
/* BURGER CLEAN */

.burger{
  display:none;
  position:relative;
  width:44px;
  height:44px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  cursor:pointer;
  z-index:1001;
  transition: border-color .2s ease, background .2s ease;
}

.burger{
  background-image: linear-gradient(var(--text-primary), var(--text-primary));
  background-repeat:no-repeat;
  background-position:center;
  background-size:22px 2px;
}

.burger::before,
.burger::after{
  content:'';
  position:absolute;
  left:50%;
  width:22px;
  height:2px;
  background: var(--text-primary);
  transform:translateX(-50%);
  transition:.28s ease;
}

.burger::before{ top:14px; }
.burger::after{ bottom:14px; }

.burger:hover::before,
.burger:hover::after{
  background: var(--accent);
}

.burger:hover{
  background-image: linear-gradient(var(--accent), var(--accent));
  border-color: var(--accent);
}

.burger.is-open{
  background-image:none;
}

.burger.is-open::before{
  top:50%;
  transform:translateX(-50%) rotate(45deg);
}

.burger.is-open::after{
  bottom:auto;
  top:50%;
  transform:translateX(-50%) rotate(-45deg);
}
.mobile-drawer{
  display:none;
  background: rgba(10,10,12,.96);
  border-top: 1px solid rgba(255,255,255,.06);
  padding:16px 0 24px;
}
.mobile-inner{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.m-link{
  font-size:16px;
  font-weight:600;
  padding:10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.m-link:hover{ color: var(--accent); }
.mobile-bottom{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.site-footer{
  margin-top:120px;
  background: var(--bg-section);
  border-top: 1px solid rgba(255,255,255,.05);
  padding:72px 0 28px;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:24px;
}
.footer-title{
  font-family:"Playfair Display", serif;
  font-size:18px;
  margin-bottom:14px;
}
.footer-text{
  color: var(--text-secondary);
  line-height:1.6;
}
.footer-link{
  display:block;
  color: var(--text-secondary);
  padding:6px 0;
}
.footer-link:hover{ color: var(--accent); }
.footer-bottom{
  margin-top:32px;
  padding-top:18px;
  border-top: 1px solid rgba(255,255,255,.05);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-muted{ color: var(--text-secondary); font-size:13px; }

body{ padding-top:88px; }

@media (max-width: 980px){
  .main-nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .mobile-drawer.is-open{ display:block; }
  .footer-inner{ grid-template-columns: 1fr; }
}
.hero{
  position:relative;
  height:100vh;
  min-height:900px;
  overflow:hidden;
  background: #000;
}

.hero-slides{
  position:absolute;
  inset:0;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity .8s ease;
  transform: scale(1);
}

.hero-slide.is-active{
  opacity:1;
  animation: heroZoom 9s ease forwards;
}

@keyframes heroZoom{
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.6) 100%),
    radial-gradient(circle at 60% 40%, rgba(0,0,0,.2), transparent 60%);
}

.hero-content{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}

.hero-text{
  max-width:640px;
  padding-top: 12vh;
}
.hero-text h1{
  font-size: clamp(42px, 6vw, 72px);
  line-height:1.1;
  letter-spacing:-1px;
}

.hero-sub{
  margin-top:28px;
  font-size:20px;
  line-height:1.6;
  opacity:.85;
}

.hero-cta{
  margin-top:40px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-ghost{
  height:52px;
  padding:0 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.30);
  color: var(--text-primary);
}
.btn-ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(177,18,26,.06);
  transform: translateY(-2px);
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:40px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.hero-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background: rgba(255,255,255,.4);
  cursor:pointer;
}
.hero-dot.is-active{ background: var(--accent); }

@media (max-width: 980px){
  .hero{ min-height: 700px; }
  .hero-text{ padding-top: 0; text-align:center; margin:0 auto; }
  .hero-cta{ justify-content:center; }
}

.trustbar{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}

.trustbar-inner{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items:center;
}

.trust-item{
  display:flex;
  align-items:baseline;
  gap: 14px;
  justify-content:center;
  text-align:center;
}

.trust-num{
  font-family:"Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: .2px;
}

.trust-text{
  color: var(--text-secondary);
  font-size: 14px;
  letter-spacing: .3px;
}

@media (max-width: 980px){
  .trustbar-inner{ grid-template-columns: repeat(2, 1fr); }
  .trust-item{ justify-content:flex-start; text-align:left; }
}
@media (max-width: 520px){
  .trustbar-inner{ grid-template-columns: 1fr; }
}
/* SERVICES */
.services{
  padding: 120px 0;
  background: #0c0c0f;
}

.section-head{
  margin-bottom: 60px;
}

.section-head h2{
  font-size: 40px;
  margin-bottom: 16px;
}

.section-sub{
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 16px;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card{
  position:relative;
  height:420px;
  overflow:hidden;
  border-radius: var(--radius-md);
  display:block;
  text-decoration:none;
  color:var(--text-primary);
}

.service-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition: transform 1.2s ease;
}

.service-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.6) 60%,
    rgba(0,0,0,.85) 100%
  );
  transition:.4s ease;
}

.service-content{
  position:absolute;
  bottom:40px;
  left:40px;
  z-index:2;
}

.service-content h3{
  font-size:26px;
  margin-bottom:12px;
}

.service-link{
  font-size:14px;
  letter-spacing:.5px;
  color: var(--text-secondary);
  transition:.3s ease;
}

.service-card:hover .service-bg{
  transform: scale(1.08);
}

.service-card:hover .service-overlay{
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.5) 60%,
    rgba(0,0,0,.85) 100%
  );
}

.service-card:hover .service-link{
  color: var(--accent);
}

@media (max-width: 980px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}
/* POPULAR */
.popular{
  padding: 120px 0;
  background: var(--bg-main);
}

.popular-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

.popular-grid{
  margin-top: 56px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dish-card{
  display:block;
  border-radius: var(--radius-md);
  overflow:hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: transform .25s ease, border-color .25s ease;
}

.dish-img{
  height: 240px;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform .8s ease;
  filter: saturate(1.05);
}

.dish-body{
  padding: 16px;
}

.dish-title{
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dish-meta{
  font-size: 14px;
  color: var(--text-secondary);
}

.dish-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
}

.dish-card:hover .dish-img{
  transform: scale(1.06);
}

.popular-cta{
  margin-top: 48px;
  display:flex;
  justify-content:center;
}

@media (max-width: 980px){
  .popular-grid{ grid-template-columns: repeat(2, 1fr); }
  .dish-img{ height: 200px; }
}

@media (max-width: 520px){
  .popular-head{ flex-direction:column; align-items:flex-start; }
  .popular-grid{ grid-template-columns: 1fr; }
  .dish-img{ height: 220px; }
}
/* GALLERY */
.gallery{
  padding: 120px 0;
  background: #0c0c0f;
}

.gallery-grid{
  margin-top: 56px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.g-item{
  position:relative;
  border:none;
  cursor:pointer;
  border-radius: var(--radius-md);
  overflow:hidden;
  background-size:cover;
  background-position:center;
  min-height: 220px;
  outline:none;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease;
}

.g-item:nth-child(1){ grid-column: span 7; min-height: 320px; }
.g-item:nth-child(2){ grid-column: span 5; min-height: 320px; }
.g-item:nth-child(3),
.g-item:nth-child(4),
.g-item:nth-child(5){ grid-column: span 4; }
.g-item:nth-child(6){ grid-column: span 12; min-height: 260px; }

.g-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%);
  opacity:.65;
  transition: opacity .25s ease;
}

.g-item:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
}
.g-item:hover .g-overlay{ opacity:.35; }

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.85);
  z-index:2000;
  padding: 24px;
}
.lightbox.is-open{ display:flex; }

.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.10);
  opacity: 1;
  transition: opacity .22s ease;
}
.lightbox-img.is-fading{
  opacity: 0;
}

.lightbox-close{
  position:fixed;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}

.lightbox-close::before,
.lightbox-close::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:22px;
  height:2px;
  background: var(--text-primary);
  border-radius:2px;
}
.lightbox-close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.lightbox-close::after{ transform: translate(-50%,-50%) rotate(-45deg); }

.lightbox-close:hover{
  border-color: var(--accent);
}
.lightbox-close:hover::before,
.lightbox-close:hover::after{
  background: var(--accent);
}

@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .g-item{ min-height: 220px !important; grid-column: span 12 !important; }
}
/* PROCESS */
.process{
  padding: 120px 0;
  background: var(--bg-section);
}

.process-grid{
  margin-top: 64px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-item{
  padding: 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}

.process-item:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
}

.process-num{
  font-family:"Playfair Display", serif;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.process-item h3{
  font-size: 18px;
  margin-bottom: 12px;
}

.process-item p{
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 980px){
  .process-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px){
  .process-grid{
    grid-template-columns: 1fr;
  }
}
/* REVIEWS */
.reviews{
  padding: 140px 0;
  background: var(--bg-main);
}

.reviews-track{
  margin-top: 60px;
  display:flex;
  gap: 28px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding-bottom: 10px;
}

.reviews-track::-webkit-scrollbar{
  display:none;
}

.review-card{
  min-width: 380px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position:relative;
  transition: transform .25s ease, border-color .25s ease;
  display:flex;
  flex-direction:column;
  min-height: 220px;
}

.review-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
}

.review-quote{
  position:absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  opacity:.05;
  font-family:"Playfair Display", serif;
}

.review-text{
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.review-author{
  display:flex;
  flex-direction:column;
  gap: 4px;
  margin-top:auto;
  padding-top: 18px;
}

.review-name{
  font-weight:600;
}

.review-type{
  font-size: 13px;
  color: var(--text-secondary);
}

@media (max-width: 520px){
  .review-card{ min-width: 85%; }
}
/* Review form */
.review-form-wrap{
  margin-top: 56px;
}

.review-form-card{
  max-width: 720px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.02);
  padding: 32px;
}

.review-form-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.review-form{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.f-label{
  font-size: 13px;
  color: var(--text-secondary);
}

.f-input{
  width:100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: var(--text-primary);
  padding: 12px 14px;
  outline:none;
}

.f-input:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(177,18,26,.18);
}

.f-textarea{
  resize: vertical;
  min-height: 120px;
}

.final-cta{
  padding: 140px 0;
  background: radial-gradient(circle at 30% 30%, rgba(177,18,26,.16), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,.06), transparent 55%),
              #07070a;
  border-top: 1px solid rgba(255,255,255,.06);
}

.final-cta-inner{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-lg);
  padding: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 32px;
}

.final-cta-text h2{
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.15;
  margin: 0 0 14px;
}

.final-cta-text p{
  margin: 0;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  font-size: 16px;
}

.final-cta-actions{
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.final-cta-actions .btn{
  flex:1;
  min-width: 220px;
  height: 54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 15px;
  font-weight: 600;
}
.final-cta-actions .btn{
  transition: transform .25s ease;
}

.final-cta-actions .btn:hover{
  transform: translateY(-2px);
}
@media (max-width: 980px){
  .final-cta-inner{
    padding: 34px;
    flex-direction:column;
    align-items:flex-start;
  }
  .final-cta-actions{
    justify-content:flex-start;
  }
}
@media (max-width: 520px){
  .final-cta{ padding: 90px 0; }
  .final-cta-inner{ padding: 24px; }
  .header-inner{
    gap: 10px;
  }
  .brand{
    max-width: 140px;
  }
  .brand, .brand span{ font-size: 16px; }
  .main-nav{ display:none !important; }
  .header-actions{
    gap: 10px;
  }
  .site-header .lang{ display:none !important; }
  #mobileDrawer .lang{ display:flex !important; }
    #mobileDrawer .mobile-bottom{
      display:flex;
      justify-content:flex-start;
      padding-top: 14px;
    }
  .burger{
    display:inline-flex !important;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .burger::before,
  .burger::after{
    width: 18px;
  }
  .burger{
    background-size: 18px 2px;
  }
  .burger::before{ top: 13px; }
  .burger::after{ bottom: 13px; }
}


/*
   SERVICE PAGE
 */

.service-page .page-hero{
  position:relative;
  height:70vh;
  min-height:600px;
  overflow:hidden;
}

.service-page .page-hero-inner{
  position:relative;
  height:70vh;
  min-height:560px;
  display:flex;
  align-items:center;
}

.service-page .page-hero-media{
  position:absolute;
  inset:0;
  width:100vw;
  left:50%;
  transform:translateX(-50%) scale(1.05);
  background-size:cover;
  background-position:center;
  filter:brightness(.82) saturate(1.05);
  transition:transform 10s ease;
}
.service-page .page-hero:hover .page-hero-media{
  transform:translateX(-50%) scale(1.1);
}
.service-page .hero-media-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(10,10,12,.95) 0%, rgba(10,10,12,.75) 35%, rgba(10,10,12,.4) 60%, rgba(10,10,12,.8) 100%),
    radial-gradient(circle at 30% 40%, rgba(177,18,26,.15), transparent 60%);
}

.service-page .page-hero-text{
  position:relative;
  z-index:2;
  max-width:620px; /* blueprint */
  padding-top: 6vh;
}
.page-hero-text, h1 {
    margin: 0 0 14px;
}
.service-page .page-hero-text .lead{
  margin-top: 16px;
  font-size:18px;
  color: var(--text-secondary);
}

.service-page .hero-actions{
  margin-top: 28px;
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}


.service-page .service-content{
  position:relative;
  bottom:auto;
  left:auto;
  z-index:auto;
  padding: 120px 0;
  background: var(--bg-main);
}

.service-page .service-grid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items:start;
}

.service-page .service-main h2{
  font-size: 40px;
  margin: 0 0 18px;
}

.service-page .service-main > * + *{
  margin-top: 56px;
}

/* WordPress content */
.service-page .content{
  color: var(--text-secondary);
  line-height: 1.75;
}
.service-page .content p + p{ margin-top: 14px; }
.service-page .content a{ color: var(--text-primary); border-bottom: 1px solid rgba(255,255,255,.14); }
.service-page .content a:hover{ color: var(--accent); border-color: var(--accent); }
.service-page .content ul,
.service-page .content ol{ margin: 14px 0 0; padding-left: 18px; }
.service-page .content li{ margin: 8px 0; }

/* Includes */
.service-page .includes-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-page .includes-list li{
  padding: 18px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  color: var(--text-primary);
  position:relative;
  padding-left: 34px;
}

.service-page .includes-list li::before{
  content:"";
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  width:6px;
  height:6px;
  border-radius:50%;
  background: var(--accent);
}

/* Mini gallery */
.service-page .mini-gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-page .mini-gallery .g-item{
  min-height: 140px;
  grid-column: auto !important;
}

.service-page .mini-gallery .g-item .g-overlay{ opacity:.55; }

/* Menu sample */
.service-page .service-menu-sample .menu-sample-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 20% 20%, rgba(177,18,26,.18), transparent 60%),
              rgba(255,255,255,.02);
}

.service-page .service-menu-sample h3{
  font-size: 28px;
  margin: 0 0 10px;
}

.service-page .service-menu-sample .muted{
  color: var(--text-secondary);
}

/* FAQ */
.service-page .service-faq .faq-item{
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.02);
  overflow:hidden;
}

.service-page .service-faq .faq-item + .faq-item{ margin-top: 12px; }

.service-page .faq-q{
  width:100%;
  text-align:left;
  padding: 18px 18px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-weight: 600;
  cursor:pointer;
  position:relative;
}

.service-page .faq-q::after{
  content:"+";
  position:absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 18px;
}

.service-page .faq-item.is-open .faq-q::after{
  content:"–";
  color: var(--accent);
}

.service-page .faq-a{
  display:none;
  padding: 0 18px 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-page .faq-item.is-open .faq-a{ display:block; }

/* Aside */
.service-page .service-side{
  position:sticky;
  top: 110px;
}

.service-page .side-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 24px;
}

.service-page .side-title{
  font-family:"Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 16px;
}

.service-page .side-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.service-page .side-row:first-of-type{ border-top:none; }

.service-page .side-row span{ color: var(--text-secondary); font-size: 13px; }
.service-page .side-row strong{ color: var(--text-primary); font-size: 14px; }

.service-page .w-100,
.service-page .side-card .btn{ width:100%; }
.service-page .side-card .btn + .btn{ margin-top: 10px; }

@media (max-width: 980px){
  .service-page .page-hero,
  .service-page .page-hero-inner{ height: 62vh; min-height: 520px; }
  .service-page .service-grid{ grid-template-columns: 1fr; }
  .service-page .service-side{ position:relative; top:auto; }
}

@media (max-width: 520px){
  .service-page .service-content{ padding: 90px 0; }
  .service-page .includes-list{ grid-template-columns: 1fr; }
  .service-page .mini-gallery{ grid-template-columns: repeat(2, 1fr); }
  .service-page .service-menu-sample .menu-sample-inner{ padding: 22px; flex-direction:column; align-items:flex-start; }
}
/* ==============================
   SERVICES LISTING
   ============================== */

.services-page .page-hero--compact{
  height: 58vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:#000;
}

.services-page .page-hero--compact .page-hero-inner{
  height: 58vh;
  min-height: 560px;
  display:flex;
  align-items: flex-end;
  padding-bottom: 84px;
  position:relative;
  z-index:2;
}

.services-page .page-hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
  transform:scale(1.02);
}

.services-page .hero-media-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.65) 0%, rgba(10,10,12,.86) 70%, rgba(10,10,12,.98) 100%),
    radial-gradient(circle at 20% 35%, rgba(177,18,26,.14), transparent 55%);
}

.services-page .page-hero-text{
  padding-top: 8vh;
  max-width: 620px;
}
.services-page .page-hero-text h1{
  margin:0 0 14px;
}
.services-page .page-hero-text .lead{
  max-width: 520px;
  margin:0;
  color: rgba(245,245,247,.78);
}

.services-page .services-list{
  padding: 120px 0 140px;
}

.services-page .services-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.services-page .service-tile{
  position:relative;
  overflow:hidden;
  min-height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  transition: transform .25s ease, border-color .25s ease;
}

.services-page .service-tile:hover{
  transform: translateY(-4px);
  border-color: rgba(177,18,26,.55);
}

.services-page .service-tile-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  transition: transform .6s ease;
}
.services-page .service-tile:hover .service-tile-bg{
  transform: scale(1.06);
}

.services-page .service-tile-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.10) 0%, rgba(10,10,12,.82) 68%, rgba(10,10,12,.96) 100%);
}

.services-page .service-tile-content{
  position:absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index:2;
}

.services-page .service-tile-content h3{
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.1;
}

.services-page .service-tile-content .muted{
  margin: 0 0 14px;
  color: rgba(245,245,247,.72);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-page .service-tile-link{
  display:inline-block;
  padding-top: 2px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: var(--text-primary);
  opacity: .92;
}

.services-page .service-tile:hover .service-tile-link{
  color: var(--accent);
  opacity: 1;
  border-bottom-color: rgba(177,18,26,.75);
}

@media (max-width: 980px){
  .services-page .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .services-page .service-tile{ min-height: 380px; }
}

@media (max-width: 560px){
  .services-page .page-hero--compact .page-hero-inner{ padding-bottom: 56px; }
  .services-page .services-list{ padding: 90px 0 110px; }
  .services-page .services-grid{ grid-template-columns: 1fr; }
  .services-page .service-tile{ min-height: 340px; }
}

.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.reveal-in{ opacity:1; transform: translateY(0); }
/* ==============================
   ORDER / CHECKOUT
   ============================== */

.order-page .page-hero--compact{
  height: 58vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:#000;
}
.order-page .page-hero--compact .page-hero-inner{
  height: 58vh;
  min-height: 560px;
  display:flex;
  align-items:flex-end;
  padding-bottom: 84px;
  position:relative;
  z-index:2;
}
.order-page .page-hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  filter:saturate(1.05);
}
.order-page .hero-media-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.65) 0%, rgba(10,10,12,.86) 70%, rgba(10,10,12,.98) 100%),
    radial-gradient(circle at 20% 35%, rgba(177,18,26,.14), transparent 55%);
}

.order-section{ padding: 110px 0 140px; }

.order-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items:start;
}

.xc-form .form-block{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 18px;
}

.xc-form h2{ margin: 0 0 16px; }

.field{ margin-bottom: 14px; }
.field label{ display:block; font-size:14px; color: rgba(245,245,247,.78); margin-bottom: 8px; }

.field input,
.field textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text-primary);
  padding: 12px 14px;
  outline:none;
}
.field textarea{ resize: vertical; }

.field-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-lg{ height: 56px; font-size: 16px; }
.order-summary {
    position: sticky;
    top: 100px;
}
.order-summary .side-card{ 
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .02);
    padding: 24px;
}
.order-summary .side-title{
    font-weight: 600;
    letter-spacing: .4px;
    color: rgba(245, 245, 247, .92);
    font-family: "Playfair Display", serif;
    font-size: 18px;
    margin-bottom: 16px;
}
.order-summary .side-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.order-summary .side-row:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.order-summary .side-row span{
  color: rgba(245,245,247,.70);
  font-size: 14px;
}

.order-summary .side-row strong{
  color: rgba(245,245,247,.92);
  font-weight: 600;
  font-size: 14px;
}
.order-summary .side-note{ 
  line-height: 1.6;
  margin-top: 14px;
  color: rgba(245,245,247,.70);
}

.order-success{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  max-width: 820px;
}
.order-success h2{
  margin: 0 0 10px;
}
.order-success-id{
  margin: 10px 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  display: inline-block;
}
@media (max-width: 980px){
  .order-grid{ grid-template-columns: 1fr; }
  .order-summary .side-card{ position: static; }
}
@media (max-width: 560px){
  .order-section{ padding: 80px 0 110px; }
  .field-row{ grid-template-columns: 1fr; }
}

.field-error{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--accent);
  display: none;
}

.field.is-error .field-error{ display:block; }

.field.is-error input,
.field.is-error textarea{
  border-color: rgba(177,18,26,.65);
  box-shadow: 0 0 0 3px rgba(177,18,26,.12);
}

.btn[disabled]{ opacity: .75; cursor: not-allowed; }

.btn-spinner{
  display:none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(245,245,247,.35);
  border-top-color: rgba(245,245,247,.92);
  margin-left: 10px;
  animation: xcspin .8s linear infinite;
  vertical-align: middle;
}

.is-sending .btn-spinner{ display:inline-block; }

@keyframes xcspin { to { transform: rotate(360deg); } }
.field input:focus,
.field textarea:focus{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.xc-form .form-block{
  backdrop-filter: blur(8px);
}
.form-hint{ margin-top: 12px; }
/* ==============================
   BLOG
   ============================== */

.blog-page .page-hero--compact{
  height: 58vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background:#000;
}
.blog-page .page-hero--compact .page-hero-inner{
  height: 58vh;
  min-height: 560px;
  display:flex;
  align-items:flex-end;
  padding-bottom: 84px;
  position:relative;
  z-index:2;
}
.blog-page .page-hero-media{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  filter:saturate(1.05);
}
.blog-page .hero-media-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.65) 0%, rgba(10,10,12,.86) 70%, rgba(10,10,12,.98) 100%),
    radial-gradient(circle at 20% 35%, rgba(177,18,26,.12), transparent 55%);
}

.blog-section{ padding: 110px 0 140px; }

.blog-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-search{ display:flex; gap: 10px; align-items:center; }
.blog-search input{
  width: 320px;
  max-width: 52vw;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text-primary);
  padding: 12px 14px;
  outline:none;
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.post-card:hover{
  transform: translateY(-6px);
  border-color: rgba(177,18,26,.55);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

.post-card-media{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform .6s ease;
  filter: saturate(1.05) contrast(1.05);
}
.post-card:hover .post-card-media{
  transform: scale(1.08);
}
.post-card-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.10) 0%, rgba(10,10,12,.72) 55%, rgba(10,10,12,.94) 100%),
    radial-gradient(circle at 25% 30%, rgba(177,18,26,.12), transparent 55%);
}

.post-card-content{
  position: relative;
  z-index: 2;
  padding: 22px 22px 20px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.post-card-content .post-meta{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom: 10px;
  color: rgba(245,245,247,.74);
  font-size: 13px;
}

.post-meta .dot{
  width:4px; height:4px; border-radius:50%;
  background: rgba(245,245,247,.5);
  display:inline-block;
}

.post-card-content h3{
  color: rgba(245,245,247,.96);
  font-size: 26px;
  line-height: 1.12;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-content p.muted{
  color: rgba(245,245,247,.72);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-content .post-link{
  display:inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(245,245,247,.90);
  width: fit-content;
}
.post-card:hover .post-card-content .post-link{
  border-bottom-color: rgba(177,18,26,.75);
  color: var(--accent);
}

.blog-pagination{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}
.blog-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  margin: 0 6px;
  color: rgba(245,245,247,.88);
}
.blog-pagination .page-numbers.current{
  border-color: rgba(177,18,26,.55);
  background: rgba(177,18,26,.12);
}
.breadcrumbs{
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(245,245,247,.72);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.breadcrumbs a:hover{ color: var(--accent); }
.breadcrumbs .sep{ opacity:.6; }
.post-hero{
  position:relative;
  height: 62vh;
  min-height: 620px;
  overflow:hidden;
  background:#000;
}
.post-hero-media{ position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.02); }
.post-hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.86) 70%, rgba(10,10,12,.98) 100%),
    radial-gradient(circle at 20% 35%, rgba(177,18,26,.10), transparent 55%);
}
.post-hero-inner{
  position:relative;
  z-index:2;
  padding-top: 140px;
  max-width: 860px;
}
.post-title{ margin: 14px 0 12px; }
.post-lead{ color: rgba(245,245,247,.78); font-size: 18px; line-height: 1.7; }

.post-body{ padding: 90px 0 140px; }
.post-layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items:start;
}
.post-content{
  color: rgba(245,245,247,.82);
  line-height: 1.85;
}
.post-content h2, .post-content h3{ margin-top: 32px; }
.post-content p + p{ margin-top: 14px; }
.post-content a{ color: rgba(245,245,247,.92); border-bottom: 1px solid rgba(255,255,255,.14); }
.post-content a:hover{ color: var(--accent); border-color: var(--accent); }

.post-aside {
  position: sticky;
  top: 110px; 
}
.post-aside .side-card{

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 16px;
  padding: 24px;
}
.post-aside .side-title{ font-size: 18px; margin-bottom: 10px; }
.post-aside .side-note{ margin-bottom: 14px; line-height: 1.6; }
.post-aside .btn{ width:100%; }
.post-aside .btn + .btn{ margin-top: 10px; }

@media (max-width: 980px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-layout{ grid-template-columns: 1fr; }
  .post-aside .side-card{ position: static; }
}
@media (max-width: 560px){
  .blog-section{ padding: 80px 0 110px; }
  .blog-topbar{ flex-direction: column; align-items: stretch; }
  .blog-search input{ width: 100%; max-width: 100%; }
  .blog-grid{ grid-template-columns: 1fr; }
  .post-hero-inner{ padding-top: 110px; }
  .post-body{ padding: 70px 0 110px; }
}
.blog-search .blog-search-btn{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(245,245,247,.92);
  height: auto;
  padding: 12px 14px;
}

.blog-search .blog-search-btn:hover{
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(177, 18, 26, .06);
    transform: translateY(-2px);
    cursor: pointer;
}

.post-content{
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .2px;
}

.post-content h2{
  font-size: 32px;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 600;
}

.post-content h3{
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-content p{
  margin-bottom: 18px;
  color: rgba(245,245,247,.85);
}

.post-content ul{
  margin: 20px 0 20px 24px;
}

.post-content li{
  margin-bottom: 8px;
}

.post-content hr{
  border: none;
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 50px 0;
}

.post-content strong{
  color: #fff;
}

.related-posts{
  margin-top: 120px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.related-title{
  font-size: 34px;
  margin-bottom: 40px;
}

.related-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.related-card:hover{
  transform: translateY(-6px);
  border-color: var(--accent);
}

.related-card h3{
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
}

@media(max-width: 768px){

  .post-hero{
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .post-hero-content{
    margin-top: auto;
  }

  .post-hero h1{
    font-size: 34px;
    line-height: 1.15;
  }

}

.related-posts{ padding: 90px 0 110px; border-top: 1px solid rgba(255,255,255,.06); }
.related-head h2{ margin:0 0 26px; }

.related-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.related-card{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  min-height: 240px;
  display:block;
  transition: transform .25s ease, border-color .25s ease;
}

.related-thumb{
  position:absolute; inset:0;
  background-size: cover;
  background-position:center;
  filter:saturate(1.05);
  transform: scale(1.02);
}
.related-card:before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,10,12,.10) 0%, rgba(10,10,12,.86) 70%, rgba(10,10,12,.96) 100%);
  z-index:1;
}
.related-meta{
  position:absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index:2;
}
.related-date{ opacity:.75; font-size:13px; margin-bottom:8px; }
.related-title{ font-size:18px; line-height:1.25; }

.related-more{ margin-top: 34px; text-align:center; }

.btn-outline{
  display:inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 40px;
  color: rgba(245,245,247,.9);
  transition: .3s ease;
}
.btn-outline:hover{
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(177,18,26,.06);
  transform: translateY(-3px);
}

@media (max-width: 980px){
  .related-grid{ grid-template-columns: 1fr; }
  .related-card{ min-height: 220px; }
}
/* ABOUT */
.about-section{
  padding: 60px 0 120px;
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.7fr .9fr;
  gap: 28px;
  align-items: start;
}

.about-main{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,12,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 28px;
}

.about-main h2{ margin: 0 0 14px; }

.about-points{
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.about-point{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 18px;
}

.about-point-title{
  font-weight: 600;
  margin-bottom: 6px;
}
.about-stats{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.about-stat{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 18px;
}

.about-stat-num{
  font-family: var(--font-serif, "Playfair Display", serif);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 6px;
}

@media (max-width: 980px){
  .about-section{ margin-top: -40px; padding: 44px 0 96px; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-main{ padding: 22px; }
  .about-stats{ grid-template-columns: 1fr; }
}

.about-aside .side-card{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 24px;
}

.about-aside .side-title{
  font-family:"Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 16px;
}
.about-aside .side-note {
    margin-bottom: 14px;
    line-height: 1.6;
}
.about-aside .btn {
    width: 100%;
}
.about-aside .btn + .btn {
    margin-top: 10px;
}
@media (max-width: 980px){
  .about-aside .side-card{ position: static; }
}
.reveal-left{ transform: translateX(-18px); }
.reveal-right{ transform: translateX(18px); }

.reveal.reveal-in.reveal-left,
.reveal.reveal-in.reveal-right{
  transform: translateX(0);
}

@media (min-width: 981px){
  .reveal-left,
  .reveal-right{ transform: translateY(18px); }
}
.about-stat{
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.about-stat:hover{
  transform: translateY(-4px);
  border-color: rgba(177,18,26,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.about-values{
  padding: 44px 0 0;
}

.values-title{
  margin: 0 0 18px;
}

.values-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.value-card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.value-card:hover{
  transform: translateY(-4px);
  border-color: rgba(177,18,26,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.40);
}

.value-kicker{
  font-family: var(--font-serif, "Playfair Display", serif);
  font-size: 22px;
  opacity: .85;
  margin-bottom: 10px;
}

.value-title{
  font-weight: 600;
  margin-bottom: 8px;
}

@media (max-width: 980px){
  .values-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 980px){
  .about-section .container{ display:grid; grid-template-columns:1fr; gap:22px; }
  .about-grid{ display: contents; }

  .about-main{ grid-row: 1; }
  .about-stats{ grid-row: 2; }
  .about-values{ grid-row: 3; }
  .about-aside{ grid-row: 4; }
}
.brand .brand-logo {
    width: 100px;
}

.about-trust{
  padding: 120px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.about-trust-head{
  max-width: 720px;
  margin-bottom: 40px;
}

.about-trust-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}

.trust-card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  padding: 26px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card:hover{
  transform: translateY(-6px);
  border-color: rgba(177,18,26,.55);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.trust-card .trust-num {
  font-family: var(--font-serif, "Playfair Display", serif);
  font-size: 42px;
  opacity: .12;
  margin-bottom: 12px;
}

.trust-card h3{
  margin: 0 0 8px;
  font-size: 20px;
}
.about-seo{
  padding: 40px 0 40px;
}
.about-seo .about-main{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,10,12,.45);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 28px;
}

.about-seo .about-main h2{
  margin: 22px 0 10px;
}
.about-seo-links{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-direction: column;
  flex-wrap:wrap;
}
.about-seo-links .btn{
  width:auto;
}
@media (max-width: 980px){
  .about-trust-grid{
    grid-template-columns: 1fr;
  }
}
.about-point-map {
    margin-top: 15px;
}

.xc-chat-launch{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 1400;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  display: grid;
  place-items: center;
  transform: translateZ(0);
}

.xc-chat-launch__ring{
  position:absolute;
  inset: -2px;
  border-radius: 999px;
  background:
    conic-gradient(
      from 180deg,
      rgba(255,255,255,.22),
      rgba(177,18,26,.65),
      rgba(255,255,255,.14),
      rgba(177,18,26,.85),
      rgba(255,255,255,.22)
    );
  filter: blur(.2px);
  opacity: .95;
}

.xc-chat-launch__core{
  position:absolute;
  inset: 4px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 42%),
    radial-gradient(circle at 70% 80%, rgba(177,18,26,.20), transparent 52%),
    rgba(23,23,26,.92); /* близко к --bg-card */
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow:
    0 16px 50px rgba(0,0,0,.55),
    0 10px 30px rgba(177,18,26,.18);
  display: grid;
  place-items: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.xc-chat-launch__icon{
  color: rgba(245,245,247,.92);
  transition: color .22s ease, transform .22s ease;
}

.xc-chat-launch__shine{
  position:absolute;
  inset: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 45%);
  mix-blend-mode: screen;
  opacity: .8;
  pointer-events: none;
}

.xc-chat-launch::after{
  content:"";
  position:absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(177,18,26,.28), transparent 62%);
  filter: blur(6px);
  opacity: .9;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
}

@keyframes xcHalo{
  0%   { transform: scale(1); opacity: .55; }
  55%  { transform: scale(1.12); opacity: .25; }
  100% { transform: scale(1); opacity: .55; }
}

.xc-chat-launch::before{
  content:"";
  position:absolute;
  inset: -22px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(177,18,26,.22), transparent 60%);
  filter: blur(10px);
  opacity: .45;
  animation: xcHalo 3.6s ease-in-out infinite;
  pointer-events:none;
}

.xc-chat-launch:hover .xc-chat-launch__core{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(177,18,26,.45);
  box-shadow:
    0 20px 70px rgba(0,0,0,.60),
    0 14px 40px rgba(177,18,26,.28);
}
.xc-chat-launch:hover .xc-chat-launch__icon{
  color: #fff;
  transform: scale(1.04);
}
.xc-chat-launch:hover::after{
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 520px){
  .xc-chat-launch{
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
  }
}


.xc-chat{
  position: fixed;
  right: 24px;
  bottom: 104px;
  width: min(380px, calc(100vw - 32px));
  height: 520px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 25% 15%, rgba(177,18,26,.16), transparent 55%),
    rgba(18,18,20,.92); /* близко к --bg-section */
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
  overflow: hidden;
  z-index: 1400;
  display: none;
}

.xc-chat.is-open{ display:block; }

.xc-chat__head{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(10,10,12,.45);
}

.xc-chat__title strong{
  display:block;
  color: rgba(245,245,247,.96);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing:.2px;
}
.xc-chat__title span{
  display:block;
  color: rgba(245,245,247,.70);
  font-size: 12px;
  margin-top: 2px;
}

.xc-chat__close{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  position: relative;
}
.xc-chat__close::before,
.xc-chat__close::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:18px;
  height:2px;
  background: rgba(245,245,247,.86);
  border-radius:2px;
}
.xc-chat__close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.xc-chat__close::after{ transform: translate(-50%,-50%) rotate(-45deg); }
.xc-chat__close:hover{
  border-color: rgba(177,18,26,.55);
}
.xc-chat__close:hover::before,
.xc-chat__close:hover::after{
  background: var(--accent);
}

.xc-chat__body{
  padding: 14px 14px;
  height: calc(520px - 64px - 64px);
  overflow:auto;
}

.xc-chat__msg{
  max-width: 86%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  margin: 10px 0;
  line-height: 1.45;
  font-size: 14px;
}
.xc-chat__msg--bot{
  background: rgba(255,255,255,.03);
  color: rgba(245,245,247,.86);
}
.xc-chat__msg--me{
  margin-left: auto;
  background: rgba(177,18,26,.10);
  border-color: rgba(177,18,26,.35);
  color: rgba(245,245,247,.92);
}
.xc-chat__line{
  margin-top: 6px;
}
.xc-chat__line:first-child{
  margin-top: 0;
}
.xc-chat__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.xc-chat__btn:hover{
  background: var(--accent-hover);
}
.xc-chat__status{
  margin-left: auto;
  font-size: 12px;
  color: rgba(245,245,247,.65);
}
.xc-chat__status.is-active{
  color: #8bffb0;
}
.xc-chat__form{
  display:flex;
  gap: 10px;
  padding: 6px 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(10,10,12,.35);
}

.xc-chat__input{
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(245,245,247,.92);
  padding: 12px 12px;
  outline:none;
}
.xc-chat__input:focus{
  border-color: rgba(177,18,26,.55);
  box-shadow: 0 0 0 3px rgba(177,18,26,.16);
}

.xc-chat__send{
  border-radius: 12px;
  border: 1px solid rgba(177,18,26,.55);
  background: rgba(177,18,26,.18);
  color: rgba(245,245,247,.92);
  padding: 0 14px;
  font-weight: 600;
  cursor:pointer;
}
.xc-chat__send:hover{
  background: rgba(177,18,26,.26);
}

@media (max-width: 520px){
  .xc-chat{
    right: 16px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    height: 480px;
  }
  .xc-chat__body{
    height: calc(480px - 64px - 64px);
  }
}
.xc-chat-fab{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1400;
}

.xc-chat-launch{
  position: relative;
  right: auto;
  bottom: auto;
}

.xc-chat-hide{
  display:none;
  position:absolute;
  right: -2px;
  top: -10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(10,10,12,.72);
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.45);
}

.xc-chat-hide::before,
.xc-chat-hide::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width: 12px;
  height: 2px;
  background: rgba(245,245,247,.88);
  border-radius: 2px;
}
.xc-chat-hide::before{ transform: translate(-50%,-50%) rotate(45deg); }
.xc-chat-hide::after { transform: translate(-50%,-50%) rotate(-45deg); }

.xc-chat-hide:hover{
  border-color: rgba(177,18,26,.55);
}
.xc-chat-hide:hover::before,
.xc-chat-hide:hover::after{
  background: var(--accent);
}

@media (max-width: 520px){
  .xc-chat-fab{
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .xc-chat-hide{ display:block; }
}
.xc-chat__msg{
  white-space: pre-line;
}

/* ==============================
   MENU PAGE
   ============================== */

.menu-section{ padding: 110px 0 140px; }

.menu-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.menu-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.menu-chip{
  display:inline-flex;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  color: rgba(245,245,247,.86);
  font-size: 13px;
}
.menu-chip:hover{ border-color: rgba(177,18,26,.55); color: var(--accent); background: rgba(177,18,26,.06); }
.menu-chip.is-active{ border-color: rgba(177,18,26,.55); background: rgba(177,18,26,.12); }

.menu-cart-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(245,245,247,.92);
  cursor:pointer;
}
.menu-cart-btn:hover{ border-color: rgba(177,18,26,.55); color: var(--accent); background: rgba(177,18,26,.06); }

.menu-cart-badge{
  min-width: 24px;
  height: 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(177,18,26,.18);
  border: 1px solid rgba(177,18,26,.55);
  font-size: 12px;
}


.xc-dish{
  border-radius: var(--radius-md);
  overflow:hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: transform .25s ease, border-color .25s ease;
}
.xc-dish:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
}
.xc-dish__img{
  height: 220px;
  background-size: cover;
  background-position:center;
  transform: scale(1);
  transition: transform .8s ease;
  filter: saturate(1.05);
}
.xc-dish:hover .xc-dish__img{ transform: scale(1.06); }

.xc-dish__body{ padding: 16px; display:flex; flex-direction:column; gap:10px; }
.xc-dish__title{ font-weight: 600; font-size: 16px; }
.xc-dish__desc{ color: rgba(245,245,247,.78); font-size: 14px; line-height: 1.6; }
.xc-dish__note{
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(0,0,0,.18);
  color: rgba(245,245,247,.70);
  font-size: 13px;
}
.xc-dish__note.is-empty{ display:none; }

.xc-dish__bottom{
  margin-top: auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}
.xc-dish__price strong{ font-size: 16px; }
.xc-dish__price .muted{ display:block; font-size: 12px; margin-top: 2px; }

.xc-dish__add{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(245,245,247,.92);
  cursor:pointer;
  display:grid;
  place-items:center;
}
.xc-dish__add:hover{
  border-color: rgba(177,18,26,.55);
  color: var(--accent);
  background: rgba(177,18,26,.06);
  transform: translateY(-2px);
}

.xc-cart-backdrop{
  position:fixed; inset:0;
  background: rgba(0,0,0,.65);
  display:none;
  z-index: 1600;
}
.xc-cart-backdrop.is-open{ display:block; }

.xc-cart{
  position: fixed;
  right: 24px;
  top: 120px;
  bottom: 24px;
  width: 380px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(circle at 25% 15%, rgba(177,18,26,.16), transparent 55%), rgba(18,18,20,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
  overflow:hidden;
  z-index: 1700;
  display:none;
}

.xc-cart.is-open{
  display:block;
}

.xc-cart__body{
  overflow:auto;
  height: calc(100% - 160px);
}

@media (max-width: 520px){
  .xc-cart{
    right: 16px;
    left: 16px;
    top: 84px;
    bottom: 16px;
    width: auto;
  }
}
.xc-cart__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(10,10,12,.45);
}
.xc-cart__head strong{ font-family:"Playfair Display", serif; font-size: 16px; }

.xc-cart__close{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  position:relative;
}
.xc-cart__close::before,
.xc-cart__close::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width:18px; height:2px;
  background: rgba(245,245,247,.86);
  border-radius:2px;
}
.xc-cart__close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.xc-cart__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.xc-cart__close:hover{ border-color: rgba(177,18,26,.55); }
.xc-cart__close:hover::before,
.xc-cart__close:hover::after{ background: var(--accent); }

.xc-cart__body{
  padding: 12px 12px;
  height: calc(100% - 72px - 84px);
  overflow:auto;
}

.xc-cart__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  padding: 12px 12px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}
.xc-cart__item-title{ font-weight: 600; font-size: 14px; }
.xc-cart__item-meta{ font-size: 12px; color: rgba(245,245,247,.72); margin-top: 4px; }

.xc-qty{
  display:flex; align-items:center; gap:8px;
}
.xc-qty button{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(245,245,247,.92);
  cursor:pointer;
}
.xc-qty button:hover{ border-color: rgba(177,18,26,.55); color: var(--accent); background: rgba(177,18,26,.06); }
.xc-qty .xc-qty-val{ min-width: 22px; text-align:center; font-weight:600; }

.xc-cart__foot{
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(10,10,12,.35);
  padding: 14px 14px;
}
.xc-cart__total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
}
.xc-cart__actions{ display:flex; gap:10px; }
.xc-cart__actions .btn{ flex:1; }

@media (max-width: 520px){
  .xc-cart{ right: 16px; top: 92px; height: calc(100vh - 120px); }
}


.menu-page .menu-section{ padding: 30px 0 120px; }

.xc-menu-sticky{
  position: sticky;
  top: 88px;
  z-index: 40;
  background: rgba(10,10,12,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 18px;
}

.xc-menu-sticky__row{
  display:flex;
  align-items:center;
  gap: 12px;
  padding-bottom: 14px;
}

.xc-cat-btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  color: rgba(245,245,247,.92);
}
.xc-cat-btn:hover{
  border-color: rgba(177,18,26,.55);
  background: rgba(177,18,26,.06);
}
.xc-cat-ic{
  width: 18px; height: 12px;
  position: relative;
  display:inline-block;
}
.xc-cat-ic::before,
.xc-cat-ic::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background: currentColor;
  border-radius: 2px;
}
.xc-cat-ic::before{ top:0; box-shadow: 0 5px 0 0 currentColor; }
.xc-cat-ic::after{ bottom:0; }
.xc-cat-txt{ font-size: 14px; font-weight: 600; }

.xc-search{
  position: relative;
  flex: 1;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  padding: 0 12px 0 40px;
}
.xc-search__icon{
  position:absolute;
  left: 12px;
  color: rgba(245,245,247,.68);
}
.xc-search input{
  width:100%;
  border:0;
  outline:0;
  background: transparent;
  color: rgba(245,245,247,.92);
  font-size: 14px;
}
.xc-search__clear{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(245,245,247,.70);
  cursor:pointer;
  display:none;
}
.xc-search.has-text .xc-search__clear{ display:block; }

.xc-menu-layout{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap: 26px;
  margin-top: 0;
  align-items: start;
}

.xc-menu-side{
  position: sticky;
  top: 140px;
  height: calc(100vh - 160px);
  overflow:auto;
  padding-right: 10px;
}
.xc-menu-main{
  min-width: 0;
}
.xc-side-cat{
  display:block;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  color:#fff;
  margin-bottom:10px;
  transition:.25s;
}

.xc-side-cat:hover{
  border-color:var(--accent);
  color:var(--accent);
}

.xc-side-cat.is-active{
  border-color:var(--accent);
  background:rgba(177,18,26,.12);
  color:var(--accent);
}
.xc-cat-title{
  margin: 0 0 14px;
  font-size: 22px;
  font-family: "Playfair Display", serif;
}

.xc-cat-section{
  padding-top: 12px;
}

.menu-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap:24px;
}
@media (max-width: 1100px){
  .menu-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 920px){
  .xc-menu-layout{ grid-template-columns: 1fr; }
  .xc-menu-side{ display:none; }
  .menu-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .menu-grid{ grid-template-columns: 1fr; }
}

.xc-cat-backdrop{
  position: fixed; inset:0;
  background: rgba(0,0,0,.65);
  display:none;
  z-index: 1600;
}
.xc-cat-backdrop.is-open{ display:block; }

.xc-cat-drawer{
  position: fixed;
  left: 16px;
  right: 16px;
  top: 78px;
  max-height: calc(100vh - 120px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(18,18,20,.96);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
  overflow:hidden;
  display:none;
  z-index: 1700;
}
.xc-cat-drawer.is-open{ display:block; }

.xc-cat-drawer__head{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.xc-cat-drawer__close{
  width: 38px; height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(245,245,247,.86);
  cursor:pointer;
}
.xc-cat-drawer__list{
  padding: 12px 12px;
  overflow:auto;
  max-height: calc(100vh - 200px);
}
.xc-cat-link{
  display:block;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(245,245,247,.86);
  margin-bottom: 10px;
}
.xc-cat-link:hover{
  border-color: rgba(177,18,26,.55);
  background: rgba(177,18,26,.08);
  color: var(--accent);
}

.xc-reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.xc-reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}
.xc-cart{
  display:none;
  flex-direction: column;
}

.xc-cart.is-open{
  display:flex;
}

.xc-cart__head,
.xc-cart__foot{
  flex: 0 0 auto;
}

.xc-cart__body{
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;

}
@media (max-width: 920px){
  body.xc-header-hidden .site-header{ transform: translateY(-110%); }
  .site-header{ transition: transform .28s ease; }
}

.xc-cart__actions{
  display:flex;
  gap:12px;
}

.xc-cart__actions .btn{
  flex: 1 1 0;
  height: 44px;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
}

.xc-cart__actions .btn-ghost{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
}

.xc-cart__actions .btn-ghost:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
}

.xc-cart__actions .btn-primary{
  background: var(--accent);
  color:#fff;
  border: 1px solid transparent;
}

@media (max-width: 560px){
  .xc-menu-sticky__row{
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  #xcCatToggle{ order: 1; flex: 0 0 auto; }
  #xcCartOpen{ order: 2; flex: 0 0 auto; margin-left: auto; }

  .xc-search{
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
  }
}
/* =======================
   XC ACCOUNT: statuses
======================= */
.xc-status{
  display:inline-flex;
  align-items:center;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.2px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.xc-status--new{
  background: rgba(59,130,246,.18);
  border-color: rgba(59,130,246,.35);
  color:#dbeafe;
}

.xc-status--confirmed{
  background: rgba(99,102,241,.18);
  border-color: rgba(99,102,241,.35);
  color:#e0e7ff;
}

.xc-status--in_progress{
  background: rgba(245,158,11,.18);
  border-color: rgba(245,158,11,.35);
  color:#ffedd5;
}

.xc-status--done{
  background: rgba(16,185,129,.18);
  border-color: rgba(16,185,129,.35);
  color:#d1fae5;
}

.xc-status--canceled{
  background: rgba(239,68,68,.18);
  border-color: rgba(239,68,68,.35);
  color:#fee2e2;
}
.btn-account{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: .2px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    height: 42px;
    padding: 0 20px;
    background: var(--accent);
    color: #fff;
    box-shadow: none;
}

.btn-account:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    background: var(--accent-hover);
}
@media (max-width: 520px){
.btn-primary {
    height: 38px;
    padding: 0px 10px;
    font-size: 14px;
    border-radius: 12px;
}
.btn-account {
    display: none;
}
}
.xc-account-nav{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}

.xc-account-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  padding-bottom:6px;
  border-bottom:2px solid transparent;
}

.xc-account-nav a:hover{
  border-bottom:2px solid #c00;
}
.xc-dish--add{
  display:flex;
  min-height:100%;
  text-decoration:none;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.02);
  transition:.2s ease;
}

.xc-dish--add:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.04);
}

.xc-dish__body--add{
  width:100%;
  min-height:320px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
}

.xc-dish__plus{
  font-size:42px;
  line-height:1;
  font-weight:600;
  opacity:.9;
}


#xcFrontDishForm .field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

#xcFrontDishForm label{
  font-size:13px;
  opacity:.7;
}

#xcFrontDishForm input,
#xcFrontDishForm textarea,
#xcFrontDishForm select{
  width:100%;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:10px 12px;
  color:#fff;
  font-size:14px;
  transition:.15s;
}

#xcFrontDishForm input:focus,
#xcFrontDishForm textarea:focus,
#xcFrontDishForm select:focus{
  outline:none;
  border-color:#c41212;
  background:rgba(255,255,255,.05);
}


#xcFrontDishForm textarea{
  resize:vertical;
  min-height:80px;
}


#xcFrontDishForm select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='white' d='M0 0 L5 6 L10 0'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
  background-size:10px;
  padding-right:30px;
}

#xcFrontDishForm .btn{
  min-width:180px;
}
.btn {
    cursor: pointer;
}
#xcFrontDishImagePreview{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:14px;
}

#xcTabDishBtn,
#xcTabCatBtn,
#xcTabEditBtn{
  min-width:160px;
    background:#c41212;
  color:#fff;
  border:none;
  border-radius:10px;
  padding:10px 16px;
  font-size:14px;
  cursor:pointer;
  transition:.15s;
}
#xcFrontDishForm button{
  background:#c41212;
  color:#fff;
  border:none;
  border-radius:10px;
  padding:10px 16px;
  font-size:14px;
  cursor:pointer;
  transition:.15s;
}

#xcFrontDishForm button:hover{
  background:#e01818;
}
#xcFrontDishForm select{
  background:#111;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

#xcFrontDishForm select option{
  background:#111;
  color:#fff;
}
.menu-grid{
  align-items:stretch;
}

.xc-dish{
  display:flex;
  flex-direction:column;
  height:100%;
}

.xc-dish__body{
  display:flex;
  flex-direction:column;
  flex:1;
}

.xc-dish__desc{
  min-height:44px;
}

.xc-dish__bottom{
  margin-top:auto;
}
.xc-dish__desc{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.xc-dish__title{
  min-height:48px;
  line-height:1.25;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
#xcTabEdit select{
  width:100%;
  max-width:420px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:10px 12px;
  color:#fff;
  font-size:14px;
}

#xcTabEdit select option{
  background:#111;
  color:#fff;
}
#xcFrontEditDishForm .btn,
#xcFrontEditDishForm button{
  background:#c41212;
  color:#fff;
  border:none;
  border-radius:10px;
  padding:10px 16px;
  font-size:14px;
  cursor:pointer;
  transition:.15s;
}

#xcFrontEditDishForm .btn:hover,
#xcFrontEditDishForm button:hover{
  background:#e01818;
}

#xcFrontEditDishForm .btn.btn-ghost{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

#xcFrontEditDishForm .btn.btn-ghost:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.2);
}
#xcTabCategory label{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  color:rgba(245,245,247,.78);
}

#xcTabCategory select,
#xcTabCategory input[type="number"]{
  width:100%;
  height:48px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-size:14px;
  outline:none;
  transition:.15s;
}

#xcTabCategory select:focus,
#xcTabCategory input[type="number"]:focus{
  border-color:#c41212;
  background:rgba(255,255,255,.05);
}

#xcTabCategory select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='white' d='M0 0 L5 6 L10 0'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:10px;
  padding-right:34px;
}

#xcTabCategory select option{
  background:#111;
  color:#fff;
}
