/* ═══════════════════════════════════════
   CECE'S GARAGE — Landing Page Theme
   Warm, trustworthy, community-first
   ═══════════════════════════════════════ */

:root {
  --bg: #faf7f2;
  --bg-warm: #f5f0e8;
  --green-deep: #1b2e1c;
  --green-mid: #2d4a2e;
  --green-light: #3d633d;
  --amber: #c9633a;
  --amber-light: #e07d52;
  --amber-dark: #a84f2b;
  --text: #1a1a18;
  --text-muted: #5a5a52;
  --text-light: #8a8a82;
  --border: #e0dbd0;
  --card-bg: #ffffff;
  --cream-dark: #f0ebe0;
}

/* ─── Base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ─── Navigation ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: 80px 32px 100px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c9633a 0%, transparent 70%);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1b2e1c 0%, transparent 70%);
  bottom: -100px; left: 10%;
  opacity: 0.15;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Tag block */
.hero-tag-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tag-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(27, 46, 28, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tag-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(27, 46, 28, 0.1);
}
.tag-prefix {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.06em;
}
.tag-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.tag-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
}

/* ─── Categories ─── */
.categories {
  background: var(--green-deep);
  padding: 100px 32px;
}
.categories-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-light);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 60px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.cat-icon {
  color: var(--amber-light);
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ─── Process ─── */
.process {
  padding: 100px 32px;
  background: var(--bg);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-header .section-title { color: var(--green-deep); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27, 46, 28, 0.04);
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-divider {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--border);
  padding-top: 60px;
  flex-shrink: 0;
}

/* ─── Philosophy ─── */
.philosophy {
  background: var(--bg-warm);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner { max-width: 1200px; margin: 0 auto; }
.philosophy-quote {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center;
}
.philosophy-quote blockquote p {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.philosophy-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}
.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.value p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── What Sets Us Apart ─── */
.apart {
  padding: 100px 32px;
  background: var(--bg);
}
.apart-inner { max-width: 1200px; margin: 0 auto; }
.apart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.apart-item {
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27, 46, 28, 0.04);
}
.apart-icon {
  color: var(--green-mid);
  margin-bottom: 20px;
}
.apart-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.apart-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  background: var(--green-deep);
  padding: 120px 32px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid rgba(201, 99, 58, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 32px;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.closing-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.closing-brand {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.02em;
}

/* ─── Footer ─── */
.site-footer {
  background: #141e14;
  padding: 60px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}
.footer-location {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-style: italic;
}
.footer-meta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Hero Images ─── */
.hero-images {
  display: flex;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 80px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-sizing: border-box;
}
.hero-images::-webkit-scrollbar { display: none; }
.hero-img {
  flex: 1;
  min-width: 0;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(27, 46, 28, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.hero-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(27, 46, 28, 0.18);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-tag-block { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-divider { display: none; }
  .philosophy-values { grid-template-columns: 1fr; gap: 24px; }
  .apart-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .categories, .process, .philosophy, .apart, .closing { padding: 60px 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 24px; }
  .nav-tagline { display: none; }
}