/* Flippin' Floors - Modern Clean Site */
:root {
  --primary: #1a5f4a;
  --primary-dark: #0f3d30;
  --accent: #c45c26;
  --text: #1a1a1a;
  --text-light: #555;
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --border: #e5e2dc;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--primary);
}

.header-phone {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(135deg, rgba(15,61,48,0.82) 0%, rgba(26,95,74,0.7) 100%),
    url('../images/1000012280.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #f0c14b;
}

.hero-sub {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #a84b1d;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.15rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

.why-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.why-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.locally-badge {
  text-align: center;
}

.locally-badge img {
  margin: 0 auto;
  max-width: 160px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-text p {
  margin-bottom: 14px;
  color: var(--text-light);
}

.mission-box {
  margin-top: 28px;
  padding: 22px;
  background: #fff;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.mission-box h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.testimonial {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.testimonial .quote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 14px;
  color: var(--text);
}

.testimonial .author {
  font-weight: 600;
  color: var(--primary);
}

.hours-box {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hours-box h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.hours-box ul {
  list-style: none;
}

.hours-box li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-box li:last-child {
  border-bottom: none;
}

.hours-box span {
  font-weight: 500;
}

/* Service Area */
.service-area {
  text-align: center;
  padding: 60px 0;
}

.service-area h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.area-lead {
  color: var(--text-light);
  margin-bottom: 28px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-list span {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-section .btn-primary {
  background: var(--accent);
}

.cta-note {
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 48px 0 32px;
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 6px;
}

.footer-brand a {
  color: #f0c14b;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-legal {
  text-align: right;
  color: #888;
}

.footer-legal p {
  margin-bottom: 4px;
}

/* Mobile */
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .header-phone {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  .footer-links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 70vh;
  }
  
  .hero-content {
    padding: 60px 16px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .section {
    padding: 56px 0;
  }
}
