/* ========== GLOBAL RESET & BASE ========== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #FAF8F4; /* cream */
  color: #1C1C1C; /* charcoal */
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

/* ========== TYPOGRAPHY ========== */

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #1C1C1C;
}

p {
  line-height: 1.6;
}

/* ========== LAYOUT HELPERS ========== */

.max-w-6xl {
  margin-left: auto;
  margin-right: auto;
}

/* ========== NAVIGATION ========== */

.nav-link {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #C0453A; /* brand-red */
  transition: width 0.2s ease;
}

.nav-link:hover {
  color: #C0453A;
}

.nav-link:hover::after {
  width: 100%;
}

/* ========== BUTTONS ========== */

.button-gold {
  display: inline-block;
  background-color: #C9A96E; /* gold */
  color: #1C1C1C;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #B8944F; /* gold-dark */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.button-gold:hover {
  background-color: #D4B87E; /* gold-light */
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* ========== CARDS ========== */

.service-card {
  background-color: #FFFFFF; /* cream-card */
  border-radius: 18px;
  border: 1px solid #F0EBE3; /* cream-dark */
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ========== PILLS (FILTER BUTTONS) ========== */

.pill {
  cursor: default;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.pill:hover {
  background-color: #F0EBE3;
  border-color: #D4B87E;
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */

.site-footer {
  border-top: 1px solid #F0EBE3;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 12px;
  color: #6B5E52; /* muted */
}
