/* CA$H 4 CLUNKERS AND SCRAP - Minimal static site
   Replace logo-placeholder.svg and favicon.svg in /assets.
*/

:root{
  --bg: #0b0f19;
  --surface: #0f172a;
  --surface2: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --brand: #fbbf24;
  --brand2: #f59e0b;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 25% 0%, rgba(245,158,11,.22), transparent 55%),
              radial-gradient(1000px 600px at 95% 10%, rgba(59,130,246,.18), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; }
.container{
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* Topbar */
.topbar{
  background: rgba(15,23,42,.7);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 0;
  gap: 14px;
}
.topbar-left{ display:flex; align-items:center; gap: 10px; flex-wrap: wrap;}
.topbar-link{ text-decoration:none; font-weight:600; color: var(--text); }
.dot{ color: var(--muted); }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  color: #111827;
  text-decoration:none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245,158,11,.18);
}
.btn:hover{ filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-sm{ padding: 10px 12px; font-size: 14px; }
.btn-block{ width:100%; }

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f9fafb; /* light header */
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: none;
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}
.brand{
  display:flex; align-items:center; gap: 10px;
  text-decoration:none;
}
.brand-logo{ 
  height: 46px;     /* controls size */
  width: auto;      /* prevents squish */
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);   /* since header is light */
  background: transparent;
 }
.brand-name{ font-weight: 900; letter-spacing: .06em; font-size: 14px; color: #111827; }
.brand-sub{ font-weight: 700; color: #4b5563; font-size: 12px; margin-top: -2px; }

.nav-menu{
  display:flex; align-items:center; gap: 18px;
}
.nav-menu a{
  text-decoration:none;
  color: #111827;
  font-weight: 700;
  font-size: 14px;
  opacity: .92;
}
.nav-menu a:hover{ opacity: 1; text-decoration: underline; text-underline-offset: 6px; }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor: pointer;
}
.burger{
  display:block;
  width: 18px; height: 2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute; left:0; width:18px; height:2px;
  background: var(--text);
}
.burger::before{ top:-6px; }
.burger::after{ top:6px; }

/* Hero */
.hero{ padding: 56px 0 26px; }
.hero-inner{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: start;}
.eyebrow{ color: var(--muted); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: 12px; margin: 0 0 10px; }
h1{ font-size: clamp(34px, 4.2vw, 56px); line-height: 1.05; margin: 0 0 12px; }
.lead{ font-size: 18px; color: rgba(229,231,235,.88); margin: 0 0 18px; }
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.trust{ list-style: none; padding: 0; margin: 0; display:grid; gap: 8px; color: rgba(229,231,235,.85); }
.trust li{ padding-left: 18px; position: relative; }
.trust li::before{
  content:"✓";
  position:absolute; left:0; color: var(--brand);
  font-weight: 900;
}

/* Cards / forms */
.card{
  background: linear-gradient(180deg, rgba(17,24,39,.92), rgba(15,23,42,.92));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card-title{ margin: 0 0 6px; font-size: 20px; }
.card-sub{ margin: 0 0 14px; color: var(--muted); }
.form label{ display:block; font-weight: 700; font-size: 13px; color: rgba(229,231,235,.92); margin-bottom: 10px; }
input, select, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(2,6,23,.55);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{ border-color: rgba(251,191,36,.55); box-shadow: 0 0 0 4px rgba(251,191,36,.12); }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fineprint{ color: var(--muted); font-size: 12px; margin: 12px 0 0; }
.fineprint a{ color: var(--text); }

.section{ padding: 54px 0; }
.section-alt{ background: rgba(15,23,42,.5); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head{ margin-bottom: 18px; }
.section-head h2{ margin: 0 0 6px; font-size: 28px; }
.section-head p{ margin: 0; color: var(--muted); }

.steps{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(2,6,23,.35);
}
.step-num{
  width: 38px; height: 38px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(251,191,36,.14);
  border: 1px solid rgba(251,191,36,.25);
  color: var(--brand);
  font-weight: 900;
  margin-bottom: 10px;
}
.step h3{ margin: 0 0 6px; }
.step p{ margin: 0; color: rgba(229,231,235,.84); }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card-simple{ box-shadow: none; }
.bullets{ margin: 10px 0 0; padding-left: 18px; color: rgba(229,231,235,.86); }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }

.two-col{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start; }
.info-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.info{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(2,6,23,.35);
}
.info-label{ font-size: 12px; color: var(--muted); font-weight: 700; }
.info-value{ font-weight: 800; margin-top: 4px; }

.photo-placeholder, .map-placeholder{
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: var(--radius);
  background: rgba(2,6,23,.35);
}

.about-photo{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.15);
}

.photo-placeholder{ height: 360px; display:flex; align-items:center; justify-content:center; }
.photo-placeholder-inner{ text-align:center; display:grid; gap: 6px; }
.map-placeholder{ height: 240px; margin-top: 10px; }

.faq details{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(2,6,23,.35);
  padding: 12px 14px;
  margin-bottom: 12px;
}
.faq summary{ cursor:pointer; font-weight: 900; }
.faq-body{ color: rgba(229,231,235,.86); margin-top: 10px; }

.reviews{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.review{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(2,6,23,.35);
  padding: 16px;
  margin: 0;
}
.review blockquote{ margin: 0 0 10px; color: rgba(229,231,235,.88); }
.review figcaption{ color: var(--muted); font-weight: 700; }

.center{ display:flex; justify-content:center; margin-top: 16px; }

.contact{ display:grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }

.footer{
  padding: 26px 0;
  border-top: 1px solid var(--border);
  background: rgba(2,6,23,.35);
}
.footer-inner{ display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.footer-brand{ font-weight: 900; letter-spacing: .05em; }
.footer-right a{ color: var(--muted); text-decoration:none; font-weight: 700; }
.footer-right a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 960px){
  .hero-inner, .two-col, .contact{ grid-template-columns: 1fr; }
  .cards, .reviews, .steps{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-menu{
    display:none;
    position:absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    background: rgba(11,15,25,.92);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    flex-direction: column;
    align-items:flex-start;
    gap: 10px;
  }
  .nav-menu.open{ display:flex; }
  .grid-2{ grid-template-columns: 1fr; }
  .info-grid{ grid-template-columns: 1fr; }
  .footer-inner{ flex-direction: column; align-items:flex-start; }
}

