:root {
  --bg: #fbf7f1;
  --ink: #1d1a17;
  --muted: #6d655d;
  --gold: #b8924a;
  --gold-dark: #8f6f33;
  --card: #ffffff;
  --line: #e9e1d6;
  --radius: 14px;
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-weight: 300; line-height: 1.6; font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2.4rem, 8vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 5vw, 2.8rem); text-align: center; }
h3 { font-size: 1.35rem; }
.section { padding: 56px 16px; max-width: 1080px; margin: 0 auto; }
.sub { text-align: center; color: var(--muted); margin: -6px 0 26px; }
.muted { color: var(--muted); font-size: .92rem; }

/* buttons */
.btn {
  display: inline-block; background: var(--ink); color: #fff; padding: 14px 26px;
  border-radius: 999px; font-weight: 500; font-size: .95rem; letter-spacing: .02em;
  transition: background .2s, transform .1s;
}
.btn:hover { background: var(--gold-dark); }
.btn:active { transform: scale(.98); }
.btn-ghost { background: transparent; border: 1.5px solid #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.link { color: var(--gold-dark); font-weight: 400; }
.link:hover { text-decoration: underline; }

/* header */
.top {
  position: sticky; top: 0; z-index: 20; background: rgba(251,247,241,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; padding: 10px 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; }
.brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav { display: flex; gap: 22px; align-items: center; font-weight: 400; font-size: .95rem; }
.nav-toggle, .burger { display: none; }

/* hero */
.hero {
  min-height: 78vh; display: grid; place-items: center; text-align: center; color: #fff;
  background-size: cover; background-position: center; position: relative; padding: 60px 16px;
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.6)); }
.hero-inner { position: relative; max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing: .25em; font-size: .75rem; color: #e8d4ad; margin: 0 0 10px; }
.lead { font-size: 1.05rem; opacity: .95; margin: 0 0 26px; }
.cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* info strip */
.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 32px; padding: 14px 16px;
  background: var(--ink); color: #f3ede4; font-size: .9rem; text-align: center;
}
.strip a:hover { color: #e8d4ad; }

/* services */
.cats { display: grid; gap: 14px; }
.cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cat summary {
  list-style: none; display: grid; grid-template-columns: 84px 1fr 28px; align-items: center; gap: 14px;
  cursor: pointer; padding-right: 14px; user-select: none;
}
.cat summary::-webkit-details-marker { display: none; }
.cat summary img { width: 84px; height: 84px; object-fit: cover; }
.cat-title { font-family: var(--font-head); font-size: 1.45rem; font-weight: 600; }
.cat-title small { display: block; font-family: var(--font-body); font-size: .8rem; color: var(--muted); font-weight: 300; }
.chev { width: 10px; height: 10px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .2s; }
.cat[open] .chev { transform: rotate(-135deg); }
.svc-list { list-style: none; margin: 0; padding: 4px 16px 10px; }
.svc-list li {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: baseline;
  padding: 11px 0; border-top: 1px dashed var(--line); font-size: .95rem;
}
.svc-name { font-weight: 400; }
.svc-meta { color: var(--muted); font-size: .8rem; }
.svc-price { font-weight: 500; color: var(--gold-dark); min-width: 44px; text-align: right; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; }

/* about */
.about { display: grid; gap: 28px; align-items: center; }
.about h2 { text-align: left; }
.about-img img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }

/* contact */
.contact-grid { display: grid; gap: 14px; margin-bottom: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.card p { margin: 0 0 6px; }
.map iframe { width: 100%; height: 300px; border: 0; border-radius: var(--radius); }

/* floating call button (mobile) */
.fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 30; background: var(--gold); color: #fff;
  padding: 13px 20px; border-radius: 999px; font-weight: 500; box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

footer { text-align: center; padding: 28px 16px 90px; color: var(--muted); font-size: .85rem; border-top: 1px solid var(--line); }

/* ---- responsive ---- */
@media (min-width: 720px) {
  .about { grid-template-columns: 2fr 3fr; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .fab { display: none; }
  footer { padding-bottom: 28px; }
}
@media (max-width: 719px) {
  .burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
  .burger span { width: 24px; height: 2px; background: var(--ink); display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line);
  }
  .nav a { padding: 14px 20px; border-top: 1px solid var(--line); }
  .nav .btn { margin: 12px 20px 16px; text-align: center; border-radius: 999px; }
  .nav-toggle:checked ~ .nav { display: flex; }
  .svc-list li { grid-template-columns: 1fr auto; }
  .svc-meta { grid-column: 1; font-size: .75rem; margin-top: -4px; }
  .svc-price { grid-row: 1 / span 2; align-self: center; }
}
