/* ===== Variables ===== */
:root {
  --bg: #0b0b0b;
  --elev: #121212;
  --text: #f3f3f3;
  --muted: #c8c8c8;
  --brand: #d6b26d; /* soft gold */
  --brand-2: #e7d3b0;
  --accent: #caa46a;
  --card: #151515;
  --outline: 1px solid rgba(255,255,255,.12);
}

/* Light / Rose‑Gold Theme */
:root.light {
  --bg: #fffaf6;
  --elev: #fff5ee;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --brand: #b98b5e; /* rose‑gold */
  --brand-2: #9d7047;
  --accent: #c19a6b;
  --card: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; line-height: 1.5; }
img { max-width: 100%; display: block; }

.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,11,11,.7); backdrop-filter: blur(12px); border-bottom: var(--outline); }
:root.light .site-header { background: rgba(255,250,246,.7); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; }
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--text); }

.nav-toggle { display: none; background: none; color: var(--text); border: var(--outline); padding: .5rem .75rem; border-radius: .5rem; }
.nav-list { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.nav-list a { color: var(--text); text-decoration: none; }
.nav-list a:hover { color: var(--brand); }

/* Hero */
.hero { background: radial-gradient(1000px 400px at 20% 0%, rgba(214,178,109,.25), transparent), linear-gradient(180deg, rgba(214,178,109,.08), transparent 60%), var(--bg); border-bottom: var(--outline); }
.hero-inner { padding: clamp(3rem, 8vw, 7rem) 0; text-align: center; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); letter-spacing: .02em; }
.hero p { color: var(--muted); font-size: 1.1rem; }

/* Sections */
.section { padding: 3rem 0; }
.section.alt { background: var(--elev); }
.section-title { font-size: 1.8rem; margin: 0 0 1rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.card { background: var(--card); border: var(--outline); border-radius: 14px; padding: 1.25rem; }
.card h3 { margin-top: 0; color: var(--brand); }

/* Gallery */
.grid.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .75rem; }
.grid.gallery figure { margin: 0; border-radius: 12px; overflow: hidden; background: var(--card); border: var(--outline); }
.grid.gallery figcaption { padding: .5rem .75rem; color: var(--muted); font-size: .9rem; }
.grid.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; height: auto; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.price-card { background: var(--card); border: var(--outline); border-radius: 14px; padding: 1.25rem; }
.price { font-weight: 700; font-size: 1.4rem; color: var(--brand); margin: .25rem 0 0; }

/* About */
.about { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1rem; }
.hours { background: var(--card); border: var(--outline); border-radius: 14px; padding: 1rem; }
.checks { padding-left: 1rem; }
.checks li { margin-bottom: .25rem; }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card, .contact-form { background: var(--card); border: var(--outline); border-radius: 14px; padding: 1.25rem; }
.contact-form label { display: block; margin-bottom: .75rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: .7rem .8rem; border-radius: 10px; border: 1px solid rgba(255,255,255,.18); background: transparent; color: var(--text); }
:root.light .contact-form input, :root.light .contact-form textarea { border-color: rgba(0,0,0,.18); }

/* Buttons */
.btn { display: inline-block; padding: .75rem 1rem; border-radius: 999px; border: 1px solid var(--brand); color: var(--text); text-decoration: none; cursor: pointer; }
.btn.small { padding: .45rem .8rem; font-size: .9rem; }
.btn.tiny { padding: .35rem .7rem; font-size: .8rem; }
.btn-primary { background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #121212; border: none; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn-outline:hover { background: rgba(214,178,109,.1); }
.link { color: var(--brand); text-decoration: underline; }

.center { text-align: center; }

/* Footer */
.site-footer { border-top: var(--outline); background: var(--elev); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; color: var(--muted); }

/* Utilities */
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* Responsive */
@media (max-width: 900px) {
  .about, .contact { grid-template-columns: 1fr; }
}
@media (max-width: 840px) {
  .nav-toggle { display: inline-block; }
  .nav-list { position: absolute; right: 4vw; top: 58px; background: var(--elev); border: var(--outline); padding: .75rem; border-radius: .75rem; display: none; flex-direction: column; }
  .nav-list.show { display: flex; }
}
