:root{
  --bg:#060711;
  --bg-alt:#0c0e1a;
  --panel:#101223;
  --panel-soft:#15172b;
  --gold:#d9b56f;
  --gold-soft:#f3e1a6;
  --accent:#ff9273;
  --text:#f8f8fb;
  --muted:#a0a3bc;
  --border:#272a3f;
}

*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top,#191b31 0,var(--bg) 55%);
  color:var(--text);
  line-height:1.6;
}
a{color:var(--gold-soft);text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%;display:block;}

.rc-shell{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 1.4rem;
}

/* Header */
.rc-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(6,7,17,0.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(217,181,111,0.2);
}
.rc-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.6rem 0;
}
.rc-brand{
  display:flex;
  align-items:center;
  gap:0.7rem;
}
.rc-brand img{
  width:46px;
  height:auto;
}
.rc-brand-title{
  display:block;
  font-size:0.95rem;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold-soft);
}
.rc-brand-tagline{
  display:block;
  font-size:0.75rem;
  color:var(--muted);
}
.rc-nav-links{
  display:flex;
  gap:1.6rem;
}
.rc-nav-links a{
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--muted);
}
.rc-nav-links a:hover{color:var(--gold-soft);}
.rc-nav-toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  background:none;
  border:none;
  cursor:pointer;
}
.rc-nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--gold-soft);
}

/* Buttons */
.rc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0.75rem 1.9rem;
  font-size:0.95rem;
  border:1px solid rgba(217,181,111,0.75);
  cursor:pointer;
  text-decoration:none;
  transition:all 0.18s ease;
}
.rc-btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#181818;
  font-weight:600;
}
.rc-btn-primary:hover{filter:brightness(1.05);}
.rc-btn-ghost{
  background:transparent;
  color:var(--gold-soft);
}
.rc-btn-ghost:hover{
  background:rgba(217,181,111,0.1);
}

/* Hero */
.rc-hero{
  padding:2.2rem 0 3.2rem;
}
.rc-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,0.9fr);
  gap:2.6rem;
  align-items:center;
}
.rc-hero-copy h1{
  font-size:2.4rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--gold-soft);
}
.rc-hero-copy p{
  margin-top:0.9rem;
  color:var(--muted);
}
.rc-hero-bullets{
  list-style:none;
  margin-top:0.9rem;
}
.rc-hero-bullets li{
  font-size:0.95rem;
  padding-left:1.2rem;
  position:relative;
  color:var(--text);
}
.rc-hero-bullets li::before{
  content:"●";
  position:absolute;
  left:0;
  top:0.3rem;
  font-size:0.5rem;
  color:var(--gold-soft);
}
.rc-hero-actions{
  margin-top:1.6rem;
  display:flex;
  flex-wrap:wrap;
  gap:0.9rem;
}
.rc-hero-note{
  margin-top:0.8rem;
  font-size:0.85rem;
  color:var(--muted);
}

/* Hero slider card */
.rc-hero-slider{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:var(--panel);
  border:1px solid rgba(217,181,111,0.25);
  box-shadow:0 26px 60px rgba(0,0,0,0.6);
  min-height:260px;
}
.rc-hero-slider .rc-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 0.6s ease;
}
.rc-hero-slider .rc-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.rc-hero-slider .rc-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(0,0,0,0.65),rgba(0,0,0,0.15));
}
.rc-slide-label{
  position:absolute;
  left:1.4rem;
  bottom:1.1rem;
  padding:0.25rem 0.7rem;
  border-radius:999px;
  background:rgba(0,0,0,0.7);
  color:#fff;
  font-size:0.78rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.rc-slide.rc-slide-active{
  opacity:1;
  z-index:1;
}
.rc-slide-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:none;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  cursor:pointer;
  font-size:1.3rem;
  z-index:2;
}
.rc-slide-prev{left:10px;}
.rc-slide-next{right:10px;}
.rc-slide-dots{
  position:absolute;
  bottom:10px;
  right:14px;
  display:flex;
  gap:6px;
  z-index:2;
}
.rc-slide-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,0.35);
  cursor:pointer;
}
.rc-slide-dot.rc-active{
  width:20px;
  background:var(--gold-soft);
}

/* Sections */
.rc-section{
  padding:3.2rem 0;
}
.rc-section-soft{
  padding:3.2rem 0;
  background:radial-gradient(circle at top,var(--bg-alt) 0,var(--panel-soft) 60%);
}
.rc-section-head{
  text-align:center;
  max-width:620px;
  margin:0 auto 1.8rem;
}
.rc-section-head-left{
  text-align:left;
  margin-left:0;
}
.rc-section-head h2{
  font-size:1.8rem;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold-soft);
}
.rc-section-head p{
  margin-top:0.7rem;
  color:var(--muted);
}

/* Cards for services */
.rc-card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}
.rc-card{
  background:var(--panel);
  border-radius:18px;
  border:1px solid var(--border);
  padding:1.3rem 1.4rem 1.2rem;
}
.rc-card h3{
  font-size:1.1rem;
  margin-bottom:0.6rem;
  color:var(--gold-soft);
}
.rc-card ul{
  list-style:none;
}
.rc-card li{
  font-size:0.93rem;
  color:var(--muted);
  margin:0.25rem 0;
}

/* Pricing */
.rc-price-grid{
  max-width:640px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--panel);
}
.rc-price-row{
  display:flex;
  justify-content:space-between;
  padding:0.65rem 1.2rem;
  font-size:0.95rem;
  border-bottom:1px solid #1f2235;
}
.rc-price-row:nth-child(odd){
  background:rgba(255,255,255,0.01);
}
.rc-price-row-highlight{
  background:rgba(255,146,115,0.08);
}
.rc-price-row:last-child{
  border-bottom:none;
}
.rc-amount{
  color:var(--gold-soft);
  font-weight:600;
}
.rc-price-note{
  text-align:center;
  margin-top:0.9rem;
  font-size:0.85rem;
  color:var(--muted);
}

/* Gallery */
.rc-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1.2rem;
}
.rc-gallery-grid figure{
  background:var(--panel);
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  cursor:pointer;
}
.rc-gallery-grid img{
  width:100%;
  height:190px;
  object-fit:cover;
  transition:transform 0.35s ease, filter 0.35s ease;
}
.rc-gallery-grid figure:hover img{
  transform:scale(1.06);
  filter:brightness(1.1);
}
.rc-gallery-grid figcaption{
  padding:0.5rem 0.75rem 0.7rem;
  font-size:0.85rem;
  color:var(--muted);
}

/* Lightbox */
.rc-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 0.25s ease;
  z-index:60;
}
.rc-lightbox.rc-open{
  opacity:1;
  visibility:visible;
}
.rc-lightbox-image{
  max-width:90vw;
  max-height:80vh;
  border-radius:16px;
  border:1px solid rgba(217,181,111,0.45);
  box-shadow:0 26px 60px rgba(0,0,0,0.8);
}
.rc-lightbox-close{
  position:absolute;
  top:14px;
  right:20px;
  font-size:2.1rem;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}
.rc-lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:rgba(0,0,0,0.7);
  color:#fff;
  cursor:pointer;
}
.rc-lightbox-prev{left:18px;}
.rc-lightbox-next{right:18px;}

/* Contact */
.rc-contact-grid{
  display:grid;
  grid-template-columns:minmax(0,0.95fr) minmax(0,1.05fr);
  gap:2.4rem;
  align-items:flex-start;
}
.rc-contact-list{
  list-style:none;
  margin-top:0.9rem;
}
.rc-contact-list li{
  margin:0.35rem 0;
}
.rc-contact-note{
  margin-top:0.7rem;
  font-size:0.85rem;
  color:var(--muted);
}
.rc-contact-form-wrap{
  background:var(--panel);
  border-radius:20px;
  border:1px solid var(--border);
  padding:1.4rem 1.5rem 1.5rem;
}
.rc-form h3{
  font-size:1.1rem;
  margin-bottom:0.7rem;
  color:var(--gold-soft);
}
.rc-form-row{
  margin-bottom:0.9rem;
}
.rc-form label{
  display:block;
  font-size:0.86rem;
  margin-bottom:0.25rem;
  color:var(--muted);
}
.rc-form input,
.rc-form select,
.rc-form textarea{
  width:100%;
  padding:0.55rem 0.7rem;
  border-radius:8px;
  border:1px solid #272a3f;
  background:#050716;
  color:var(--text);
  font-size:0.95rem;
  outline:none;
  transition:border-color 0.16s ease, box-shadow 0.16s ease;
}
.rc-form input:focus,
.rc-form select:focus,
.rc-form textarea:focus{
  border-color:var(--gold-soft);
  box-shadow:0 0 0 1px rgba(243,225,166,0.4);
}
.rc-form textarea{resize:vertical;}
.rc-form-btn{width:100%;margin-top:0.2rem;}
.rc-form-status{
  margin-top:0.6rem;
  font-size:0.85rem;
  color:var(--muted);
}

/* Scroll reveal */
.rc-reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.rc-reveal.rc-visible{
  opacity:1;
  transform:translateY(0);
}

/* Footer */
.rc-footer{
  padding:1.2rem 0;
  border-top:1px solid rgba(217,181,111,0.25);
  background:#05050a;
}
.rc-footer p{
  font-size:0.8rem;
  text-align:center;
  color:var(--muted);
}

/* Responsive */
@media(max-width:900px){
  .rc-hero-grid{
    grid-template-columns:1fr;
  }
  .rc-hero{
    padding-top:1.8rem;
  }
}
@media(max-width:768px){
  .rc-nav-links{
    position:absolute;
    inset:100% 0 auto 0;
    background:#050612;
    flex-direction:column;
    padding:0.6rem 1.4rem 0.9rem;
    border-bottom:1px solid rgba(217,181,111,0.25);
    display:none;
  }
  .rc-nav-links.rc-open{display:flex;}
  .rc-nav-toggle{display:flex;}
  .rc-contact-grid{
    grid-template-columns:1fr;
  }
  .rc-gallery-grid img{
    height:160px;
  }
}
@media(max-width:520px){
  .rc-hero-copy h1{font-size:1.9rem;}
  .rc-brand-title{font-size:0.9rem;}
}
