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

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

:root {
  --black: #090909;
  --white: #ffffff;
  --off: #f7f6f3;
  --mid: #6b6b6b;
  --light: #e4e2dc;
  --lighter: #f0efe9;

  --r: #4f4ec9;
  --r-light: #eeedfd;
  --r-text: #2d2c8a;

  --m: #1e5c39;
  --m-light: #e8f2ec;
  --m-text: #164429;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  border-bottom: 1px solid var(--light);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
}
.logo span { color: var(--r); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 500; }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  background: var(--black);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.78 !important; color: var(--white) !important; }

/* ── SECTION UTILITY ── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1rem;
}

.divider {
  height: 1px;
  background: var(--light);
  margin: 0 3rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.15s;
  cursor: pointer;
  border: none;
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { opacity: 0.78; }
.btn-r { background: var(--r); color: var(--white); }
.btn-r:hover { opacity: 0.82; }
.btn-m { background: var(--m); color: var(--white); }
.btn-m:hover { opacity: 0.82; }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--light); }
.btn-outline:hover { background: var(--off); }

/* ── TAGS / PILLS ── */
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
}
.tag-r { background: var(--r-light); color: var(--r-text); }
.tag-m { background: var(--m-light); color: var(--m-text); }
.tag-neutral { background: var(--lighter); color: var(--mid); }

.pill {
  display: inline-block;
  font-size: 10px;
  color: var(--mid);
  border: 1px solid var(--light);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

/* ── AVATAR ── */
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--mid);
  flex-shrink: 0;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-lg {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

/* ── STARS ── */
.stars { color: #f5a623; font-size: 12px; letter-spacing: 1.5px; }
.stars-label { font-size: 12px; color: var(--mid); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--light);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p { font-size: 11px; color: var(--mid); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links li:not(:last-child) { display: none; }
  .divider { margin: 0 1.25rem; }
  footer { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1.25rem; }
}
