@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lato:wght@300;400&display=swap');

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

body {
  font-family: 'Lato', sans-serif;
  background: #FAF8F4;
  color: #2C2A26;
  -webkit-user-select: none;
  user-select: none;
}

img { pointer-events: none; -webkit-user-drag: none; }

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 0.5px solid #D8D4CC;
  background: #FAF8F4;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #2C2A26;
  text-transform: uppercase;
  text-decoration: none;
}

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

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B6760;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #2C2A26; }
.nav-links a.active { color: #2C2A26; border-bottom: 0.5px solid #2C2A26; padding-bottom: 2px; }

/* PAGE HEADER */
.page-header {
  text-align: center;
  padding: 56px 48px 40px;
}

.page-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: #2C2A26;
  margin-bottom: 12px;
}

.page-header p.subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: #9B978F;
  margin-top: 16px;
}

.divider {
  width: 40px;
  height: 0.5px;
  background: #C4BFB6;
  margin: 0 auto;
}

/* BREADCRUMB */
.breadcrumb {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9B978F;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #9B978F;
  text-decoration: none;
  border-bottom: 0.5px solid #C4BFB6;
  padding-bottom: 1px;
}

.breadcrumb span { margin: 0 8px; }

/* FOOTER */
footer {
  padding: 32px 48px;
  border-top: 0.5px solid #D8D4CC;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAF8F4;
}

.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #9B978F;
}

.footer-contact {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B6760;
  text-decoration: none;
  border-bottom: 0.5px solid #C4BFB6;
  padding-bottom: 2px;
}
