/* =========================================================
   Finished Kitchens, LLC - Design System
   Palette: black / gold / white / grays / light brown & beige
   Highlight: light grayish-green
   Font: Poppins (headings + body)
   ========================================================= */

:root {
  /* Core palette */
  --c-black: #201c17;
  --c-charcoal: #332e27;
  --c-white: #ffffff;

  /* Woods / warm neutrals */
  --c-cream: #faf6ee;
  --c-beige: #f1e6d3;
  --c-beige-dark: #e5d3b3;
  --c-brown-light: #c9a877;
  --c-brown: #a9814f;

  /* Gold accent */
  --c-gold: #b8923f;
  --c-gold-light: #d9b871;
  --c-gold-dark: #8f701f;

  /* Grays */
  --c-gray-100: #f3f1ec;
  --c-gray-200: #e7e3da;
  --c-gray-400: #cac3b6;
  --c-gray-600: #928a7a;
  --c-gray-800: #58524a;

  /* Highlight: light grayish-green */
  --c-highlight: #a9b89e;
  --c-highlight-dark: #8ba07d;

  /* Semantic tokens */
  --bg-body: var(--c-cream);
  --bg-section-alt: var(--c-beige);
  --bg-header: rgba(250, 246, 238, 0.92);
  --text-body: var(--c-charcoal);
  --text-muted: var(--c-gray-800);
  --text-heading: var(--c-black);
  --border-soft: var(--c-gray-200);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(32, 28, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(32, 28, 23, 0.10);
  --shadow-lg: 0 20px 48px rgba(32, 28, 23, 0.16);

  --container-width: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-alt { background: var(--bg-section-alt); }
.section-tight { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 14px;
}
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); }
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--c-black);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
}
.btn-gold:hover { background: var(--c-gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn-outline:hover { background: var(--c-black); color: var(--c-white); }
.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--c-white); color: var(--c-black); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 42px; width: auto; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 6px; }
.nav-list a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--c-charcoal);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.nav-list a:hover,
.nav-list a.is-active { color: var(--c-gold-dark); background: var(--c-beige); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(185, 146, 63, 0.10), transparent 45%),
    repeating-linear-gradient(115deg, var(--c-beige) 0px, var(--c-beige) 46px, var(--c-beige-dark) 46px, var(--c-beige-dark) 48px);
  overflow: hidden;
  text-align: center;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero h1 { font-size: clamp(34px, 5.4vw, 56px); }
.hero p.lead { font-size: 19px; color: var(--text-muted); max-width: 560px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dark {
  background:
    radial-gradient(circle at 85% 15%, rgba(185, 146, 63, 0.18), transparent 50%),
    linear-gradient(160deg, var(--c-black) 0%, var(--c-charcoal) 100%);
  color: var(--c-white);
}
.hero-dark h1, .hero-dark p { color: var(--c-white); }
.hero-dark p.lead { color: rgba(255,255,255,0.78); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-highlight); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--c-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--c-gold-dark);
  font-size: 22px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; margin-bottom: 0; }

.stat-row { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 34px; font-family: var(--font-heading); color: var(--c-gold-dark); }
.stat span { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-highlight);
  color: var(--c-black);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}
.project-thumb {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-beige-dark), var(--c-brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(32,28,23,0.55);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.project-card .project-body { padding: 20px 22px; }
.project-card h3 { font-size: 17px; margin-bottom: 4px; }
.project-card span { font-size: 13px; color: var(--text-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--c-white); margin-bottom: 6px; font-size: 28px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--c-charcoal); }
.form-field input,
.form-field textarea,
.form-field select {
  border: 1px solid var(--c-gray-400);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--c-white);
  color: var(--text-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-highlight-dark);
  box-shadow: 0 0 0 3px rgba(169, 184, 158, 0.35);
}
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.form-success {
  background: var(--c-highlight);
  color: var(--c-black);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* ---------- Info strip (contact details) ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}
.info-item .icon {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  background: var(--c-beige);
  color: var(--c-gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.info-item h4 { font-size: 15px; margin-bottom: 4px; }
.info-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
  margin-top: 100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 {
  color: var(--c-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.68); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--c-gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.social-icons a:hover { background: var(--c-gold); border-color: var(--c-gold); }

/* ---------- Coming Soon page ---------- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(185, 146, 63, 0.14), transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(169, 184, 158, 0.16), transparent 50%),
    repeating-linear-gradient(115deg, var(--c-beige) 0px, var(--c-beige) 46px, var(--c-beige-dark) 46px, var(--c-beige-dark) 48px);
}
.coming-soon-inner { max-width: 640px; }
.coming-soon .logo-img { height: 84px; margin: 0 auto 28px; }
.coming-soon .eyebrow { color: var(--c-gold-dark); }
.coming-soon h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 16px; }
.coming-soon p.lead { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; }
.coming-soon-contact {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
  font-size: 15px;
}
.coming-soon-contact a { font-weight: 600; color: var(--c-charcoal); }
.coming-soon-contact a:hover { color: var(--c-gold-dark); }
.coming-soon .social-icons { justify-content: center; margin-top: 6px; }
.coming-soon .social-icons a { border-color: var(--c-gray-400); color: var(--c-charcoal); }
.coming-soon .social-icons a:hover { background: var(--c-black); border-color: var(--c-black); color: var(--c-white); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .info-strip { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav .nav-list {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--c-cream);
    border-bottom: 1px solid var(--border-soft);
    padding: 12px;
    display: none;
    gap: 2px;
  }
  .main-nav.is-open .nav-list { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
}
