/* KC Premium Cabinets */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --base: #ffffff;
  --base-alt: #f8f9fa;
  --text-main: #29323d;
  --text-muted: #6b7280;
  --brand-accent: #b52a2a;
  --brand-dark: #344652;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --section-pad: clamp(4rem, 10vw, 8rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--base); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(90%, 1200px); margin: 0 auto; }

/* Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; position: absolute; top: 0; left: 0; right: 0; z-index: 10; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--base); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--base); transition: opacity 0.3s; }
.nav-links a:hover { opacity: 0.7; }
.btn-primary { background: var(--brand-accent); color: var(--base); padding: 0.75rem 1.5rem; border-radius: 2px; font-weight: 600; font-size: 0.9rem; transition: background 0.3s; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-primary:hover { background: #930808; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; color: var(--base); font-size: 1.5rem; cursor: pointer; z-index: 100; min-height: 44px; min-width: 44px; padding: 0.5rem; }
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; background: var(--brand-dark); flex-direction: column; justify-content: center; gap: 2rem; font-size: 1.5rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; position: relative; }
  .nav-links a { color: var(--base); }
}

/* Hero */
.hero { min-height: 100svh; position: relative; display: flex; align-items: center; padding-top: 5rem; background: var(--brand-dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; pointer-events: none; }
.hero .container { position: relative; z-index: 2; max-width: 800px; margin: 0; padding-left: 5%; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.1; font-weight: 700; color: var(--base); margin-bottom: 1.5rem; text-wrap: balance; text-transform: uppercase; letter-spacing: -0.02em; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; max-width: 500px; text-wrap: pretty; }

/* Section styling */
section { padding: var(--section-pad) 0; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 3rem; text-align: center; text-transform: uppercase; color: var(--brand-dark); }

/* Gallery */
.gallery-section { background: var(--base); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }

/* Reviews */
.reviews-section { background: var(--base-alt); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background: var(--base); padding: 3rem 2rem; border-top: 4px solid var(--brand-accent); box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.review-quote { font-size: 1.1rem; color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.8; }
.review-author { font-weight: 700; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand-dark); }

/* Footer */
footer { background: var(--brand-dark); color: rgba(255,255,255,0.5); padding: 4rem 0 2rem; text-align: center; font-size: 0.9rem; }
