/* =============================================================
   JT Designs — Navigation
   ============================================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(244, 239, 230, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding var(--transition);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo — italic serif mark */
.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

/* TM superscript in oxblood */
.logo sup {
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oxblood);
  vertical-align: super;
  margin-left: 5px;
}

/* Nav link row */
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--oxblood); }

/* CTA button in nav — pill style */
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  border: none;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--oxblood); }

/* On mobile: hide text links, keep CTA */
@media (max-width: 768px) {
  .nav-links a:not(.nav-cta-link) { display: none; }
}
