:root {
  --ink: #111111;
  --offwhite: #FAF7F4;
  --warm-gray: #6B6763;
  --blush: #D9A6A6;
  --gold: #B08D57;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --radius: 16px;
}
* { box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--ink);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* Navbar */
.navbar-r {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
}
.navbar-r .logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--ink);
}
.navbar-r .nav-links { display: flex; align-items: center; gap: 32px; }
.navbar-r .nav-links a {
  font-size: 14px; font-weight: 500; color: var(--warm-gray);
  transition: color .2s;
}
.navbar-r .nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; }
@media (max-width: 767px) {
  .navbar-r .nav-links { display: none; }
  .navbar-r .nav-links.show {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    padding: 24px; gap: 20px; border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-toggle { display: block; }
}

/* Common */
section.block { padding: 56px 0; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.6);
  padding: 64px 0 40px; margin-top: 64px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45);
  max-width: 280px; line-height: 1.6; margin-bottom: 24px;
}
.footer-heading {
  font-size: 12px; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-link {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
  transition: color .2s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding-top: 24px;
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  color: rgba(255,255,255,0.4); font-size: 18px;
  transition: color .2s;
}
.footer-social a:hover { color: #fff; }
