/* ══════════════════════════════════
   COMPONENTS
══════════════════════════════════ */

/* ── Labels ── */
.label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
  font-weight: 500;
}
.label--light { color: rgba(250, 247, 244, 0.5); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-hover);
  border-color: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 113, 79, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn--outline:hover {
  background: var(--espresso);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--white {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 244, 0.5);
}
.btn--white:hover {
  background: var(--cream);
  color: var(--walnut);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav--scrolled {
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(44, 36, 32, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--espresso);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin: 0 4px;
  vertical-align: middle;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: var(--espresso);
  padding: 8px 14px;
  border-radius: 30px;
  transition: all var(--transition-base);
}
.nav__link:hover,
.nav__link--active {
  background: rgba(44, 36, 32, 0.06);
}

.nav__link--cta {
  background: var(--terracotta);
  color: var(--cream);
  margin-left: 8px;
}
.nav__link--cta:hover {
  background: var(--terracotta-hover);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Service Cards ── */
.service-card {
  background: var(--cream);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.service-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(44, 36, 32, 0.12);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(44, 36, 32, 0.08);
  margin-bottom: 16px;
  line-height: 1;
}

.service-card__title {
  margin-bottom: 12px;
}

.service-card__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--clay);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.5;
}

/* ── Footer ── */
.footer {
  background: var(--espresso);
  padding: clamp(50px, 6vw, 80px) 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.footer .nav__logo { color: var(--cream); }
.footer .nav__logo-dot { background: var(--terracotta); }

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(250, 247, 244, 0.5);
  margin-top: 10px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__col-title {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.4);
  margin-bottom: 8px;
  font-weight: 500;
}

.footer__col a {
  font-size: 0.85rem;
  color: rgba(250, 247, 244, 0.7);
  transition: color var(--transition-base);
}
.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(250, 247, 244, 0.1);
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(250, 247, 244, 0.3);
}

/* ── Sticky Mobile CTA ── */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -2px 12px rgba(44, 36, 32, 0.1);
  transform: translateY(100%);
  transition: transform var(--transition-base);
  display: none;
}
.mobile-cta.visible {
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-linen);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__links .nav__link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }
  .nav__toggle { display: flex; }

  .mobile-cta { display: block; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__links { gap: 40px; }
}
