/* Clean Cut — light modern minimalism */
:root {
  --t-bg: #FAFAF9;
  --t-bg-alt: #F5F5F4;
  --t-text: #1C1917;
  --t-text-muted: #78716C;
  --t-accent: #292524;
  --t-accent-hover: #44403C;
  --t-surface: #FFFFFF;
  --t-border: #E7E5E4;
  --t-font-heading: 'DM Sans', sans-serif;
  --t-font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

/* ---- Nav scrolled shadow ---- */
.nav-scrolled { box-shadow: 0 2px 20px rgba(28,25,23,0.06); }

/* ---- Portfolio grid items ---- */
.portfolio-item {
  transition: transform 0.3s;
}
.portfolio-item:hover {
  transform: scale(1.03);
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F5F5F4, #E7E5E4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-placeholder span {
  font-size: 0.75rem;
  color: #A8A29E;
}

/* ---- Price hit badge ---- */
.price-hit {
  background: var(--t-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---- FAQ ---- */
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem;
  transition: background 0.3s;
  min-height: 48px;
  font-size: 0.95rem;
}
.faq-item summary:hover { background: var(--t-bg-alt); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.3s;
  color: var(--t-text-muted);
  line-height: 1;
}
.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
}

/* ---- Floating desktop CTA ---- */
.floating-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s;
}
.floating-cta a:hover { transform: scale(1.1); }

/* ==========================================
   MOBILE (max-width: 767px)
   ========================================== */
@media (max-width: 767px) {
  /* Sticky CTA bar bottom */
  .mobile-cta-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 55;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.625rem 0.75rem;
    padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
    border-top: 1px solid var(--t-accent);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
  }
  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }

  /* Hide floating desktop buttons */
  .floating-cta { display: none !important; }

  /* Body padding for sticky bar */
  body { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px)); }

  /* FAQ smaller padding */
  .faq-item summary { padding: 0.875rem 1rem; font-size: 0.875rem; }
}
