@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;500&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css');

.cc-nav {
  background: var(--cream);
  border-bottom: 0.5px solid #e5ded5;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.cc-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--warm-dark);
}

.cc-nav-wordmark {
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--warm-dark);
  line-height: 1.2;
}

.cc-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.cc-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--umber);
  text-decoration: none;
  transition: color 0.15s;
}

.cc-nav-links a:hover {
  color: var(--warm-dark);
}

.cc-nav-phone {
  font-size: 13px;
  color: var(--driftwood);
  text-decoration: none;
}

.cc-nav-cta {
  display: inline-block;
  background: var(--rose);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.cc-nav-cta:hover {
  background: var(--rose-deep) !important;
}

.cc-nav-cta:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.cc-nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--warm-dark);
  cursor: pointer;
  padding: 4px;
}

/* Shared image placeholder */
.img-placeholder {
  background: var(--stone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.img-placeholder .ti {
  font-size: 32px;
  color: var(--bark);
}

.img-placeholder span {
  font-size: 11px;
  color: var(--smoke);
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 0 8px;
}

/* Shared button */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--rose-deep);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

/* Shared eyebrow */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .cc-nav-phone,
  .cc-nav-text-links {
    display: none;
  }
  .cc-nav-hamburger {
    display: block;
  }
  .cc-nav {
    padding: 0 20px;
  }
}
