*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f2ee;
  --surface: #ffffff;
  --text: #1a1714;
  --muted: #7a7168;
  --accent: #3b3028;
  --gold: #b89a6a;
  --line: #e0d9d0;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(245,242,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

/* ── PAGE ENTRANCE ── */
main {
  padding-top: var(--nav-h);
  min-height: 100vh;
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--gold); }

.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ── SECTION COMMONS ── */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 24px;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.9;
  font-weight: 300;
}

.divider {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 0 0 28px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

footer .brand { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .section { padding: 60px 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 520px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
}
