:root{
  /* Base */
  --bg: #fbfaf7;
  --bg2:#fffdf8;
  --card:#ffffff;
  --text:#171717;
  --muted:#6b6b6b;
  --border: rgba(17,17,17,.10);

  /* Gold palette */
  --gold:#c7a24a;
  --gold2:#e6d39a;
  --gold3:#8a6a1f;
  --accent: var(--gold);

  /* UI */
  --radius: 18px;
  --shadow: 0 14px 40px rgba(17,17,17,.10);
  --shadow2: 0 10px 26px rgba(17,17,17,.08);
  --ring: 0 0 0 4px rgba(199,162,74,.18);

  /* Typography */
  --font: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  --font-h: ui-serif, Georgia, "Times New Roman", serif;

  /* Layout */
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
background:
  radial-gradient(900px 500px at 15% -10%, rgba(199,162,74,.18), transparent 60%),
  radial-gradient(700px 420px at 90% 0%, rgba(230,211,154,.22), transparent 55%),
  linear-gradient(180deg, var(--bg), var(--bg2));
color: var(--text);
line-height: 1.6;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block; border-radius:14px}

header{
  position:sticky;
  top:0;
  z-index:10;

  background: rgba(251,250,247,.78);
  border-bottom: 1px solid rgba(17,17,17,.10);
  backdrop-filter: blur(10px);
}

nav{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.nav-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-links a{
  padding:8px 10px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}

.nav-links a:hover{
  border-color: var(--border);
  color: var(--text);
  background: rgba(199,162,74,.10);
}

section{
  max-width:1100px;
  margin:0 auto;
  padding:40px 18px;
}

h1{font-size:40px; line-height:1.12; margin:0 0 10px}
h2{font-size:28px; margin:0 0 18px}
h3{margin:0 0 10px}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:center;
  padding-top:34px;
}

.hero p{color:var(--muted); margin:0 0 14px}

.hero-card{
  background: rgba(255,255,255,.90);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}

.hero-title{font-weight:800; margin:10px 0 0}
.hero-subtitle{color:var(--muted); margin:6px 0 0}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;

  background: linear-gradient(180deg, rgba(199,162,74,.22), rgba(199,162,74,.12));
  color: var(--text);
  font-weight: 800;

  border: 1px solid rgba(199,162,74,.55);
  box-shadow: 0 14px 30px rgba(17,17,17,.10);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17,17,17,.12);
  border-color: rgba(199,162,74,.70);
}
.btn:active{ transform: translateY(0); }

}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.btn-ghost{
  background: transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.card{
  background: rgba(255,255,255,.90);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.icon{font-size:22px}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.media{padding:12px}

.muted{color:var(--muted)}
code{
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  padding:2px 6px;
  border-radius:8px;
}

.price-box{
  margin-top:14px;
  padding:18px;
  border-radius:var(--radius);
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
}

.price-box h3{margin-bottom:12px}
.price-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.12);
}
.price-item:last-child{border-bottom:none}

.mt{margin-top:14px}

.checklist{
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.checklist li{
  margin:8px 0;
  padding-left:28px;
  position:relative;
  color:var(--muted);
}
.checklist li::before{
  content:"✅";
  position:absolute;
  left:0; top:0;
}

footer{
  max-width:1100px;
  margin:0 auto;
  padding:24px 18px 40px;
  color:var(--muted);
  border-top:1px solid var(--border);
}

@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr);}
  .hero{grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  h1{font-size:32px}
  section{padding:28px 14px}
  nav{padding:12px 14px}
  .nav-links{gap:10px}
  .grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .price-item{flex-direction:column; align-items:flex-start}
}


/* Brand link instead of <strong> */
nav .brand{
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
nav .brand:hover{ opacity: .9; }

/* Active nav item */
.nav-links a.active{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Expandable service details */
.details{
  margin-top: 10px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.details summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--accent);
  list-style: none;
}
.details summary::-webkit-details-marker{ display:none; }
.details summary:after{
  content:" ▾";
  opacity:.8;
}
.details[open] summary:after{ content:" ▴"; }
.check{
  margin: 10px 0 0;
  padding-left: 18px;
}
.check li{ margin: 6px 0; }

/* Prices page */
.hero.compact{
  padding: 26px 22px;
}
.price-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}
.price-col{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.price-col-head h2{
  margin: 0 0 6px;
  font-size: 20px;
}
.price-list{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.price-item{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}
.price-item strong{
  font-size: 16px;
  white-space: nowrap;
}
.note{
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
}

/* Responsive for price columns */
@media (max-width: 880px){
  .price-columns{ grid-template-columns: 1fr; }
}
