:root{
  color-scheme: light;

  --bg:#ffffff;
  --card:#ffffff;
  --card2:#f6f6f6;

  --text:#111111;
  --muted:rgba(0,0,0,.72);

  --line:rgba(0,0,0,.10);
  --line2:rgba(0,0,0,.14);

  --accent:#7c3aed;
  --accent2:#22c55e;

  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius:18px;
  --radius2:14px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line2);
  background:rgba(0,0,0,.04);
  color:var(--text);
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-1px);
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.18);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.65));
  border-color: rgba(0,0,0,.12);
  color:#fff;
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,197,94,.8));
  border-color: rgba(0,0,0,.18);
}
.btn.ghost{ background:transparent; }

/* Header / Nav */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.85);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:200px;
}
.logo-mark{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, rgba(124,58,237,1), rgba(34,197,94,.8));
  box-shadow: var(--shadow);
}
.brand-name{ line-height:1.05; }
.brand-name strong{display:block; font-size:16px; letter-spacing:.5px}
.brand-name span{display:block; font-size:12px; color:var(--muted)}

.nav{
  display:flex; align-items:center; gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:var(--line2);
  background:rgba(0,0,0,.04);
}

.nav a.active{
  color:var(--text);
  border-color:var(--line2);
  background:rgba(0,0,0,.06);
}

/* Hero */
.hero{ padding:42px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}
.hero-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.03);
  font-size:12px;
  font-weight:700;
  color: var(--muted);
}
.hero h1{
  margin:8px 0 10px;
  font-size:44px;
  letter-spacing:-.6px;
}
@media (max-width: 520px){ .hero h1{font-size:36px} }
.hero p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }
.hero-side{ display:grid; gap:12px; }

.info-card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.info-title{font-weight:800; margin:0 0 6px}
.info-text{color:var(--muted); margin:0; line-height:1.55; font-size:14px}

/* Sections / Cards */
.section{padding:22px 0}
.section h2{
  margin:0 0 12px;
  font-size:22px;
  letter-spacing:-.2px;
}
.section .sub{margin:0 0 14px; color:var(--muted); line-height:1.6}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
@media (max-width: 900px){ .grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 560px){ .grid{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding:14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6; font-size:14px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

/* Table (for optional pages) */
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--card);
}
.table th, .table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-size:14px;
}
.table th{color: var(--text); font-weight:800}
.table tr:last-child td{border-bottom:none}
.table .price{color: var(--text); font-weight:800}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
@media (max-width: 900px){ .gallery{grid-template-columns:repeat(3,1fr)} }
@media (max-width: 560px){ .gallery{grid-template-columns:repeat(2,1fr)} }
.gallery a{
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background: var(--card);
  display:block;
}
.gallery img{width:100%; height:160px; object-fit:cover}
@media (max-width: 560px){ .gallery img{height:140px} }

/* Forms */
.form{ display:grid; gap:10px; }
.field{ display:grid; gap:6px; }
label{font-weight:700; font-size:13px; color: rgba(0,0,0,.80);}

input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line2);
  background: var(--card);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.helper{color:var(--muted); font-size:12px; line-height:1.5}

.notice{
  border:1px solid rgba(34,197,94,.35);
  background: rgba(34,197,94,.12);
  border-radius:16px;
  padding:12px 12px;
  color: var(--text);
  display:none;
}
.notice.show{display:block}

/* Footer + mobile bar */
.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0 90px;
  color:var(--muted);
  font-size:13px;
}
.mobile-bar{
  position:fixed;
  bottom:10px;
  left:10px;
  right:10px;
  z-index:60;
  display:none;
  gap:10px;
}
.mobile-bar a{
  flex:1;
  text-align:center;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  font-weight:900;
}
.mobile-bar a.primary{
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.65));
  border-color: rgba(0,0,0,.12);
  color:#fff;
}
@media (max-width: 900px){
  .mobile-bar{display:flex}
}

.price-list{
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;          /* removes bullets */
}

.price-list li{
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-list li span{
  flex: 1;
  min-width: 0;
  text-align: left;
}

.price-list li strong{
  margin-left: auto;         /* forces to far right */
  min-width: 72px;
  text-align: right;
  white-space: nowrap;
}

/* --- Carousel --- */
.carousel { width: 100%; margin: 1rem 0; }
.carousel__viewport {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;      /* responsive height */
  background: #000;
}
@media (max-width: 640px) {
  .carousel__viewport { aspect-ratio: 4 / 3; }
}
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills nicely on mobile */
  opacity: 0;
  transition: opacity 500ms ease;
}
.carousel__slide.is-active { opacity: 1; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 44px;
  background: rgba(0,0,0,0.45);
  color: #fff;
}
.carousel__btn--prev { left: 10px; }
.carousel__btn--next { right: 10px; }
@media (max-width: 640px) {
  .carousel__btn { width: 40px; height: 40px; line-height: 40px; font-size: 24px; }
}

.carousel__dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.carousel__dot.is-active { background: rgba(255,255,255,0.95); }

