:root {
  --paper: #f7f4ef;
  --ink: #2a2a28;
  --sage: #5d6b5c;
  --gold: #b7a07a;
  --muted: #5f5a52;
  --line: rgba(42, 42, 40, 0.12);
  --font: Outfit, "Segoe UI", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --space: clamp(3.4rem, 8vw, 6.8rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.08rem;
  line-height: 1.55;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); }

.shell { width: min(1140px, 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: #f4efe6; padding: 0.5rem 1rem; font-size: 0.95rem;
}
.demo-bar p { margin: 0; }
.demo-bar a { color: var(--gold); }
.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, 244, 239, 0.92); 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.2rem; gap: 0.7rem; }
.logo { font-family: var(--display); font-size: 1.45rem; color: var(--ink); text-decoration: none; }

.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: 2.5rem 0 0; }
.eyebrow { letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; font-weight: 600; color: var(--sage); }
.lead { max-width: 36rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.3rem 0 2rem; }

.btn {
  min-height: 48px; padding: 0.65rem 1.2rem; border-radius: 0; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; text-decoration: none; border: 1px solid var(--ink); cursor: pointer; font-family: inherit; font-size: 1rem;
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #111; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }

.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0.55rem;
  width: min(1140px, calc(100% - 2rem)); margin: 0 auto 0;
}
.hero-grid img { width: 100%; height: 12rem; object-fit: cover; background: #ddd6c8; }
.hero-grid img:first-child { grid-row: span 2; height: 100%; min-height: 18rem; }

.section { padding: var(--space) 0; }
.band { background: #efece5; }

.tiles, .mosaic, .quotes, .contact { display: grid; gap: 1.1rem; }
.tiles article {
  background: #fff; padding: 1.3rem; border: 1px solid var(--line);
  background-image: linear-gradient(90deg, rgba(93, 107, 92, 0.12) 1px, transparent 1px), linear-gradient(rgba(93, 107, 92, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0; list-style: none; }
.chips li { border: 1px solid var(--line); padding: 0.55rem 0.9rem; min-height: 44px; display: inline-flex; align-items: center; background: #fff; }

.mosaic img { width: 100%; height: 16rem; object-fit: cover; background: #ddd6c8; }
.mosaic figcaption { margin-top: 0.45rem; color: var(--muted); }

blockquote { margin: 0; font-family: var(--display); font-size: 1.45rem; line-height: 1.3; }
blockquote footer { font-family: var(--font); font-size: 0.95rem; color: var(--muted); }

.contact-form { display: grid; gap: 0.8rem; }
.contact-form label { display: grid; gap: 0.3rem; font-size: 0.92rem; font-weight: 600; }
input, textarea { font: inherit; border: 1px solid var(--line); background: #fff; padding: 0.7rem 0.8rem; min-height: 48px; border-radius: 0; }
textarea { min-height: 7.5rem; resize: vertical; }

.site-footer { border-top: 1px solid var(--line); padding: 1.3rem 0; font-size: 0.95rem; color: var(--muted); }
.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: #efece5; padding: 0.9rem 1rem; }

:focus-visible { outline: 3px solid var(--sage); 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; }
  .tiles, .contact { grid-template-columns: 1fr 1fr; }
  .mosaic, .quotes { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: 1fr 1fr; }
  .hero-grid img { height: 14rem; }
  .hero-grid img:first-child { min-height: 28rem; }
  .mosaic img { height: 18rem; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
