:root {
  --plaster: #f7f3ec;
  --gold: #a68b5b;
  --gold-d: #8a6e42;
  --taupe: #8a7e70;
  --ink: #3a322c;
  --muted: #6a6158;
  --line: rgba(58, 50, 44, 0.14);
  --font: "Nunito Sans", "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, serif;
  --space: clamp(3.4rem, 7vw, 6.6rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--plaster);
  font-size: 1.08rem;
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-d); }
h1, h2 { font-family: var(--display); margin: 0 0 0.5em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.orn { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }

.skip { position: absolute; left: 0.75rem; top: -4rem; background: var(--ink); color: #fff; padding: 0.55rem 0.8rem; z-index: 80; }
.skip:focus { top: 0.75rem; }

.demo-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  background: var(--ink); color: #f7f3ec; padding: 0.5rem 1rem; font-size: 0.95rem;
}
.demo-bar p { margin: 0; }
.demo-bar a { color: #d7c08a; }
.demo-bar-dismiss { min-width: 44px; min-height: 44px; border: 0; background: transparent; color: inherit; font-size: 1.4rem; cursor: pointer; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 243, 236, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; min-height: 4.3rem; }
.logo { font-family: var(--display); color: var(--ink); text-decoration: none; font-size: 1.5rem; }

.nav-toggle { width: 44px; height: 44px; border: 0; background: transparent; display: grid; place-items: center; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.3rem; height: 2px; background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-nav { display: none; flex-direction: column; width: 100%; padding-bottom: 1rem; }
.site-nav.is-open { display: flex; }
.site-nav a { color: var(--ink); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.nav-phone { font-weight: 700; }

.hero {
  padding: 4rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(247, 243, 236, 0.42), rgba(247, 243, 236, 0.9)),
    url("img/hero.jpg") center 40%/cover;
  border-bottom: 1px solid var(--line);
}
.eyebrow { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.74rem; font-weight: 700; color: var(--gold-d); }
.lead { max-width: 36rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }

.btn {
  min-height: 48px; padding: 0.7rem 1.2rem; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; text-decoration: none; border: 1px solid var(--gold); cursor: pointer; font-family: inherit; font-size: 1rem;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-d); color: #fff; }
.btn-line { background: transparent; color: var(--ink); }

.section { padding: var(--space) 0; }
.split-list { display: grid; gap: 1.2rem; }
.split-list article {
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: inset 0 0 0 6px rgba(166, 139, 91, 0.12);
}
.split-list ul { padding-left: 1.15rem; }

.gallery-wrap { background: #efe8dc; }
.gallery, .quotes, .contact { display: grid; gap: 1.1rem; }
.gallery img { width: 100%; height: 16rem; object-fit: cover; background: #ddd3c3; }
.gallery figcaption { margin-top: 0.45rem; color: var(--muted); font-size: 0.95rem; }

blockquote {
  margin: 0;
  padding: 0 0 0 1.1rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display);
  font-size: 1.25rem;
}
blockquote footer { font-family: var(--font); font-size: 0.95rem; color: var(--muted); }

.contact-wrap { background: #fff; }
.contact-form { display: grid; gap: 0.8rem; }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.92rem; font-weight: 700; }
input, textarea { font: inherit; border: 1px solid var(--line); padding: 0.7rem 0.8rem; min-height: 48px; background: var(--plaster); }
textarea { min-height: 7.5rem; resize: vertical; }

.site-footer { border-top: 1px solid var(--line); padding: 1.3rem 0; color: var(--muted); font-size: 0.95rem; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.7rem; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  flex: 1 1 100%;
}
.footer-contact a { margin-left: 0; }
.legal-page { padding: 4rem 0 5rem; }
.legal-page .note { background: #efe8dc; padding: 0.9rem 1rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (min-width: 840px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; flex-direction: row; width: auto; gap: 1.15rem; padding: 0; align-items: center; }
  .split-list, .quotes, .contact { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
