:root {
  --bg: #f6f3ef;
  --surface: #ffffff;
  --surface-alt: #efe8df;
  --text: #2d2a26;
  --muted: #60574d;
  --accent: #7a4b2f;
  --accent-2: #b58a63;
  --border: #d8cbbd;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  background: linear-gradient(to bottom, rgba(45,42,38,0.78), rgba(45,42,38,0.56)),
    url('https://images.unsplash.com/photo-1598974357801-cbca100e65d3?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: #fff;
  padding-bottom: 4.5rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

.nav-links a { color: #fff; text-decoration: none; font-weight: 500; }

.hero { padding: 4rem 0 0; max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 600;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin: .4rem 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 0; }

.hero-copy { font-size: 1.08rem; color: #f0e8df; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }

.btn {
  display: inline-block;
  padding: .72rem 1.15rem;
  border-radius: .4rem;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #603a24; }
.btn-secondary { border: 1px solid #fff; color: #fff; }

.section { padding: 4rem 0; }
.section-alt { background: var(--surface-alt); }

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: .6rem;
}

.insta-embed-wrap {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .6rem;
  padding: .75rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--surface);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 720px) {
  .nav { flex-direction: column; gap: .65rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
}
