/* ---------- RESET ---------- */

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

/* ---------- BODY ---------- */

body {
  font-family: "Mukta", sans-serif;
  color: #222;
  background: #f7f6f2;
  line-height: 1.8;

  padding: 3rem 10%;
}

/* ---------- NAVIGATION ---------- */

.navbar {
  margin-bottom: 5rem;
}

.links ul {
  display: flex;
  gap: 3rem;

  list-style: none;
}

.links a {
  text-decoration: none;
  color: #444;

  font-family: "Cormorant", serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;

  transition: color 0.25s ease;
}

.links a:hover,
.links a.active {
  color: #b96b33;
}

/* ---------- HERO ---------- */

.hero {
  max-width: 800px;
}

.page-number {
  color: #777;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-number span {
  color: #b96b33;
}

h1 {
  font-family: "Cormorant", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;

  margin-bottom: 1.5rem;
}

.intro {
  max-width: 60ch;
  color: #555;

  font-size: 1.1rem;
}

/* ---------- HORIZONTAL RULE ---------- */

hr {
  margin: 4rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* ---------- CONTACT INFO ---------- */

.contact-info {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 {
  font-family: "Cormorant", serif;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.contact-info a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #b96b33;
}

/* ---------- QUOTE ---------- */

/* blockquote {
  margin-top: 5rem;

  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 1.6rem;

  color: #666;

  max-width: 700px;
} */
