/* ==================
   SHARED PAGE NAV
   (for non-hero pages)
   ================== */
.page-nav {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 1.4rem 2rem;
  margin-top: 20px;
}

.page-nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.page-nav a {
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #333;
  text-decoration: none;
}

.page-nav a.nav-italic {
  font-style: italic;
}

.page-nav a:hover {
  text-decoration: underline;
}

.page-nav a.active {
  opacity: 0.5;
}

/* ==================
   AUTHOR NAME BANNER
   ================== */
.page-name-banner {
  background: #fff;
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  justify-content: center;
}

/* Muted version for white-bg pages */
.author-name--muted {
  color: #e8b4a8 !important;
}

/* ==================
   ABOUT SECTION (page variant)
   ================== */
.about-section--page {
  background: #fff;
  padding: 2rem 2rem 6rem;
}

/* ==================
   CONTACT SECTION
   ================== */
.contact-section {
  background: #fff;
  padding: 0 2rem 6rem;
}

.contact-card {
  max-width: 780px;
  margin: 0 auto;
  background: #111;
  border-radius: 12px;
  padding: 3rem 3.5rem;
}

.contact-heading {
  font-family: "ivyepic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-form-inner .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-form-inner .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.contact-form-inner label {
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #aaa;
  letter-spacing: 0.03em;
}

.contact-form-inner input,
.contact-form-inner textarea {
  width: 100%;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: "ivypresto-display", serif;
  font-weight: 400;
  font-size: 0.9rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form-inner input::placeholder,
.contact-form-inner textarea::placeholder {
  color: #555;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
  border-color: #666;
}

.contact-form-inner button {
  width: 100%;
  padding: 0.85rem;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "ivyepic", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.4rem;
}

.contact-form-inner button:hover {
  background: #555;
}

/* ==================
   WME SECTION
   ================== */
.wme-section {
  background: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.wme-logo {
  margin-bottom: 3rem;
}

.wme-logo img {
  height: 36px;
  width: auto;
  display: inline-block;
}

.wme-contacts {
  display: flex;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.wme-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: "ivypresto-headline", serif;
  font-weight: 100;
  font-size: 0.9rem;
  color: #333;
}

.wme-contact-item strong {
  font-family: "ivyepic", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
  margin-bottom: 0.2rem;
}

.wme-contact-item a {
  color: #1a6bb5;
  text-decoration: none;
  font-size: 0.82rem;
  transition: opacity 0.2s;
}

.wme-contact-item a:hover {
  opacity: 0.7;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 600px) {
  .page-nav ul {
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-form-inner .form-row {
    flex-direction: column;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .wme-contacts {
    gap: 2.5rem;
  }
}
