/* styles.css */
:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;

  --card: #ffffff;
  --border: #e7e9ee;

  /* stronger luxury gold */
  --accent: #b8892a;
  --accentSoft: rgba(184, 137, 42, 0.22);

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --max: 1040px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 20px 18px 92px; }

.header { padding: 8px 0 18px; }
.logoTop { display: flex; justify-content: center; margin: 8px 0 18px; }
.logoTop img { max-width: 240px; width: 100%; height: auto; }

.topbar { display: flex; justify-content: center; align-items: center; padding: 0 0 10px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(184,137,42,.18);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  box-shadow: var(--shadow);
}
.hero h2 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  max-width: 62ch;
}

.ctaRow { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px; 
  align-items: center; 
}

.heroLeft {
  text-align: center;
}

.heroLeft .ctaRow {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 650;
  font-size: 14px;
  transition: transform .08s ease, box-shadow .12s ease, border-color .12s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  border-color: #d9dce3;
}
.btnPrimary {
  border-color: rgba(184,137,42,.55);
  background: linear-gradient(135deg, rgba(184,137,42,.30), rgba(17,24,39,.05));
}
.btnPrimary strong { color: #111827; }
.btnGhost { color: var(--text); background: #fff; }
.full { width: 100%; }

.heroRight {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.heroPhoto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: #f2f2f6;
}
.heroRightInner {
  padding: 12px 12px 14px;
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  display: grid;
  gap: 10px;
}
.miniRow { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.mini b { font-size: 13px; }
.mini span { font-size: 12px; color: var(--muted); }

.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.card h3 { margin: 0 0 10px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.services { display: grid; gap: 10px; margin-top: 10px; }
.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfbfc, #ffffff);
}
.service b { font-size: 14px; }
.service small { grid-column: 1 / -1; color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.tag {
  align-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.note { margin-top: 12px !important; font-size: 13px !important; }

.gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
  background: #f2f2f6;
  display: block;
}
.galleryCaption { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.5; }

.list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.list li { margin: 6px 0; }

.spacer { height: 12px; }
.spacer2 { height: 14px; }

.footer {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}
.footerBrand { color: var(--text); }
.footerCopy { margin-left: 8px; }

.stickyCta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.stickyInner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.stickyInner .btn { flex: 1; }
.hideMobile { display: inline-flex; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero h2 { font-size: 28px; }
  .hideMobile { display: none; }
  .logoTop img { max-width: 220px; }
}
